diff --git a/src/main/java/core/IndexerMain.java b/src/main/java/core/IndexerMain.java index 154ddbc..cc73251 100644 --- a/src/main/java/core/IndexerMain.java +++ b/src/main/java/core/IndexerMain.java @@ -12,6 +12,7 @@ import utils.TfIdfCalculator; import java.io.File; +import java.io.IOException; import java.util.List; import java.util.Map; import java.util.Set; @@ -45,7 +46,7 @@ public static void main(String[] args) { // 3. Indexing Process System.out.println("Indexing books..."); - List allBooks = loader.loadBooks(); + List allBooks = loader.loadBooksFromSource(BOOK_RES); if (allBooks.isEmpty()) { System.err.println("❌ Critical Error: No books loaded. Check book.json path."); return; diff --git a/src/main/java/storage/BookLoader.java b/src/main/java/storage/BookLoader.java index b5dfd5e..034f8de 100644 --- a/src/main/java/storage/BookLoader.java +++ b/src/main/java/storage/BookLoader.java @@ -19,6 +19,17 @@ public BookLoader(String resourcePath) { this.resourcePath = resourcePath; } + // Add a new method specifically for the Indexer + public List loadBooksFromSource(String path) { + ObjectMapper mapper = new ObjectMapper(); + try { + // Reads directly from the project folder, ignoring AppData + return mapper.readValue(new File("src/main/resources" + path), new TypeReference>() {}); + } catch (IOException e) { + e.printStackTrace(); + return Collections.emptyList(); + } + } public List loadBooks() { ObjectMapper mapper = new ObjectMapper(); diff --git a/src/main/resources/data/book.json b/src/main/resources/data/book.json index 8cf7b72..abaac6b 100644 --- a/src/main/resources/data/book.json +++ b/src/main/resources/data/book.json @@ -3321,6 +3321,82 @@ "rating": "4.6", "coverUrl": "https://m.media-amazon.com/images/S/compressed.photo.goodreads.com/books/1348971620i/9637420.jpg", "downLink": "https://dl.icdst.org/pdfs/files4/f5087fa30778ccd742790526c0d6be83.pdf" + }, + { + "bookId": 208, + "title": "Computer Organization and Architecture: Designing for Performance", + "author": "William Stallings", + "description": "A comprehensive textbook on computer organization and architecture, covering processor design, memory hierarchy, I/O systems, instruction sets, and performance optimization principles. It provides both theoretical foundations and practical examples for students and professionals in computer science and engineering.", + "progLang": "Assembly", + "category": "Computer Science", + "tag": [ + "Computer Organization", + "Computer Architecture", + "William Stallings", + "Processor Design", + "Memory Hierarchy", + "Assembly", + "I/O Systems" + ], + "rating": "4.1", + "coverUrl": "https://m.media-amazon.com/images/I/713+cg1BJwL._SL1500_.jpg", + "downLink": "https://os.ecci.ucr.ac.cr/ci0114/material/Stallings/Computer-Organization-Architecture-11th.pdf" + }, + { + "bookId": 209, + "title": "Introduction to Computer Theory", + "author": "Daniel I. A. Cohen", + "description": "A foundational textbook covering the mathematical theory of computation, including automata, formal languages, Turing machines, and computability.", + "progLang": "English", + "category": "Computer Science", + "tag": [ + "Computer Theory", + "Automata", + "Formal Languages", + "Turing Machine", + "Computation", + "Computer Science" + ], + "rating": "4.3", + "coverUrl": "https://www.ketabton.com/book-cover/1495/large.jpg", + "downLink": "https://pakistandasti.wordpress.com/wp-content/uploads/2013/11/introduction-to-computer-theory-by-cohen-copy.pdf" + }, + { + "bookId": 210, + "title": "Assembly Language Programming and Organization of the IBM PC", + "author": "Ytha Y. Yu, Charles Marut", + "description": "A comprehensive tutorial-style guide to assembly language programming on the IBM PC, covering microcomputer systems, representation of numbers and characters, instruction sets, memory and I/O organization, BIOS/DOS interrupts, graphics and keyboard programming, and advanced topics with practical examples and exercises.", + "progLang": "English", + "category": "Computer Science", + "tag": [ + "Assembly Language", + "IBM PC", + "8086 Microprocessor", + "Computer Organization", + "Machine Code", + "Low-Level Programming" + ], + "rating": "4.5", + "coverUrl": "https://covers.openlibrary.org/b/isbn/0070726922-L.jpg", + "downLink": "https://pdos.csail.mit.edu/6.828/2010/readings/pcasm-book.pdf" + }, + { + "bookId": 211, + "title": "Database System Concepts, 6th Edition", + "author": "Avi Silberschatz, Henry F. Korth, S. Sudarshan", + "description": "A foundational and widely used textbook on database management systems that covers core concepts such as relational databases, SQL, query processing and optimization, transactions, concurrency control, recovery, and advanced topics like distributed databases and data mining. It is designed for undergraduate and graduate courses in computer science and related fields.", + "progLang": "English", + "category": "Computer Science", + "tag": [ + "Databases", + "Database Systems", + "SQL", + "Relational Model", + "Query Processing", + "Transaction Management" + ], + "rating": "4.5", + "coverUrl": "https://covers.openlibrary.org/b/isbn/9780073523323-L.jpg", + "downLink": "https://people.vts.su.ac.rs/~peti/Baze%20podataka/Literatura/Silberschatz-Database%20System%20Concepts%206th%20ed.pdf" } - ] diff --git a/src/main/resources/data/index_data.json b/src/main/resources/data/index_data.json index bf977ce..c2a253f 100644 --- a/src/main/resources/data/index_data.json +++ b/src/main/resources/data/index_data.json @@ -101,6 +101,14 @@ "docId" : 86, "freq" : 1, "positions" : [ 20 ] + }, { + "docId" : 207, + "freq" : 2, + "positions" : [ 43, 49 ] + }, { + "docId" : 209, + "freq" : 1, + "positions" : [ 13 ] } ], "beaulieu" : [ { "docId" : 130, @@ -197,6 +205,15 @@ "freq" : 1, "positions" : [ 9 ] } ], + "instruct" : [ { + "docId" : 208, + "freq" : 1, + "positions" : [ 25 ] + }, { + "docId" : 210, + "freq" : 1, + "positions" : [ 35 ] + } ], "viz" : [ { "docId" : 153, "freq" : 1, @@ -346,6 +363,11 @@ "freq" : 1, "positions" : [ 12 ] } ], + "ture" : [ { + "docId" : 209, + "freq" : 2, + "positions" : [ 21, 33 ] + } ], "combinator" : [ { "docId" : 8, "freq" : 1, @@ -445,6 +467,14 @@ "docId" : 198, "freq" : 3, "positions" : [ 3, 10, 17 ] + }, { + "docId" : 209, + "freq" : 2, + "positions" : [ 22, 34 ] + }, { + "docId" : 210, + "freq" : 1, + "positions" : [ 68 ] } ], "scott" : [ { "docId" : 28, @@ -754,6 +784,26 @@ "docId" : 204, "freq" : 1, "positions" : [ 21 ] + }, { + "docId" : 207, + "freq" : 1, + "positions" : [ 19 ] + }, { + "docId" : 208, + "freq" : 1, + "positions" : [ 9 ] + }, { + "docId" : 209, + "freq" : 2, + "positions" : [ 6, 8 ] + }, { + "docId" : 210, + "freq" : 1, + "positions" : [ 14 ] + }, { + "docId" : 211, + "freq" : 1, + "positions" : [ 12 ] } ], "fournier" : [ { "docId" : 173, @@ -1032,6 +1082,10 @@ "docId" : 205, "freq" : 1, "positions" : [ 8 ] + }, { + "docId" : 207, + "freq" : 1, + "positions" : [ 9 ] } ], "fokkink" : [ { "docId" : 91, @@ -1042,6 +1096,10 @@ "docId" : 79, "freq" : 1, "positions" : [ 6 ] + }, { + "docId" : 211, + "freq" : 1, + "positions" : [ 8 ] } ], "g" : [ { "docId" : 15, @@ -1065,11 +1123,27 @@ "docId" : 196, "freq" : 1, "positions" : [ 7 ] + }, { + "docId" : 207, + "freq" : 1, + "positions" : [ 12 ] } ], "i" : [ { "docId" : 88, "freq" : 1, "positions" : [ 3 ] + }, { + "docId" : 208, + "freq" : 2, + "positions" : [ 22, 62 ] + }, { + "docId" : 209, + "freq" : 1, + "positions" : [ 5 ] + }, { + "docId" : 210, + "freq" : 1, + "positions" : [ 39 ] } ], "j" : [ { "docId" : 101, @@ -1129,6 +1203,10 @@ "docId" : 201, "freq" : 1, "positions" : [ 12 ] + }, { + "docId" : 207, + "freq" : 1, + "positions" : [ 15 ] } ], "m" : [ { "docId" : 22, @@ -1309,6 +1387,15 @@ "freq" : 1, "positions" : [ 20 ] } ], + "o" : [ { + "docId" : 208, + "freq" : 2, + "positions" : [ 23, 63 ] + }, { + "docId" : 210, + "freq" : 1, + "positions" : [ 40 ] + } ], "p" : [ { "docId" : 16, "freq" : 1, @@ -1558,6 +1645,18 @@ "docId" : 206, "freq" : 1, "positions" : [ 7 ] + }, { + "docId" : 207, + "freq" : 1, + "positions" : [ 33 ] + }, { + "docId" : 209, + "freq" : 1, + "positions" : [ 12 ] + }, { + "docId" : 210, + "freq" : 2, + "positions" : [ 6, 24 ] } ], "materi" : [ { "docId" : 165, @@ -1662,6 +1761,10 @@ "docId" : 172, "freq" : 1, "positions" : [ 5 ] + }, { + "docId" : 211, + "freq" : 1, + "positions" : [ 10 ] } ], "t" : [ { "docId" : 34, @@ -1723,6 +1826,11 @@ "freq" : 1, "positions" : [ 5 ] } ], + "y" : [ { + "docId" : 210, + "freq" : 1, + "positions" : [ 10 ] + } ], "novel" : [ { "docId" : 39, "freq" : 1, @@ -2318,6 +2426,14 @@ "docId" : 202, "freq" : 1, "positions" : [ 6 ] + }, { + "docId" : 208, + "freq" : 1, + "positions" : [ 37 ] + }, { + "docId" : 210, + "freq" : 1, + "positions" : [ 53 ] } ], "grokk" : [ { "docId" : 13, @@ -2387,6 +2503,11 @@ "freq" : 1, "positions" : [ 4 ] } ], + "transact" : [ { + "docId" : 211, + "freq" : 2, + "positions" : [ 35, 73 ] + } ], "forster" : [ { "docId" : 159, "freq" : 1, @@ -2690,6 +2811,10 @@ "docId" : 126, "freq" : 2, "positions" : [ 21, 25 ] + }, { + "docId" : 208, + "freq" : 2, + "positions" : [ 6, 28 ] } ], "rosenstock" : [ { "docId" : 132, @@ -2886,6 +3011,14 @@ "docId" : 199, "freq" : 1, "positions" : [ 24 ] + }, { + "docId" : 207, + "freq" : 1, + "positions" : [ 28 ] + }, { + "docId" : 210, + "freq" : 1, + "positions" : [ 52 ] } ], "jenif" : [ { "docId" : 48, @@ -2906,6 +3039,10 @@ "docId" : 20, "freq" : 2, "positions" : [ 11, 21 ] + }, { + "docId" : 209, + "freq" : 2, + "positions" : [ 18, 30 ] } ], "combinatori" : [ { "docId" : 181, @@ -3026,6 +3163,11 @@ "freq" : 1, "positions" : [ 0 ] } ], + "number" : [ { + "docId" : 210, + "freq" : 1, + "positions" : [ 32 ] + } ], "chollet" : [ { "docId" : 164, "freq" : 1, @@ -3228,6 +3370,11 @@ "freq" : 1, "positions" : [ 9 ] } ], + "6th" : [ { + "docId" : 211, + "freq" : 1, + "positions" : [ 3 ] + } ], "idiomat" : [ { "docId" : 69, "freq" : 1, @@ -3401,6 +3548,18 @@ "docId" : 178, "freq" : 3, "positions" : [ 3, 13, 17 ] + }, { + "docId" : 208, + "freq" : 2, + "positions" : [ 24, 64 ] + }, { + "docId" : 210, + "freq" : 1, + "positions" : [ 29 ] + }, { + "docId" : 211, + "freq" : 3, + "positions" : [ 1, 21, 67 ] } ], "orchestr" : [ { "docId" : 129, @@ -3612,6 +3771,11 @@ "freq" : 1, "positions" : [ 3 ] } ], + "ytha" : [ { + "docId" : 210, + "freq" : 1, + "positions" : [ 9 ] + } ], "littl" : [ { "docId" : 97, "freq" : 1, @@ -3626,6 +3790,11 @@ "freq" : 3, "positions" : [ 2, 12, 20 ] } ], + "charact" : [ { + "docId" : 210, + "freq" : 1, + "positions" : [ 34 ] + } ], "koller" : [ { "docId" : 197, "freq" : 1, @@ -3723,6 +3892,14 @@ "docId" : 200, "freq" : 1, "positions" : [ 22 ] + }, { + "docId" : 208, + "freq" : 1, + "positions" : [ 38 ] + }, { + "docId" : 210, + "freq" : 1, + "positions" : [ 54 ] } ], "constraint" : [ { "docId" : 40, @@ -4823,6 +5000,26 @@ "docId" : 205, "freq" : 1, "positions" : [ 19 ] + }, { + "docId" : 207, + "freq" : 4, + "positions" : [ 4, 25, 32, 40 ] + }, { + "docId" : 208, + "freq" : 6, + "positions" : [ 2, 15, 27, 36, 41, 46 ] + }, { + "docId" : 209, + "freq" : 1, + "positions" : [ 23 ] + }, { + "docId" : 210, + "freq" : 6, + "positions" : [ 3, 33, 38, 46, 49, 55 ] + }, { + "docId" : 211, + "freq" : 6, + "positions" : [ 14, 33, 39, 45, 53, 59 ] } ], "design" : [ { "docId" : 1, @@ -5008,6 +5205,14 @@ "docId" : 188, "freq" : 1, "positions" : [ 14 ] + }, { + "docId" : 208, + "freq" : 3, + "positions" : [ 4, 19, 58 ] + }, { + "docId" : 211, + "freq" : 1, + "positions" : [ 50 ] } ], "predict" : [ { "docId" : 195, @@ -5181,6 +5386,11 @@ "freq" : 1, "positions" : [ 8 ] } ], + "ninth" : [ { + "docId" : 207, + "freq" : 1, + "positions" : [ 6 ] + } ], "parson" : [ { "docId" : 108, "freq" : 1, @@ -5411,6 +5621,22 @@ "docId" : 206, "freq" : 1, "positions" : [ 11 ] + }, { + "docId" : 207, + "freq" : 1, + "positions" : [ 44 ] + }, { + "docId" : 209, + "freq" : 1, + "positions" : [ 27 ] + }, { + "docId" : 210, + "freq" : 1, + "positions" : [ 59 ] + }, { + "docId" : 211, + "freq" : 1, + "positions" : [ 64 ] } ], "prep" : [ { "docId" : 76, @@ -5516,6 +5742,15 @@ "freq" : 2, "positions" : [ 5, 16 ] } ], + "undergradu" : [ { + "docId" : 207, + "freq" : 1, + "positions" : [ 38 ] + }, { + "docId" : 211, + "freq" : 1, + "positions" : [ 52 ] + } ], "jay" : [ { "docId" : 5, "freq" : 1, @@ -5530,6 +5765,11 @@ "freq" : 1, "positions" : [ 8 ] } ], + "processor" : [ { + "docId" : 208, + "freq" : 2, + "positions" : [ 18, 57 ] + } ], "evolv" : [ { "docId" : 102, "freq" : 1, @@ -5601,6 +5841,10 @@ "docId" : 162, "freq" : 4, "positions" : [ 2, 12, 17, 19 ] + }, { + "docId" : 211, + "freq" : 6, + "positions" : [ 0, 19, 29, 44, 65, 66 ] } ], "alex" : [ { "docId" : 70, @@ -5705,6 +5949,10 @@ "docId" : 183, "freq" : 1, "positions" : [ 17 ] + }, { + "docId" : 208, + "freq" : 3, + "positions" : [ 3, 16, 54 ] } ], "vanderkam" : [ { "docId" : 157, @@ -5758,6 +6006,11 @@ "freq" : 1, "positions" : [ 13 ] } ], + "theoret" : [ { + "docId" : 208, + "freq" : 1, + "positions" : [ 34 ] + } ], "tradeoff" : [ { "docId" : 91, "freq" : 1, @@ -5777,6 +6030,11 @@ "freq" : 1, "positions" : [ 5 ] } ], + "marut" : [ { + "docId" : 210, + "freq" : 1, + "positions" : [ 13 ] + } ], "kohno" : [ { "docId" : 46, "freq" : 1, @@ -5847,6 +6105,10 @@ "docId" : 197, "freq" : 3, "positions" : [ 1, 11, 21 ] + }, { + "docId" : 210, + "freq" : 1, + "positions" : [ 45 ] } ], "popular" : [ { "docId" : 77, @@ -5953,6 +6215,11 @@ "freq" : 1, "positions" : [ 3 ] } ], + "such" : [ { + "docId" : 211, + "freq" : 1, + "positions" : [ 26 ] + } ], "wilson" : [ { "docId" : 81, "freq" : 1, @@ -6052,6 +6319,10 @@ "docId" : 125, "freq" : 1, "positions" : [ 2 ] + }, { + "docId" : 210, + "freq" : 1, + "positions" : [ 12 ] } ], "daphn" : [ { "docId" : 197, @@ -6164,6 +6435,10 @@ "docId" : 193, "freq" : 1, "positions" : [ 9 ] + }, { + "docId" : 208, + "freq" : 1, + "positions" : [ 30 ] } ], "polish" : [ { "docId" : 50, @@ -6202,6 +6477,11 @@ "freq" : 1, "positions" : [ 18 ] } ], + "cohen" : [ { + "docId" : 209, + "freq" : 1, + "positions" : [ 7 ] + } ], "definit" : [ { "docId" : 66, "freq" : 1, @@ -6534,6 +6814,10 @@ "docId" : 53, "freq" : 1, "positions" : [ 4 ] + }, { + "docId" : 207, + "freq" : 1, + "positions" : [ 5 ] } ], "book" : [ { "docId" : 17, @@ -6608,6 +6892,10 @@ "docId" : 200, "freq" : 1, "positions" : [ 16 ] + }, { + "docId" : 211, + "freq" : 2, + "positions" : [ 2, 25 ] } ], "erlang" : [ { "docId" : 80, @@ -6686,6 +6974,27 @@ "docId" : 205, "freq" : 1, "positions" : [ 3 ] + }, { + "docId" : 208, + "freq" : 6, + "positions" : [ 0, 13, 44, 48, 51, 53 ] + }, { + "docId" : 209, + "freq" : 7, + "positions" : [ 2, 16, 24, 25, 28, 35, 36 ] + }, { + "docId" : 210, + "freq" : 2, + "positions" : [ 57, 66 ] + }, { + "docId" : 211, + "freq" : 2, + "positions" : [ 57, 62 ] + } ], + "avi" : [ { + "docId" : 211, + "freq" : 1, + "positions" : [ 5 ] } ], "introduct" : [ { "docId" : 1, @@ -6823,6 +7132,10 @@ "docId" : 200, "freq" : 1, "positions" : [ 3 ] + }, { + "docId" : 209, + "freq" : 1, + "positions" : [ 0 ] } ], "factor" : [ { "docId" : 16, @@ -6908,6 +7221,10 @@ "docId" : 1, "freq" : 1, "positions" : [ 9 ] + }, { + "docId" : 207, + "freq" : 1, + "positions" : [ 8 ] } ], "deliveri" : [ { "docId" : 32, @@ -6999,6 +7316,11 @@ "freq" : 1, "positions" : [ 3 ] } ], + "microprocessor" : [ { + "docId" : 210, + "freq" : 1, + "positions" : [ 65 ] + } ], "container" : [ { "docId" : 128, "freq" : 1, @@ -7248,6 +7570,10 @@ "docId" : 205, "freq" : 1, "positions" : [ 4 ] + }, { + "docId" : 210, + "freq" : 4, + "positions" : [ 2, 22, 48, 72 ] } ], "when" : [ { "docId" : 31, @@ -7378,6 +7704,10 @@ "docId" : 171, "freq" : 1, "positions" : [ 13 ] + }, { + "docId" : 207, + "freq" : 1, + "positions" : [ 29 ] } ], "multipl" : [ { "docId" : 2, @@ -7589,6 +7919,11 @@ "freq" : 1, "positions" : [ 5 ] } ], + "sudarshan" : [ { + "docId" : 211, + "freq" : 1, + "positions" : [ 11 ] + } ], "aditya" : [ { "docId" : 13, "freq" : 1, @@ -7650,6 +7985,14 @@ "docId" : 126, "freq" : 1, "positions" : [ 17 ] + }, { + "docId" : 208, + "freq" : 2, + "positions" : [ 20, 59 ] + }, { + "docId" : 210, + "freq" : 1, + "positions" : [ 37 ] } ], "style" : [ { "docId" : 64, @@ -7671,6 +8014,10 @@ "docId" : 184, "freq" : 1, "positions" : [ 16 ] + }, { + "docId" : 210, + "freq" : 1, + "positions" : [ 17 ] } ], "explor" : [ { "docId" : 90, @@ -7799,6 +8146,14 @@ "docId" : 195, "freq" : 2, "positions" : [ 13, 23 ] + }, { + "docId" : 207, + "freq" : 4, + "positions" : [ 3, 31, 39, 47 ] + }, { + "docId" : 208, + "freq" : 1, + "positions" : [ 47 ] } ], "nussbaum" : [ { "docId" : 154, @@ -8050,6 +8405,11 @@ "freq" : 2, "positions" : [ 9, 20 ] } ], + "low" : [ { + "docId" : 210, + "freq" : 1, + "positions" : [ 70 ] + } ], "web" : [ { "docId" : 49, "freq" : 2, @@ -8144,6 +8504,11 @@ "freq" : 1, "positions" : [ 4 ] } ], + "tutori" : [ { + "docId" : 210, + "freq" : 1, + "positions" : [ 16 ] + } ], "bori" : [ { "docId" : 158, "freq" : 1, @@ -8229,6 +8594,14 @@ "docId" : 181, "freq" : 1, "positions" : [ 10 ] + }, { + "docId" : 210, + "freq" : 1, + "positions" : [ 50 ] + }, { + "docId" : 211, + "freq" : 1, + "positions" : [ 40 ] } ], "sipser" : [ { "docId" : 20, @@ -8316,6 +8689,11 @@ "freq" : 2, "positions" : [ 13, 24 ] } ], + "interrupt" : [ { + "docId" : 210, + "freq" : 1, + "positions" : [ 44 ] + } ], "hsuan" : [ { "docId" : 163, "freq" : 1, @@ -8415,6 +8793,11 @@ "freq" : 1, "positions" : [ 10 ] } ], + "both" : [ { + "docId" : 208, + "freq" : 1, + "positions" : [ 33 ] + } ], "market" : [ { "docId" : 203, "freq" : 1, @@ -8424,6 +8807,10 @@ "docId" : 202, "freq" : 1, "positions" : [ 16 ] + }, { + "docId" : 209, + "freq" : 2, + "positions" : [ 19, 31 ] } ], "most" : [ { "docId" : 146, @@ -8512,6 +8899,14 @@ "docId" : 181, "freq" : 1, "positions" : [ 11 ] + }, { + "docId" : 210, + "freq" : 1, + "positions" : [ 51 ] + }, { + "docId" : 211, + "freq" : 1, + "positions" : [ 41 ] } ], "comptia" : [ { "docId" : 45, @@ -8585,6 +8980,26 @@ "docId" : 201, "freq" : 2, "positions" : [ 4, 35 ] + }, { + "docId" : 207, + "freq" : 3, + "positions" : [ 34, 41, 48 ] + }, { + "docId" : 208, + "freq" : 2, + "positions" : [ 45, 49 ] + }, { + "docId" : 209, + "freq" : 2, + "positions" : [ 26, 37 ] + }, { + "docId" : 210, + "freq" : 1, + "positions" : [ 58 ] + }, { + "docId" : 211, + "freq" : 2, + "positions" : [ 58, 63 ] } ], "joe" : [ { "docId" : 80, @@ -8834,6 +9249,10 @@ "docId" : 196, "freq" : 1, "positions" : [ 3 ] + }, { + "docId" : 211, + "freq" : 2, + "positions" : [ 32, 72 ] } ], "debug" : [ { "docId" : 6, @@ -9239,6 +9658,14 @@ "docId" : 163, "freq" : 1, "positions" : [ 5 ] + }, { + "docId" : 207, + "freq" : 1, + "positions" : [ 42 ] + }, { + "docId" : 211, + "freq" : 1, + "positions" : [ 55 ] } ], "an" : [ { "docId" : 13, @@ -9262,6 +9689,11 @@ "freq" : 1, "positions" : [ 6 ] } ], + "as" : [ { + "docId" : 211, + "freq" : 1, + "positions" : [ 27 ] + } ], "at" : [ { "docId" : 114, "freq" : 1, @@ -9312,6 +9744,11 @@ "freq" : 3, "positions" : [ 3, 15, 19 ] } ], + "hierarchi" : [ { + "docId" : 208, + "freq" : 2, + "positions" : [ 21, 60 ] + } ], "abbott" : [ { "docId" : 59, "freq" : 1, @@ -9406,6 +9843,14 @@ "docId" : 185, "freq" : 1, "positions" : [ 18 ] + }, { + "docId" : 208, + "freq" : 3, + "positions" : [ 1, 14, 52 ] + }, { + "docId" : 210, + "freq" : 3, + "positions" : [ 4, 41, 67 ] } ], "treatment" : [ { "docId" : 12, @@ -9558,6 +10003,10 @@ "docId" : 118, "freq" : 4, "positions" : [ 0, 18, 21, 29 ] + }, { + "docId" : 211, + "freq" : 1, + "positions" : [ 47 ] } ], "cd" : [ { "docId" : 32, @@ -9599,6 +10048,14 @@ "docId" : 1, "freq" : 1, "positions" : [ 23 ] + }, { + "docId" : 208, + "freq" : 1, + "positions" : [ 26 ] + }, { + "docId" : 210, + "freq" : 1, + "positions" : [ 36 ] } ], "richardson" : [ { "docId" : 107, @@ -9716,6 +10173,11 @@ "freq" : 5, "positions" : [ 3, 8, 19, 20, 25 ] } ], + "represent" : [ { + "docId" : 210, + "freq" : 1, + "positions" : [ 30 ] + } ], "hohp" : [ { "docId" : 176, "freq" : 1, @@ -9883,6 +10345,11 @@ "freq" : 1, "positions" : [ 2 ] } ], + "korth" : [ { + "docId" : 211, + "freq" : 1, + "positions" : [ 9 ] + } ], "joel" : [ { "docId" : 52, "freq" : 1, @@ -10071,6 +10538,11 @@ "freq" : 1, "positions" : [ 18 ] } ], + "walpol" : [ { + "docId" : 207, + "freq" : 1, + "positions" : [ 10 ] + } ], "vision" : [ { "docId" : 165, "freq" : 2, @@ -10511,11 +10983,27 @@ "docId" : 204, "freq" : 1, "positions" : [ 17 ] + }, { + "docId" : 207, + "freq" : 2, + "positions" : [ 2, 37 ] + }, { + "docId" : 208, + "freq" : 2, + "positions" : [ 5, 39 ] + }, { + "docId" : 211, + "freq" : 1, + "positions" : [ 51 ] } ], "silberschatz" : [ { "docId" : 18, "freq" : 1, "positions" : [ 4 ] + }, { + "docId" : 211, + "freq" : 1, + "positions" : [ 6 ] } ], "warehous" : [ { "docId" : 161, @@ -10575,6 +11063,10 @@ "docId" : 201, "freq" : 1, "positions" : [ 11 ] + }, { + "docId" : 211, + "freq" : 1, + "positions" : [ 7 ] } ], "collabor" : [ { "docId" : 113, @@ -10606,6 +11098,10 @@ "docId" : 113, "freq" : 1, "positions" : [ 6 ] + }, { + "docId" : 207, + "freq" : 1, + "positions" : [ 11 ] } ], "monitor" : [ { "docId" : 33, @@ -10688,6 +11184,10 @@ "docId" : 130, "freq" : 2, "positions" : [ 12, 18 ] + }, { + "docId" : 211, + "freq" : 3, + "positions" : [ 28, 60, 69 ] } ], "idiom" : [ { "docId" : 27, @@ -10758,6 +11258,18 @@ "docId" : 179, "freq" : 1, "positions" : [ 10 ] + }, { + "docId" : 208, + "freq" : 1, + "positions" : [ 35 ] + }, { + "docId" : 209, + "freq" : 1, + "positions" : [ 9 ] + }, { + "docId" : 211, + "freq" : 1, + "positions" : [ 13 ] } ], "big" : [ { "docId" : 118, @@ -10818,6 +11330,11 @@ "freq" : 1, "positions" : [ 18 ] } ], + "bio" : [ { + "docId" : 210, + "freq" : 1, + "positions" : [ 42 ] + } ], "construct" : [ { "docId" : 6, "freq" : 2, @@ -10846,6 +11363,15 @@ "freq" : 2, "positions" : [ 0, 19 ] } ], + "assembl" : [ { + "docId" : 208, + "freq" : 2, + "positions" : [ 50, 61 ] + }, { + "docId" : 210, + "freq" : 3, + "positions" : [ 0, 20, 60 ] + } ], "carol" : [ { "docId" : 69, "freq" : 1, @@ -10869,6 +11395,11 @@ "freq" : 1, "positions" : [ 16 ] } ], + "william" : [ { + "docId" : 208, + "freq" : 2, + "positions" : [ 7, 55 ] + } ], "lapan" : [ { "docId" : 169, "freq" : 1, @@ -10941,6 +11472,10 @@ "docId" : 197, "freq" : 3, "positions" : [ 2, 12, 22 ] + }, { + "docId" : 211, + "freq" : 1, + "positions" : [ 70 ] } ], "text" : [ { "docId" : 17, @@ -11257,6 +11792,18 @@ "docId" : 197, "freq" : 1, "positions" : [ 7 ] + }, { + "docId" : 207, + "freq" : 1, + "positions" : [ 30 ] + }, { + "docId" : 208, + "freq" : 1, + "positions" : [ 43 ] + }, { + "docId" : 211, + "freq" : 1, + "positions" : [ 56 ] } ], "ocaml" : [ { "docId" : 98, @@ -11297,6 +11844,16 @@ "freq" : 1, "positions" : [ 20 ] } ], + "is" : [ { + "docId" : 211, + "freq" : 1, + "positions" : [ 49 ] + } ], + "stall" : [ { + "docId" : 208, + "freq" : 2, + "positions" : [ 8, 56 ] + } ], "it" : [ { "docId" : 34, "freq" : 1, @@ -11317,6 +11874,14 @@ "docId" : 201, "freq" : 1, "positions" : [ 1 ] + }, { + "docId" : 208, + "freq" : 1, + "positions" : [ 31 ] + }, { + "docId" : 211, + "freq" : 1, + "positions" : [ 48 ] } ], "manag" : [ { "docId" : 16, @@ -11334,6 +11899,10 @@ "docId" : 173, "freq" : 5, "positions" : [ 1, 8, 11, 15, 18 ] + }, { + "docId" : 211, + "freq" : 2, + "positions" : [ 20, 74 ] } ], "surviv" : [ { "docId" : 34, @@ -11344,6 +11913,10 @@ "docId" : 150, "freq" : 1, "positions" : [ 4 ] + }, { + "docId" : 211, + "freq" : 1, + "positions" : [ 61 ] } ], "julien" : [ { "docId" : 120, @@ -11488,12 +12061,25 @@ "docId" : 65, "freq" : 1, "positions" : [ 15 ] + }, { + "docId" : 208, + "freq" : 1, + "positions" : [ 29 ] + }, { + "docId" : 211, + "freq" : 1, + "positions" : [ 34 ] } ], "jr" : [ { "docId" : 16, "freq" : 1, "positions" : [ 7 ] } ], + "dos" : [ { + "docId" : 210, + "freq" : 1, + "positions" : [ 43 ] + } ], "bjarnason" : [ { "docId" : 99, "freq" : 1, @@ -11715,6 +12301,10 @@ "docId" : 188, "freq" : 1, "positions" : [ 21 ] + }, { + "docId" : 210, + "freq" : 1, + "positions" : [ 56 ] } ], "discret" : [ { "docId" : 79, @@ -11744,6 +12334,10 @@ "docId" : 86, "freq" : 3, "positions" : [ 2, 12, 23 ] + }, { + "docId" : 207, + "freq" : 3, + "positions" : [ 0, 23, 45 ] } ], "hogan" : [ { "docId" : 151, @@ -11871,6 +12465,14 @@ "docId" : 201, "freq" : 1, "positions" : [ 24 ] + }, { + "docId" : 207, + "freq" : 1, + "positions" : [ 36 ] + }, { + "docId" : 211, + "freq" : 1, + "positions" : [ 16 ] } ], "ponelat" : [ { "docId" : 132, @@ -11915,6 +12517,10 @@ "docId" : 125, "freq" : 1, "positions" : [ 12 ] + }, { + "docId" : 211, + "freq" : 1, + "positions" : [ 22 ] } ], "high" : [ { "docId" : 65, @@ -12074,6 +12680,22 @@ "docId" : 162, "freq" : 1, "positions" : [ 10 ] + }, { + "docId" : 207, + "freq" : 2, + "positions" : [ 21, 50 ] + }, { + "docId" : 208, + "freq" : 1, + "positions" : [ 11 ] + }, { + "docId" : 209, + "freq" : 1, + "positions" : [ 10 ] + }, { + "docId" : 211, + "freq" : 1, + "positions" : [ 17 ] } ], "workflow" : [ { "docId" : 36, @@ -12104,6 +12726,10 @@ "docId" : 182, "freq" : 1, "positions" : [ 16 ] + }, { + "docId" : 210, + "freq" : 1, + "positions" : [ 71 ] } ], "norvig" : [ { "docId" : 9, @@ -12168,6 +12794,10 @@ "docId" : 97, "freq" : 1, "positions" : [ 3 ] + }, { + "docId" : 209, + "freq" : 1, + "positions" : [ 4 ] } ], "servic" : [ { "docId" : 127, @@ -12346,12 +12976,21 @@ "docId" : 193, "freq" : 2, "positions" : [ 8, 20 ] + }, { + "docId" : 210, + "freq" : 1, + "positions" : [ 69 ] } ], "bhargava" : [ { "docId" : 13, "freq" : 1, "positions" : [ 6 ] } ], + "student" : [ { + "docId" : 208, + "freq" : 1, + "positions" : [ 40 ] + } ], "kernighan" : [ { "docId" : 22, "freq" : 1, @@ -12505,6 +13144,10 @@ "docId" : 162, "freq" : 1, "positions" : [ 18 ] + }, { + "docId" : 211, + "freq" : 2, + "positions" : [ 30, 68 ] } ], "head" : [ { "docId" : 85, @@ -12800,6 +13443,14 @@ "docId" : 205, "freq" : 2, "positions" : [ 2, 17 ] + }, { + "docId" : 209, + "freq" : 1, + "positions" : [ 15 ] + }, { + "docId" : 210, + "freq" : 2, + "positions" : [ 5, 31 ] } ], "oi" : [ { "docId" : 164, @@ -13018,6 +13669,23 @@ "docId" : 203, "freq" : 1, "positions" : [ 11 ] + }, { + "docId" : 208, + "freq" : 1, + "positions" : [ 12 ] + }, { + "docId" : 210, + "freq" : 1, + "positions" : [ 23 ] + }, { + "docId" : 211, + "freq" : 1, + "positions" : [ 18 ] + } ], + "keyboard" : [ { + "docId" : 210, + "freq" : 1, + "positions" : [ 47 ] } ], "op" : [ { "docId" : 33, @@ -13100,6 +13768,10 @@ "docId" : 187, "freq" : 2, "positions" : [ 11, 21 ] + }, { + "docId" : 211, + "freq" : 1, + "positions" : [ 37 ] } ], "thread" : [ { "docId" : 89, @@ -13192,12 +13864,29 @@ "docId" : 196, "freq" : 1, "positions" : [ 9 ] + }, { + "docId" : 207, + "freq" : 1, + "positions" : [ 20 ] + }, { + "docId" : 208, + "freq" : 1, + "positions" : [ 10 ] + }, { + "docId" : 210, + "freq" : 1, + "positions" : [ 15 ] } ], "phoenix" : [ { "docId" : 39, "freq" : 1, "positions" : [ 1 ] } ], + "pc" : [ { + "docId" : 210, + "freq" : 3, + "positions" : [ 8, 26, 63 ] + } ], "scalabl" : [ { "docId" : 12, "freq" : 2, @@ -13349,6 +14038,26 @@ "docId" : 204, "freq" : 1, "positions" : [ 12 ] + }, { + "docId" : 207, + "freq" : 1, + "positions" : [ 22 ] + }, { + "docId" : 208, + "freq" : 1, + "positions" : [ 17 ] + }, { + "docId" : 209, + "freq" : 1, + "positions" : [ 11 ] + }, { + "docId" : 210, + "freq" : 1, + "positions" : [ 27 ] + }, { + "docId" : 211, + "freq" : 1, + "positions" : [ 23 ] } ], "bank" : [ { "docId" : 70, @@ -13402,6 +14111,10 @@ "docId" : 138, "freq" : 4, "positions" : [ 0, 9, 15, 18 ] + }, { + "docId" : 211, + "freq" : 1, + "positions" : [ 36 ] } ], "goetz" : [ { "docId" : 89, @@ -13463,6 +14176,14 @@ "docId" : 186, "freq" : 1, "positions" : [ 5 ] + }, { + "docId" : 207, + "freq" : 1, + "positions" : [ 7 ] + }, { + "docId" : 211, + "freq" : 1, + "positions" : [ 4 ] } ], "grigorik" : [ { "docId" : 65, @@ -13489,6 +14210,11 @@ "freq" : 1, "positions" : [ 14 ] } ], + "includ" : [ { + "docId" : 209, + "freq" : 1, + "positions" : [ 17 ] + } ], "badgett" : [ { "docId" : 190, "freq" : 1, @@ -13716,6 +14442,14 @@ "docId" : 196, "freq" : 3, "positions" : [ 2, 16, 23 ] + }, { + "docId" : 209, + "freq" : 2, + "positions" : [ 20, 32 ] + }, { + "docId" : 210, + "freq" : 3, + "positions" : [ 1, 21, 61 ] } ], "into" : [ { "docId" : 27, @@ -13768,6 +14502,10 @@ "docId" : 53, "freq" : 1, "positions" : [ 11 ] + }, { + "docId" : 207, + "freq" : 1, + "positions" : [ 17 ] } ], "emphas" : [ { "docId" : 135, @@ -13846,6 +14584,11 @@ "freq" : 3, "positions" : [ 1, 15, 24 ] } ], + "ibm" : [ { + "docId" : 210, + "freq" : 3, + "positions" : [ 7, 25, 62 ] + } ], "friedman" : [ { "docId" : 54, "freq" : 1, @@ -14232,6 +14975,14 @@ "docId" : 200, "freq" : 1, "positions" : [ 4 ] + }, { + "docId" : 209, + "freq" : 1, + "positions" : [ 1 ] + }, { + "docId" : 210, + "freq" : 1, + "positions" : [ 19 ] } ], "mani" : [ { "docId" : 3, @@ -14610,6 +15361,10 @@ "docId" : 187, "freq" : 1, "positions" : [ 7 ] + }, { + "docId" : 210, + "freq" : 1, + "positions" : [ 18 ] } ], "mler" : [ { "docId" : 98, @@ -14765,6 +15520,10 @@ "docId" : 130, "freq" : 2, "positions" : [ 8, 17 ] + }, { + "docId" : 211, + "freq" : 2, + "positions" : [ 31, 71 ] } ], "viega" : [ { "docId" : 193, @@ -14786,6 +15545,15 @@ "freq" : 1, "positions" : [ 14 ] } ], + "wide" : [ { + "docId" : 207, + "freq" : 1, + "positions" : [ 35 ] + }, { + "docId" : 211, + "freq" : 1, + "positions" : [ 15 ] + } ], "guido" : [ { "docId" : 36, "freq" : 1, @@ -14861,6 +15629,10 @@ "docId" : 178, "freq" : 4, "positions" : [ 2, 12, 16, 20 ] + }, { + "docId" : 211, + "freq" : 1, + "positions" : [ 43 ] } ], "fowler" : [ { "docId" : 7, @@ -14887,6 +15659,11 @@ "freq" : 1, "positions" : [ 4 ] } ], + "graduat" : [ { + "docId" : 211, + "freq" : 1, + "positions" : [ 54 ] + } ], "hightow" : [ { "docId" : 129, "freq" : 1, @@ -14939,6 +15716,11 @@ "freq" : 1, "positions" : [ 7 ] } ], + "microcomput" : [ { + "docId" : 210, + "freq" : 1, + "positions" : [ 28 ] + } ], "mark" : [ { "docId" : 41, "freq" : 1, @@ -15016,6 +15798,11 @@ "freq" : 1, "positions" : [ 5 ] } ], + "ye" : [ { + "docId" : 207, + "freq" : 1, + "positions" : [ 18 ] + } ], "type" : [ { "docId" : 158, "freq" : 2, @@ -15067,6 +15854,14 @@ "docId" : 163, "freq" : 2, "positions" : [ 21, 29 ] + }, { + "docId" : 207, + "freq" : 1, + "positions" : [ 24 ] + }, { + "docId" : 209, + "freq" : 3, + "positions" : [ 3, 14, 29 ] } ], "chiusano" : [ { "docId" : 99, @@ -15261,6 +16056,11 @@ "freq" : 2, "positions" : [ 20, 30 ] } ], + "yu" : [ { + "docId" : 210, + "freq" : 1, + "positions" : [ 11 ] + } ], "97" : [ { "docId" : 109, "freq" : 1, @@ -15287,6 +16087,10 @@ "docId" : 120, "freq" : 1, "positions" : [ 9 ] + }, { + "docId" : 208, + "freq" : 1, + "positions" : [ 42 ] } ], "goal" : [ { "docId" : 40, @@ -15313,6 +16117,10 @@ "docId" : 205, "freq" : 1, "positions" : [ 20 ] + }, { + "docId" : 207, + "freq" : 1, + "positions" : [ 27 ] } ], "work" : [ { "docId" : 11, @@ -15567,6 +16375,10 @@ "docId" : 199, "freq" : 4, "positions" : [ 3, 22, 27, 29 ] + }, { + "docId" : 207, + "freq" : 3, + "positions" : [ 1, 26, 46 ] } ], "barber" : [ { "docId" : 198, @@ -15586,6 +16398,10 @@ "docId" : 190, "freq" : 1, "positions" : [ 7 ] + }, { + "docId" : 207, + "freq" : 2, + "positions" : [ 13, 16 ] } ], "abstract" : [ { "docId" : 5, @@ -15688,6 +16504,11 @@ "freq" : 1, "positions" : [ 14 ] } ], + "sharon" : [ { + "docId" : 207, + "freq" : 1, + "positions" : [ 14 ] + } ], "panda" : [ { "docId" : 155, "freq" : 2, @@ -15770,6 +16591,10 @@ "docId" : 195, "freq" : 1, "positions" : [ 17 ] + }, { + "docId" : 211, + "freq" : 1, + "positions" : [ 46 ] } ], "klabnik" : [ { "docId" : 69, @@ -15917,6 +16742,10 @@ "docId" : 79, "freq" : 1, "positions" : [ 19 ] + }, { + "docId" : 211, + "freq" : 1, + "positions" : [ 42 ] } ], "yablonski" : [ { "docId" : 50, @@ -15943,6 +16772,10 @@ "docId" : 183, "freq" : 1, "positions" : [ 9 ] + }, { + "docId" : 211, + "freq" : 1, + "positions" : [ 24 ] } ], "safe" : [ { "docId" : 11, @@ -16164,6 +16997,16 @@ "freq" : 1, "positions" : [ 4 ] } ], + "recoveri" : [ { + "docId" : 211, + "freq" : 1, + "positions" : [ 38 ] + } ], + "provid" : [ { + "docId" : 208, + "freq" : 1, + "positions" : [ 32 ] + } ], "tcp" : [ { "docId" : 65, "freq" : 1, @@ -16211,6 +17054,11 @@ "freq" : 1, "positions" : [ 6 ] } ], + "8086" : [ { + "docId" : 210, + "freq" : 1, + "positions" : [ 64 ] + } ], "follow" : [ { "docId" : 90, "freq" : 1, @@ -16308,5350 +17156,5608 @@ }, "tfIdfVectors" : { "1" : { - "rivest" : 2.3138672203691533, - "stein" : 2.3138672203691533, - "code" : 1.0128372247051722, - "data" : 1.0585947152658473, - "analysi" : 1.3596247109298285, - "theori" : 1.3596247109298285, - "cover" : 1.4107772333772097, - "cormen" : 2.012837224705172, - "structur" : 1.6148972160331345, - "and" : 0.0514161306387239, - "design" : 0.6511093886875794, - "introduct" : 0.7823883033268982, - "of" : 0.5656791933629529, - "broad" : 2.012837224705172, - "thoma" : 1.5357159699855099, - "pseudo" : 1.5357159699855099, - "algorithm" : 1.617656253960265, - "a" : 0.5656791933629529, - "textbook" : 1.5357159699855099, - "set" : 2.3138672203691533, - "e" : 1.4687691803548966, - "leiserson" : 2.3138672203691533, - "h" : 2.012837224705172, - "l" : 1.711807229041191, - "clifford" : 2.3138672203691533, - "ronald" : 2.3138672203691533, - "comprehens" : 1.0351136194163244, - "charl" : 2.012837224705172, - "to" : 0.4273764951966715 + "rivest" : 2.3242824552976926, + "stein" : 2.3242824552976926, + "code" : 1.0020631605637733, + "data" : 1.0455288543448638, + "analysi" : 1.3700399458583679, + "theori" : 1.2828897701394677, + "cover" : 1.210339102990856, + "cormen" : 2.0232524596337114, + "structur" : 1.6253124509616739, + "and" : 0.05012460603401282, + "design" : 0.6430412179221054, + "introduct" : 0.7802144109474171, + "of" : 0.5608544617347554, + "broad" : 2.0232524596337114, + "thoma" : 1.546131204914049, + "pseudo" : 1.546131204914049, + "algorithm" : 1.635351425691966, + "a" : 0.5389526202869256, + "textbook" : 1.3242824552976926, + "set" : 1.8471612005780302, + "e" : 1.421192468305749, + "leiserson" : 2.3242824552976926, + "h" : 1.8471612005780302, + "l" : 1.6253124509616739, + "clifford" : 2.3242824552976926, + "ronald" : 2.0232524596337114, + "comprehens" : 0.9818597744754864, + "charl" : 1.8471612005780302, + "to" : 0.42665536400725124 }, "2" : { - "profession" : 1.8367459656494909, - "engin" : 0.9521393843515605, - "practic" : 0.46163904552683577, - "career" : 1.4107772333772097, - "product" : 1.4107772333772097, - "hunt" : 1.8367459656494909, - "multipl" : 0.670414543882966, - "for" : 0.43305362808836206, - "best" : 1.1677391846909153, - "advic" : 1.5357159699855099, - "develop" : 1.1097472377132287, - "andrew" : 1.4107772333772097, - "craftsmanship" : 2.3138672203691533, - "the" : 0.557992364696662, - "pragmat" : 1.8367459656494909, - "softwar" : 1.088631600060811, - "and" : 0.06689392822195765, - "david" : 1.3138672203691535, - "philosophi" : 1.711807229041191, - "thoma" : 1.5357159699855099, - "programm" : 1.4107772333772097 + "profession" : 1.7222224639697303, + "engin" : 0.926342446625655, + "practic" : 0.4629058307160776, + "career" : 1.421192468305749, + "product" : 1.421192468305749, + "hunt" : 1.8471612005780302, + "multipl" : 0.6808297788115053, + "for" : 0.42665536400725124, + "best" : 1.1781544196194547, + "advic" : 1.546131204914049, + "develop" : 1.1201624726417678, + "andrew" : 1.421192468305749, + "craftsmanship" : 2.3242824552976926, + "the" : 0.546131204914049, + "pragmat" : 1.8471612005780302, + "softwar" : 1.102182133114728, + "and" : 0.06521361597109047, + "david" : 1.3242824552976926, + "philosophi" : 1.7222224639697303, + "thoma" : 1.546131204914049, + "programm" : 1.421192468305749 }, "3" : { - "engin" : 0.9521393843515605, - "c" : 0.8514692224701973, - "code" : 1.4960833921832846, - "test" : 1.3138672203691535, - "maintain" : 1.4687691803548966, - "pattern" : 0.7823883033268982, - "for" : 0.43305362808836206, - "clean" : 2.389661595724792, - "refactor" : 1.5357159699855099, - "robert" : 1.4107772333772097, - "readabl" : 2.012837224705172, - "with" : 0.6606547065938096, - "java" : 0.9521393843515605, - "softwar" : 0.8367459656494909, - "and" : 0.0514161306387239, - "martin" : 1.2724745352109283, - "exampl" : 0.9521393843515605, - "principl" : 0.9336559786575475, - "mani" : 2.3138672203691533, - "write" : 1.3138672203691535 + "engin" : 0.926342446625655, + "c" : 0.8618844573987365, + "code" : 1.4801687930403113, + "test" : 1.3242824552976926, + "maintain" : 1.479184415283436, + "pattern" : 0.7928035382554376, + "for" : 0.42665536400725124, + "clean" : 2.403212128778709, + "refactor" : 1.546131204914049, + "robert" : 1.421192468305749, + "readabl" : 2.0232524596337114, + "with" : 0.6521845973619752, + "java" : 0.9625546192800998, + "softwar" : 0.8471612005780302, + "and" : 0.05012460603401282, + "martin" : 1.2828897701394677, + "exampl" : 0.926342446625655, + "principl" : 0.926342446625655, + "mani" : 2.3242824552976926, + "write" : 1.3242824552976926 }, "4" : { - "erich" : 2.3138672203691533, - "catalog" : 1.8367459656494909, - "vlissid" : 2.3138672203691533, - "use" : 0.9521393843515605, - "pattern" : 1.1556823922882158, - "their" : 2.3138672203691533, - "johnson" : 2.012837224705172, - "helm" : 2.3138672203691533, - "oop" : 1.8367459656494909, - "java" : 0.9521393843515605, - "softwar" : 1.088631600060811, - "and" : 0.0514161306387239, - "design" : 1.0431163015943785, - "of" : 0.7359655984882071, - "element" : 1.6148972160331345, - "richard" : 1.6148972160331345, - "ralph" : 2.012837224705172, - "c" : 0.8514692224701973, - "orient" : 2.1010297179733644, - "classic" : 1.3596247109298285, - "architectur" : 0.9916479256352342, - "john" : 1.4687691803548966, - "reusabl" : 2.3138672203691533, - "gamma" : 2.3138672203691533, - "object" : 2.2271125517770325 + "erich" : 2.3242824552976926, + "catalog" : 1.8471612005780302, + "vlissid" : 2.3242824552976926, + "use" : 0.926342446625655, + "pattern" : 1.1710669571740597, + "their" : 2.3242824552976926, + "johnson" : 2.0232524596337114, + "helm" : 2.3242824552976926, + "oop" : 1.8471612005780302, + "java" : 0.9625546192800998, + "softwar" : 1.102182133114728, + "and" : 0.05012460603401282, + "design" : 1.0301906080078107, + "of" : 0.7296884779188934, + "element" : 1.6253124509616739, + "richard" : 1.6253124509616739, + "ralph" : 2.0232524596337114, + "c" : 0.8618844573987365, + "orient" : 2.1145802510272813, + "classic" : 1.3700399458583679, + "architectur" : 0.9818597744754864, + "john" : 1.479184415283436, + "reusabl" : 2.3242824552976926, + "gamma" : 2.3242824552976926, + "object" : 2.2406630848309494 }, "5" : { - "recurs" : 2.012837224705172, - "scienc" : 1.5611369448622232, - "gerald" : 2.3138672203691533, - "jay" : 2.012837224705172, - "scheme" : 2.61876160573047, - "paradigm" : 1.6148972160331345, - "sussman" : 3.0104106596839078, - "concept" : 1.2724745352109283, - "harold" : 2.3138672203691533, - "program" : 0.7565144138531231, - "abstract" : 2.61876160573047, - "via" : 2.012837224705172, - "comput" : 1.7724330495602796, - "structur" : 1.6148972160331345, - "abelson" : 2.3138672203691533, - "taught" : 1.8367459656494909, - "and" : 0.0514161306387239, - "interpret" : 3.0104106596839078, - "of" : 0.5656791933629529, - "juli" : 2.3138672203691533, - "foundat" : 1.6555275390280006 + "recurs" : 2.0232524596337114, + "scienc" : 1.3908140108661555, + "gerald" : 2.3242824552976926, + "jay" : 2.0232524596337114, + "scheme" : 2.632312138784387, + "paradigm" : 1.6253124509616739, + "sussman" : 3.0239611927378247, + "concept" : 1.2451012092500677, + "harold" : 2.3242824552976926, + "program" : 0.759697130371374, + "abstract" : 2.632312138784387, + "via" : 2.0232524596337114, + "comput" : 1.6157247620774942, + "structur" : 1.6253124509616739, + "abelson" : 2.3242824552976926, + "taught" : 1.8471612005780302, + "and" : 0.05012460603401282, + "interpret" : 3.0239611927378247, + "of" : 0.5608544617347554, + "juli" : 2.3242824552976926, + "foundat" : 1.5328142394489994 }, "6" : { - "mcconnel" : 2.3138672203691533, - "engin" : 0.9521393843515605, - "practic" : 0.46163904552683577, - "multipl" : 0.670414543882966, - "debug" : 2.012837224705172, - "code" : 1.317731610066489, - "best" : 1.5192637063950825, - "complet" : 2.012837224705172, - "construct" : 2.389661595724792, - "cover" : 1.4107772333772097, - "softwar" : 1.088631600060811, - "and" : 0.0514161306387239, - "design" : 0.6511093886875794, - "steve" : 1.8367459656494909, - "qualiti" : 2.2271125517770325 + "mcconnel" : 2.3242824552976926, + "engin" : 0.926342446625655, + "practic" : 0.4629058307160776, + "multipl" : 0.6808297788115053, + "debug" : 2.0232524596337114, + "code" : 1.3037142294433213, + "best" : 1.5328142394489994, + "complet" : 2.0232524596337114, + "construct" : 2.403212128778709, + "cover" : 1.210339102990856, + "softwar" : 1.102182133114728, + "and" : 0.05012460603401282, + "design" : 0.6430412179221054, + "steve" : 1.8471612005780302, + "qualiti" : 2.2406630848309494 }, "7" : { - "engin" : 0.9521393843515605, - "code" : 1.317731610066489, - "catalog" : 1.8367459656494909, - "maintain" : 1.4687691803548966, - "fowler" : 1.5357159699855099, - "while" : 2.3138672203691533, - "improv" : 2.2271125517770325, - "refactor" : 2.2684387004780198, - "techniqu" : 0.8087172420492474, - "the" : 0.557992364696662, - "exist" : 2.3138672203691533, - "java" : 0.9521393843515605, - "structur" : 1.6148972160331345, - "softwar" : 0.8367459656494909, - "and" : 0.0514161306387239, - "design" : 0.847112845140979, - "martin" : 1.2724745352109283, - "of" : 0.7359655984882071, - "to" : 0.4273764951966715, - "behavior" : 2.012837224705172, - "preserv" : 2.3138672203691533 + "engin" : 0.926342446625655, + "code" : 1.3037142294433213, + "catalog" : 1.8471612005780302, + "maintain" : 1.479184415283436, + "fowler" : 1.546131204914049, + "while" : 2.3242824552976926, + "improv" : 2.2406630848309494, + "refactor" : 2.2838232653638633, + "techniqu" : 0.8191324769777867, + "the" : 0.546131204914049, + "exist" : 2.3242824552976926, + "java" : 0.9625546192800998, + "structur" : 1.6253124509616739, + "softwar" : 0.8471612005780302, + "and" : 0.05012460603401282, + "design" : 0.8366159129649581, + "martin" : 1.2828897701394677, + "of" : 0.7296884779188934, + "to" : 0.42665536400725124, + "behavior" : 2.0232524596337114, + "preserv" : 2.3242824552976926 }, "8" : { - "combinator" : 2.3138672203691533, - "donald" : 1.6148972160331345, - "art" : 1.2724745352109283, - "e" : 1.4687691803548966, - "pascal" : 1.6148972160331345, - "opus" : 2.3138672203691533, - "program" : 0.5814734605461849, - "analysi" : 1.7689125317656766, - "multi" : 2.3138672203691533, - "the" : 0.557992364696662, - "cover" : 1.4107772333772097, - "comput" : 1.1999238680623165, - "knuth" : 1.6148972160331345, - "magnum" : 2.3138672203691533, - "and" : 0.0514161306387239, - "of" : 0.7359655984882071, - "volum" : 1.4687691803548966, - "math" : 1.711807229041191, - "mix" : 2.3138672203691533, - "algorithm" : 1.5253844138372725 + "combinator" : 2.3242824552976926, + "donald" : 1.6253124509616739, + "art" : 1.2828897701394677, + "e" : 1.421192468305749, + "pascal" : 1.6253124509616739, + "opus" : 2.3242824552976926, + "program" : 0.5839197658034488, + "analysi" : 1.7824630648195934, + "multi" : 2.3242824552976926, + "the" : 0.546131204914049, + "cover" : 1.210339102990856, + "comput" : 1.0938335339194187, + "knuth" : 1.6253124509616739, + "magnum" : 2.3242824552976926, + "and" : 0.05012460603401282, + "of" : 0.7296884779188934, + "volum" : 1.479184415283436, + "math" : 1.7222224639697303, + "mix" : 2.3242824552976926, + "algorithm" : 1.5420702450165669 }, "9" : { - "a" : 0.5656791933629529, - "probabilist" : 1.8367459656494909, - "code" : 1.0128372247051722, - "learn" : 1.1694878909087856, - "norvig" : 2.3138672203691533, - "russel" : 2.3138672203691533, - "ai" : 2.61876160573047, - "intellig" : 3.0104106596839078, - "approach" : 1.9980125417713546, - "artifici" : 3.0104106596839078, - "comprehens" : 1.0351136194163244, - "search" : 2.389661595724792, - "modern" : 1.2724745352109283, - "peter" : 1.6148972160331345, - "introduct" : 0.7823883033268982, - "stuart" : 2.3138672203691533, - "machin" : 1.1377759613134721, - "logic" : 2.3138672203691533, - "to" : 0.4273764951966715, - "plan" : 2.3138672203691533, - "pseudo" : 1.5357159699855099 + "a" : 0.5389526202869256, + "probabilist" : 1.8471612005780302, + "code" : 1.0020631605637733, + "learn" : 1.1830384239627023, + "norvig" : 2.3242824552976926, + "russel" : 2.3242824552976926, + "ai" : 2.632312138784387, + "intellig" : 3.0239611927378247, + "approach" : 2.011563074825271, + "artifici" : 3.0239611927378247, + "comprehens" : 0.9818597744754864, + "search" : 2.403212128778709, + "modern" : 1.2828897701394677, + "peter" : 1.6253124509616739, + "introduct" : 0.7802144109474171, + "stuart" : 2.3242824552976926, + "machin" : 1.0938335339194187, + "logic" : 2.3242824552976926, + "to" : 0.42665536400725124, + "plan" : 2.3242824552976926, + "pseudo" : 1.546131204914049 }, "10" : { - "applic" : 1.3596247109298285, - "multipl" : 0.670414543882966, - "pattern" : 1.1556823922882158, - "for" : 0.43305362808836206, - "fowler" : 1.5357159699855099, - "enterpris" : 3.417862451806381, - "integr" : 2.012837224705172, - "guidanc" : 1.1677391846909153, - "system" : 0.7010833636494179, - "and" : 0.06689392822195765, - "martin" : 1.2724745352109283, - "of" : 0.5656791933629529, - "architectur" : 1.5886794671435753 + "applic" : 1.3242824552976926, + "multipl" : 0.6808297788115053, + "pattern" : 1.1710669571740597, + "for" : 0.42665536400725124, + "fowler" : 1.546131204914049, + "enterpris" : 3.433247016692225, + "integr" : 2.0232524596337114, + "guidanc" : 1.1781544196194547, + "system" : 0.6808297788115053, + "and" : 0.06521361597109047, + "martin" : 1.2828897701394677, + "of" : 0.5608544617347554, + "architectur" : 1.572998261781473 }, "11" : { - "engin" : 0.9521393843515605, - "feather" : 2.3138672203691533, - "multipl" : 0.670414543882966, - "code" : 1.0128372247051722, - "test" : 1.3138672203691535, - "work" : 1.8367459656494909, - "for" : 0.43305362808836206, - "strategi" : 1.4687691803548966, - "improv" : 1.711807229041191, - "refactor" : 1.5357159699855099, - "techniqu" : 0.8087172420492474, - "michael" : 1.6148972160331345, - "with" : 0.6606547065938096, - "system" : 0.7010833636494179, - "legaci" : 3.417862451806381, - "softwar" : 0.8367459656494909, - "and" : 0.06689392822195765, - "chang" : 2.3138672203691533, - "effect" : 1.2724745352109283, - "safe" : 1.8367459656494909 + "engin" : 0.926342446625655, + "feather" : 2.3242824552976926, + "multipl" : 0.6808297788115053, + "code" : 1.0020631605637733, + "test" : 1.3242824552976926, + "work" : 1.8471612005780302, + "for" : 0.42665536400725124, + "strategi" : 1.479184415283436, + "improv" : 1.7222224639697303, + "refactor" : 1.546131204914049, + "techniqu" : 0.8191324769777867, + "michael" : 1.6253124509616739, + "with" : 0.6521845973619752, + "system" : 0.6808297788115053, + "legaci" : 3.433247016692225, + "softwar" : 0.8471612005780302, + "and" : 0.06521361597109047, + "chang" : 2.3242824552976926, + "effect" : 1.2828897701394677, + "safe" : 1.8471612005780302 }, "12" : { - "applic" : 1.3596247109298285, - "treatment" : 1.711807229041191, - "multipl" : 0.670414543882966, - "data" : 1.3772634778122388, - "maintain" : 1.4687691803548966, - "distribut" : 1.9109127603485203, - "systemat" : 2.3138672203691533, - "intens" : 2.3138672203691533, - "databas" : 1.4687691803548966, - "kleppmann" : 2.3138672203691533, - "system" : 1.0355851377769096, - "scalabl" : 1.9980125417713546, - "and" : 0.0514161306387239, - "design" : 0.6511093886875794, - "martin" : 1.2724745352109283, - "of" : 0.5656791933629529, - "reliabl" : 1.5357159699855099 + "applic" : 1.3242824552976926, + "treatment" : 1.7222224639697303, + "multipl" : 0.6808297788115053, + "data" : 1.3602644008348654, + "maintain" : 1.479184415283436, + "distribut" : 1.8490140308775116, + "systemat" : 2.3242824552976926, + "intens" : 2.3242824552976926, + "databas" : 1.421192468305749, + "kleppmann" : 2.3242824552976926, + "system" : 1.005668137128561, + "scalabl" : 2.011563074825271, + "and" : 0.05012460603401282, + "design" : 0.6430412179221054, + "martin" : 1.2828897701394677, + "of" : 0.5608544617347554, + "reliabl" : 1.546131204914049 }, "13" : { - "python" : 0.7697991760188778, - "grokk" : 2.3138672203691533, - "bhargava" : 2.3138672203691533, - "illustr" : 1.8367459656494909, - "an" : 1.711807229041191, - "aditya" : 2.3138672203691533, - "core" : 1.6148972160331345, - "solv" : 1.8367459656494909, - "problem" : 1.4687691803548966, - "and" : 0.0514161306387239, - "introduct" : 0.7823883033268982, - "friend" : 2.012837224705172, - "visual" : 2.2271125517770325, - "guid" : 0.8667091890269342, - "to" : 0.4273764951966715, - "introductori" : 1.4687691803548966, - "beginn" : 1.5357159699855099, - "algorithm" : 1.5253844138372725 + "python" : 0.7802144109474171, + "grokk" : 2.3242824552976926, + "bhargava" : 2.3242824552976926, + "illustr" : 1.8471612005780302, + "an" : 1.7222224639697303, + "aditya" : 2.3242824552976926, + "core" : 1.546131204914049, + "solv" : 1.8471612005780302, + "problem" : 1.479184415283436, + "and" : 0.05012460603401282, + "introduct" : 0.7802144109474171, + "friend" : 2.0232524596337114, + "visual" : 2.2406630848309494, + "guid" : 0.8618844573987365, + "to" : 0.42665536400725124, + "introductori" : 1.479184415283436, + "beginn" : 1.546131204914049, + "algorithm" : 1.5420702450165669 }, "14" : { - "deep" : 1.8237808955745851, - "python" : 0.7697991760188778, - "textbook" : 1.5357159699855099, - "neural" : 2.3138672203691533, - "learn" : 1.4400819094192359, - "theori" : 1.7689125317656766, - "techniqu" : 0.8087172420492474, - "network" : 1.4687691803548966, - "courvill" : 2.3138672203691533, - "comprehens" : 1.0351136194163244, - "aaron" : 2.3138672203691533, - "and" : 0.0514161306387239, - "ian" : 2.012837224705172, - "architectur" : 0.9916479256352342, - "machin" : 1.1377759613134721, - "yoshua" : 2.3138672203691533, - "goodfellow" : 2.3138672203691533, - "on" : 0.7456654963021584, - "bengio" : 2.3138672203691533 + "deep" : 1.8391654604604288, + "python" : 0.7802144109474171, + "textbook" : 1.3242824552976926, + "neural" : 2.3242824552976926, + "learn" : 1.4567677405985302, + "theori" : 1.6690780720819176, + "techniqu" : 0.8191324769777867, + "network" : 1.479184415283436, + "courvill" : 2.3242824552976926, + "comprehens" : 0.9818597744754864, + "aaron" : 2.3242824552976926, + "and" : 0.05012460603401282, + "ian" : 2.0232524596337114, + "architectur" : 0.9818597744754864, + "machin" : 1.0938335339194187, + "yoshua" : 2.3242824552976926, + "goodfellow" : 2.3242824552976926, + "on" : 0.7222224639697303, + "bengio" : 2.3242824552976926 }, "15" : { - "practic" : 0.46163904552683577, - "python" : 0.7697991760188778, - "learn" : 1.4400819094192359, - "use" : 0.9521393843515605, - "g" : 2.012837224705172, - "sklearn" : 2.3138672203691533, - "ron" : 2.3138672203691533, - "with" : 0.859531590055133, - "tensorflow" : 2.7130965053814537, - "system" : 0.7010833636494179, - "lien" : 2.3138672203691533, - "build" : 1.1999238680623165, - "and" : 0.06689392822195765, - "exampl" : 0.9521393843515605, - "guid" : 0.8667091890269342, - "machin" : 1.4802806540142488, - "kera" : 1.8367459656494909, - "to" : 0.4273764951966715, - "scikit" : 2.389661595724792, - "hand" : 1.8354634978235946, - "aur" : 2.3138672203691533, - "ml" : 1.2724745352109283, - "on" : 0.9701331774207775 + "practic" : 0.4629058307160776, + "python" : 0.7802144109474171, + "learn" : 1.4567677405985302, + "use" : 0.926342446625655, + "g" : 2.0232524596337114, + "sklearn" : 2.3242824552976926, + "ron" : 2.3242824552976926, + "with" : 0.8485117238779659, + "tensorflow" : 2.728481070267298, + "system" : 0.6808297788115053, + "lien" : 2.3242824552976926, + "build" : 1.210339102990856, + "and" : 0.06521361597109047, + "exampl" : 0.926342446625655, + "guid" : 0.8618844573987365, + "machin" : 1.4231102378922986, + "kera" : 1.8471612005780302, + "to" : 0.42665536400725124, + "scikit" : 2.403212128778709, + "hand" : 1.8490140308775116, + "aur" : 2.3242824552976926, + "ml" : 1.2828897701394677, + "on" : 0.9396330891669681 }, "16" : { - "a" : 0.5656791933629529, - "engin" : 0.9521393843515605, - "brook" : 2.3138672203691533, - "in" : 0.7456654963021584, - "mythic" : 2.3138672203691533, - "jr" : 2.3138672203691533, - "project" : 1.606363487817917, - "team" : 1.8367459656494909, - "schedul" : 2.3138672203691533, - "manag" : 2.5285468419995123, - "n" : 0.7228026133426542, - "p" : 1.6148972160331345, - "the" : 0.557992364696662, - "frederick" : 2.3138672203691533, - "classic" : 1.3596247109298285, - "softwar" : 0.8367459656494909, - "month" : 2.3138672203691533, - "and" : 0.0514161306387239, - "essay" : 1.711807229041191, - "histori" : 2.3138672203691533, - "man" : 2.012837224705172, - "factor" : 2.3138672203691533, - "human" : 1.8367459656494909, - "on" : 0.7456654963021584 + "a" : 0.5389526202869256, + "engin" : 0.926342446625655, + "brook" : 2.3242824552976926, + "in" : 0.7222224639697303, + "mythic" : 2.3242824552976926, + "jr" : 2.3242824552976926, + "project" : 1.6199140208718334, + "team" : 1.8471612005780302, + "schedul" : 2.3242824552976926, + "manag" : 2.4007835668759974, + "n" : 0.7332178482711935, + "p" : 1.6253124509616739, + "the" : 0.546131204914049, + "frederick" : 2.3242824552976926, + "classic" : 1.3700399458583679, + "softwar" : 0.8471612005780302, + "month" : 2.3242824552976926, + "and" : 0.05012460603401282, + "essay" : 1.7222224639697303, + "histori" : 2.3242824552976926, + "man" : 2.0232524596337114, + "factor" : 2.3242824552976926, + "human" : 1.8471612005780302, + "on" : 0.7222224639697303 }, "17" : { - "code" : 1.0128372247051722, - "pars" : 2.61876160573047, - "book" : 1.4687691803548966, - "optim" : 2.61876160573047, - "generat" : 2.012837224705172, - "construct" : 1.8367459656494909, - "dragon" : 2.3138672203691533, - "compil" : 2.7424178745128738, - "ullman" : 2.012837224705172, - "techniqu" : 0.8087172420492474, - "and" : 0.0514161306387239, - "ravi" : 2.3138672203691533, - "lam" : 2.3138672203691533, - "alfr" : 2.3138672203691533, - "text" : 1.6148972160331345, - "authorit" : 1.711807229041191, - "lex" : 2.3138672203691533, - "on" : 0.7456654963021584, - "c" : 0.8514692224701973, - "d" : 1.8367459656494909, - "sethi" : 2.3138672203691533, - "aho" : 2.3138672203691533, - "monica" : 2.3138672203691533, - "tool" : 1.5357159699855099, - "jeffrey" : 2.012837224705172, - "s" : 1.2346859743215286, - "v" : 2.3138672203691533, - "principl" : 0.9336559786575475 + "code" : 1.0020631605637733, + "pars" : 2.632312138784387, + "book" : 1.479184415283436, + "optim" : 2.2406630848309494, + "generat" : 2.0232524596337114, + "construct" : 1.8471612005780302, + "dragon" : 2.3242824552976926, + "compil" : 2.7591037056921683, + "ullman" : 2.0232524596337114, + "techniqu" : 0.8191324769777867, + "and" : 0.05012460603401282, + "ravi" : 2.3242824552976926, + "lam" : 2.3242824552976926, + "alfr" : 2.3242824552976926, + "text" : 1.6253124509616739, + "authorit" : 1.7222224639697303, + "lex" : 2.3242824552976926, + "on" : 0.7222224639697303, + "c" : 0.8618844573987365, + "d" : 1.8471612005780302, + "sethi" : 2.3242824552976926, + "aho" : 2.3242824552976926, + "monica" : 2.3242824552976926, + "tool" : 1.546131204914049, + "jeffrey" : 2.0232524596337114, + "s" : 1.210339102990856, + "v" : 2.3242824552976926, + "principl" : 0.926342446625655 }, "18" : { - "b" : 2.012837224705172, - "process" : 1.1677391846909153, - "textbook" : 1.5357159699855099, - "c" : 0.8514692224701973, - "os" : 2.389661595724792, - "galvin" : 2.3138672203691533, - "concept" : 1.2724745352109283, - "abraham" : 2.3138672203691533, - "silberschatz" : 2.3138672203691533, - "cover" : 1.4107772333772097, - "gagn" : 2.3138672203691533, - "comprehens" : 1.0351136194163244, - "system" : 1.0355851377769096, - "memori" : 2.389661595724792, - "file" : 2.3138672203691533, - "peter" : 1.6148972160331345, - "and" : 0.0514161306387239, - "oper" : 1.9980125417713546, - "concurr" : 1.9109127603485203, - "greg" : 2.3138672203691533 + "b" : 2.0232524596337114, + "process" : 1.1481911962420115, + "textbook" : 1.3242824552976926, + "c" : 0.8618844573987365, + "os" : 2.403212128778709, + "galvin" : 2.3242824552976926, + "concept" : 1.2451012092500677, + "abraham" : 2.3242824552976926, + "silberschatz" : 2.0232524596337114, + "cover" : 1.210339102990856, + "gagn" : 2.3242824552976926, + "comprehens" : 0.9818597744754864, + "system" : 1.005668137128561, + "memori" : 2.1145802510272813, + "file" : 2.3242824552976926, + "peter" : 1.6253124509616739, + "and" : 0.05012460603401282, + "oper" : 2.011563074825271, + "concurr" : 1.8490140308775116, + "greg" : 2.3242824552976926 }, "19" : { - "practic" : 0.3548258280480598, - "c" : 0.8514692224701973, - "os" : 2.389661595724792, - "bos" : 2.3138672203691533, - "herbert" : 2.3138672203691533, - "andrew" : 1.4107772333772097, - "with" : 0.6606547065938096, - "studi" : 1.5357159699855099, - "s" : 1.2346859743215286, - "system" : 0.9121304855688916, - "modern" : 1.2724745352109283, - "and" : 0.0514161306387239, - "tanenbaum" : 2.012837224705172, - "design" : 0.6511093886875794, - "of" : 0.5656791933629529, - "exampl" : 0.9521393843515605, - "principl" : 0.9336559786575475, - "oper" : 1.9980125417713546, - "detail" : 2.012837224705172, - "concurr" : 1.4687691803548966, - "coverag" : 2.012837224705172, - "case" : 1.5357159699855099 + "practic" : 0.3557995067437576, + "c" : 0.8618844573987365, + "os" : 2.403212128778709, + "bos" : 2.3242824552976926, + "herbert" : 2.3242824552976926, + "andrew" : 1.421192468305749, + "with" : 0.6521845973619752, + "studi" : 1.546131204914049, + "s" : 1.210339102990856, + "system" : 0.885779964175042, + "modern" : 1.2828897701394677, + "and" : 0.05012460603401282, + "tanenbaum" : 2.0232524596337114, + "design" : 0.6430412179221054, + "of" : 0.5608544617347554, + "exampl" : 0.926342446625655, + "principl" : 0.926342446625655, + "oper" : 2.011563074825271, + "detail" : 2.0232524596337114, + "concurr" : 1.421192468305749, + "coverag" : 2.0232524596337114, + "case" : 1.546131204914049 }, "20" : { - "a" : 0.5656791933629529, - "clear" : 1.6148972160331345, - "n" : 0.7228026133426542, - "theori" : 2.178200352601525, - "the" : 0.557992364696662, - "michael" : 1.6148972160331345, - "comput" : 1.5611369448622232, - "and" : 0.0514161306387239, - "introduct" : 1.017910650884944, - "complex" : 2.389661595724792, - "of" : 0.5656791933629529, - "to" : 0.556029639692613, - "automata" : 3.0104106596839078, - "sipser" : 2.3138672203691533 + "a" : 0.5389526202869256, + "clear" : 1.6253124509616739, + "n" : 0.7332178482711935, + "theori" : 2.0552663740243675, + "the" : 0.546131204914049, + "michael" : 1.6253124509616739, + "comput" : 1.4231102378922986, + "and" : 0.05012460603401282, + "introduct" : 1.0150823516918936, + "complex" : 2.403212128778709, + "of" : 0.5608544617347554, + "to" : 0.5550914263843684, + "automata" : 2.632312138784387, + "sipser" : 2.3242824552976926 }, "21" : { - "practic" : 0.46163904552683577, - "data" : 1.3772634778122388, - "emphasi" : 1.8367459656494909, - "sedgewick" : 2.3138672203691533, - "wayn" : 2.3138672203691533, - "analysi" : 1.3596247109298285, - "robert" : 1.4107772333772097, - "with" : 0.6606547065938096, - "kevin" : 1.8367459656494909, - "java" : 0.9521393843515605, - "structur" : 2.1010297179733644, - "and" : 0.06689392822195765, - "implement" : 1.2346859743215286, - "algorithm" : 1.5253844138372725, - "on" : 0.7456654963021584 + "practic" : 0.4629058307160776, + "data" : 1.3602644008348654, + "emphasi" : 1.8471612005780302, + "sedgewick" : 2.3242824552976926, + "wayn" : 2.3242824552976926, + "analysi" : 1.3700399458583679, + "robert" : 1.421192468305749, + "with" : 0.6521845973619752, + "kevin" : 1.8471612005780302, + "java" : 0.9625546192800998, + "structur" : 2.1145802510272813, + "and" : 0.06521361597109047, + "implement" : 1.2451012092500677, + "algorithm" : 1.5420702450165669, + "on" : 0.7222224639697303 }, "22" : { - "ritchi" : 2.3138672203691533, - "creator" : 2.012837224705172, - "c" : 1.3641047751666313, - "kernighan" : 1.6148972160331345, - "book" : 1.4687691803548966, - "languag" : 1.084330523386218, - "program" : 0.8589068076281647, - "m" : 1.711807229041191, - "the" : 0.7259648038218328, - "system" : 0.7010833636494179, - "concis" : 1.5357159699855099, - "and" : 0.0514161306387239, - "w" : 1.3596247109298285, - "by" : 1.5357159699855099, - "denni" : 2.3138672203691533, - "authorit" : 1.711807229041191, - "foundat" : 1.6555275390280006, - "brian" : 1.4107772333772097, - "on" : 0.7456654963021584 + "ritchi" : 2.3242824552976926, + "creator" : 2.0232524596337114, + "c" : 1.3807906063459254, + "kernighan" : 1.6253124509616739, + "book" : 1.479184415283436, + "languag" : 1.0668101521656943, + "program" : 0.8625202971192018, + "m" : 1.7222224639697303, + "the" : 0.71053307916129, + "system" : 0.6808297788115053, + "concis" : 1.546131204914049, + "and" : 0.05012460603401282, + "w" : 1.3700399458583679, + "by" : 1.546131204914049, + "denni" : 2.3242824552976926, + "authorit" : 1.7222224639697303, + "foundat" : 1.5328142394489994, + "brian" : 1.421192468305749, + "on" : 0.7222224639697303 }, "23" : { - "practic" : 0.46163904552683577, - "robust" : 1.6148972160331345, - "perform" : 1.3138672203691535, - "pattern" : 0.7823883033268982, - "for" : 0.43305362808836206, - "languag" : 0.7340836237523433, - "best" : 1.5192637063950825, - "program" : 0.7565144138531231, - "java" : 1.5253844138372725, - "joshua" : 1.8367459656494909, - "and" : 0.0514161306387239, - "design" : 0.6511093886875794, - "effect" : 1.2724745352109283, - "bloch" : 2.3138672203691533, - "write" : 1.3138672203691535 + "practic" : 0.4629058307160776, + "robust" : 1.6253124509616739, + "perform" : 1.2828897701394677, + "pattern" : 0.7928035382554376, + "for" : 0.42665536400725124, + "languag" : 0.7222224639697303, + "best" : 1.5328142394489994, + "program" : 0.759697130371374, + "java" : 1.5420702450165669, + "joshua" : 1.8471612005780302, + "and" : 0.05012460603401282, + "design" : 0.6430412179221054, + "effect" : 1.2828897701394677, + "bloch" : 2.3242824552976926, + "write" : 1.3242824552976926 }, "24" : { - "deep" : 1.2346859743215286, - "don't" : 1.8367459656494909, - "in" : 0.7456654963021584, - "more" : 1.711807229041191, - "languag" : 0.7340836237523433, - "js" : 2.012837224705172, - "program" : 0.5814734605461849, - "javascript" : 2.2684387004780198, - "cover" : 1.4107772333772097, - "async" : 2.012837224705172, - "fundament" : 1.3596247109298285, - "depth" : 1.5357159699855099, - "kyle" : 2.012837224705172, - "and" : 0.0514161306387239, - "scope" : 2.3138672203691533, - "simpson" : 2.012837224705172, - "know" : 1.8367459656494909, - "dive" : 1.8367459656494909, - "seri" : 3.417862451806381, - "you" : 2.012837224705172, - "closur" : 2.3138672203691533 + "deep" : 1.2451012092500677, + "don't" : 1.8471612005780302, + "in" : 0.7222224639697303, + "more" : 1.7222224639697303, + "languag" : 0.7222224639697303, + "js" : 2.0232524596337114, + "program" : 0.5839197658034488, + "javascript" : 2.2838232653638633, + "cover" : 1.210339102990856, + "async" : 2.0232524596337114, + "fundament" : 1.3700399458583679, + "depth" : 1.546131204914049, + "kyle" : 2.0232524596337114, + "and" : 0.05012460603401282, + "scope" : 2.3242824552976926, + "simpson" : 2.0232524596337114, + "know" : 1.8471612005780302, + "dive" : 1.8471612005780302, + "seri" : 3.433247016692225, + "you" : 2.0232524596337114, + "closur" : 2.3242824552976926 }, "25" : { - "practic" : 0.3548258280480598, - "marijn" : 2.3138672203691533, - "languag" : 0.7340836237523433, - "haverbek" : 2.3138672203691533, - "program" : 0.7565144138531231, - "eloqu" : 2.3138672203691533, - "javascript" : 2.4603091135571993, - "with" : 0.6606547065938096, - "exercis" : 1.8367459656494909, - "modern" : 1.2724745352109283, - "and" : 0.06689392822195765, - "introduct" : 0.7823883033268982, - "exampl" : 0.9521393843515605, - "to" : 0.4273764951966715, - "introductori" : 1.4687691803548966 + "practic" : 0.3557995067437576, + "marijn" : 2.3242824552976926, + "languag" : 0.7222224639697303, + "haverbek" : 2.3242824552976926, + "program" : 0.759697130371374, + "eloqu" : 2.3242824552976926, + "javascript" : 2.4769949447364934, + "with" : 0.6521845973619752, + "exercis" : 1.7222224639697303, + "modern" : 1.2828897701394677, + "and" : 0.06521361597109047, + "introduct" : 0.7802144109474171, + "exampl" : 0.926342446625655, + "to" : 0.42665536400725124, + "introductori" : 1.479184415283436 }, "26" : { - "python" : 1.233264461257076, - "eric" : 1.4107772333772097, - "for" : 0.43305362808836206, - "languag" : 0.7340836237523433, - "project" : 1.606363487817917, - "program" : 0.5814734605461849, - "cours" : 1.8367459656494909, - "crash" : 2.3138672203691533, - "introduct" : 0.7823883033268982, - "matth" : 2.3138672203691533, - "to" : 0.4273764951966715, - "beginn" : 1.9980125417713546, - "hand" : 1.4107772333772097, - "on" : 0.7456654963021584, - "base" : 2.012837224705172 + "python" : 1.2499502924363703, + "eric" : 1.421192468305749, + "for" : 0.42665536400725124, + "languag" : 0.7222224639697303, + "project" : 1.6199140208718334, + "program" : 0.5839197658034488, + "cours" : 1.6253124509616739, + "crash" : 2.3242824552976926, + "introduct" : 0.7802144109474171, + "matth" : 2.3242824552976926, + "to" : 0.42665536400725124, + "beginn" : 2.011563074825271, + "hand" : 1.421192468305749, + "on" : 0.7222224639697303, + "base" : 2.0232524596337114 }, "27" : { - "practic" : 0.3548258280480598, - "deep" : 1.2346859743215286, - "python" : 1.233264461257076, - "featur" : 1.6148972160331345, - "for" : 0.43305362808836206, - "languag" : 0.7340836237523433, - "ramalho" : 2.3138672203691533, - "best" : 1.1677391846909153, - "fluent" : 2.3138672203691533, - "program" : 0.5814734605461849, - "experienc" : 2.012837224705172, - "into" : 2.012837224705172, - "and" : 0.0514161306387239, - "idiom" : 1.9980125417713546, - "dive" : 1.8367459656494909, - "advanc" : 1.711807229041191, - "programm" : 1.4107772333772097, - "luciano" : 2.3138672203691533 + "practic" : 0.3557995067437576, + "deep" : 1.2451012092500677, + "python" : 1.2499502924363703, + "featur" : 1.6253124509616739, + "for" : 0.42665536400725124, + "languag" : 0.7222224639697303, + "ramalho" : 2.3242824552976926, + "best" : 1.1781544196194547, + "fluent" : 2.3242824552976926, + "program" : 0.5839197658034488, + "experienc" : 2.0232524596337114, + "into" : 2.0232524596337114, + "and" : 0.05012460603401282, + "idiom" : 2.011563074825271, + "dive" : 1.8471612005780302, + "advanc" : 1.546131204914049, + "programm" : 1.421192468305749, + "luciano" : 2.3242824552976926 }, "28" : { - "meyer" : 1.711807229041191, - "practic" : 0.46163904552683577, - "c" : 1.3641047751666313, - "code" : 1.0128372247051722, - "correct" : 1.6148972160331345, - "perform" : 1.3138672203691535, - "for" : 0.43305362808836206, - "languag" : 0.7340836237523433, - "best" : 1.5192637063950825, - "program" : 0.5814734605461849, - "effici" : 1.8367459656494909, - "and" : 0.06689392822195765, - "effect" : 1.2724745352109283, - "guidelin" : 1.8367459656494909, - "scott" : 1.5357159699855099, - "write" : 1.3138672203691535 + "meyer" : 1.7222224639697303, + "practic" : 0.4629058307160776, + "c" : 1.3807906063459254, + "code" : 1.0020631605637733, + "correct" : 1.6253124509616739, + "perform" : 1.2828897701394677, + "for" : 0.42665536400725124, + "languag" : 0.7222224639697303, + "best" : 1.5328142394489994, + "program" : 0.5839197658034488, + "effici" : 1.8471612005780302, + "and" : 0.06521361597109047, + "effect" : 1.2828897701394677, + "guidelin" : 1.8471612005780302, + "scott" : 1.546131204914049, + "write" : 1.3242824552976926 }, "29" : { - "communic" : 2.012837224705172, - "profession" : 2.389661595724792, - "career" : 1.4107772333772097, - "coder" : 2.3138672203691533, - "c" : 0.8514692224701973, - "multipl" : 0.670414543882966, - "test" : 1.709380664019927, - "for" : 0.43305362808836206, - "develop" : 1.1097472377132287, - "clean" : 1.8367459656494909, - "the" : 0.557992364696662, - "robert" : 1.4107772333772097, - "habit" : 2.3138672203691533, - "softwar" : 0.8367459656494909, - "ethic" : 2.3138672203691533, - "and" : 0.0514161306387239, - "martin" : 1.2724745352109283, - "disciplin" : 2.3138672203691533 + "communic" : 2.0232524596337114, + "profession" : 2.2406630848309494, + "career" : 1.421192468305749, + "coder" : 2.3242824552976926, + "c" : 0.8618844573987365, + "multipl" : 0.6808297788115053, + "test" : 1.7229311970738435, + "for" : 0.42665536400725124, + "develop" : 1.1201624726417678, + "clean" : 1.8471612005780302, + "the" : 0.546131204914049, + "robert" : 1.421192468305749, + "habit" : 2.3242824552976926, + "softwar" : 0.8471612005780302, + "ethic" : 2.3242824552976926, + "and" : 0.05012460603401282, + "martin" : 1.2828897701394677, + "disciplin" : 2.3242824552976926 }, "30" : { - "multipl" : 0.670414543882966, - "method" : 1.6148972160331345, - "need" : 2.3138672203691533, - "ddd" : 1.711807229041191, - "busi" : 1.8367459656494909, - "eric" : 1.4107772333772097, - "for" : 0.43305362808836206, - "align" : 2.3138672203691533, - "evan" : 2.3138672203691533, - "with" : 0.6606547065938096, - "softwar" : 0.8367459656494909, - "design" : 0.847112845140979, - "complex" : 1.8367459656494909, - "domain" : 1.9980125417713546, - "by" : 1.5357159699855099, - "driven" : 1.4107772333772097, - "architectur" : 1.2901636963894048, - "model" : 1.5611369448622232 + "multipl" : 0.6808297788115053, + "method" : 1.546131204914049, + "need" : 2.3242824552976926, + "ddd" : 1.7222224639697303, + "busi" : 1.8471612005780302, + "eric" : 1.421192468305749, + "for" : 0.42665536400725124, + "align" : 2.3242824552976926, + "evan" : 2.3242824552976926, + "with" : 0.6521845973619752, + "softwar" : 0.8471612005780302, + "design" : 0.8366159129649581, + "complex" : 1.8471612005780302, + "domain" : 2.011563074825271, + "by" : 1.546131204914049, + "driven" : 1.421192468305749, + "architectur" : 1.2774290181284798, + "model" : 1.5328142394489994 }, "31" : { - "multipl" : 0.670414543882966, - "microservic" : 2.9732046469029467, - "newman" : 2.3138672203691533, - "pattern" : 0.7823883033268982, - "distribut" : 1.4687691803548966, - "pitfal" : 2.3138672203691533, - "when" : 2.3138672203691533, - "deploy" : 2.1010297179733644, - "integr" : 2.012837224705172, - "system" : 0.7010833636494179, - "build" : 1.1999238680623165, - "and" : 0.06689392822195765, - "design" : 0.6511093886875794, - "principl" : 0.9336559786575475, - "sam" : 2.012837224705172 + "multipl" : 0.6808297788115053, + "microservic" : 2.9885892117887907, + "newman" : 2.3242824552976926, + "pattern" : 0.7928035382554376, + "distribut" : 1.421192468305749, + "pitfal" : 2.3242824552976926, + "when" : 2.3242824552976926, + "deploy" : 2.1145802510272813, + "integr" : 2.0232524596337114, + "system" : 0.6808297788115053, + "build" : 1.210339102990856, + "and" : 0.06521361597109047, + "design" : 0.6430412179221054, + "principl" : 0.926342446625655, + "sam" : 2.0232524596337114 }, "32" : { - "small" : 2.012837224705172, - "cd" : 2.3138672203691533, - "practic" : 0.3548258280480598, - "multipl" : 0.670414543882966, - "pipelin" : 2.012837224705172, - "ci" : 2.3138672203691533, - "devop" : 1.4687691803548966, - "for" : 0.43305362808836206, - "continu" : 1.8367459656494909, - "deploy" : 1.6148972160331345, - "deliveri" : 2.012837224705172, - "farley" : 2.3138672203691533, - "autom" : 2.389661595724792, - "releas" : 2.012837224705172, - "and" : 0.0514161306387239, - "reliabl" : 1.9980125417713546, - "humbl" : 1.8367459656494909, - "david" : 1.3138672203691535, - "jez" : 1.8367459656494909 + "small" : 2.0232524596337114, + "cd" : 2.3242824552976926, + "practic" : 0.3557995067437576, + "multipl" : 0.6808297788115053, + "pipelin" : 2.0232524596337114, + "ci" : 2.3242824552976926, + "devop" : 1.479184415283436, + "for" : 0.42665536400725124, + "continu" : 1.8471612005780302, + "deploy" : 1.6253124509616739, + "deliveri" : 2.0232524596337114, + "farley" : 2.3242824552976926, + "autom" : 2.403212128778709, + "releas" : 2.0232524596337114, + "and" : 0.05012460603401282, + "reliabl" : 2.011563074825271, + "humbl" : 1.8471612005780302, + "david" : 1.3242824552976926, + "jez" : 1.8471612005780302 }, "33" : { - "richard" : 1.6148972160331345, - "engin" : 0.9521393843515605, - "editor" : 2.012837224705172, - "murphi" : 2.3138672203691533, - "op" : 1.711807229041191, - "incid" : 2.012837224705172, - "multipl" : 0.670414543882966, - "devop" : 1.4687691803548966, - "sre" : 2.389661595724792, - "monitor" : 2.61876160573047, - "respons" : 2.012837224705172, - "jone" : 2.3138672203691533, - "site" : 2.012837224705172, - "googl" : 2.012837224705172, - "chris" : 2.012837224705172, - "betsi" : 2.012837224705172, - "petoff" : 2.3138672203691533, - "scalabl" : 1.5357159699855099, - "beyer" : 2.012837224705172, - "niall" : 2.3138672203691533, - "reliabl" : 1.9980125417713546, - "principl" : 0.9336559786575475, - "jennif" : 2.012837224705172 + "richard" : 1.6253124509616739, + "engin" : 0.926342446625655, + "editor" : 2.0232524596337114, + "murphi" : 2.3242824552976926, + "op" : 1.7222224639697303, + "incid" : 2.0232524596337114, + "multipl" : 0.6808297788115053, + "devop" : 1.479184415283436, + "sre" : 2.403212128778709, + "monitor" : 2.632312138784387, + "respons" : 2.0232524596337114, + "jone" : 2.3242824552976926, + "site" : 2.0232524596337114, + "googl" : 2.0232524596337114, + "chris" : 2.0232524596337114, + "betsi" : 2.0232524596337114, + "petoff" : 2.3242824552976926, + "scalabl" : 1.546131204914049, + "beyer" : 2.0232524596337114, + "niall" : 2.3242824552976926, + "reliabl" : 2.011563074825271, + "principl" : 0.926342446625655, + "jennif" : 2.0232524596337114 }, "34" : { - "practic" : 0.3548258280480598, - "product" : 1.8354634978235946, - "multipl" : 0.670414543882966, - "readi" : 2.3138672203691533, - "stabil" : 2.3138672203691533, - "real" : 1.4107772333772097, - "resili" : 1.8367459656494909, - "it" : 1.6148972160331345, - "strategi" : 1.4687691803548966, - "failur" : 2.3138672203691533, - "michael" : 1.6148972160331345, - "surviv" : 2.3138672203691533, - "that" : 2.012837224705172, - "system" : 0.7010833636494179, - "world" : 1.8367459656494909, - "t" : 1.8367459656494909, - "releas" : 2.012837224705172, - "design" : 0.6511093886875794, - "architectur" : 0.9916479256352342, - "nygard" : 2.3138672203691533, - "to" : 0.4273764951966715 + "practic" : 0.3557995067437576, + "product" : 1.8490140308775116, + "multipl" : 0.6808297788115053, + "readi" : 2.3242824552976926, + "stabil" : 2.3242824552976926, + "real" : 1.421192468305749, + "resili" : 1.8471612005780302, + "it" : 1.479184415283436, + "strategi" : 1.479184415283436, + "failur" : 2.3242824552976926, + "michael" : 1.6253124509616739, + "surviv" : 2.3242824552976926, + "that" : 1.8471612005780302, + "system" : 0.6808297788115053, + "world" : 1.8471612005780302, + "t" : 1.8471612005780302, + "releas" : 2.0232524596337114, + "design" : 0.6430412179221054, + "architectur" : 0.9818597744754864, + "nygard" : 2.3242824552976926, + "to" : 0.42665536400725124 }, "35" : { - "a" : 0.5656791933629529, - "gari" : 2.012837224705172, - "practic" : 0.46163904552683577, - "multipl" : 0.670414543882966, - "in" : 0.7456654963021584, - "nutshel" : 2.3138672203691533, - "selkow" : 2.3138672203691533, - "perform" : 1.3138672203691535, - "heineman" : 2.3138672203691533, - "t" : 1.8367459656494909, - "pollic" : 2.3138672203691533, - "and" : 0.0514161306387239, - "guid" : 0.8667091890269342, - "implement" : 1.606363487817917, - "consider" : 1.711807229041191, - "to" : 0.4273764951966715, - "stanley" : 2.3138672203691533, - "georg" : 2.012837224705172, - "algorithm" : 1.5253844138372725 + "a" : 0.5389526202869256, + "gari" : 2.0232524596337114, + "practic" : 0.4629058307160776, + "multipl" : 0.6808297788115053, + "in" : 0.7222224639697303, + "nutshel" : 2.3242824552976926, + "selkow" : 2.3242824552976926, + "perform" : 1.2828897701394677, + "heineman" : 2.3242824552976926, + "t" : 1.8471612005780302, + "pollic" : 2.3242824552976926, + "and" : 0.05012460603401282, + "guid" : 0.8618844573987365, + "implement" : 1.6199140208718334, + "consider" : 1.7222224639697303, + "to" : 0.42665536400725124, + "stanley" : 2.3242824552976926, + "georg" : 2.0232524596337114, + "algorithm" : 1.5420702450165669 }, "36" : { - "practic" : 0.46163904552683577, - "python" : 1.233264461257076, - "c" : 0.8514692224701973, - "workflow" : 1.711807229041191, - "guido" : 2.3138672203691533, - "learn" : 1.4400819094192359, - "in" : 0.7456654963021584, - "sarah" : 2.3138672203691533, - "m" : 1.711807229041191, - "with" : 0.6606547065938096, - "andrea" : 2.3138672203691533, - "and" : 0.0514161306387239, - "introduct" : 1.017910650884944, - "machin" : 1.4802806540142488, - "to" : 0.556029639692613, - "scikit" : 2.389661595724792, - "ller" : 2.3138672203691533, - "ml" : 1.6555275390280006 + "practic" : 0.4629058307160776, + "python" : 1.2499502924363703, + "c" : 0.8618844573987365, + "workflow" : 1.7222224639697303, + "guido" : 2.3242824552976926, + "learn" : 1.4567677405985302, + "in" : 0.7222224639697303, + "sarah" : 2.3242824552976926, + "m" : 1.7222224639697303, + "with" : 0.6521845973619752, + "andrea" : 2.3242824552976926, + "and" : 0.05012460603401282, + "introduct" : 1.0150823516918936, + "machin" : 1.4231102378922986, + "to" : 0.5550914263843684, + "scikit" : 2.403212128778709, + "ller" : 2.3242824552976926, + "ml" : 1.6690780720819176 }, "37" : { - "matlab" : 1.6148972160331345, - "bayesian" : 1.8367459656494909, - "probabilist" : 1.8367459656494909, - "learn" : 1.3277752446568454, - "bishop" : 2.3138672203691533, - "christoph" : 2.012837224705172, - "recognit" : 2.389661595724792, - "pattern" : 1.017910650884944, - "m" : 1.711807229041191, - "approach" : 1.5357159699855099, - "theori" : 1.3596247109298285, - "and" : 0.06689392822195765, - "statist" : 1.6148972160331345, - "machin" : 1.680633055565226, - "to" : 0.4273764951966715, - "pseudo" : 1.5357159699855099, - "ml" : 1.2724745352109283 + "matlab" : 1.6253124509616739, + "bayesian" : 1.8471612005780302, + "probabilist" : 1.8471612005780302, + "learn" : 1.3431598095426893, + "bishop" : 2.3242824552976926, + "christoph" : 2.0232524596337114, + "recognit" : 2.403212128778709, + "pattern" : 1.031461183938861, + "m" : 1.7222224639697303, + "approach" : 1.546131204914049, + "theori" : 1.2828897701394677, + "and" : 0.06521361597109047, + "statist" : 1.546131204914049, + "machin" : 1.6157247620774942, + "to" : 0.42665536400725124, + "pseudo" : 1.546131204914049, + "ml" : 1.2828897701394677 }, "38" : { - "some" : 1.6148972160331345, - "practic" : 0.3548258280480598, - "python" : 1.233264461257076, - "author" : 1.4687691803548966, - "pattern" : 1.017910650884944, - "for" : 0.43305362808836206, - "distribut" : 2.3530563403421443, - "develop" : 1.1097472377132287, - "with" : 0.859531590055133, - "system" : 0.9121304855688916, - "exampl" : 0.9521393843515605, - "hand" : 1.4107772333772097, - "on" : 0.7456654963021584 + "some" : 1.6253124509616739, + "practic" : 0.3557995067437576, + "python" : 1.2499502924363703, + "author" : 1.479184415283436, + "pattern" : 1.031461183938861, + "for" : 0.42665536400725124, + "distribut" : 2.276835593449274, + "develop" : 1.1201624726417678, + "with" : 0.8485117238779659, + "system" : 0.885779964175042, + "exampl" : 0.926342446625655, + "hand" : 1.421192468305749, + "on" : 0.7222224639697303 }, "39" : { - "organ" : 1.6148972160331345, - "a" : 0.5656791933629529, - "process" : 1.1677391846909153, - "behr" : 2.3138672203691533, - "gene" : 1.8367459656494909, - "in" : 0.7456654963021584, - "devop" : 2.169550174579395, - "format" : 2.012837224705172, - "spafford" : 2.3138672203691533, - "project" : 1.2346859743215286, - "it" : 1.6148972160331345, - "n" : 0.7228026133426542, - "kim" : 1.8367459656494909, - "stori" : 2.3138672203691533, - "the" : 0.557992364696662, - "kevin" : 1.8367459656494909, - "phoenix" : 2.3138672203691533, - "and" : 0.0514161306387239, - "introduct" : 0.7823883033268982, - "oper" : 1.5357159699855099, - "to" : 0.4273764951966715, - "georg" : 2.012837224705172, - "novel" : 2.012837224705172, - "flow" : 2.012837224705172 + "organ" : 1.479184415283436, + "a" : 0.5389526202869256, + "process" : 1.1481911962420115, + "behr" : 2.3242824552976926, + "gene" : 1.8471612005780302, + "in" : 0.7222224639697303, + "devop" : 2.184934739465239, + "format" : 2.0232524596337114, + "spafford" : 2.3242824552976926, + "project" : 1.2451012092500677, + "it" : 1.479184415283436, + "n" : 0.7332178482711935, + "kim" : 1.8471612005780302, + "stori" : 2.3242824552976926, + "the" : 0.546131204914049, + "kevin" : 1.8471612005780302, + "phoenix" : 2.3242824552976926, + "and" : 0.05012460603401282, + "introduct" : 0.7802144109474171, + "oper" : 1.546131204914049, + "to" : 0.42665536400725124, + "georg" : 2.0232524596337114, + "novel" : 2.0232524596337114, + "flow" : 2.0232524596337114 }, "40" : { - "a" : 0.5656791933629529, - "think" : 2.2271125517770325, - "engin" : 0.9521393843515605, - "goldratt" : 2.3138672203691533, - "process" : 1.1677391846909153, - "goal" : 2.3138672203691533, - "level" : 1.8367459656494909, - "use" : 0.9521393843515605, - "busi" : 1.8367459656494909, - "for" : 0.43305362808836206, - "about" : 2.012837224705172, - "m" : 1.711807229041191, - "manag" : 2.5285468419995123, - "n" : 0.7228026133426542, - "the" : 0.557992364696662, - "system" : 0.9121304855688916, - "and" : 0.0514161306387239, - "eliyahu" : 2.3138672203691533, - "constraint" : 2.3138672203691533, - "throughput" : 2.3138672203691533, - "novel" : 2.012837224705172 + "a" : 0.5389526202869256, + "think" : 2.2406630848309494, + "engin" : 0.926342446625655, + "goldratt" : 2.3242824552976926, + "process" : 1.1481911962420115, + "goal" : 2.3242824552976926, + "level" : 1.7222224639697303, + "use" : 0.926342446625655, + "busi" : 1.8471612005780302, + "for" : 0.42665536400725124, + "about" : 2.0232524596337114, + "m" : 1.7222224639697303, + "manag" : 2.4007835668759974, + "n" : 0.7332178482711935, + "the" : 0.546131204914049, + "system" : 0.885779964175042, + "and" : 0.05012460603401282, + "eliyahu" : 2.3242824552976926, + "constraint" : 2.3242824552976926, + "throughput" : 2.3242824552976926, + "novel" : 2.0232524596337114 }, "41" : { - "intermedi" : 2.3138672203691533, - "python" : 1.233264461257076, - "librari" : 1.6148972160331345, - "learn" : 0.8988938723983354, - "for" : 0.43305362808836206, - "languag" : 0.9550648138275109, - "program" : 0.5814734605461849, - "comprehens" : 1.3467138677809485, - "refer" : 1.3596247109298285, - "and" : 0.06689392822195765, - "guid" : 0.8667091890269342, - "to" : 0.4273764951966715, - "lutz" : 2.3138672203691533, - "mark" : 2.012837224705172, - "beginn" : 1.5357159699855099 + "intermedi" : 2.3242824552976926, + "python" : 1.2499502924363703, + "librari" : 1.6253124509616739, + "learn" : 0.9093091073268746, + "for" : 0.42665536400725124, + "languag" : 0.9396330891669681, + "program" : 0.5839197658034488, + "comprehens" : 1.2774290181284798, + "refer" : 1.3700399458583679, + "and" : 0.06521361597109047, + "guid" : 0.8618844573987365, + "to" : 0.42665536400725124, + "lutz" : 2.3242824552976926, + "mark" : 2.0232524596337114, + "beginn" : 1.546131204914049 }, "42" : { - "11" : 2.3138672203691533, - "meyer" : 1.711807229041191, - "practic" : 0.3548258280480598, - "c" : 1.51404106259857, - "code" : 1.0128372247051722, - "14" : 2.3138672203691533, - "correct" : 1.6148972160331345, - "for" : 0.43305362808836206, - "languag" : 0.7340836237523433, - "best" : 1.1677391846909153, - "program" : 0.5814734605461849, - "effici" : 1.8367459656494909, - "modern" : 1.6555275390280006, - "and" : 0.0514161306387239, - "effect" : 1.2724745352109283, - "guidelin" : 1.8367459656494909, - "scott" : 1.5357159699855099, - "write" : 1.3138672203691535 + "11" : 2.3242824552976926, + "meyer" : 1.7222224639697303, + "practic" : 0.3557995067437576, + "c" : 1.5325609256097916, + "code" : 1.0020631605637733, + "14" : 2.3242824552976926, + "correct" : 1.6253124509616739, + "for" : 0.42665536400725124, + "languag" : 0.7222224639697303, + "best" : 1.1781544196194547, + "program" : 0.5839197658034488, + "effici" : 1.8471612005780302, + "modern" : 1.6690780720819176, + "and" : 0.05012460603401282, + "effect" : 1.2828897701394677, + "guidelin" : 1.8471612005780302, + "scott" : 1.546131204914049, + "write" : 1.3242824552976926 }, "43" : { - "a" : 0.5656791933629529, - "gilbert" : 2.3138672203691533, - "linear" : 3.417862451806381, - "in" : 0.7456654963021584, - "use" : 0.9521393843515605, - "clear" : 1.6148972160331345, - "algebra" : 3.417862451806381, - "n" : 0.7228026133426542, - "comput" : 1.1999238680623165, - "fundament" : 1.3596247109298285, - "mathemat" : 1.8367459656494909, - "and" : 0.0514161306387239, - "introduct" : 0.7823883033268982, - "of" : 0.5656791933629529, - "to" : 0.4273764951966715, - "math" : 1.711807229041191, - "strang" : 2.3138672203691533, - "foundat" : 1.2724745352109283, - "present" : 2.3138672203691533, - "ml" : 1.2724745352109283 + "a" : 0.5389526202869256, + "gilbert" : 2.3242824552976926, + "linear" : 3.433247016692225, + "in" : 0.7222224639697303, + "use" : 0.926342446625655, + "clear" : 1.6253124509616739, + "algebra" : 3.433247016692225, + "n" : 0.7332178482711935, + "comput" : 1.0938335339194187, + "fundament" : 1.3700399458583679, + "mathemat" : 1.6253124509616739, + "and" : 0.05012460603401282, + "introduct" : 0.7802144109474171, + "of" : 0.5608544617347554, + "to" : 0.42665536400725124, + "math" : 1.7222224639697303, + "strang" : 2.3242824552976926, + "foundat" : 1.1781544196194547, + "present" : 2.3242824552976926, + "ml" : 1.2828897701394677 }, "44" : { - "frank" : 2.3138672203691533, - "multipl" : 0.670414543882966, - "orient" : 1.6148972160331345, - "pattern" : 1.1556823922882158, - "for" : 0.43305362808836206, - "al" : 1.3596247109298285, - "et" : 1.3596247109298285, - "catalogu" : 2.3138672203691533, - "1" : 1.8367459656494909, - "vol" : 2.3138672203691533, - "system" : 0.7010833636494179, - "softwar" : 0.8367459656494909, - "scalabl" : 1.5357159699855099, - "and" : 0.0514161306387239, - "design" : 0.6511093886875794, - "of" : 0.5656791933629529, - "larg" : 1.6148972160331345, - "architectur" : 1.5886794671435753, - "buschmann" : 2.3138672203691533 + "frank" : 2.3242824552976926, + "multipl" : 0.6808297788115053, + "orient" : 1.6253124509616739, + "pattern" : 1.1710669571740597, + "for" : 0.42665536400725124, + "al" : 1.3700399458583679, + "et" : 1.3700399458583679, + "catalogu" : 2.3242824552976926, + "1" : 1.8471612005780302, + "vol" : 2.3242824552976926, + "system" : 0.6808297788115053, + "softwar" : 0.8471612005780302, + "scalabl" : 1.546131204914049, + "and" : 0.05012460603401282, + "design" : 0.6430412179221054, + "of" : 0.5608544617347554, + "larg" : 1.6253124509616739, + "architectur" : 1.572998261781473, + "buschmann" : 2.3242824552976926 }, "45" : { - "a" : 0.5656791933629529, - "practic" : 0.3548258280480598, - "concept" : 1.2724745352109283, - "for" : 0.43305362808836206, - "secur" : 2.4176183797923745, - "n" : 0.7228026133426542, - "network" : 2.169550174579395, - "fundament" : 1.3596247109298285, - "and" : 0.0514161306387239, - "various" : 1.6148972160331345, - "guid" : 0.8667091890269342, - "comptia" : 2.3138672203691533, - "to" : 0.4273764951966715, - "basic" : 1.711807229041191, - "foundat" : 1.2724745352109283, - "introductori" : 1.4687691803548966 + "a" : 0.5389526202869256, + "practic" : 0.3557995067437576, + "concept" : 1.2451012092500677, + "for" : 0.42665536400725124, + "secur" : 2.436138242803596, + "n" : 0.7332178482711935, + "network" : 2.184934739465239, + "fundament" : 1.3700399458583679, + "and" : 0.05012460603401282, + "various" : 1.6253124509616739, + "guid" : 0.8618844573987365, + "comptia" : 2.3242824552976926, + "to" : 0.42665536400725124, + "basic" : 1.7222224639697303, + "foundat" : 1.1781544196194547, + "introductori" : 1.479184415283436 }, "46" : { - "engin" : 0.9521393843515605, - "practic" : 0.46163904552683577, - "schneier" : 2.012837224705172, - "c" : 0.8514692224701973, - "ferguson" : 2.012837224705172, - "secur" : 2.0083305589565263, - "niel" : 2.3138672203691533, - "kohno" : 2.3138672203691533, - "guidanc" : 1.1677391846909153, - "tadayoshi" : 2.3138672203691533, - "cryptograph" : 2.012837224705172, - "system" : 0.7010833636494179, - "and" : 0.0514161306387239, - "design" : 0.6511093886875794, - "cryptographi" : 2.389661595724792, - "implement" : 1.2346859743215286, - "to" : 0.4273764951966715, - "bruce" : 1.711807229041191 + "engin" : 0.926342446625655, + "practic" : 0.4629058307160776, + "schneier" : 2.0232524596337114, + "c" : 0.8618844573987365, + "ferguson" : 2.0232524596337114, + "secur" : 2.0237151238423707, + "niel" : 2.3242824552976926, + "kohno" : 2.3242824552976926, + "guidanc" : 1.1781544196194547, + "tadayoshi" : 2.3242824552976926, + "cryptograph" : 2.0232524596337114, + "system" : 0.6808297788115053, + "and" : 0.05012460603401282, + "design" : 0.6430412179221054, + "cryptographi" : 2.403212128778709, + "implement" : 1.2451012092500677, + "to" : 0.42665536400725124, + "bruce" : 1.7222224639697303 }, "47" : { - "engin" : 1.2387618990944165, - "practic" : 0.3548258280480598, - "philipp" : 2.3138672203691533, - "multipl" : 0.670414543882966, - "emphasi" : 1.8367459656494909, - "secur" : 1.7689125317656766, - "with" : 0.6606547065938096, - "modern" : 1.6555275390280006, - "introduct" : 0.7823883033268982, - "serious" : 2.012837224705172, - "cryptographi" : 2.7130965053814537, - "jean" : 2.3138672203691533, - "to" : 0.4273764951966715, - "aumasson" : 2.3138672203691533, - "on" : 0.7456654963021584 + "engin" : 1.2051993093167377, + "practic" : 0.3557995067437576, + "philipp" : 2.3242824552976926, + "multipl" : 0.6808297788115053, + "emphasi" : 1.8471612005780302, + "secur" : 1.7824630648195934, + "with" : 0.6521845973619752, + "modern" : 1.6690780720819176, + "introduct" : 0.7802144109474171, + "serious" : 2.0232524596337114, + "cryptographi" : 2.728481070267298, + "jean" : 2.3242824552976926, + "to" : 0.42665536400725124, + "aumasson" : 2.3242824552976926, + "on" : 0.7222224639697303 }, "48" : { - "a" : 0.5656791933629529, - "practic" : 0.3548258280480598, - "ux" : 2.2271125517770325, - "tidwel" : 2.3138672203691533, - "pattern" : 1.017910650884944, - "for" : 0.43305362808836206, - "interact" : 2.012837224705172, - "best" : 1.1677391846909153, - "n" : 0.7228026133426542, - "interfac" : 2.012837224705172, - "ui" : 2.5285468419995123, - "jenif" : 2.3138672203691533, - "and" : 0.06689392822195765, - "design" : 0.9617675171779496 + "a" : 0.5389526202869256, + "practic" : 0.3557995067437576, + "ux" : 2.2406630848309494, + "tidwel" : 2.3242824552976926, + "pattern" : 1.031461183938861, + "for" : 0.42665536400725124, + "interact" : 2.0232524596337114, + "best" : 1.1781544196194547, + "n" : 0.7332178482711935, + "interfac" : 2.0232524596337114, + "ui" : 2.5439314068853567, + "jenif" : 2.3242824552976926, + "and" : 0.06521361597109047, + "design" : 0.9498498506535602 }, "49" : { - "a" : 0.5656791933629529, - "think" : 1.711807229041191, - "practic" : 0.3548258280480598, - "simplic" : 2.012837224705172, - "ux" : 2.2271125517770325, - "don't" : 1.8367459656494909, - "focus" : 1.4107772333772097, - "advic" : 1.5357159699855099, - "usabl" : 2.61876160573047, - "krug" : 2.3138672203691533, - "n" : 0.7228026133426542, - "ui" : 1.711807229041191, - "web" : 1.9980125417713546, - "and" : 0.0514161306387239, - "experi" : 2.3138672203691533, - "me" : 2.3138672203691533, - "steve" : 1.8367459656494909, - "user" : 1.8367459656494909, - "make" : 1.711807229041191, - "on" : 0.7456654963021584 + "a" : 0.5389526202869256, + "think" : 1.7222224639697303, + "practic" : 0.3557995067437576, + "simplic" : 2.0232524596337114, + "ux" : 2.2406630848309494, + "don't" : 1.8471612005780302, + "focus" : 1.421192468305749, + "advic" : 1.546131204914049, + "usabl" : 2.632312138784387, + "krug" : 2.3242824552976926, + "n" : 0.7332178482711935, + "ui" : 1.7222224639697303, + "web" : 2.011563074825271, + "and" : 0.05012460603401282, + "experi" : 2.3242824552976926, + "me" : 2.3242824552976926, + "steve" : 1.8471612005780302, + "user" : 1.8471612005780302, + "make" : 1.7222224639697303, + "on" : 0.7222224639697303 }, "50" : { - "jon" : 1.8367459656494909, - "for" : 0.43305362808836206, - "focus" : 1.4107772333772097, - "leikam" : 2.3138672203691533, - "ui" : 1.711807229041191, - "and" : 0.0514161306387239, - "design" : 0.847112845140979, - "of" : 0.5656791933629529, - "visual" : 1.711807229041191, - "tip" : 2.012837224705172, - "on" : 0.7456654963021584, - "a" : 0.5656791933629529, - "practic" : 0.3548258280480598, - "law" : 2.3138672203691533, - "ux" : 2.5285468419995123, - "yablonski" : 2.3138672203691533, - "develop" : 1.1097472377132287, - "al" : 1.3596247109298285, - "n" : 0.7228026133426542, - "et" : 1.3596247109298285, - "layout" : 2.012837224705172, - "typographi" : 2.3138672203691533, - "jason" : 1.8367459656494909, - "polish" : 2.3138672203691533, - "frontend" : 1.711807229041191 + "jon" : 1.8471612005780302, + "for" : 0.42665536400725124, + "focus" : 1.421192468305749, + "leikam" : 2.3242824552976926, + "ui" : 1.7222224639697303, + "and" : 0.05012460603401282, + "design" : 0.8366159129649581, + "of" : 0.5608544617347554, + "visual" : 1.7222224639697303, + "tip" : 2.0232524596337114, + "on" : 0.7222224639697303, + "a" : 0.5389526202869256, + "practic" : 0.3557995067437576, + "law" : 2.3242824552976926, + "ux" : 2.5439314068853567, + "yablonski" : 2.3242824552976926, + "develop" : 1.1201624726417678, + "al" : 1.3700399458583679, + "n" : 0.7332178482711935, + "et" : 1.3700399458583679, + "layout" : 2.0232524596337114, + "typographi" : 2.3242824552976926, + "jason" : 1.8471612005780302, + "polish" : 2.3242824552976926, + "frontend" : 1.7222224639697303 }, "51" : { - "a" : 0.5656791933629529, - "product" : 1.4107772333772097, - "don" : 2.3138672203691533, - "cognit" : 2.012837224705172, - "book" : 1.4687691803548966, - "center" : 2.012837224705172, - "usabl" : 2.61876160573047, - "n" : 0.7228026133426542, - "everyday" : 2.3138672203691533, - "norman" : 2.3138672203691533, - "the" : 0.557992364696662, - "across" : 1.711807229041191, - "and" : 0.0514161306387239, - "design" : 1.0431163015943785, - "of" : 0.5656791933629529, - "foundat" : 1.2724745352109283, - "thing" : 2.012837224705172, - "human" : 1.8367459656494909, - "on" : 0.7456654963021584 + "a" : 0.5389526202869256, + "product" : 1.421192468305749, + "don" : 2.3242824552976926, + "cognit" : 2.0232524596337114, + "book" : 1.479184415283436, + "center" : 2.0232524596337114, + "usabl" : 2.632312138784387, + "n" : 0.7332178482711935, + "everyday" : 2.3242824552976926, + "norman" : 2.3242824552976926, + "the" : 0.546131204914049, + "across" : 1.7222224639697303, + "and" : 0.05012460603401282, + "design" : 1.0301906080078107, + "of" : 0.5608544617347554, + "foundat" : 1.1781544196194547, + "thing" : 2.0232524596337114, + "human" : 1.8471612005780302, + "on" : 0.7222224639697303 }, "52" : { - "scienc" : 1.92235002166213, - "python" : 1.137086724763167, - "data" : 1.69593224035863, - "in" : 0.7456654963021584, - "concept" : 1.2724745352109283, - "scratch" : 2.3138672203691533, - "with" : 0.6606547065938096, - "introduct" : 0.7823883033268982, - "grus" : 2.3138672203691533, - "implement" : 1.2346859743215286, - "principl" : 0.9336559786575475, - "from" : 1.9980125417713546, - "to" : 0.4273764951966715, - "basic" : 1.711807229041191, - "joel" : 2.3138672203691533, - "first" : 1.8367459656494909 + "scienc" : 1.7126180715379247, + "python" : 1.152471289649011, + "data" : 1.674999947324867, + "in" : 0.7222224639697303, + "concept" : 1.2451012092500677, + "scratch" : 2.3242824552976926, + "with" : 0.6521845973619752, + "introduct" : 0.7802144109474171, + "grus" : 2.3242824552976926, + "implement" : 1.2451012092500677, + "principl" : 0.926342446625655, + "from" : 2.011563074825271, + "to" : 0.42665536400725124, + "basic" : 1.7222224639697303, + "joel" : 2.3242824552976926, + "first" : 1.8471612005780302 }, "53" : { - "scienc" : 1.7724330495602796, - "practic" : 0.3548258280480598, - "python" : 0.7697991760188778, - "data" : 1.69593224035863, - "in" : 0.7456654963021584, - "scientist" : 2.3138672203691533, - "use" : 0.9521393843515605, - "gedeck" : 2.3138672203691533, - "concept" : 1.2724745352109283, - "for" : 0.43305362808836206, - "andrew" : 1.4107772333772097, - "techniqu" : 0.8087172420492474, - "with" : 0.6606547065938096, - "r" : 1.2724745352109283, - "peter" : 2.1010297179733644, - "appli" : 1.1999238680623165, - "and" : 0.0514161306387239, - "exampl" : 0.9521393843515605, - "statist" : 2.3853990019901534, - "bruce" : 2.2271125517770325, - "key" : 2.3138672203691533 + "scienc" : 1.579057318938936, + "practic" : 0.3557995067437576, + "python" : 0.7802144109474171, + "data" : 1.674999947324867, + "in" : 0.7222224639697303, + "scientist" : 2.0232524596337114, + "use" : 0.926342446625655, + "gedeck" : 2.3242824552976926, + "concept" : 1.2451012092500677, + "for" : 0.42665536400725124, + "andrew" : 1.421192468305749, + "techniqu" : 0.8191324769777867, + "with" : 0.6521845973619752, + "r" : 1.2828897701394677, + "peter" : 2.1145802510272813, + "appli" : 1.210339102990856, + "and" : 0.05012460603401282, + "exampl" : 0.926342446625655, + "statist" : 2.2838232653638633, + "bruce" : 2.2406630848309494, + "key" : 2.0232524596337114 }, "54" : { - "matlab" : 1.6148972160331345, - "method" : 1.6148972160331345, - "learn" : 1.4400819094192359, - "in" : 0.7456654963021584, - "use" : 0.9521393843515605, - "hasti" : 2.012837224705172, - "theori" : 1.7689125317656766, - "the" : 0.557992364696662, - "jerom" : 2.3138672203691533, - "robert" : 1.4107772333772097, - "comprehens" : 1.0351136194163244, - "r" : 1.2724745352109283, - "and" : 0.0514161306387239, - "of" : 0.5656791933629529, - "friedman" : 1.8367459656494909, - "trevor" : 1.8367459656494909, - "statist" : 2.3853990019901534, - "machin" : 1.1377759613134721, - "tibshirani" : 2.012837224705172, - "element" : 1.6148972160331345, - "ml" : 1.6555275390280006 + "matlab" : 1.6253124509616739, + "method" : 1.546131204914049, + "learn" : 1.4567677405985302, + "in" : 0.7222224639697303, + "use" : 0.926342446625655, + "hasti" : 2.0232524596337114, + "theori" : 1.6690780720819176, + "the" : 0.546131204914049, + "jerom" : 2.3242824552976926, + "robert" : 1.421192468305749, + "comprehens" : 0.9818597744754864, + "r" : 1.2828897701394677, + "and" : 0.05012460603401282, + "of" : 0.5608544617347554, + "friedman" : 1.8471612005780302, + "trevor" : 1.8471612005780302, + "statist" : 2.2838232653638633, + "machin" : 1.0938335339194187, + "tibshirani" : 2.0232524596337114, + "element" : 1.6253124509616739, + "ml" : 1.6690780720819176 }, "55" : { - "practic" : 0.3548258280480598, - "deep" : 1.2346859743215286, - "python" : 0.7697991760188778, - "learn" : 1.5983692631672954, - "geron" : 2.3138672203691533, - "techniqu" : 0.8087172420492474, - "with" : 0.6606547065938096, - "general" : 2.3138672203691533, - "tensorflow" : 1.8367459656494909, - "transform" : 1.8367459656494909, - "nlp" : 1.5357159699855099, - "and" : 0.06689392822195765, - "of" : 0.5656791933629529, - "aurelien" : 2.3138672203691533, - "machin" : 1.8227853467150255, - "kera" : 1.8367459656494909, - "scikit" : 1.8367459656494909, - "hand" : 1.4107772333772097, - "on" : 0.7456654963021584 + "practic" : 0.3557995067437576, + "deep" : 1.2451012092500677, + "python" : 0.7802144109474171, + "learn" : 1.616889126178517, + "geron" : 2.3242824552976926, + "techniqu" : 0.8191324769777867, + "with" : 0.6521845973619752, + "general" : 2.3242824552976926, + "tensorflow" : 1.8471612005780302, + "transform" : 1.8471612005780302, + "nlp" : 1.546131204914049, + "and" : 0.06521361597109047, + "of" : 0.5608544617347554, + "aurelien" : 2.3242824552976926, + "machin" : 1.7523869418651785, + "kera" : 1.8471612005780302, + "scikit" : 1.8471612005780302, + "hand" : 1.421192468305749, + "on" : 0.7222224639697303 }, "56" : { - "process" : 1.5192637063950825, - "python" : 1.001531818637977, - "natur" : 1.8367459656494909, - "nltk" : 3.0104106596839078, - "use" : 0.9521393843515605, - "languag" : 0.7340836237523433, - "corpus" : 2.3138672203691533, - "edward" : 2.3138672203691533, - "linguist" : 2.3138672203691533, - "techniqu" : 0.8087172420492474, - "the" : 0.557992364696662, - "ewan" : 2.3138672203691533, - "with" : 0.6606547065938096, - "nlp" : 2.2684387004780198, - "classic" : 1.3596247109298285, - "steven" : 1.711807229041191, - "toolkit" : 2.012837224705172, - "and" : 0.0514161306387239, - "introduct" : 0.7823883033268982, - "bird" : 2.3138672203691533, - "text" : 1.6148972160331345, - "to" : 0.4273764951966715, - "loper" : 2.3138672203691533, - "klein" : 2.3138672203691533 + "process" : 1.4938311870681658, + "python" : 1.0150823516918936, + "natur" : 1.8471612005780302, + "nltk" : 3.0239611927378247, + "use" : 0.926342446625655, + "languag" : 0.7222224639697303, + "corpus" : 2.3242824552976926, + "edward" : 2.3242824552976926, + "linguist" : 2.3242824552976926, + "techniqu" : 0.8191324769777867, + "the" : 0.546131204914049, + "ewan" : 2.3242824552976926, + "with" : 0.6521845973619752, + "nlp" : 2.2838232653638633, + "classic" : 1.3700399458583679, + "steven" : 1.7222224639697303, + "toolkit" : 2.0232524596337114, + "and" : 0.05012460603401282, + "introduct" : 0.7802144109474171, + "bird" : 2.3242824552976926, + "text" : 1.6253124509616739, + "to" : 0.42665536400725124, + "loper" : 2.3242824552976926, + "klein" : 2.3242824552976926 }, "57" : { - "richard" : 1.6148972160331345, - "code" : 1.0128372247051722, - "learn" : 1.4400819094192359, - "sutton" : 2.3138672203691533, - "g" : 2.012837224705172, - "an" : 1.711807229041191, - "andrew" : 1.4107772333772097, - "theori" : 1.7689125317656766, - "s" : 1.2346859743215286, - "reinforc" : 2.9732046469029467, - "and" : 0.0514161306387239, - "introduct" : 0.7823883033268982, - "machin" : 1.1377759613134721, - "text" : 1.6148972160331345, - "authorit" : 1.711807229041191, - "barto" : 2.3138672203691533, - "pseudo" : 1.5357159699855099, - "algorithm" : 1.2387618990944165, - "on" : 0.7456654963021584 + "richard" : 1.6253124509616739, + "code" : 1.0020631605637733, + "learn" : 1.4567677405985302, + "sutton" : 2.3242824552976926, + "g" : 2.0232524596337114, + "an" : 1.7222224639697303, + "andrew" : 1.421192468305749, + "theori" : 1.6690780720819176, + "s" : 1.210339102990856, + "reinforc" : 2.9885892117887907, + "and" : 0.05012460603401282, + "introduct" : 0.7802144109474171, + "machin" : 1.0938335339194187, + "text" : 1.6253124509616739, + "authorit" : 1.7222224639697303, + "barto" : 2.3242824552976926, + "pseudo" : 1.546131204914049, + "algorithm" : 1.2523124321483334, + "on" : 0.7222224639697303 }, "58" : { - "c" : 0.8514692224701973, - "multipl" : 0.670414543882966, - "code" : 1.0128372247051722, - "maintain" : 1.4687691803548966, - "separ" : 2.3138672203691533, - "clean" : 2.389661595724792, - "boundari" : 3.0104106596839078, - "robert" : 1.4107772333772097, - "compon" : 2.012837224705172, - "guidanc" : 1.1677391846909153, - "build" : 1.1999238680623165, - "and" : 0.0514161306387239, - "martin" : 1.2724745352109283, - "architectur" : 1.5886794671435753, - "on" : 0.7456654963021584 + "c" : 0.8618844573987365, + "multipl" : 0.6808297788115053, + "code" : 1.0020631605637733, + "maintain" : 1.479184415283436, + "separ" : 2.3242824552976926, + "clean" : 2.403212128778709, + "boundari" : 3.0239611927378247, + "robert" : 1.421192468305749, + "compon" : 2.0232524596337114, + "guidanc" : 1.1781544196194547, + "build" : 1.210339102990856, + "and" : 0.05012460603401282, + "martin" : 1.2828897701394677, + "architectur" : 1.572998261781473, + "on" : 0.7222224639697303 }, "59" : { - "practic" : 0.3548258280480598, - "art" : 1.2724745352109283, - "process" : 1.1677391846909153, - "multipl" : 0.670414543882966, - "for" : 0.43305362808836206, - "scale" : 1.711807229041191, - "team" : 2.389661595724792, - "l" : 1.711807229041191, - "strategi" : 1.4687691803548966, - "fisher" : 2.3138672203691533, - "the" : 0.557992364696662, - "michael" : 1.6148972160331345, - "system" : 0.7010833636494179, - "t" : 1.8367459656494909, - "scalabl" : 1.9980125417713546, - "and" : 0.06689392822195765, - "martin" : 1.2724745352109283, - "abbott" : 2.3138672203691533, - "of" : 0.5656791933629529, - "organiz" : 2.3138672203691533, - "larg" : 1.6148972160331345, - "architectur" : 0.9916479256352342 + "practic" : 0.3557995067437576, + "art" : 1.2828897701394677, + "process" : 1.1481911962420115, + "multipl" : 0.6808297788115053, + "for" : 0.42665536400725124, + "scale" : 1.7222224639697303, + "team" : 2.403212128778709, + "l" : 1.6253124509616739, + "strategi" : 1.479184415283436, + "fisher" : 2.3242824552976926, + "the" : 0.546131204914049, + "michael" : 1.6253124509616739, + "system" : 0.6808297788115053, + "t" : 1.8471612005780302, + "scalabl" : 2.011563074825271, + "and" : 0.06521361597109047, + "martin" : 1.2828897701394677, + "abbott" : 2.3242824552976926, + "of" : 0.5608544617347554, + "organiz" : 2.3242824552976926, + "larg" : 1.6253124509616739, + "architectur" : 0.9818597744754864 }, "60" : { - "think" : 2.2271125517770325, - "practic" : 0.3548258280480598, - "c" : 0.8514692224701973, - "jon" : 1.8367459656494909, - "focus" : 1.4107772333772097, - "program" : 0.8589068076281647, - "techniqu" : 0.8087172420492474, - "insight" : 2.012837224705172, - "problem" : 1.9109127603485203, - "and" : 0.0514161306387239, - "of" : 0.5656791933629529, - "bentley" : 2.3138672203691533, - "collect" : 1.6148972160331345, - "algorithm" : 1.2387618990944165, - "pearl" : 2.3138672203691533, - "on" : 0.7456654963021584 + "think" : 2.2406630848309494, + "practic" : 0.3557995067437576, + "c" : 0.8618844573987365, + "jon" : 1.8471612005780302, + "focus" : 1.421192468305749, + "program" : 0.8625202971192018, + "techniqu" : 0.8191324769777867, + "insight" : 2.0232524596337114, + "problem" : 1.9244632934024373, + "and" : 0.05012460603401282, + "of" : 0.5608544617347554, + "bentley" : 2.3242824552976926, + "collect" : 1.6253124509616739, + "algorithm" : 1.2523124321483334, + "pearl" : 2.3242824552976926, + "on" : 0.7222224639697303 }, "61" : { - "practic" : 0.3548258280480598, - "c" : 0.8514692224701973, - "rob" : 2.012837224705172, - "kernighan" : 1.6148972160331345, - "pike" : 2.012837224705172, - "program" : 0.7565144138531231, - "tool" : 1.9980125417713546, - "environ" : 1.8367459656494909, - "the" : 0.557992364696662, - "system" : 0.7010833636494179, - "classic" : 1.3596247109298285, - "shell" : 2.012837224705172, - "and" : 0.0514161306387239, - "w" : 1.3596247109298285, - "guid" : 0.8667091890269342, - "to" : 0.4273764951966715, - "philosophi" : 2.2271125517770325, - "brian" : 1.4107772333772097, - "unix" : 2.7130965053814537 + "practic" : 0.3557995067437576, + "c" : 0.8618844573987365, + "rob" : 2.0232524596337114, + "kernighan" : 1.6253124509616739, + "pike" : 2.0232524596337114, + "program" : 0.759697130371374, + "tool" : 2.011563074825271, + "environ" : 1.8471612005780302, + "the" : 0.546131204914049, + "system" : 0.6808297788115053, + "classic" : 1.3700399458583679, + "shell" : 2.0232524596337114, + "and" : 0.05012460603401282, + "w" : 1.3700399458583679, + "guid" : 0.8618844573987365, + "to" : 0.42665536400725124, + "philosophi" : 2.2406630848309494, + "brian" : 1.421192468305749, + "unix" : 2.728481070267298 }, "62" : { - "multipl" : 0.670414543882966, - "about" : 2.012837224705172, - "languag" : 1.1760460039026783, - "program" : 0.7565144138531231, - "l" : 1.711807229041191, - "compil" : 1.711807229041191, - "techniqu" : 0.8087172420492474, - "michael" : 1.6148972160331345, - "comprehens" : 1.0351136194163244, - "pragmat" : 1.8367459656494909, - "semant" : 3.0104106596839078, - "and" : 0.0514161306387239, - "design" : 0.847112845140979, - "implement" : 1.2346859743215286, - "text" : 1.6148972160331345, - "scott" : 1.5357159699855099 + "multipl" : 0.6808297788115053, + "about" : 2.0232524596337114, + "languag" : 1.1570437143642058, + "program" : 0.759697130371374, + "l" : 1.6253124509616739, + "compil" : 1.7222224639697303, + "techniqu" : 0.8191324769777867, + "michael" : 1.6253124509616739, + "comprehens" : 0.9818597744754864, + "pragmat" : 1.8471612005780302, + "semant" : 3.0239611927378247, + "and" : 0.05012460603401282, + "design" : 0.8366159129649581, + "implement" : 1.2451012092500677, + "text" : 1.6253124509616739, + "scott" : 1.546131204914049 }, "63" : { - "practic" : 0.3548258280480598, - "test" : 1.9407411970867192, - "beck" : 2.3138672203691533, - "increment" : 2.3138672203691533, - "develop" : 1.1097472377132287, - "techniqu" : 0.8087172420492474, - "with" : 0.6606547065938096, - "kent" : 2.3138672203691533, - "java" : 0.9521393843515605, - "tdd" : 3.0104106596839078, - "and" : 0.0514161306387239, - "design" : 0.847112845140979, - "introduct" : 0.7823883033268982, - "by" : 1.5357159699855099, - "driven" : 1.4107772333772097, - "exampl" : 1.2387618990944165, - "to" : 0.4273764951966715 + "practic" : 0.3557995067437576, + "test" : 1.956125761972563, + "beck" : 2.3242824552976926, + "increment" : 2.3242824552976926, + "develop" : 1.1201624726417678, + "techniqu" : 0.8191324769777867, + "with" : 0.6521845973619752, + "kent" : 2.3242824552976926, + "java" : 0.9625546192800998, + "tdd" : 3.0239611927378247, + "and" : 0.05012460603401282, + "design" : 0.8366159129649581, + "introduct" : 0.7802144109474171, + "by" : 1.546131204914049, + "driven" : 1.421192468305749, + "exampl" : 1.2051993093167377, + "to" : 0.42665536400725124 }, "64" : { - "small" : 2.012837224705172, - "engin" : 0.9521393843515605, - "practic" : 0.3548258280480598, - "art" : 1.2724745352109283, - "multipl" : 0.670414543882966, - "code" : 1.317731610066489, - "maintain" : 1.4687691803548966, - "clearer" : 2.3138672203691533, - "techniqu" : 0.8087172420492474, - "the" : 0.557992364696662, - "readabl" : 2.61876160573047, - "softwar" : 0.8367459656494909, - "boswel" : 2.3138672203691533, - "and" : 0.06689392822195765, - "of" : 0.5656791933629529, - "easier" : 2.3138672203691533, - "principl" : 0.9336559786575475, - "style" : 1.6148972160331345, - "foucher" : 2.3138672203691533, - "trevor" : 1.8367459656494909, - "to" : 0.556029639692613, - "dustin" : 2.3138672203691533, - "make" : 1.711807229041191 + "small" : 2.0232524596337114, + "engin" : 0.926342446625655, + "practic" : 0.3557995067437576, + "art" : 1.2828897701394677, + "multipl" : 0.6808297788115053, + "code" : 1.3037142294433213, + "maintain" : 1.479184415283436, + "clearer" : 2.3242824552976926, + "techniqu" : 0.8191324769777867, + "the" : 0.546131204914049, + "readabl" : 2.632312138784387, + "softwar" : 0.8471612005780302, + "boswel" : 2.3242824552976926, + "and" : 0.06521361597109047, + "of" : 0.5608544617347554, + "easier" : 2.3242824552976926, + "principl" : 0.926342446625655, + "style" : 1.546131204914049, + "foucher" : 2.3242824552976926, + "trevor" : 1.8471612005780302, + "to" : 0.5550914263843684, + "dustin" : 2.3242824552976926, + "make" : 1.7222224639697303 }, "65" : { - "app" : 1.8367459656494909, - "tcp" : 2.012837224705172, - "a" : 0.5656791933629529, - "grigorik" : 2.3138672203691533, - "optim" : 2.012837224705172, - "perform" : 1.9407411970867192, - "for" : 0.43305362808836206, - "focus" : 1.4107772333772097, - "n" : 0.7228026133426542, - "network" : 2.3530563403421443, - "high" : 1.711807229041191, - "web" : 1.9980125417713546, - "and" : 0.0514161306387239, - "browser" : 2.3138672203691533, - "http" : 2.012837224705172, - "guid" : 0.8667091890269342, - "tls" : 2.3138672203691533, - "ilya" : 2.3138672203691533, - "to" : 0.4273764951966715 + "app" : 1.8471612005780302, + "tcp" : 2.0232524596337114, + "a" : 0.5389526202869256, + "grigorik" : 2.3242824552976926, + "optim" : 1.7222224639697303, + "perform" : 1.8949837469354298, + "for" : 0.42665536400725124, + "focus" : 1.421192468305749, + "n" : 0.7332178482711935, + "network" : 2.369742171521439, + "high" : 1.7222224639697303, + "web" : 2.011563074825271, + "and" : 0.05012460603401282, + "browser" : 2.3242824552976926, + "http" : 2.0232524596337114, + "guid" : 0.8618844573987365, + "tls" : 2.3242824552976926, + "ilya" : 2.3242824552976926, + "to" : 0.42665536400725124 }, "66" : { - "definit" : 1.711807229041191, - "for" : 0.43305362808836206, - "gourley" : 2.3138672203691533, - "network" : 1.4687691803548966, - "technolog" : 2.3138672203691533, - "protocol" : 2.2271125517770325, - "web" : 1.5357159699855099, - "and" : 0.0514161306387239, - "totti" : 2.3138672203691533, - "sayer" : 2.3138672203691533, - "david" : 1.3138672203691535, - "brian" : 1.4107772333772097, - "marjori" : 2.3138672203691533, - "a" : 0.5656791933629529, - "reddi" : 2.3138672203691533, - "aggarw" : 2.3138672203691533, - "in" : 0.7456654963021584, - "sailu" : 2.3138672203691533, - "n" : 0.7228026133426542, - "the" : 0.557992364696662, - "depth" : 1.5357159699855099, - "refer" : 1.3596247109298285, - "http" : 2.9732046469029467, - "anshu" : 2.3138672203691533, - "guid" : 0.8667091890269342, - "relat" : 1.711807229041191 + "definit" : 1.7222224639697303, + "for" : 0.42665536400725124, + "gourley" : 2.3242824552976926, + "network" : 1.479184415283436, + "technolog" : 2.3242824552976926, + "protocol" : 2.2406630848309494, + "web" : 1.546131204914049, + "and" : 0.05012460603401282, + "totti" : 2.3242824552976926, + "sayer" : 2.3242824552976926, + "david" : 1.3242824552976926, + "brian" : 1.421192468305749, + "marjori" : 2.3242824552976926, + "a" : 0.5389526202869256, + "reddi" : 2.3242824552976926, + "aggarw" : 2.3242824552976926, + "in" : 0.7222224639697303, + "sailu" : 2.3242824552976926, + "n" : 0.7332178482711935, + "the" : 0.546131204914049, + "depth" : 1.546131204914049, + "refer" : 1.3700399458583679, + "http" : 2.9885892117887907, + "anshu" : 2.3242824552976926, + "guid" : 0.8618844573987365, + "relat" : 1.6253124509616739 }, "67" : { - "a" : 0.5656791933629529, - "multipl" : 0.670414543882966, - "week" : 1.8367459656494909, - "in" : 0.7456654963021584, - "paradigm" : 2.1010297179733644, - "tate" : 2.3138672203691533, - "languag" : 1.1760460039026783, - "rapid" : 2.3138672203691533, - "seven" : 2.7130965053814537, - "program" : 0.7565144138531231, - "differ" : 2.012837224705172, - "and" : 0.0514161306387239, - "introduct" : 0.7823883033268982, - "to" : 0.4273764951966715, - "introductori" : 1.4687691803548966, - "bruce" : 1.711807229041191 + "a" : 0.5389526202869256, + "multipl" : 0.6808297788115053, + "week" : 1.8471612005780302, + "in" : 0.7222224639697303, + "paradigm" : 2.1145802510272813, + "tate" : 2.3242824552976926, + "languag" : 1.1570437143642058, + "rapid" : 2.3242824552976926, + "seven" : 2.728481070267298, + "program" : 0.759697130371374, + "differ" : 2.0232524596337114, + "and" : 0.05012460603401282, + "introduct" : 0.7802144109474171, + "to" : 0.42665536400725124, + "introductori" : 1.479184415283436, + "bruce" : 1.7222224639697303 }, "68" : { - "blandi" : 2.3138672203691533, - "languag" : 0.7340836237523433, - "orendorff" : 2.3138672203691533, - "program" : 0.8589068076281647, - "jim" : 2.012837224705172, - "with" : 0.6606547065938096, - "comprehens" : 1.0351136194163244, - "rust" : 3.224685986755768, - "system" : 0.9121304855688916, - "and" : 0.0514161306387239, - "jason" : 1.8367459656494909, - "safe" : 1.8367459656494909, - "guid" : 0.8667091890269342, - "concurr" : 1.9109127603485203, - "to" : 0.4273764951966715 + "blandi" : 2.3242824552976926, + "languag" : 0.7222224639697303, + "orendorff" : 2.3242824552976926, + "program" : 0.8625202971192018, + "jim" : 2.0232524596337114, + "with" : 0.6521845973619752, + "comprehens" : 0.9818597744754864, + "rust" : 3.2413718179350623, + "system" : 0.885779964175042, + "and" : 0.05012460603401282, + "jason" : 1.8471612005780302, + "safe" : 1.8471612005780302, + "guid" : 0.8618844573987365, + "concurr" : 1.8490140308775116, + "to" : 0.42665536400725124 }, "69" : { - "klabnik" : 2.3138672203691533, - "book" : 1.4687691803548966, - "languag" : 1.084330523386218, - "program" : 0.7565144138531231, - "the" : 0.557992364696662, - "cover" : 1.4107772333772097, - "idiomat" : 2.012837224705172, - "carol" : 2.3138672203691533, - "rust" : 3.419750068385046, - "system" : 0.7010833636494179, - "fundament" : 1.3596247109298285, - "and" : 0.0514161306387239, - "nichol" : 2.3138672203691533, - "offici" : 3.0104106596839078, - "steve" : 1.8367459656494909 + "klabnik" : 2.3242824552976926, + "book" : 1.479184415283436, + "languag" : 1.0668101521656943, + "program" : 0.759697130371374, + "the" : 0.546131204914049, + "cover" : 1.210339102990856, + "idiomat" : 2.0232524596337114, + "carol" : 2.3242824552976926, + "rust" : 3.4374452401167472, + "system" : 0.6808297788115053, + "fundament" : 1.3700399458583679, + "and" : 0.05012460603401282, + "nichol" : 2.3242824552976926, + "offici" : 3.0239611927378247, + "steve" : 1.8471612005780302 }, "70" : { - "learn" : 0.8988938723983354, - "react" : 3.417862451806381, - "javascript" : 1.5357159699855099, - "with" : 0.6606547065938096, - "compon" : 2.61876160573047, - "bank" : 2.3138672203691533, - "alex" : 2.3138672203691533, - "hook" : 2.3138672203691533, - "fundament" : 1.3596247109298285, - "eve" : 2.3138672203691533, - "and" : 0.0514161306387239, - "introduct" : 0.7823883033268982, - "porcello" : 2.3138672203691533, - "exampl" : 0.9521393843515605, - "state" : 2.3138672203691533, - "to" : 0.4273764951966715, - "frontend" : 2.2271125517770325 + "learn" : 0.9093091073268746, + "react" : 3.433247016692225, + "javascript" : 1.546131204914049, + "with" : 0.6521845973619752, + "compon" : 2.632312138784387, + "bank" : 2.3242824552976926, + "alex" : 2.3242824552976926, + "hook" : 2.3242824552976926, + "fundament" : 1.3700399458583679, + "eve" : 2.3242824552976926, + "and" : 0.05012460603401282, + "introduct" : 0.7802144109474171, + "porcello" : 2.3242824552976926, + "exampl" : 0.926342446625655, + "state" : 2.3242824552976926, + "to" : 0.42665536400725124, + "frontend" : 2.2406630848309494 }, "71" : { - "don't" : 1.8367459656494909, - "in" : 0.7456654963021584, - "asynchron" : 2.3138672203691533, - "perform" : 1.9407411970867192, - "languag" : 0.7340836237523433, - "js" : 2.012837224705172, - "program" : 0.7565144138531231, - "javascript" : 2.2684387004780198, - "async" : 2.61876160573047, - "depth" : 1.5357159699855099, - "kyle" : 2.012837224705172, - "and" : 0.0514161306387239, - "simpson" : 2.012837224705172, - "of" : 0.5656791933629529, - "know" : 1.8367459656494909, - "consider" : 1.711807229041191, - "coverag" : 2.012837224705172, - "you" : 2.012837224705172 + "don't" : 1.8471612005780302, + "in" : 0.7222224639697303, + "asynchron" : 2.3242824552976926, + "perform" : 1.8949837469354298, + "languag" : 0.7222224639697303, + "js" : 2.0232524596337114, + "program" : 0.759697130371374, + "javascript" : 2.2838232653638633, + "async" : 2.632312138784387, + "depth" : 1.546131204914049, + "kyle" : 2.0232524596337114, + "and" : 0.05012460603401282, + "simpson" : 2.0232524596337114, + "of" : 0.5608544617347554, + "know" : 1.8471612005780302, + "consider" : 1.7222224639697303, + "coverag" : 2.0232524596337114, + "you" : 2.0232524596337114 }, "72" : { - "a" : 0.5656791933629529, - "multipl" : 0.670414543882966, - "level" : 1.8367459656494909, - "maintain" : 1.4687691803548966, - "for" : 0.43305362808836206, - "abstract" : 2.012837224705172, - "high" : 1.711807229041191, - "system" : 0.7010833636494179, - "ousterhout" : 2.3138672203691533, - "softwar" : 1.2359752506617916, - "design" : 1.0431163015943785, - "complex" : 1.8367459656494909, - "of" : 0.5656791933629529, - "larg" : 1.6148972160331345, - "principl" : 0.9336559786575475, - "john" : 1.4687691803548966, - "philosophi" : 1.711807229041191 + "a" : 0.5389526202869256, + "multipl" : 0.6808297788115053, + "level" : 1.7222224639697303, + "maintain" : 1.479184415283436, + "for" : 0.42665536400725124, + "abstract" : 2.0232524596337114, + "high" : 1.7222224639697303, + "system" : 0.6808297788115053, + "ousterhout" : 2.3242824552976926, + "softwar" : 1.2513598155476355, + "design" : 1.0301906080078107, + "complex" : 1.8471612005780302, + "of" : 0.5608544617347554, + "larg" : 1.6253124509616739, + "principl" : 0.926342446625655, + "john" : 1.479184415283436, + "philosophi" : 1.7222224639697303 }, "73" : { - "practic" : 0.3548258280480598, - "multipl" : 0.670414543882966, - "in" : 0.9701331774207775, - "attribut" : 3.0104106596839078, - "rick" : 2.3138672203691533, - "clement" : 2.3138672203691533, - "kazman" : 2.3138672203691533, - "bass" : 2.3138672203691533, - "studi" : 1.9980125417713546, - "softwar" : 1.088631600060811, - "len" : 2.3138672203691533, - "and" : 0.06689392822195765, - "architectur" : 1.5886794671435753, - "principl" : 0.9336559786575475, - "paul" : 2.012837224705172, - "foundat" : 1.2724745352109283, - "case" : 1.9980125417713546, - "qualiti" : 2.2271125517770325 + "practic" : 0.3557995067437576, + "multipl" : 0.6808297788115053, + "in" : 0.9396330891669681, + "attribut" : 3.0239611927378247, + "rick" : 2.3242824552976926, + "clement" : 2.3242824552976926, + "kazman" : 2.3242824552976926, + "bass" : 2.3242824552976926, + "studi" : 2.011563074825271, + "softwar" : 1.102182133114728, + "len" : 2.3242824552976926, + "and" : 0.06521361597109047, + "architectur" : 1.572998261781473, + "principl" : 0.926342446625655, + "paul" : 2.0232524596337114, + "foundat" : 1.1781544196194547, + "case" : 2.011563074825271, + "qualiti" : 2.2406630848309494 }, "74" : { - "textbook" : 1.5357159699855099, - "code" : 1.0128372247051722, - "clrs" : 2.3138672203691533, - "in" : 0.7456654963021584, - "edit" : 1.6148972160331345, - "use" : 1.2387618990944165, - "2nd" : 2.3138672203691533, - "worldwid" : 2.3138672203691533, - "al" : 1.3596247109298285, - "analysi" : 1.3596247109298285, - "cours" : 1.8367459656494909, - "et" : 1.3596247109298285, - "cormen" : 2.012837224705172, - "core" : 1.6148972160331345, - "common" : 2.012837224705172, - "refer" : 1.7689125317656766, - "introduct" : 0.7823883033268982, - "of" : 0.5656791933629529, - "to" : 0.4273764951966715, - "anoth" : 2.3138672203691533, - "pseudo" : 1.5357159699855099, - "algorithm" : 1.5253844138372725 + "textbook" : 1.3242824552976926, + "code" : 1.0020631605637733, + "clrs" : 2.3242824552976926, + "in" : 0.7222224639697303, + "edit" : 1.479184415283436, + "use" : 1.2051993093167377, + "2nd" : 2.3242824552976926, + "worldwid" : 2.3242824552976926, + "al" : 1.3700399458583679, + "analysi" : 1.3700399458583679, + "cours" : 1.6253124509616739, + "et" : 1.3700399458583679, + "cormen" : 2.0232524596337114, + "core" : 1.546131204914049, + "common" : 2.0232524596337114, + "refer" : 1.7824630648195934, + "introduct" : 0.7802144109474171, + "of" : 0.5608544617347554, + "to" : 0.42665536400725124, + "anoth" : 2.3242824552976926, + "pseudo" : 1.546131204914049, + "algorithm" : 1.5420702450165669 }, "75" : { - "practic" : 0.46163904552683577, - "narasimha" : 2.3138672203691533, - "data" : 1.0585947152658473, - "made" : 2.3138672203691533, - "solut" : 1.8367459656494909, - "focus" : 1.4107772333772097, - "karumanchi" : 2.3138672203691533, - "ds" : 2.3138672203691533, - "java" : 0.9521393843515605, - "structur" : 1.6148972160331345, - "problem" : 1.4687691803548966, - "and" : 0.07594785940190192, - "of" : 0.5656791933629529, - "collect" : 1.6148972160331345, - "easi" : 2.3138672203691533, - "interview" : 2.389661595724792, - "algorithm" : 1.406425322081384, - "on" : 0.7456654963021584 + "practic" : 0.4629058307160776, + "narasimha" : 2.3242824552976926, + "data" : 1.0455288543448638, + "made" : 2.3242824552976926, + "solut" : 1.8471612005780302, + "focus" : 1.421192468305749, + "karumanchi" : 2.3242824552976926, + "ds" : 2.3242824552976926, + "java" : 0.9625546192800998, + "structur" : 1.6253124509616739, + "problem" : 1.479184415283436, + "and" : 0.07404012095728978, + "of" : 0.5608544617347554, + "collect" : 1.6253124509616739, + "easi" : 2.3242824552976926, + "interview" : 2.403212128778709, + "algorithm" : 1.421809886967228, + "on" : 0.7222224639697303 }, "76" : { - "prakash" : 2.3138672203691533, - "practic" : 0.3548258280480598, - "python" : 1.001531818637977, - "in" : 0.7456654963021584, - "solut" : 1.8367459656494909, - "aziz" : 2.3138672203691533, - "hsien" : 2.3138672203691533, - "languag" : 0.7340836237523433, - "focus" : 1.4107772333772097, - "program" : 0.5814734605461849, - "lee" : 2.3138672203691533, - "with" : 0.6606547065938096, - "across" : 1.711807229041191, - "problem" : 1.4687691803548966, - "and" : 0.0514161306387239, - "tsung" : 2.3138672203691533, - "of" : 0.5656791933629529, - "prep" : 2.012837224705172, - "amit" : 2.3138672203691533, - "interview" : 2.9425772258000933, - "adnan" : 2.3138672203691533, - "discuss" : 2.3138672203691533, - "algorithm" : 0.9521393843515605, - "element" : 1.6148972160331345 + "prakash" : 2.3242824552976926, + "practic" : 0.3557995067437576, + "python" : 1.0150823516918936, + "in" : 0.7222224639697303, + "solut" : 1.8471612005780302, + "aziz" : 2.3242824552976926, + "hsien" : 2.3242824552976926, + "languag" : 0.7222224639697303, + "focus" : 1.421192468305749, + "program" : 0.5839197658034488, + "lee" : 2.3242824552976926, + "with" : 0.6521845973619752, + "across" : 1.7222224639697303, + "problem" : 1.479184415283436, + "and" : 0.05012460603401282, + "tsung" : 2.3242824552976926, + "of" : 0.5608544617347554, + "prep" : 2.0232524596337114, + "amit" : 2.3242824552976926, + "interview" : 2.959263056979388, + "adnan" : 2.3242824552976926, + "discuss" : 2.3242824552976926, + "algorithm" : 0.9625546192800998, + "element" : 1.6253124509616739 }, "77" : { - "tech" : 2.3138672203691533, - "practic" : 0.3548258280480598, - "python" : 0.7697991760188778, - "c" : 0.8514692224701973, - "code" : 1.0128372247051722, - "book" : 1.4687691803548966, - "for" : 0.43305362808836206, - "laakmann" : 2.3138672203691533, - "strategi" : 1.4687691803548966, - "the" : 0.557992364696662, - "with" : 0.6606547065938096, - "mcdowel" : 2.3138672203691533, - "crack" : 2.3138672203691533, - "java" : 0.9521393843515605, - "problem" : 1.4687691803548966, - "and" : 0.0514161306387239, - "of" : 0.5656791933629529, - "prep" : 2.61876160573047, - "popular" : 2.3138672203691533, - "interview" : 3.1205763012236805, - "gayl" : 2.3138672203691533, - "hundr" : 2.3138672203691533, - "algorithm" : 0.9521393843515605 + "tech" : 2.3242824552976926, + "practic" : 0.3557995067437576, + "python" : 0.7802144109474171, + "c" : 0.8618844573987365, + "code" : 1.0020631605637733, + "book" : 1.479184415283436, + "for" : 0.42665536400725124, + "laakmann" : 2.3242824552976926, + "strategi" : 1.479184415283436, + "the" : 0.546131204914049, + "with" : 0.6521845973619752, + "mcdowel" : 2.3242824552976926, + "crack" : 2.3242824552976926, + "java" : 0.9625546192800998, + "problem" : 1.479184415283436, + "and" : 0.05012460603401282, + "of" : 0.5608544617347554, + "prep" : 2.632312138784387, + "popular" : 2.3242824552976926, + "interview" : 3.1382714729553816, + "gayl" : 2.3242824552976926, + "hundr" : 2.3242824552976926, + "algorithm" : 0.9625546192800998 }, "78" : { - "practic" : 0.46163904552683577, - "c" : 1.1077869988184144, - "catalog" : 1.8367459656494909, - "manual" : 2.61876160573047, - "the" : 0.557992364696662, - "s" : 1.2346859743215286, - "solv" : 1.8367459656494909, - "problem" : 1.4687691803548966, - "steven" : 1.711807229041191, - "skiena" : 2.3138672203691533, - "and" : 0.0514161306387239, - "design" : 0.847112845140979, - "of" : 0.5656791933629529, - "guid" : 0.8667091890269342, - "to" : 0.4273764951966715, - "algorithm" : 1.617656253960265, - "resourc" : 2.3138672203691533 + "practic" : 0.4629058307160776, + "c" : 1.121337531872331, + "catalog" : 1.8471612005780302, + "manual" : 2.632312138784387, + "the" : 0.546131204914049, + "s" : 1.210339102990856, + "solv" : 1.8471612005780302, + "problem" : 1.479184415283436, + "steven" : 1.7222224639697303, + "skiena" : 2.3242824552976926, + "and" : 0.05012460603401282, + "design" : 0.8366159129649581, + "of" : 0.5608544617347554, + "guid" : 0.8618844573987365, + "to" : 0.42665536400725124, + "algorithm" : 1.635351425691966, + "resourc" : 2.3242824552976926 }, "79" : { - "scienc" : 1.1999238680623165, - "for" : 0.563415759874073, - "tailor" : 2.012837224705172, - "comput" : 1.1999238680623165, - "mathemat" : 2.389661595724792, - "and" : 0.0514161306387239, - "albert" : 2.3138672203691533, - "thomson" : 2.3138672203691533, - "proof" : 3.0104106596839078, - "leighton" : 2.3138672203691533, - "lehman" : 2.3138672203691533, - "meyer" : 1.711807229041191, - "a" : 0.5656791933629529, - "like" : 2.3138672203691533, - "f" : 2.3138672203691533, - "eric" : 1.4107772333772097, - "count" : 2.3138672203691533, - "n" : 0.7228026133426542, - "graph" : 2.012837224705172, - "cs" : 1.8367459656494909, - "r" : 1.2724745352109283, - "discret" : 3.0104106596839078, - "topic" : 1.8367459656494909, - "probabl" : 2.012837224705172, - "math" : 2.2271125517770325, - "foundat" : 1.6555275390280006 + "scienc" : 1.0690099501943866, + "for" : 0.5550914263843684, + "tailor" : 2.0232524596337114, + "comput" : 1.0938335339194187, + "mathemat" : 2.1145802510272813, + "and" : 0.05012460603401282, + "albert" : 2.3242824552976926, + "thomson" : 2.3242824552976926, + "proof" : 3.0239611927378247, + "leighton" : 2.3242824552976926, + "lehman" : 2.3242824552976926, + "meyer" : 1.7222224639697303, + "a" : 0.5389526202869256, + "like" : 2.0232524596337114, + "f" : 2.0232524596337114, + "eric" : 1.421192468305749, + "count" : 2.3242824552976926, + "n" : 0.7332178482711935, + "graph" : 2.0232524596337114, + "cs" : 1.8471612005780302, + "r" : 1.2828897701394677, + "discret" : 3.0239611927378247, + "topic" : 1.6253124509616739, + "probabl" : 1.8471612005780302, + "math" : 2.2406630848309494, + "foundat" : 1.5328142394489994 }, "80" : { - "joe" : 2.012837224705172, - "armstrong" : 2.3138672203691533, - "erlang" : 3.7069540989986622, - "distribut" : 1.9109127603485203, - "program" : 0.7565144138531231, - "actor" : 2.3138672203691533, - "with" : 0.6606547065938096, - "system" : 0.9121304855688916, - "and" : 0.0514161306387239, - "introduct" : 0.7823883033268982, - "model" : 1.1999238680623165, - "concurr" : 2.169550174579395, - "to" : 0.4273764951966715 + "joe" : 2.0232524596337114, + "armstrong" : 2.3242824552976926, + "erlang" : 3.723639930177957, + "distribut" : 1.8490140308775116, + "program" : 0.759697130371374, + "actor" : 2.3242824552976926, + "with" : 0.6521845973619752, + "system" : 0.885779964175042, + "and" : 0.05012460603401282, + "introduct" : 0.7802144109474171, + "model" : 1.1781544196194547, + "concurr" : 2.0992736019819223, + "to" : 0.42665536400725124 }, "81" : { - "practic" : 0.3548258280480598, - "multipl" : 0.670414543882966, - "week" : 1.8367459656494909, - "in" : 0.7456654963021584, - "paradigm" : 1.6148972160331345, - "eric" : 1.4107772333772097, - "seven" : 2.389661595724792, - "differ" : 2.012837224705172, - "nosql" : 2.012837224705172, - "databas" : 2.3530563403421443, - "jim" : 2.012837224705172, - "sql" : 1.5357159699855099, - "with" : 0.6606547065938096, - "r" : 1.2724745352109283, - "wilson" : 2.3138672203691533, - "and" : 0.0514161306387239, - "of" : 0.5656791933629529, - "exampl" : 0.9521393843515605, - "survey" : 2.3138672203691533, - "implement" : 1.2346859743215286, - "redmond" : 2.3138672203691533 + "practic" : 0.3557995067437576, + "multipl" : 0.6808297788115053, + "week" : 1.8471612005780302, + "in" : 0.7222224639697303, + "paradigm" : 1.6253124509616739, + "eric" : 1.421192468305749, + "seven" : 2.403212128778709, + "differ" : 2.0232524596337114, + "nosql" : 2.0232524596337114, + "databas" : 2.276835593449274, + "jim" : 2.0232524596337114, + "sql" : 1.479184415283436, + "with" : 0.6521845973619752, + "r" : 1.2828897701394677, + "wilson" : 2.3242824552976926, + "and" : 0.05012460603401282, + "of" : 0.5608544617347554, + "exampl" : 0.926342446625655, + "survey" : 2.3242824552976926, + "implement" : 1.2451012092500677, + "redmond" : 2.3242824552976926 }, "82" : { - "engin" : 0.9521393843515605, - "practic" : 0.3548258280480598, - "lax" : 2.3138672203691533, - "process" : 1.1677391846909153, - "akidau" : 2.3138672203691533, - "pipelin" : 2.61876160573047, - "data" : 1.3772634778122388, - "scala" : 1.5357159699855099, - "concept" : 1.2724745352109283, - "for" : 0.43305362808836206, - "real" : 1.4107772333772097, - "tyler" : 2.3138672203691533, - "system" : 0.9121304855688916, - "java" : 0.9521393843515605, - "realtim" : 2.3138672203691533, - "reuven" : 2.3138672203691533, - "slava" : 2.3138672203691533, - "stream" : 2.9732046469029467, - "and" : 0.06689392822195765, - "chernyak" : 2.3138672203691533, - "time" : 2.3138672203691533 + "engin" : 0.926342446625655, + "practic" : 0.3557995067437576, + "lax" : 2.3242824552976926, + "process" : 1.1481911962420115, + "akidau" : 2.3242824552976926, + "pipelin" : 2.632312138784387, + "data" : 1.3602644008348654, + "scala" : 1.546131204914049, + "concept" : 1.2451012092500677, + "for" : 0.42665536400725124, + "real" : 1.421192468305749, + "tyler" : 2.3242824552976926, + "system" : 0.885779964175042, + "java" : 0.9625546192800998, + "realtim" : 2.3242824552976926, + "reuven" : 2.3242824552976926, + "slava" : 2.3242824552976926, + "stream" : 2.9885892117887907, + "and" : 0.06521361597109047, + "chernyak" : 2.3242824552976926, + "time" : 2.3242824552976926 }, "83" : { - "engin" : 0.9521393843515605, - "definit" : 1.711807229041191, - "process" : 1.1677391846909153, - "neha" : 2.3138672203691533, - "shapira" : 2.3138672203691533, - "data" : 1.0585947152658473, - "palino" : 2.3138672203691533, - "gwen" : 2.3138672203691533, - "todd" : 2.3138672203691533, - "the" : 0.557992364696662, - "comprehens" : 1.0351136194163244, - "java" : 0.9521393843515605, - "stream" : 2.61876160573047, - "and" : 0.0514161306387239, - "kafka" : 3.417862451806381, - "narkhed" : 2.3138672203691533, - "architectur" : 0.9916479256352342, - "guid" : 1.1276146524416448, - "messag" : 2.3138672203691533, - "to" : 0.4273764951966715, - "apach" : 2.3138672203691533 + "engin" : 0.926342446625655, + "definit" : 1.7222224639697303, + "process" : 1.1481911962420115, + "neha" : 2.3242824552976926, + "shapira" : 2.3242824552976926, + "data" : 1.0455288543448638, + "palino" : 2.3242824552976926, + "gwen" : 2.3242824552976926, + "todd" : 2.3242824552976926, + "the" : 0.546131204914049, + "comprehens" : 0.9818597744754864, + "java" : 0.9625546192800998, + "stream" : 2.632312138784387, + "and" : 0.05012460603401282, + "kafka" : 3.433247016692225, + "narkhed" : 2.3242824552976926, + "architectur" : 0.9818597744754864, + "guid" : 1.121337531872331, + "messag" : 2.3242824552976926, + "to" : 0.42665536400725124, + "apach" : 2.3242824552976926 }, "84" : { - "antipattern" : 3.0104106596839078, - "karwin" : 2.3138672203691533, - "correct" : 1.6148972160331345, - "use" : 0.9521393843515605, - "pattern" : 0.7823883033268982, - "bill" : 2.3138672203691533, - "databas" : 2.169550174579395, - "sql" : 2.4603091135571993, - "with" : 0.6606547065938096, - "common" : 2.012837224705172, - "and" : 0.0514161306387239, - "mistak" : 2.3138672203691533, - "relat" : 1.711807229041191 + "antipattern" : 3.0239611927378247, + "karwin" : 2.3242824552976926, + "correct" : 1.6253124509616739, + "use" : 0.926342446625655, + "pattern" : 0.7928035382554376, + "bill" : 2.3242824552976926, + "databas" : 2.0992736019819223, + "sql" : 2.369742171521439, + "with" : 0.6521845973619752, + "common" : 2.0232524596337114, + "and" : 0.05012460603401282, + "mistak" : 2.3242824552976926, + "relat" : 1.6253124509616739 }, "85" : { - "orient" : 1.6148972160331345, - "sierra" : 2.3138672203691533, - "elisabeth" : 2.3138672203691533, - "eric" : 1.4107772333772097, - "pattern" : 1.1556823922882158, - "bert" : 2.3138672203691533, - "freeman" : 2.3138672203691533, - "kathi" : 2.3138672203691533, - "head" : 2.3138672203691533, - "java" : 0.9521393843515605, - "classic" : 1.3596247109298285, - "softwar" : 0.8367459656494909, - "design" : 1.0431163015943785, - "introduct" : 0.7823883033268982, - "driven" : 1.4107772333772097, - "friend" : 2.012837224705172, - "exampl" : 1.2387618990944165, - "to" : 0.4273764951966715, - "bate" : 2.3138672203691533, - "first" : 1.8367459656494909, - "beginn" : 1.9980125417713546, - "object" : 1.711807229041191, - "robson" : 2.3138672203691533 + "orient" : 1.6253124509616739, + "sierra" : 2.3242824552976926, + "elisabeth" : 2.3242824552976926, + "eric" : 1.421192468305749, + "pattern" : 1.1710669571740597, + "bert" : 2.3242824552976926, + "freeman" : 2.3242824552976926, + "kathi" : 2.3242824552976926, + "head" : 2.3242824552976926, + "java" : 0.9625546192800998, + "classic" : 1.3700399458583679, + "softwar" : 0.8471612005780302, + "design" : 1.0301906080078107, + "introduct" : 0.7802144109474171, + "driven" : 1.421192468305749, + "friend" : 2.0232524596337114, + "exampl" : 1.2051993093167377, + "to" : 0.42665536400725124, + "bate" : 2.3242824552976926, + "first" : 1.8471612005780302, + "beginn" : 2.011563074825271, + "object" : 1.7222224639697303, + "robson" : 2.3242824552976926 }, "86" : { - "a" : 0.5656791933629529, - "applic" : 1.3596247109298285, - "engin" : 0.9521393843515605, - "solid" : 2.3138672203691533, - "bertseka" : 2.3138672203691533, - "in" : 0.7456654963021584, - "tsitsik" : 2.3138672203691533, - "dimitri" : 2.3138672203691533, - "n" : 0.9403878809031077, - "theori" : 1.3596247109298285, - "p" : 1.6148972160331345, - "cs" : 1.8367459656494909, - "with" : 0.6606547065938096, - "mathemat" : 1.8367459656494909, - "and" : 0.0514161306387239, - "introduct" : 1.017910650884944, - "john" : 1.4687691803548966, - "probabl" : 2.9732046469029467, - "to" : 0.556029639692613, - "math" : 1.711807229041191, - "foundat" : 1.2724745352109283 + "a" : 0.5389526202869256, + "applic" : 1.3242824552976926, + "engin" : 0.926342446625655, + "solid" : 2.3242824552976926, + "bertseka" : 2.3242824552976926, + "in" : 0.7222224639697303, + "tsitsik" : 2.3242824552976926, + "dimitri" : 2.3242824552976926, + "n" : 0.9539384139570246, + "theori" : 1.2828897701394677, + "p" : 1.6253124509616739, + "cs" : 1.8471612005780302, + "with" : 0.6521845973619752, + "mathemat" : 1.6253124509616739, + "and" : 0.05012460603401282, + "introduct" : 1.0150823516918936, + "john" : 1.479184415283436, + "probabl" : 2.728481070267298, + "to" : 0.5550914263843684, + "math" : 1.7222224639697303, + "foundat" : 1.1781544196194547 }, "87" : { - "treatment" : 1.711807229041191, - "bayesian" : 2.7130965053814537, - "python" : 0.7697991760188778, - "method" : 1.6148972160331345, - "data" : 1.0585947152658473, - "gelman" : 2.3138672203691533, - "al" : 1.3596247109298285, - "analysi" : 1.3596247109298285, - "andrew" : 1.4107772333772097, - "et" : 1.3596247109298285, - "with" : 0.6606547065938096, - "comprehens" : 1.0351136194163244, - "across" : 1.711807229041191, - "r" : 1.2724745352109283, - "appli" : 1.5611369448622232, - "domain" : 1.5357159699855099, - "of" : 0.5656791933629529, - "exampl" : 0.9521393843515605, - "statist" : 2.1010297179733644 + "treatment" : 1.7222224639697303, + "bayesian" : 2.728481070267298, + "python" : 0.7802144109474171, + "method" : 1.546131204914049, + "data" : 1.0455288543448638, + "gelman" : 2.3242824552976926, + "al" : 1.3700399458583679, + "analysi" : 1.3700399458583679, + "andrew" : 1.421192468305749, + "et" : 1.3700399458583679, + "with" : 0.6521845973619752, + "comprehens" : 0.9818597744754864, + "across" : 1.7222224639697303, + "r" : 1.2828897701394677, + "appli" : 1.5746874779161402, + "domain" : 1.546131204914049, + "of" : 0.5608544617347554, + "exampl" : 0.926342446625655, + "statist" : 2.011563074825271 }, "88" : { - "horstmann" : 2.012837224705172, - "languag" : 0.9550648138275109, - "i" : 2.3138672203691533, - "program" : 0.5814734605461849, - "comprehens" : 1.0351136194163244, - "core" : 2.3853990019901534, - "s" : 1.2346859743215286, - "java" : 1.5253844138372725, - "fundament" : 1.7689125317656766, - "refer" : 1.3596247109298285, - "and" : 0.0514161306387239, - "volum" : 1.4687691803548966, - "guid" : 0.8667091890269342, - "cay" : 2.012837224705172, - "api" : 1.6148972160331345, - "to" : 0.4273764951966715 + "horstmann" : 2.0232524596337114, + "languag" : 0.9396330891669681, + "i" : 1.7222224639697303, + "program" : 0.5839197658034488, + "comprehens" : 0.9818597744754864, + "core" : 2.2838232653638633, + "s" : 1.210339102990856, + "java" : 1.5420702450165669, + "fundament" : 1.7824630648195934, + "refer" : 1.3700399458583679, + "and" : 0.05012460603401282, + "volum" : 1.479184415283436, + "guid" : 0.8618844573987365, + "cay" : 2.0232524596337114, + "api" : 1.6253124509616739, + "to" : 0.42665536400725124 }, "89" : { - "applic" : 1.3596247109298285, - "practic" : 0.3548258280480598, - "definit" : 1.711807229041191, - "correct" : 1.6148972160331345, - "in" : 0.7456654963021584, - "perform" : 1.3138672203691535, - "al" : 1.3596247109298285, - "thread" : 2.3138672203691533, - "et" : 1.3596247109298285, - "java" : 1.5253844138372725, - "and" : 0.0514161306387239, - "guid" : 0.8667091890269342, - "concurr" : 2.3530563403421443, - "to" : 0.4273764951966715, - "brian" : 1.4107772333772097, - "goetz" : 2.3138672203691533, - "write" : 1.3138672203691535 + "applic" : 1.3242824552976926, + "practic" : 0.3557995067437576, + "definit" : 1.7222224639697303, + "correct" : 1.6253124509616739, + "in" : 0.7222224639697303, + "perform" : 1.2828897701394677, + "al" : 1.3700399458583679, + "thread" : 2.3242824552976926, + "et" : 1.3700399458583679, + "java" : 1.5420702450165669, + "and" : 0.05012460603401282, + "guid" : 0.8618844573987365, + "concurr" : 2.276835593449274, + "to" : 0.42665536400725124, + "brian" : 1.421192468305749, + "goetz" : 2.3242824552976926, + "write" : 1.3242824552976926 }, "90" : { - "practic" : 0.3548258280480598, - "multipl" : 0.670414543882966, - "week" : 1.8367459656494909, - "in" : 0.7456654963021584, - "paradigm" : 2.1010297179733644, - "more" : 2.2271125517770325, - "languag" : 1.1760460039026783, - "seven" : 2.389661595724792, - "program" : 0.5814734605461849, - "follow" : 2.3138672203691533, - "and" : 0.0514161306387239, - "various" : 1.6148972160331345, - "divers" : 2.3138672203691533, - "exampl" : 0.9521393843515605, - "explor" : 1.8367459656494909, - "up" : 1.8367459656494909 + "practic" : 0.3557995067437576, + "multipl" : 0.6808297788115053, + "week" : 1.8471612005780302, + "in" : 0.7222224639697303, + "paradigm" : 2.1145802510272813, + "more" : 2.2406630848309494, + "languag" : 1.1570437143642058, + "seven" : 2.403212128778709, + "program" : 0.5839197658034488, + "follow" : 2.3242824552976926, + "and" : 0.05012460603401282, + "various" : 1.6253124509616739, + "divers" : 2.3242824552976926, + "exampl" : 0.926342446625655, + "explor" : 1.8471612005780302, + "up" : 1.8471612005780302 }, "91" : { - "multipl" : 0.670414543882966, - "wan" : 2.3138672203691533, - "fokkink" : 2.3138672203691533, - "pattern" : 0.7823883033268982, - "for" : 0.43305362808836206, - "distribut" : 2.3530563403421443, - "tradeoff" : 2.012837224705172, - "off" : 2.012837224705172, - "system" : 0.7010833636494179, - "trade" : 2.012837224705172, - "appli" : 1.1999238680623165, - "and" : 0.0514161306387239, - "design" : 0.6511093886875794, - "algorithm" : 1.5253844138372725 + "multipl" : 0.6808297788115053, + "wan" : 2.3242824552976926, + "fokkink" : 2.3242824552976926, + "pattern" : 0.7928035382554376, + "for" : 0.42665536400725124, + "distribut" : 2.276835593449274, + "tradeoff" : 2.0232524596337114, + "off" : 2.0232524596337114, + "system" : 0.6808297788115053, + "trade" : 2.0232524596337114, + "appli" : 1.210339102990856, + "and" : 0.05012460603401282, + "design" : 0.6430412179221054, + "algorithm" : 1.5420702450165669 }, "92" : { - "practic" : 0.46163904552683577, - "code" : 1.0128372247051722, - "orient" : 2.1010297179733644, - "in" : 0.7456654963021584, - "maintain" : 1.4687691803548966, - "sandi" : 2.3138672203691533, - "for" : 0.43305362808836206, - "rule" : 2.3138672203691533, - "metz" : 2.3138672203691533, - "oop" : 1.8367459656494909, - "softwar" : 0.8367459656494909, - "and" : 0.0514161306387239, - "design" : 1.0431163015943785, - "principl" : 1.214714433864479, - "object" : 2.2271125517770325, - "rubi" : 2.2271125517770325 + "practic" : 0.4629058307160776, + "code" : 1.0020631605637733, + "orient" : 2.1145802510272813, + "in" : 0.7222224639697303, + "maintain" : 1.479184415283436, + "sandi" : 2.3242824552976926, + "for" : 0.42665536400725124, + "rule" : 2.3242824552976926, + "metz" : 2.3242824552976926, + "oop" : 1.8471612005780302, + "softwar" : 0.8471612005780302, + "and" : 0.05012460603401282, + "design" : 1.0301906080078107, + "principl" : 1.2051993093167377, + "object" : 2.2406630848309494, + "rubi" : 2.2406630848309494 }, "93" : { - "art" : 1.2724745352109283, - "correct" : 1.6148972160331345, - "mauric" : 2.3138672203691533, - "for" : 0.43305362808836206, - "herlihi" : 2.3138672203691533, - "program" : 0.5814734605461849, - "the" : 0.557992364696662, - "shavit" : 2.3138672203691533, - "system" : 0.7010833636494179, - "java" : 0.9521393843515605, - "and" : 0.0514161306387239, - "nir" : 2.012837224705172, - "of" : 0.5656791933629529, - "multiprocessor" : 3.417862451806381, - "concurr" : 2.169550174579395, - "algorithm" : 1.2387618990944165 + "art" : 1.2828897701394677, + "correct" : 1.6253124509616739, + "mauric" : 2.3242824552976926, + "for" : 0.42665536400725124, + "herlihi" : 2.3242824552976926, + "program" : 0.5839197658034488, + "the" : 0.546131204914049, + "shavit" : 2.3242824552976926, + "system" : 0.6808297788115053, + "java" : 0.9625546192800998, + "and" : 0.05012460603401282, + "nir" : 2.0232524596337114, + "of" : 0.5608544617347554, + "multiprocessor" : 3.433247016692225, + "concurr" : 2.0992736019819223, + "algorithm" : 1.2523124321483334 }, "94" : { - "practic" : 0.46163904552683577, - "appel" : 2.3138672203691533, - "in" : 0.7456654963021584, - "construct" : 1.8367459656494909, - "compil" : 2.7424178745128738, - "andrew" : 1.4107772333772097, - "with" : 0.6606547065938096, - "guidanc" : 1.1677391846909153, - "java" : 1.2387618990944165, - "modern" : 1.2724745352109283, - "and" : 0.0514161306387239, - "w" : 1.3596247109298285, - "exampl" : 0.9521393843515605, - "implement" : 1.8237808955745851 + "practic" : 0.4629058307160776, + "appel" : 2.3242824552976926, + "in" : 0.7222224639697303, + "construct" : 1.8471612005780302, + "compil" : 2.7591037056921683, + "andrew" : 1.421192468305749, + "with" : 0.6521845973619752, + "guidanc" : 1.1781544196194547, + "java" : 1.2523124321483334, + "modern" : 1.2828897701394677, + "and" : 0.05012460603401282, + "w" : 1.3700399458583679, + "exampl" : 0.926342446625655, + "implement" : 1.8391654604604288 }, "95" : { - "game" : 3.7069540989986622, - "c" : 1.1077869988184144, - "pattern" : 1.1556823922882158, - "tailor" : 2.012837224705172, - "develop" : 1.443814443870157, - "program" : 0.5814734605461849, - "techniqu" : 0.8087172420492474, - "robert" : 1.4107772333772097, - "and" : 0.0514161306387239, - "nystrom" : 2.3138672203691533, - "design" : 0.6511093886875794, - "architectur" : 1.2901636963894048, - "to" : 0.4273764951966715 + "game" : 3.723639930177957, + "c" : 1.121337531872331, + "pattern" : 1.1710669571740597, + "tailor" : 2.0232524596337114, + "develop" : 1.4573649769240737, + "program" : 0.5839197658034488, + "techniqu" : 0.8191324769777867, + "robert" : 1.421192468305749, + "and" : 0.05012460603401282, + "nystrom" : 2.3242824552976926, + "design" : 0.6430412179221054, + "architectur" : 1.2774290181284798, + "to" : 0.42665536400725124 }, "96" : { - "hunt" : 1.8367459656494909, - "dave" : 2.3138672203691533, - "librari" : 2.1010297179733644, - "chad" : 2.012837224705172, - "for" : 0.43305362808836206, - "languag" : 0.7340836237523433, - "fowler" : 1.5357159699855099, - "program" : 0.7565144138531231, - "it" : 1.6148972160331345, - "pickax" : 2.3138672203691533, - "comprehens" : 1.0351136194163244, - "classic" : 1.3596247109298285, - "refer" : 1.7689125317656766, - "and" : 0.0514161306387239, - "guid" : 0.8667091890269342, - "rubyist" : 2.3138672203691533, - "to" : 0.4273764951966715, - "thoma" : 1.5357159699855099, - "andi" : 2.3138672203691533, - "rubi" : 2.7424178745128738 + "hunt" : 1.8471612005780302, + "dave" : 2.3242824552976926, + "librari" : 2.1145802510272813, + "chad" : 2.0232524596337114, + "for" : 0.42665536400725124, + "languag" : 0.7222224639697303, + "fowler" : 1.546131204914049, + "program" : 0.759697130371374, + "it" : 1.479184415283436, + "pickax" : 2.3242824552976926, + "comprehens" : 0.9818597744754864, + "classic" : 1.3700399458583679, + "refer" : 1.7824630648195934, + "and" : 0.05012460603401282, + "guid" : 0.8618844573987365, + "rubyist" : 2.3242824552976926, + "to" : 0.42665536400725124, + "thoma" : 1.546131204914049, + "andi" : 2.3242824552976926, + "rubi" : 2.7591037056921683 }, "97" : { - "recurs" : 2.61876160573047, - "play" : 2.3138672203691533, - "think" : 1.711807229041191, - "educ" : 1.711807229041191, - "question" : 2.3138672203691533, - "scheme" : 2.9732046469029467, - "paradigm" : 1.6148972160331345, - "use" : 0.9521393843515605, - "format" : 2.012837224705172, - "schemer" : 2.3138672203691533, - "matthia" : 2.012837224705172, - "program" : 0.5814734605461849, - "littl" : 2.012837224705172, - "p" : 1.6148972160331345, - "the" : 0.557992364696662, - "daniel" : 2.3138672203691533, - "felleisen" : 2.3138672203691533, - "answer" : 2.3138672203691533, - "and" : 0.06689392822195765, - "introduct" : 0.7823883033268982, - "friedman" : 1.8367459656494909, - "to" : 0.4273764951966715 + "recurs" : 2.632312138784387, + "play" : 2.3242824552976926, + "think" : 1.7222224639697303, + "educ" : 1.7222224639697303, + "question" : 2.3242824552976926, + "scheme" : 2.9885892117887907, + "paradigm" : 1.6253124509616739, + "use" : 0.926342446625655, + "format" : 2.0232524596337114, + "schemer" : 2.3242824552976926, + "matthia" : 2.0232524596337114, + "program" : 0.5839197658034488, + "littl" : 2.0232524596337114, + "p" : 1.6253124509616739, + "the" : 0.546131204914049, + "daniel" : 2.0232524596337114, + "felleisen" : 2.3242824552976926, + "answer" : 2.3242824552976926, + "and" : 0.06521361597109047, + "introduct" : 0.7802144109474171, + "friedman" : 1.8471612005780302, + "to" : 0.42665536400725124 }, "98" : { - "some" : 1.6148972160331345, - "educ" : 1.711807229041191, - "companion" : 2.012837224705172, - "ocaml" : 2.012837224705172, - "author" : 1.4687691803548966, - "book" : 1.4687691803548966, - "concept" : 1.2724745352109283, - "languag" : 0.7340836237523433, - "program" : 0.7565144138531231, - "famili" : 2.3138672203691533, - "littl" : 2.012837224705172, - "the" : 0.557992364696662, - "with" : 0.6606547065938096, - "function" : 2.5285468419995123, - "style" : 1.6148972160331345, - "explor" : 1.8367459656494909, - "ml" : 1.8795991820495856, - "mler" : 2.3138672203691533 + "some" : 1.6253124509616739, + "educ" : 1.7222224639697303, + "companion" : 2.0232524596337114, + "ocaml" : 2.0232524596337114, + "author" : 1.479184415283436, + "book" : 1.479184415283436, + "concept" : 1.2451012092500677, + "languag" : 0.7222224639697303, + "program" : 0.759697130371374, + "famili" : 2.3242824552976926, + "littl" : 2.0232524596337114, + "the" : 0.546131204914049, + "with" : 0.6521845973619752, + "function" : 2.5439314068853567, + "style" : 1.546131204914049, + "explor" : 1.8471612005780302, + "ml" : 1.8949837469354298, + "mler" : 2.3242824552976926 }, "99" : { - "practic" : 0.3548258280480598, - "in" : 0.9701331774207775, - "scala" : 2.4603091135571993, - "pattern" : 1.017910650884944, - "bjarnason" : 2.3138672203691533, - "program" : 0.8589068076281647, - "chiusano" : 2.3138672203691533, - "techniqu" : 0.8087172420492474, - "r" : 1.2724745352109283, - "and" : 0.0514161306387239, - "function" : 2.7424178745128738, - "paul" : 2.012837224705172, - "nar" : 2.3138672203691533 + "practic" : 0.3557995067437576, + "in" : 0.9396330891669681, + "scala" : 2.4769949447364934, + "pattern" : 1.031461183938861, + "bjarnason" : 2.3242824552976926, + "program" : 0.8625202971192018, + "chiusano" : 2.3242824552976926, + "techniqu" : 0.8191324769777867, + "r" : 1.2828897701394677, + "and" : 0.05012460603401282, + "function" : 2.7591037056921683, + "paul" : 2.0232524596337114, + "nar" : 2.3242824552976926 }, "100" : { - "applic" : 1.3596247109298285, - "practic" : 0.46163904552683577, - "minski" : 2.3138672203691533, - "ocaml" : 3.224685986755768, - "real" : 1.8354634978235946, - "program" : 0.5814734605461849, - "it" : 1.6148972160331345, - "with" : 0.6606547065938096, - "hickey" : 2.3138672203691533, - "world" : 2.389661595724792, - "build" : 1.1999238680623165, - "and" : 0.0514161306387239, - "function" : 2.2271125517770325, - "jason" : 1.8367459656494909, - "madhavapeddi" : 2.3138672203691533, - "guid" : 0.8667091890269342, - "to" : 0.4273764951966715, - "anil" : 2.3138672203691533, - "yaron" : 2.3138672203691533 + "applic" : 1.3242824552976926, + "practic" : 0.4629058307160776, + "minski" : 2.3242824552976926, + "ocaml" : 3.2413718179350623, + "real" : 1.8490140308775116, + "program" : 0.5839197658034488, + "it" : 1.479184415283436, + "with" : 0.6521845973619752, + "hickey" : 2.3242824552976926, + "world" : 2.403212128778709, + "build" : 1.210339102990856, + "and" : 0.05012460603401282, + "function" : 2.2406630848309494, + "jason" : 1.8471612005780302, + "madhavapeddi" : 2.3242824552976926, + "guid" : 0.8618844573987365, + "to" : 0.42665536400725124, + "anil" : 2.3242824552976926, + "yaron" : 2.3242824552976926 }, "101" : { - "c" : 0.8514692224701973, - "robust" : 1.6148972160331345, - "clariti" : 2.3138672203691533, - "kernighan" : 1.6148972160331345, - "clear" : 1.6148972160331345, - "j" : 1.4107772333772097, - "program" : 0.9315553671600613, - "good" : 1.8367459656494909, - "p" : 1.6148972160331345, - "the" : 0.557992364696662, - "guidanc" : 1.1677391846909153, - "classic" : 1.3596247109298285, - "and" : 0.06689392822195765, - "plauger" : 2.3138672203691533, - "w" : 1.3596247109298285, - "of" : 0.5656791933629529, - "style" : 2.3853990019901534, - "guidelin" : 1.8367459656494909, - "brian" : 1.4107772333772097, - "write" : 1.3138672203691535, - "element" : 1.6148972160331345, - "on" : 0.7456654963021584 + "c" : 0.8618844573987365, + "robust" : 1.6253124509616739, + "clariti" : 2.3242824552976926, + "kernighan" : 1.6253124509616739, + "clear" : 1.6253124509616739, + "j" : 1.421192468305749, + "program" : 0.9354744949392991, + "good" : 1.8471612005780302, + "p" : 1.6253124509616739, + "the" : 0.546131204914049, + "guidanc" : 1.1781544196194547, + "classic" : 1.3700399458583679, + "and" : 0.06521361597109047, + "plauger" : 2.3242824552976926, + "w" : 1.3700399458583679, + "of" : 0.5608544617347554, + "style" : 2.2838232653638633, + "guidelin" : 1.8471612005780302, + "brian" : 1.421192468305749, + "write" : 1.3242824552976926, + "element" : 1.6253124509616739, + "on" : 0.7222224639697303 }, "102" : { - "with" : 0.6606547065938096, - "gradual" : 2.3138672203691533, - "java" : 0.9521393843515605, - "joshua" : 1.8367459656494909, - "kerievski" : 2.3138672203691533, - "design" : 0.9617675171779496, - "combin" : 2.3138672203691533, - "pattern" : 1.1556823922882158, - "to" : 0.556029639692613, - "refactor" : 2.4603091135571993, - "evolv" : 2.012837224705172, - "techniqu" : 0.8087172420492474 + "with" : 0.6521845973619752, + "gradual" : 2.3242824552976926, + "java" : 0.9625546192800998, + "joshua" : 1.8471612005780302, + "kerievski" : 2.3242824552976926, + "design" : 0.9498498506535602, + "combin" : 2.3242824552976926, + "pattern" : 1.1710669571740597, + "to" : 0.5550914263843684, + "refactor" : 2.4769949447364934, + "evolv" : 2.0232524596337114, + "techniqu" : 0.8191324769777867 }, "103" : { - "practic" : 0.3548258280480598, - "ddd" : 1.711807229041191, - "in" : 0.7456654963021584, - "pattern" : 0.7823883033268982, - "for" : 0.43305362808836206, - "project" : 1.2346859743215286, - "vernon" : 2.012837224705172, - "vaughn" : 2.012837224705172, - "real" : 1.4107772333772097, - "guidanc" : 1.1677391846909153, - "java" : 0.9521393843515605, - "appli" : 1.1999238680623165, - "design" : 0.847112845140979, - "domain" : 1.9980125417713546, - "driven" : 1.8354634978235946, - "architectur" : 0.9916479256352342, - "implement" : 1.606363487817917 + "practic" : 0.3557995067437576, + "ddd" : 1.7222224639697303, + "in" : 0.7222224639697303, + "pattern" : 0.7928035382554376, + "for" : 0.42665536400725124, + "project" : 1.2451012092500677, + "vernon" : 2.0232524596337114, + "vaughn" : 2.0232524596337114, + "real" : 1.421192468305749, + "guidanc" : 1.1781544196194547, + "java" : 0.9625546192800998, + "appli" : 1.210339102990856, + "design" : 0.8366159129649581, + "domain" : 2.011563074825271, + "driven" : 1.8490140308775116, + "architectur" : 0.9818597744754864, + "implement" : 1.6199140208718334 }, "104" : { - "a" : 0.5656791933629529, - "process" : 1.5192637063950825, - "agil" : 1.8367459656494909, - "for" : 0.43305362808836206, - "develop" : 1.443814443870157, - "n" : 0.7228026133426542, - "deliveri" : 2.012837224705172, - "fast" : 2.3138672203691533, - "tom" : 1.711807229041191, - "softwar" : 1.088631600060811, - "lean" : 2.7130965053814537, - "appli" : 1.1999238680623165, - "poppendieck" : 3.0104106596839078, - "mari" : 2.3138672203691533, - "principl" : 0.9336559786575475, - "to" : 0.4273764951966715, - "qualiti" : 1.711807229041191 + "a" : 0.5389526202869256, + "process" : 1.4938311870681658, + "agil" : 1.8471612005780302, + "for" : 0.42665536400725124, + "develop" : 1.4573649769240737, + "n" : 0.7332178482711935, + "deliveri" : 2.0232524596337114, + "fast" : 2.3242824552976926, + "tom" : 1.7222224639697303, + "softwar" : 1.102182133114728, + "lean" : 2.728481070267298, + "appli" : 1.210339102990856, + "poppendieck" : 3.0239611927378247, + "mari" : 2.3242824552976926, + "principl" : 0.926342446625655, + "to" : 0.42665536400725124, + "qualiti" : 1.7222224639697303 }, "105" : { - "scienc" : 1.1999238680623165, - "organ" : 1.6148972160331345, - "devop" : 1.9109127603485203, - "forsgren" : 2.3138672203691533, - "research" : 2.3138672203691533, - "kim" : 1.8367459656494909, - "high" : 1.711807229041191, - "softwar" : 1.088631600060811, - "lean" : 1.8367459656494909, - "and" : 0.0514161306387239, - "of" : 0.5656791933629529, - "nicol" : 2.3138672203691533, - "acceler" : 2.3138672203691533, - "jez" : 1.8367459656494909, - "on" : 0.7456654963021584, - "a" : 0.5656791933629529, - "gene" : 1.8367459656494909, - "in" : 0.7456654963021584, - "perform" : 1.709380664019927, - "manag" : 1.711807229041191, - "n" : 0.7228026133426542, - "the" : 0.557992364696662, - "what" : 2.3138672203691533, - "empir" : 2.3138672203691533, - "metric" : 2.3138672203691533, - "humbl" : 1.8367459656494909, - "drive" : 2.012837224705172 + "scienc" : 1.0690099501943866, + "organ" : 1.479184415283436, + "devop" : 1.9244632934024373, + "forsgren" : 2.3242824552976926, + "research" : 2.3242824552976926, + "kim" : 1.8471612005780302, + "high" : 1.7222224639697303, + "softwar" : 1.102182133114728, + "lean" : 1.8471612005780302, + "and" : 0.05012460603401282, + "of" : 0.5608544617347554, + "nicol" : 2.3242824552976926, + "acceler" : 2.3242824552976926, + "jez" : 1.8471612005780302, + "on" : 0.7222224639697303, + "a" : 0.5389526202869256, + "gene" : 1.8471612005780302, + "in" : 0.7222224639697303, + "perform" : 1.6690780720819176, + "manag" : 1.6253124509616739, + "n" : 0.7332178482711935, + "the" : 0.546131204914049, + "what" : 2.3242824552976926, + "empir" : 2.3242824552976926, + "metric" : 2.3242824552976926, + "humbl" : 1.8471612005780302, + "drive" : 2.0232524596337114 }, "106" : { - "a" : 0.5656791933629529, - "practic" : 0.5241207723332932, - "handbook" : 2.3138672203691533, - "gene" : 1.8367459656494909, - "devop" : 2.3530563403421443, - "for" : 0.43305362808836206, - "willi" : 2.3138672203691533, - "deboi" : 2.3138672203691533, - "improv" : 1.711807229041191, - "n" : 0.7228026133426542, - "kim" : 1.8367459656494909, - "deploy" : 1.6148972160331345, - "the" : 0.557992364696662, - "autom" : 1.8367459656494909, - "and" : 0.0514161306387239, - "implement" : 1.2346859743215286, - "patrick" : 2.012837224705172, - "humbl" : 1.8367459656494909, - "john" : 1.4687691803548966, - "flow" : 2.012837224705172, - "jez" : 1.8367459656494909 + "a" : 0.5389526202869256, + "practic" : 0.5255590138299762, + "handbook" : 2.3242824552976926, + "gene" : 1.8471612005780302, + "devop" : 2.369742171521439, + "for" : 0.42665536400725124, + "willi" : 2.3242824552976926, + "deboi" : 2.3242824552976926, + "improv" : 1.7222224639697303, + "n" : 0.7332178482711935, + "kim" : 1.8471612005780302, + "deploy" : 1.6253124509616739, + "the" : 0.546131204914049, + "autom" : 1.8471612005780302, + "and" : 0.05012460603401282, + "implement" : 1.2451012092500677, + "patrick" : 2.0232524596337114, + "humbl" : 1.8471612005780302, + "john" : 1.479184415283436, + "flow" : 2.0232524596337114, + "jez" : 1.8471612005780302 }, "107" : { - "multipl" : 0.670414543882966, - "chris" : 2.012837224705172, - "test" : 1.709380664019927, - "richardson" : 2.012837224705172, - "microservic" : 2.9732046469029467, - "and" : 0.0514161306387239, - "design" : 0.6511093886875794, - "pattern" : 1.1556823922882158, - "for" : 0.43305362808836206, - "architectur" : 1.2901636963894048, - "deploy" : 1.6148972160331345 + "multipl" : 0.6808297788115053, + "chris" : 2.0232524596337114, + "test" : 1.7229311970738435, + "richardson" : 2.0232524596337114, + "microservic" : 2.9885892117887907, + "and" : 0.05012460603401282, + "design" : 0.6430412179221054, + "pattern" : 1.1710669571740597, + "for" : 0.42665536400725124, + "architectur" : 1.2774290181284798, + "deploy" : 1.6253124509616739 }, "108" : { - "practic" : 0.3548258280480598, - "multipl" : 0.670414543882966, - "for" : 0.43305362808836206, - "ford" : 2.3138672203691533, - "evolutionari" : 3.417862451806381, - "fit" : 3.0104106596839078, - "neal" : 2.3138672203691533, - "system" : 0.7010833636494179, - "build" : 1.1999238680623165, - "kua" : 2.3138672203691533, - "and" : 0.0514161306387239, - "function" : 1.711807229041191, - "architectur" : 1.5886794671435753, - "patrick" : 2.012837224705172, - "parson" : 2.3138672203691533, - "rebecca" : 2.3138672203691533 + "practic" : 0.3557995067437576, + "multipl" : 0.6808297788115053, + "for" : 0.42665536400725124, + "ford" : 2.3242824552976926, + "evolutionari" : 3.433247016692225, + "fit" : 3.0239611927378247, + "neal" : 2.3242824552976926, + "system" : 0.6808297788115053, + "build" : 1.210339102990856, + "kua" : 2.3242824552976926, + "and" : 0.05012460603401282, + "function" : 1.7222224639697303, + "architectur" : 1.572998261781473, + "patrick" : 2.0232524596337114, + "parson" : 2.3242824552976926, + "rebecca" : 2.3242824552976926 }, "109" : { - "practic" : 0.3548258280480598, - "career" : 1.4107772333772097, - "expert" : 2.3138672203691533, - "multipl" : 0.670414543882966, - "edit" : 1.6148972160331345, - "kevlin" : 2.3138672203691533, - "advic" : 1.5357159699855099, - "program" : 0.5814734605461849, - "henney" : 2.3138672203691533, - "everi" : 2.3138672203691533, - "wisdom" : 3.0104106596839078, - "with" : 0.6606547065938096, - "insight" : 2.012837224705172, - "and" : 0.0514161306387239, - "by" : 1.5357159699855099, - "of" : 0.5656791933629529, - "essay" : 2.2271125517770325, - "should" : 2.3138672203691533, - "know" : 1.8367459656494909, - "from" : 1.5357159699855099, - "collect" : 1.6148972160331345, - "thing" : 2.012837224705172, - "programm" : 1.4107772333772097, - "97" : 2.3138672203691533 + "practic" : 0.3557995067437576, + "career" : 1.421192468305749, + "expert" : 2.3242824552976926, + "multipl" : 0.6808297788115053, + "edit" : 1.479184415283436, + "kevlin" : 2.3242824552976926, + "advic" : 1.546131204914049, + "program" : 0.5839197658034488, + "henney" : 2.3242824552976926, + "everi" : 2.3242824552976926, + "wisdom" : 3.0239611927378247, + "with" : 0.6521845973619752, + "insight" : 2.0232524596337114, + "and" : 0.05012460603401282, + "by" : 1.546131204914049, + "of" : 0.5608544617347554, + "essay" : 2.2406630848309494, + "should" : 2.3242824552976926, + "know" : 1.8471612005780302, + "from" : 1.546131204914049, + "collect" : 1.6253124509616739, + "thing" : 2.0232524596337114, + "programm" : 1.421192468305749, + "97" : 2.3242824552976926 }, "110" : { - "art" : 1.2724745352109283, - "c" : 0.8514692224701973, - "cultur" : 2.3138672203691533, - "eric" : 1.4107772333772097, - "raymond" : 2.012837224705172, - "program" : 0.5814734605461849, - "tool" : 1.9980125417713546, - "the" : 0.557992364696662, - "s" : 1.2346859743215286, - "system" : 0.7010833636494179, - "shell" : 2.012837224705172, - "and" : 0.06689392822195765, - "design" : 0.6511093886875794, - "of" : 0.5656791933629529, - "principl" : 0.9336559786575475, - "philosophi" : 2.2271125517770325, - "under" : 2.3138672203691533, - "unix" : 2.7130965053814537 + "art" : 1.2828897701394677, + "c" : 0.8618844573987365, + "cultur" : 2.3242824552976926, + "eric" : 1.421192468305749, + "raymond" : 1.8471612005780302, + "program" : 0.5839197658034488, + "tool" : 2.011563074825271, + "the" : 0.546131204914049, + "s" : 1.210339102990856, + "system" : 0.6808297788115053, + "shell" : 2.0232524596337114, + "and" : 0.06521361597109047, + "design" : 0.6430412179221054, + "of" : 0.5608544617347554, + "principl" : 0.926342446625655, + "philosophi" : 2.2406630848309494, + "under" : 2.3242824552976926, + "unix" : 2.728481070267298 }, "111" : { - "practic" : 0.5241207723332932, - "c" : 0.8514692224701973, - "debug" : 2.012837224705172, - "rob" : 2.012837224705172, - "test" : 1.709380664019927, - "kernighan" : 1.6148972160331345, - "pike" : 2.012837224705172, - "perform" : 1.709380664019927, - "advic" : 1.5357159699855099, - "program" : 0.8589068076281647, - "techniqu" : 0.8087172420492474, - "the" : 0.557992364696662, - "and" : 0.0514161306387239, - "w" : 1.3596247109298285, - "of" : 0.5656791933629529, - "brian" : 1.4107772333772097 + "practic" : 0.5255590138299762, + "c" : 0.8618844573987365, + "debug" : 2.0232524596337114, + "rob" : 2.0232524596337114, + "test" : 1.7229311970738435, + "kernighan" : 1.6253124509616739, + "pike" : 2.0232524596337114, + "perform" : 1.6690780720819176, + "advic" : 1.546131204914049, + "program" : 0.8625202971192018, + "techniqu" : 0.8191324769777867, + "the" : 0.546131204914049, + "and" : 0.05012460603401282, + "w" : 1.3700399458583679, + "of" : 0.5608544617347554, + "brian" : 1.421192468305749 }, "112" : { - "multipl" : 0.670414543882966, - "pars" : 2.012837224705172, - "languag" : 1.084330523386218, - "fowler" : 1.5357159699855099, - "strategi" : 1.4687691803548966, - "specif" : 2.012837224705172, - "with" : 0.6606547065938096, - "and" : 0.06689392822195765, - "design" : 0.9617675171779496, - "martin" : 1.2724745352109283, - "domain" : 1.5357159699855099, - "of" : 0.5656791933629529, - "exampl" : 0.9521393843515605, - "dsls" : 2.3138672203691533, - "implement" : 1.2346859743215286, - "dsl" : 2.3138672203691533 + "multipl" : 0.6808297788115053, + "pars" : 2.0232524596337114, + "languag" : 1.0668101521656943, + "fowler" : 1.546131204914049, + "strategi" : 1.479184415283436, + "specif" : 2.0232524596337114, + "with" : 0.6521845973619752, + "and" : 0.06521361597109047, + "design" : 0.9498498506535602, + "martin" : 1.2828897701394677, + "domain" : 1.546131204914049, + "of" : 0.5608544617347554, + "exampl" : 0.926342446625655, + "dsls" : 2.3242824552976926, + "implement" : 1.2451012092500677, + "dsl" : 2.3242824552976926 }, "113" : { - "a" : 0.5656791933629529, - "process" : 1.1677391846909153, - "collabor" : 2.012837224705172, - "sourc" : 2.9732046469029467, - "cathedr" : 2.3138672203691533, - "eric" : 1.4107772333772097, - "raymond" : 2.012837224705172, - "develop" : 1.1097472377132287, - "n" : 0.7228026133426542, - "the" : 0.7259648038218328, - "influenti" : 2.3138672203691533, - "s" : 1.2346859743215286, - "softwar" : 0.8367459656494909, - "and" : 0.0514161306387239, - "essay" : 1.711807229041191, - "model" : 1.1999238680623165, - "communiti" : 2.012837224705172, - "bazaar" : 2.3138672203691533, - "open" : 2.9732046469029467, - "on" : 0.7456654963021584 + "a" : 0.5389526202869256, + "process" : 1.1481911962420115, + "collabor" : 2.0232524596337114, + "sourc" : 2.9885892117887907, + "cathedr" : 2.3242824552976926, + "eric" : 1.421192468305749, + "raymond" : 1.8471612005780302, + "develop" : 1.1201624726417678, + "n" : 0.7332178482711935, + "the" : 0.71053307916129, + "influenti" : 2.3242824552976926, + "s" : 1.210339102990856, + "softwar" : 0.8471612005780302, + "and" : 0.05012460603401282, + "essay" : 1.7222224639697303, + "model" : 1.1781544196194547, + "communiti" : 2.0232524596337114, + "bazaar" : 2.3242824552976926, + "open" : 2.9885892117887907, + "on" : 0.7222224639697303 }, "114" : { - "op" : 1.711807229041191, - "practic" : 0.3548258280480598, - "multipl" : 0.670414543882966, - "adkin" : 2.3138672203691533, - "scale" : 1.711807229041191, - "heather" : 2.3138672203691533, - "resili" : 1.8367459656494909, - "al" : 1.3596247109298285, - "secur" : 2.178200352601525, - "et" : 1.3596247109298285, - "guidanc" : 1.1677391846909153, - "system" : 0.9121304855688916, - "at" : 2.012837224705172, - "build" : 1.5611369448622232, - "and" : 0.06689392822195765, - "reliabl" : 2.2684387004780198, - "on" : 0.7456654963021584 + "op" : 1.7222224639697303, + "practic" : 0.3557995067437576, + "multipl" : 0.6808297788115053, + "adkin" : 2.3242824552976926, + "scale" : 1.7222224639697303, + "heather" : 2.3242824552976926, + "resili" : 1.8471612005780302, + "al" : 1.3700399458583679, + "secur" : 2.194886183780819, + "et" : 1.3700399458583679, + "guidanc" : 1.1781544196194547, + "system" : 0.885779964175042, + "at" : 2.0232524596337114, + "build" : 1.5746874779161402, + "and" : 0.06521361597109047, + "reliabl" : 2.2838232653638633, + "on" : 0.7222224639697303 }, "115" : { - "engin" : 1.2387618990944165, - "treatment" : 1.711807229041191, - "deep" : 1.2346859743215286, - "multipl" : 0.670414543882966, - "anderson" : 2.3138672203691533, - "ross" : 2.012837224705172, - "j" : 1.4107772333772097, - "real" : 1.4107772333772097, - "secur" : 2.178200352601525, - "system" : 0.7010833636494179, - "world" : 1.8367459656494909, - "and" : 0.06689392822195765, - "of" : 0.5656791933629529, - "broad" : 2.012837224705172, - "principl" : 0.9336559786575475, - "model" : 1.1999238680623165, - "threat" : 3.0104106596839078 + "engin" : 1.2051993093167377, + "treatment" : 1.7222224639697303, + "deep" : 1.2451012092500677, + "multipl" : 0.6808297788115053, + "anderson" : 2.3242824552976926, + "ross" : 2.0232524596337114, + "j" : 1.421192468305749, + "real" : 1.421192468305749, + "secur" : 2.194886183780819, + "system" : 0.6808297788115053, + "world" : 1.8471612005780302, + "and" : 0.06521361597109047, + "of" : 0.5608544617347554, + "broad" : 2.0232524596337114, + "principl" : 0.926342446625655, + "model" : 1.1781544196194547, + "threat" : 3.0239611927378247 }, "116" : { - "a" : 0.5656791933629529, - "practic" : 0.3548258280480598, - "textbook" : 1.5357159699855099, - "wetheral" : 2.3138672203691533, - "j" : 1.4107772333772097, - "n" : 0.7228026133426542, - "andrew" : 1.4107772333772097, - "network" : 2.3530563403421443, - "comput" : 1.1999238680623165, - "comprehens" : 1.0351136194163244, - "protocol" : 2.2271125517770325, - "s" : 1.2346859743215286, - "and" : 0.0514161306387239, - "tanenbaum" : 2.012837224705172, - "design" : 0.6511093886875794, - "principl" : 0.9336559786575475, - "david" : 1.3138672203691535, - "on" : 0.7456654963021584 + "a" : 0.5389526202869256, + "practic" : 0.3557995067437576, + "textbook" : 1.3242824552976926, + "wetheral" : 2.3242824552976926, + "j" : 1.421192468305749, + "n" : 0.7332178482711935, + "andrew" : 1.421192468305749, + "network" : 2.369742171521439, + "comput" : 1.0938335339194187, + "comprehens" : 0.9818597744754864, + "protocol" : 2.2406630848309494, + "s" : 1.210339102990856, + "and" : 0.05012460603401282, + "tanenbaum" : 2.0232524596337114, + "design" : 0.6430412179221054, + "principl" : 0.926342446625655, + "david" : 1.3242824552976926, + "on" : 0.7222224639697303 }, "117" : { - "engin" : 0.9521393843515605, - "python" : 0.7697991760188778, - "inform" : 3.417862451806381, - "d" : 1.8367459656494909, - "christoph" : 2.012837224705172, - "for" : 0.43305362808836206, - "index" : 2.3138672203691533, - "techniqu" : 0.8087172420492474, - "hinrich" : 2.3138672203691533, - "core" : 1.6148972160331345, - "search" : 2.7130965053814537, - "java" : 0.9521393843515605, - "nlp" : 1.5357159699855099, - "prabhakar" : 2.3138672203691533, - "and" : 0.06689392822195765, - "introduct" : 0.7823883033268982, - "sch" : 2.3138672203691533, - "rank" : 2.3138672203691533, - "man" : 2.012837224705172, - "to" : 0.4273764951966715, - "retriev" : 3.417862451806381, - "tze" : 2.3138672203691533, - "raghavan" : 2.3138672203691533 + "engin" : 0.926342446625655, + "python" : 0.7802144109474171, + "inform" : 3.433247016692225, + "d" : 1.8471612005780302, + "christoph" : 2.0232524596337114, + "for" : 0.42665536400725124, + "index" : 2.3242824552976926, + "techniqu" : 0.8191324769777867, + "hinrich" : 2.3242824552976926, + "core" : 1.546131204914049, + "search" : 2.728481070267298, + "java" : 0.9625546192800998, + "nlp" : 1.546131204914049, + "prabhakar" : 2.3242824552976926, + "and" : 0.06521361597109047, + "introduct" : 0.7802144109474171, + "sch" : 2.3242824552976926, + "rank" : 2.3242824552976926, + "man" : 2.0232524596337114, + "to" : 0.42665536400725124, + "retriev" : 3.433247016692225, + "tze" : 2.3242824552976926, + "raghavan" : 2.3242824552976926 }, "118" : { - "scienc" : 1.1999238680623165, - "mine" : 3.7069540989986622, - "anand" : 2.3138672203691533, - "big" : 2.3138672203691533, - "python" : 0.7697991760188778, - "data" : 1.5636727540530921, - "scala" : 1.5357159699855099, - "for" : 0.43305362808836206, - "scale" : 1.711807229041191, - "massiv" : 2.3138672203691533, - "graph" : 2.61876160573047, - "ullman" : 2.012837224705172, - "jure" : 2.3138672203691533, - "techniqu" : 0.8087172420492474, - "jeffrey" : 2.012837224705172, - "and" : 0.06689392822195765, - "of" : 0.5656791933629529, - "larg" : 1.6148972160331345, - "david" : 1.3138672203691535, - "dataset" : 2.3138672203691533, - "algorithm" : 0.9521393843515605, - "leskovec" : 2.3138672203691533, - "rajaraman" : 2.3138672203691533 + "scienc" : 1.0690099501943866, + "mine" : 3.2413718179350623, + "anand" : 2.3242824552976926, + "big" : 2.3242824552976926, + "python" : 0.7802144109474171, + "data" : 1.5443728931754963, + "scala" : 1.546131204914049, + "for" : 0.42665536400725124, + "scale" : 1.7222224639697303, + "massiv" : 2.3242824552976926, + "graph" : 2.632312138784387, + "ullman" : 2.0232524596337114, + "jure" : 2.3242824552976926, + "techniqu" : 0.8191324769777867, + "jeffrey" : 2.0232524596337114, + "and" : 0.06521361597109047, + "of" : 0.5608544617347554, + "larg" : 1.6253124509616739, + "david" : 1.3242824552976926, + "dataset" : 2.3242824552976926, + "algorithm" : 0.9625546192800998, + "leskovec" : 2.3242824552976926, + "rajaraman" : 2.3242824552976926 }, "119" : { - "practic" : 0.3548258280480598, - "schneier" : 2.012837224705172, - "c" : 0.8514692224701973, - "secur" : 1.3596247109298285, - "comprehens" : 1.0351136194163244, - "protocol" : 2.2271125517770325, - "cryptograph" : 2.012837224705172, - "refer" : 1.3596247109298285, - "appli" : 1.1999238680623165, - "and" : 0.0514161306387239, - "cryptographi" : 2.389661595724792, - "consider" : 1.711807229041191, - "bruce" : 1.711807229041191, - "algorithm" : 1.2387618990944165, - "on" : 0.7456654963021584 + "practic" : 0.3557995067437576, + "schneier" : 2.0232524596337114, + "c" : 0.8618844573987365, + "secur" : 1.3700399458583679, + "comprehens" : 0.9818597744754864, + "protocol" : 2.2406630848309494, + "cryptograph" : 2.0232524596337114, + "refer" : 1.3700399458583679, + "appli" : 1.210339102990856, + "and" : 0.05012460603401282, + "cryptographi" : 2.403212128778709, + "consider" : 1.7222224639697303, + "bruce" : 1.7222224639697303, + "algorithm" : 1.2523124321483334, + "on" : 0.7222224639697303 }, "120" : { - "profession" : 1.8367459656494909, - "product" : 1.8354634978235946, - "python" : 1.233264461257076, - "robust" : 1.6148972160331345, - "code" : 1.0128372247051722, - "for" : 0.43305362808836206, - "languag" : 0.7340836237523433, - "program" : 0.5814734605461849, - "techniqu" : 0.8087172420492474, - "danjou" : 2.3138672203691533, - "system" : 0.7010833636494179, - "julien" : 2.3138672203691533, - "and" : 0.0514161306387239, - "serious" : 2.012837224705172, - "advanc" : 2.2271125517770325 + "profession" : 1.7222224639697303, + "product" : 1.8490140308775116, + "python" : 1.2499502924363703, + "robust" : 1.6253124509616739, + "code" : 1.0020631605637733, + "for" : 0.42665536400725124, + "languag" : 0.7222224639697303, + "program" : 0.5839197658034488, + "techniqu" : 0.8191324769777867, + "danjou" : 2.3242824552976926, + "system" : 0.6808297788115053, + "julien" : 2.3242824552976926, + "and" : 0.05012460603401282, + "serious" : 2.0232524596337114, + "advanc" : 2.011563074825271 }, "121" : { - "slatkin" : 2.3138672203691533, - "practic" : 0.3548258280480598, - "python" : 1.233264461257076, - "code" : 1.0128372247051722, - "59" : 2.3138672203691533, - "languag" : 0.7340836237523433, - "best" : 1.1677391846909153, - "program" : 0.5814734605461849, - "way" : 2.3138672203691533, - "specif" : 2.012837224705172, - "concret" : 2.3138672203691533, - "brett" : 2.3138672203691533, - "better" : 2.3138672203691533, - "with" : 0.6606547065938096, - "effect" : 1.2724745352109283, - "exampl" : 0.9521393843515605, - "tip" : 2.012837224705172, - "to" : 0.4273764951966715, - "write" : 1.3138672203691535 + "slatkin" : 2.3242824552976926, + "practic" : 0.3557995067437576, + "python" : 1.2499502924363703, + "code" : 1.0020631605637733, + "59" : 2.3242824552976926, + "languag" : 0.7222224639697303, + "best" : 1.1781544196194547, + "program" : 0.5839197658034488, + "way" : 2.3242824552976926, + "specif" : 2.0232524596337114, + "concret" : 2.3242824552976926, + "brett" : 2.3242824552976926, + "better" : 2.3242824552976926, + "with" : 0.6521845973619752, + "effect" : 1.2828897701394677, + "exampl" : 0.926342446625655, + "tip" : 2.0232524596337114, + "to" : 0.42665536400725124, + "write" : 1.3242824552976926 }, "122" : { - "python" : 1.233264461257076, - "profil" : 3.0104106596839078, - "in" : 0.7456654963021584, - "ozsvald" : 2.3138672203691533, - "perform" : 2.1048941076707, - "for" : 0.43305362808836206, - "cpu" : 2.3138672203691533, - "improv" : 1.711807229041191, - "techniqu" : 0.8087172420492474, - "micha" : 2.3138672203691533, - "usag" : 2.3138672203691533, - "high" : 1.711807229041191, - "memori" : 1.8367459656494909, - "and" : 0.06689392822195765, - "gorelick" : 2.3138672203691533, - "ian" : 2.012837224705172 + "python" : 1.2499502924363703, + "profil" : 3.0239611927378247, + "in" : 0.7222224639697303, + "ozsvald" : 2.3242824552976926, + "perform" : 2.0552663740243675, + "for" : 0.42665536400725124, + "cpu" : 2.3242824552976926, + "improv" : 1.7222224639697303, + "techniqu" : 0.8191324769777867, + "micha" : 2.3242824552976926, + "usag" : 2.3242824552976926, + "high" : 1.7222224639697303, + "memori" : 1.6253124509616739, + "and" : 0.06521361597109047, + "gorelick" : 2.3242824552976926, + "ian" : 2.0232524596337114 }, "123" : { - "a" : 0.5656791933629529, - "applic" : 1.3596247109298285, - "some" : 1.6148972160331345, - "practic" : 0.3548258280480598, - "code" : 1.0128372247051722, - "author" : 1.4687691803548966, - "emphasi" : 1.8367459656494909, - "approach" : 1.5357159699855099, - "with" : 0.6606547065938096, - "solv" : 2.389661595724792, - "problem" : 1.9109127603485203, - "and" : 0.0514161306387239, - "introduct" : 0.7823883033268982, - "creativ" : 3.417862451806381, - "to" : 0.4273764951966715, - "pseudo" : 1.5357159699855099, - "algorithm" : 1.5253844138372725, - "on" : 0.7456654963021584 + "a" : 0.5389526202869256, + "applic" : 1.3242824552976926, + "some" : 1.6253124509616739, + "practic" : 0.3557995067437576, + "code" : 1.0020631605637733, + "author" : 1.479184415283436, + "emphasi" : 1.8471612005780302, + "approach" : 1.546131204914049, + "with" : 0.6521845973619752, + "solv" : 2.403212128778709, + "problem" : 1.9244632934024373, + "and" : 0.05012460603401282, + "introduct" : 0.7802144109474171, + "creativ" : 3.433247016692225, + "to" : 0.42665536400725124, + "pseudo" : 1.546131204914049, + "algorithm" : 1.5420702450165669, + "on" : 0.7222224639697303 }, "124" : { - "through" : 1.8367459656494909, - "scienc" : 1.1999238680623165, - "nand2tetri" : 2.3138672203691533, - "project" : 1.606363487817917, - "compil" : 1.711807229041191, - "comput" : 1.7724330495602796, - "hack" : 2.3138672203691533, - "softwar" : 0.8367459656494909, - "and" : 0.0514161306387239, - "of" : 0.5656791933629529, - "schocken" : 2.3138672203691533, - "from" : 1.5357159699855099, - "noam" : 2.3138672203691533, - "hardwar" : 2.389661595724792, - "element" : 1.6148972160331345, - "a" : 0.5656791933629529, - "os" : 1.8367459656494909, - "in" : 0.7456654963021584, - "the" : 0.557992364696662, - "shimon" : 2.3138672203691533, - "system" : 0.7010833636494179, - "build" : 1.1999238680623165, - "principl" : 0.9336559786575475, - "nisan" : 2.3138672203691533, - "first" : 1.8367459656494909 + "through" : 1.8471612005780302, + "scienc" : 1.0690099501943866, + "nand2tetri" : 2.3242824552976926, + "project" : 1.6199140208718334, + "compil" : 1.7222224639697303, + "comput" : 1.6157247620774942, + "hack" : 2.3242824552976926, + "softwar" : 0.8471612005780302, + "and" : 0.05012460603401282, + "of" : 0.5608544617347554, + "schocken" : 2.3242824552976926, + "from" : 1.546131204914049, + "noam" : 2.3242824552976926, + "hardwar" : 2.403212128778709, + "element" : 1.6253124509616739, + "a" : 0.5389526202869256, + "os" : 1.8471612005780302, + "in" : 0.7222224639697303, + "the" : 0.546131204914049, + "shimon" : 2.3242824552976926, + "system" : 0.6808297788115053, + "build" : 1.210339102990856, + "principl" : 0.926342446625655, + "nisan" : 2.3242824552976926, + "first" : 1.8471612005780302 }, "125" : { - "a" : 0.5656791933629529, - "for" : 0.43305362808836206, - "project" : 1.606363487817917, - "program" : 0.5814734605461849, - "n" : 0.7228026133426542, - "that" : 2.012837224705172, - "system" : 0.7010833636494179, - "charl" : 2.012837224705172, - "and" : 0.0514161306387239, - "electron" : 3.417862451806381, - "platt" : 2.3138672203691533, - "complement" : 2.3138672203691533, - "make" : 1.711807229041191, - "hardwar" : 2.7130965053814537, - "beginn" : 1.5357159699855099, - "hand" : 1.4107772333772097, - "on" : 0.7456654963021584 + "a" : 0.5389526202869256, + "for" : 0.42665536400725124, + "project" : 1.6199140208718334, + "program" : 0.5839197658034488, + "n" : 0.7332178482711935, + "that" : 1.8471612005780302, + "system" : 0.6808297788115053, + "charl" : 1.8471612005780302, + "and" : 0.05012460603401282, + "electron" : 3.433247016692225, + "platt" : 2.3242824552976926, + "complement" : 2.3242824552976926, + "make" : 1.7222224639697303, + "hardwar" : 2.728481070267298, + "beginn" : 1.546131204914049, + "hand" : 1.421192468305749, + "on" : 0.7222224639697303 }, "126" : { - "a" : 0.5656791933629529, - "randal" : 2.3138672203691533, - "process" : 1.1677391846909153, - "c" : 0.8514692224701973, - "e" : 1.4687691803548966, - "bryant" : 2.3138672203691533, - "o'hallaron" : 2.3138672203691533, - "perform" : 1.709380664019927, - "understand" : 2.3138672203691533, - "link" : 2.3138672203691533, - "comput" : 1.1999238680623165, - "how" : 2.012837224705172, - "r" : 1.2724745352109283, - "system" : 1.0355851377769096, - "memori" : 1.8367459656494909, - "softwar" : 0.8367459656494909, - "and" : 0.0514161306387239, - "perspect" : 2.3138672203691533, - "david" : 1.3138672203691535, - "to" : 0.4273764951966715, - "map" : 2.3138672203691533, - "programm" : 1.4107772333772097, - "hardwar" : 2.389661595724792 + "a" : 0.5389526202869256, + "randal" : 2.3242824552976926, + "process" : 1.1481911962420115, + "c" : 0.8618844573987365, + "e" : 1.421192468305749, + "bryant" : 2.3242824552976926, + "o'hallaron" : 2.3242824552976926, + "perform" : 1.6690780720819176, + "understand" : 2.3242824552976926, + "link" : 2.3242824552976926, + "comput" : 1.0938335339194187, + "how" : 2.0232524596337114, + "r" : 1.2828897701394677, + "system" : 1.005668137128561, + "memori" : 1.6253124509616739, + "softwar" : 0.8471612005780302, + "and" : 0.05012460603401282, + "perspect" : 2.3242824552976926, + "david" : 1.3242824552976926, + "to" : 0.42665536400725124, + "map" : 2.3242824552976926, + "programm" : 1.421192468305749, + "hardwar" : 2.403212128778709 }, "127" : { - "administr" : 2.012837224705172, - "limoncelli" : 2.012837224705172, - "a" : 0.5656791933629529, - "op" : 1.711807229041191, - "practic" : 0.3548258280480598, - "multipl" : 0.670414543882966, - "sre" : 1.8367459656494909, - "for" : 0.43305362808836206, - "run" : 1.8367459656494909, - "al" : 1.3596247109298285, - "et" : 1.3596247109298285, - "the" : 0.557992364696662, - "cloud" : 2.5285468419995123, - "guidanc" : 1.1677391846909153, - "servic" : 1.8367459656494909, - "system" : 0.7010833636494179, - "autom" : 1.8367459656494909, - "and" : 0.0514161306387239, - "of" : 0.5656791933629529, - "host" : 2.3138672203691533, - "oper" : 1.9980125417713546, - "thoma" : 1.5357159699855099 + "administr" : 2.0232524596337114, + "limoncelli" : 2.0232524596337114, + "a" : 0.5389526202869256, + "op" : 1.7222224639697303, + "practic" : 0.3557995067437576, + "multipl" : 0.6808297788115053, + "sre" : 1.8471612005780302, + "for" : 0.42665536400725124, + "run" : 1.8471612005780302, + "al" : 1.3700399458583679, + "et" : 1.3700399458583679, + "the" : 0.546131204914049, + "cloud" : 2.5439314068853567, + "guidanc" : 1.1781544196194547, + "servic" : 1.8471612005780302, + "system" : 0.6808297788115053, + "autom" : 1.8471612005780302, + "and" : 0.05012460603401282, + "of" : 0.5608544617347554, + "host" : 2.3242824552976926, + "oper" : 2.011563074825271, + "thoma" : 1.546131204914049 }, "128" : { - "container" : 2.3138672203691533, - "a" : 0.5656791933629529, - "practic" : 0.3548258280480598, - "karl" : 2.3138672203691533, - "contain" : 1.711807229041191, - "workflow" : 1.711807229041191, - "devop" : 1.4687691803548966, - "pattern" : 0.7823883033268982, - "matthia" : 2.012837224705172, - "run" : 1.8367459656494909, - "sean" : 2.3138672203691533, - "n" : 0.7228026133426542, - "deploy" : 1.6148972160331345, - "docker" : 3.417862451806381, - "p" : 1.6148972160331345, - "with" : 0.6606547065938096, - "and" : 0.0514161306387239, - "guid" : 0.8667091890269342, - "relat" : 1.711807229041191, - "to" : 0.4273764951966715, - "up" : 1.8367459656494909, - "kane" : 2.3138672203691533 + "container" : 2.3242824552976926, + "a" : 0.5389526202869256, + "practic" : 0.3557995067437576, + "karl" : 2.3242824552976926, + "contain" : 1.7222224639697303, + "workflow" : 1.7222224639697303, + "devop" : 1.479184415283436, + "pattern" : 0.7928035382554376, + "matthia" : 2.0232524596337114, + "run" : 1.8471612005780302, + "sean" : 2.3242824552976926, + "n" : 0.7332178482711935, + "deploy" : 1.6253124509616739, + "docker" : 3.433247016692225, + "p" : 1.6253124509616739, + "with" : 0.6521845973619752, + "and" : 0.05012460603401282, + "guid" : 0.8618844573987365, + "relat" : 1.6253124509616739, + "to" : 0.42665536400725124, + "up" : 1.8471612005780302, + "kane" : 2.3242824552976926 }, "129" : { - "a" : 0.5656791933629529, - "burn" : 2.012837224705172, - "joe" : 2.012837224705172, - "practic" : 0.3548258280480598, - "contain" : 2.2271125517770325, - "devop" : 1.4687691803548966, - "pattern" : 0.7823883033268982, - "for" : 0.43305362808836206, - "run" : 1.8367459656494909, - "hightow" : 2.3138672203691533, - "kelsey" : 2.3138672203691533, - "n" : 0.7228026133426542, - "kubernet" : 3.417862451806381, - "beda" : 2.3138672203691533, - "with" : 0.6606547065938096, - "orchestr" : 3.0104106596839078, - "brendan" : 1.8367459656494909, - "and" : 0.0514161306387239, - "introduct" : 0.7823883033268982, - "up" : 1.8367459656494909 + "a" : 0.5389526202869256, + "burn" : 2.0232524596337114, + "joe" : 2.0232524596337114, + "practic" : 0.3557995067437576, + "contain" : 2.2406630848309494, + "devop" : 1.479184415283436, + "pattern" : 0.7928035382554376, + "for" : 0.42665536400725124, + "run" : 1.8471612005780302, + "hightow" : 2.3242824552976926, + "kelsey" : 2.3242824552976926, + "n" : 0.7332178482711935, + "kubernet" : 3.433247016692225, + "beda" : 2.3242824552976926, + "with" : 0.6521845973619752, + "orchestr" : 3.0239611927378247, + "brendan" : 1.8471612005780302, + "and" : 0.05012460603401282, + "introduct" : 0.7802144109474171, + "up" : 1.8471612005780302 }, "130" : { - "practic" : 0.3548258280480598, - "data" : 1.0585947152658473, - "learn" : 0.8988938723983354, - "concept" : 1.2724745352109283, - "databas" : 1.4687691803548966, - "sql" : 2.4603091135571993, - "alan" : 2.012837224705172, - "beaulieu" : 2.3138672203691533, - "and" : 0.0514161306387239, - "introduct" : 0.7823883033268982, - "queri" : 3.0104106596839078, - "relat" : 2.2271125517770325, - "model" : 1.1999238680623165, - "to" : 0.4273764951966715 + "practic" : 0.3557995067437576, + "data" : 1.0455288543448638, + "learn" : 0.9093091073268746, + "concept" : 1.2451012092500677, + "databas" : 1.421192468305749, + "sql" : 2.369742171521439, + "alan" : 2.0232524596337114, + "beaulieu" : 2.3242824552976926, + "and" : 0.05012460603401282, + "introduct" : 0.7802144109474171, + "queri" : 2.632312138784387, + "relat" : 2.1145802510272813, + "model" : 1.1781544196194547, + "to" : 0.42665536400725124 }, "131" : { - "a" : 0.5656791933629529, - "overview" : 2.012837224705172, - "sadalag" : 2.012837224705172, - "use" : 0.9521393843515605, - "fowler" : 1.5357159699855099, - "j" : 1.4107772333772097, - "distil" : 2.012837224705172, - "n" : 0.7228026133426542, - "tradeoff" : 2.012837224705172, - "off" : 2.012837224705172, - "nosql" : 2.9732046469029467, - "databas" : 1.4687691803548966, - "pramod" : 2.012837224705172, - "system" : 0.7010833636494179, - "trade" : 2.012837224705172, - "concis" : 1.5357159699855099, - "and" : 0.0514161306387239, - "design" : 0.847112845140979, - "martin" : 1.2724745352109283, - "of" : 0.5656791933629529, - "case" : 1.5357159699855099 + "a" : 0.5389526202869256, + "overview" : 2.0232524596337114, + "sadalag" : 2.0232524596337114, + "use" : 0.926342446625655, + "fowler" : 1.546131204914049, + "j" : 1.421192468305749, + "distil" : 2.0232524596337114, + "n" : 0.7332178482711935, + "tradeoff" : 2.0232524596337114, + "off" : 2.0232524596337114, + "nosql" : 2.9885892117887907, + "databas" : 1.421192468305749, + "pramod" : 2.0232524596337114, + "system" : 0.6808297788115053, + "trade" : 2.0232524596337114, + "concis" : 1.546131204914049, + "and" : 0.05012460603401282, + "design" : 0.8366159129649581, + "martin" : 1.2828897701394677, + "of" : 0.5608544617347554, + "case" : 1.546131204914049 }, "132" : { - "rest" : 2.61876160573047, - "practic" : 0.3548258280480598, - "multipl" : 0.670414543882966, - "test" : 1.3138672203691535, - "openapi" : 3.417862451806381, - "use" : 0.9521393843515605, - "document" : 2.012837224705172, - "ponelat" : 2.3138672203691533, - "rosenstock" : 2.3138672203691533, - "luka" : 2.3138672203691533, - "swagger" : 2.3138672203691533, - "with" : 0.6606547065938096, - "s" : 1.2346859743215286, - "joshua" : 1.8367459656494909, - "and" : 0.06689392822195765, - "design" : 0.847112845140979, - "guid" : 0.8667091890269342, - "api" : 2.587162219913594, - "to" : 0.4273764951966715 + "rest" : 2.632312138784387, + "practic" : 0.3557995067437576, + "multipl" : 0.6808297788115053, + "test" : 1.3242824552976926, + "openapi" : 3.433247016692225, + "use" : 0.926342446625655, + "document" : 2.0232524596337114, + "ponelat" : 2.3242824552976926, + "rosenstock" : 2.3242824552976926, + "luka" : 2.3242824552976926, + "swagger" : 2.3242824552976926, + "with" : 0.6521845973619752, + "s" : 1.210339102990856, + "joshua" : 1.8471612005780302, + "and" : 0.06521361597109047, + "design" : 0.8366159129649581, + "guid" : 0.8618844573987365, + "api" : 2.6038480510928887, + "to" : 0.42665536400725124 }, "133" : { - "amundsen" : 2.3138672203691533, - "rest" : 2.9732046469029467, - "multipl" : 0.670414543882966, - "mike" : 2.3138672203691533, - "richardson" : 2.012837224705172, - "pattern" : 0.7823883033268982, - "for" : 0.43305362808836206, - "leonard" : 2.3138672203691533, - "servic" : 1.8367459656494909, - "web" : 1.9980125417713546, - "build" : 1.1999238680623165, - "and" : 0.0514161306387239, - "design" : 0.847112845140979, - "principl" : 0.9336559786575475, - "api" : 2.3853990019901534, - "sam" : 2.012837224705172, - "rubi" : 1.711807229041191 + "amundsen" : 2.3242824552976926, + "rest" : 2.9885892117887907, + "multipl" : 0.6808297788115053, + "mike" : 2.3242824552976926, + "richardson" : 2.0232524596337114, + "pattern" : 0.7928035382554376, + "for" : 0.42665536400725124, + "leonard" : 2.3242824552976926, + "servic" : 1.8471612005780302, + "web" : 2.011563074825271, + "build" : 1.210339102990856, + "and" : 0.05012460603401282, + "design" : 0.8366159129649581, + "principl" : 0.926342446625655, + "api" : 2.4007835668759974, + "sam" : 2.0232524596337114, + "rubi" : 1.7222224639697303 }, "134" : { - "burn" : 2.012837224705172, - "multipl" : 0.670414543882966, - "contain" : 1.711807229041191, - "use" : 0.9521393843515605, - "concept" : 1.2724745352109283, - "pattern" : 1.017910650884944, - "for" : 0.43305362808836206, - "distribut" : 2.3530563403421443, - "cloud" : 2.2271125517770325, - "system" : 1.0355851377769096, - "nativ" : 2.61876160573047, - "brendan" : 1.8367459656494909, - "and" : 0.0514161306387239, - "design" : 0.847112845140979 + "burn" : 2.0232524596337114, + "multipl" : 0.6808297788115053, + "contain" : 1.7222224639697303, + "use" : 0.926342446625655, + "concept" : 1.2451012092500677, + "pattern" : 1.031461183938861, + "for" : 0.42665536400725124, + "distribut" : 2.276835593449274, + "cloud" : 2.2406630848309494, + "system" : 1.005668137128561, + "nativ" : 2.632312138784387, + "brendan" : 1.8471612005780302, + "and" : 0.05012460603401282, + "design" : 0.8366159129649581 }, "135" : { - "practic" : 0.3548258280480598, - "creator" : 2.012837224705172, - "educ" : 1.711807229041191, - "c" : 1.3641047751666313, - "bjarn" : 2.012837224705172, - "use" : 0.9521393843515605, - "languag" : 0.9550648138275109, - "program" : 0.8589068076281647, - "good" : 1.8367459656494909, - "the" : 0.557992364696662, - "and" : 0.06689392822195765, - "design" : 0.847112845140979, - "introduct" : 0.7823883033268982, - "by" : 1.5357159699855099, - "principl" : 0.9336559786575475, - "to" : 0.4273764951966715, - "stroustrup" : 2.012837224705172, - "emphas" : 2.3138672203691533 + "practic" : 0.3557995067437576, + "creator" : 2.0232524596337114, + "educ" : 1.7222224639697303, + "c" : 1.3807906063459254, + "bjarn" : 2.0232524596337114, + "use" : 0.926342446625655, + "languag" : 0.9396330891669681, + "program" : 0.8625202971192018, + "good" : 1.8471612005780302, + "the" : 0.546131204914049, + "and" : 0.06521361597109047, + "design" : 0.8366159129649581, + "introduct" : 0.7802144109474171, + "by" : 1.546131204914049, + "principl" : 0.926342446625655, + "to" : 0.42665536400725124, + "stroustrup" : 2.0232524596337114, + "emphas" : 2.3242824552976926 }, "136" : { - "a" : 0.5656791933629529, - "c" : 1.3641047751666313, - "king" : 2.3138672203691533, - "clear" : 1.6148972160331345, - "for" : 0.43305362808836206, - "practition" : 2.3138672203691533, - "languag" : 0.9550648138275109, - "k" : 2.012837224705172, - "program" : 0.7565144138531231, - "approach" : 1.5357159699855099, - "n" : 0.7228026133426542, - "modern" : 1.6555275390280006, - "refer" : 1.3596247109298285, - "and" : 0.0514161306387239, - "introduct" : 0.7823883033268982, - "learner" : 2.3138672203691533, - "to" : 0.4273764951966715, - "introductori" : 1.4687691803548966 + "a" : 0.5389526202869256, + "c" : 1.3807906063459254, + "king" : 2.3242824552976926, + "clear" : 1.6253124509616739, + "for" : 0.42665536400725124, + "practition" : 2.3242824552976926, + "languag" : 0.9396330891669681, + "k" : 2.0232524596337114, + "program" : 0.759697130371374, + "approach" : 1.546131204914049, + "n" : 0.7332178482711935, + "modern" : 1.6690780720819176, + "refer" : 1.3700399458583679, + "and" : 0.05012460603401282, + "introduct" : 0.7802144109474171, + "learner" : 2.3242824552976926, + "to" : 0.42665536400725124, + "introductori" : 1.479184415283436 }, "137" : { - "richard" : 1.6148972160331345, - "a" : 0.5656791933629529, - "rago" : 2.3138672203691533, - "c" : 0.8514692224701973, - "in" : 0.9701331774207775, - "stephen" : 2.3138672203691533, - "for" : 0.43305362808836206, - "program" : 0.8589068076281647, - "environ" : 1.8367459656494909, - "the" : 0.557992364696662, - "system" : 1.0355851377769096, - "depth" : 1.5357159699855099, - "steven" : 1.711807229041191, - "refer" : 1.3596247109298285, - "and" : 0.0514161306387239, - "w" : 1.3596247109298285, - "api" : 2.1010297179733644, - "advanc" : 1.711807229041191, - "unix" : 2.7130965053814537 + "richard" : 1.6253124509616739, + "a" : 0.5389526202869256, + "rago" : 2.3242824552976926, + "c" : 0.8618844573987365, + "in" : 0.9396330891669681, + "stephen" : 2.3242824552976926, + "for" : 0.42665536400725124, + "program" : 0.8625202971192018, + "environ" : 1.8471612005780302, + "the" : 0.546131204914049, + "system" : 1.005668137128561, + "depth" : 1.546131204914049, + "steven" : 1.7222224639697303, + "refer" : 1.3700399458583679, + "and" : 0.05012460603401282, + "w" : 1.3700399458583679, + "api" : 2.1145802510272813, + "advanc" : 1.546131204914049, + "unix" : 2.728481070267298 }, "138" : { - "practic" : 0.3548258280480598, - "buday" : 2.3138672203691533, - "in" : 0.9701331774207775, - "and" : 0.0514161306387239, - "pattern" : 1.017910650884944, - "go" : 2.9425772258000933, - "katherin" : 2.3138672203691533, - "guid" : 0.8667091890269342, - "idiom" : 1.5357159699855099, - "concurr" : 2.3530563403421443, - "to" : 0.4273764951966715, - "cox" : 2.3138672203691533 + "practic" : 0.3557995067437576, + "buday" : 2.3242824552976926, + "in" : 0.9396330891669681, + "and" : 0.05012460603401282, + "pattern" : 1.031461183938861, + "go" : 2.959263056979388, + "katherin" : 2.3242824552976926, + "guid" : 0.8618844573987365, + "idiom" : 1.546131204914049, + "concurr" : 2.276835593449274, + "to" : 0.42665536400725124, + "cox" : 2.3242824552976926 }, "139" : { - "a" : 0.7359655984882071, - "librari" : 1.6148972160331345, - "kernighan" : 1.6148972160331345, - "book" : 1.4687691803548966, - "go" : 2.9425772258000933, - "languag" : 1.084330523386218, - "program" : 0.7565144138531231, - "donovan" : 2.3138672203691533, - "the" : 0.557992364696662, - "system" : 0.7010833636494179, - "fundament" : 1.3596247109298285, - "alan" : 2.012837224705172, - "refer" : 1.3596247109298285, - "and" : 0.0514161306387239, - "w" : 1.3596247109298285, - "idiom" : 1.5357159699855099, - "authorit" : 1.711807229041191, - "brian" : 1.4107772333772097, - "on" : 0.7456654963021584 + "a" : 0.7011935252349901, + "librari" : 1.6253124509616739, + "kernighan" : 1.6253124509616739, + "book" : 1.479184415283436, + "go" : 2.959263056979388, + "languag" : 1.0668101521656943, + "program" : 0.759697130371374, + "donovan" : 2.3242824552976926, + "the" : 0.546131204914049, + "system" : 0.6808297788115053, + "fundament" : 1.3700399458583679, + "alan" : 2.0232524596337114, + "refer" : 1.3700399458583679, + "and" : 0.05012460603401282, + "w" : 1.3700399458583679, + "idiom" : 1.546131204914049, + "authorit" : 1.7222224639697303, + "brian" : 1.421192468305749, + "on" : 0.7222224639697303 }, "140" : { - "recip" : 2.012837224705172, - "tebeka" : 2.3138672203691533, - "solut" : 1.8367459656494909, - "for" : 0.43305362808836206, - "go" : 2.9425772258000933, - "languag" : 0.7340836237523433, - "miki" : 2.3138672203691533, - "program" : 0.7565144138531231, - "idiomat" : 2.012837224705172, - "guidanc" : 1.1677391846909153, - "and" : 0.0514161306387239, - "effect" : 1.2724745352109283, - "style" : 1.6148972160331345, - "idiom" : 1.5357159699855099, - "write" : 1.3138672203691535 + "recip" : 2.0232524596337114, + "tebeka" : 2.3242824552976926, + "solut" : 1.8471612005780302, + "for" : 0.42665536400725124, + "go" : 2.959263056979388, + "languag" : 0.7222224639697303, + "miki" : 2.3242824552976926, + "program" : 0.759697130371374, + "idiomat" : 2.0232524596337114, + "guidanc" : 1.1781544196194547, + "and" : 0.05012460603401282, + "effect" : 1.2828897701394677, + "style" : 1.546131204914049, + "idiom" : 1.546131204914049, + "write" : 1.3242824552976926 }, "141" : { - "jami" : 2.3138672203691533, - "kuhn" : 2.012837224705172, - "allen" : 2.3138672203691533, - "scala" : 1.5357159699855099, - "pattern" : 1.1556823922882158, - "for" : 0.43305362808836206, - "reactiv" : 3.417862451806381, - "hanafe" : 2.3138672203691533, - "resili" : 2.389661595724792, - "respons" : 2.012837224705172, - "system" : 0.7010833636494179, - "java" : 0.9521393843515605, - "build" : 1.1999238680623165, - "scalabl" : 1.5357159699855099, - "and" : 0.0514161306387239, - "design" : 0.6511093886875794, - "architectur" : 0.9916479256352342, - "brian" : 1.4107772333772097, - "roland" : 2.3138672203691533 + "jami" : 2.3242824552976926, + "kuhn" : 2.0232524596337114, + "allen" : 2.3242824552976926, + "scala" : 1.546131204914049, + "pattern" : 1.1710669571740597, + "for" : 0.42665536400725124, + "reactiv" : 3.433247016692225, + "hanafe" : 2.3242824552976926, + "resili" : 2.403212128778709, + "respons" : 2.0232524596337114, + "system" : 0.6808297788115053, + "java" : 0.9625546192800998, + "build" : 1.210339102990856, + "scalabl" : 1.546131204914049, + "and" : 0.05012460603401282, + "design" : 0.6430412179221054, + "architectur" : 0.9818597744754864, + "brian" : 1.421192468305749, + "roland" : 2.3242824552976926 }, "142" : { - "practic" : 0.46163904552683577, - "scala" : 2.4603091135571993, - "horstmann" : 2.012837224705172, - "for" : 0.563415759874073, - "languag" : 0.7340836237523433, - "develop" : 1.1097472377132287, - "program" : 0.5814734605461849, - "impati" : 2.3138672203691533, - "experienc" : 2.012837224705172, - "the" : 0.557992364696662, - "s" : 1.2346859743215286, - "concis" : 1.5357159699855099, - "introduct" : 0.7823883033268982, - "cay" : 2.012837224705172, - "to" : 0.4273764951966715, - "introductori" : 1.4687691803548966 + "practic" : 0.4629058307160776, + "scala" : 2.4769949447364934, + "horstmann" : 2.0232524596337114, + "for" : 0.5550914263843684, + "languag" : 0.7222224639697303, + "develop" : 1.1201624726417678, + "program" : 0.5839197658034488, + "impati" : 2.3242824552976926, + "experienc" : 2.0232524596337114, + "the" : 0.546131204914049, + "s" : 1.210339102990856, + "concis" : 1.546131204914049, + "introduct" : 0.7802144109474171, + "cay" : 2.0232524596337114, + "to" : 0.42665536400725124, + "introductori" : 1.479184415283436 }, "143" : { - "practic" : 0.46163904552683577, - "pattern" : 1.017910650884944, - "for" : 0.43305362808836206, - "languag" : 0.7340836237523433, - "best" : 1.1677391846909153, - "advic" : 1.5357159699855099, - "program" : 0.7565144138531231, - "javascript" : 2.4603091135571993, - "and" : 0.0514161306387239, - "effect" : 1.6555275390280006, - "herman" : 2.3138672203691533, - "david" : 1.3138672203691535, - "write" : 1.3138672203691535 + "practic" : 0.4629058307160776, + "pattern" : 1.031461183938861, + "for" : 0.42665536400725124, + "languag" : 0.7222224639697303, + "best" : 1.1781544196194547, + "advic" : 1.546131204914049, + "program" : 0.759697130371374, + "javascript" : 2.4769949447364934, + "and" : 0.05012460603401282, + "effect" : 1.6690780720819176, + "herman" : 2.3242824552976926, + "david" : 1.3242824552976926, + "write" : 1.3242824552976926 }, "144" : { - "css" : 2.9732046469029467, - "learn" : 0.8988938723983354, - "for" : 0.43305362808836206, - "robbin" : 2.3138672203691533, - "niederst" : 2.3138672203691533, - "web" : 2.2684387004780198, - "and" : 0.0514161306387239, - "design" : 0.847112845140979, - "guid" : 0.8667091890269342, - "html" : 3.417862451806381, - "to" : 0.4273764951966715, - "jennif" : 2.012837224705172, - "basic" : 1.711807229041191, - "foundat" : 1.2724745352109283, - "frontend" : 1.711807229041191, - "beginn" : 1.5357159699855099 + "css" : 2.9885892117887907, + "learn" : 0.9093091073268746, + "for" : 0.42665536400725124, + "robbin" : 2.3242824552976926, + "niederst" : 2.3242824552976926, + "web" : 2.2838232653638633, + "and" : 0.05012460603401282, + "design" : 0.8366159129649581, + "guid" : 0.8618844573987365, + "html" : 3.433247016692225, + "to" : 0.42665536400725124, + "jennif" : 2.0232524596337114, + "basic" : 1.7222224639697303, + "foundat" : 1.1781544196194547, + "frontend" : 1.7222224639697303, + "beginn" : 1.546131204914049 }, "145" : { - "meyer" : 1.711807229041191, - "a" : 0.5656791933629529, - "css" : 3.224685986755768, - "definit" : 1.711807229041191, - "eric" : 1.4107772333772097, - "techniqu" : 0.8087172420492474, - "the" : 0.557992364696662, - "layout" : 2.61876160573047, - "comprehens" : 1.0351136194163244, - "modern" : 1.2724745352109283, - "and" : 0.0514161306387239, - "weyl" : 2.3138672203691533, - "design" : 0.6511093886875794, - "guid" : 1.1276146524416448, - "selector" : 2.3138672203691533, - "estell" : 2.3138672203691533, - "to" : 0.4273764951966715, - "frontend" : 1.711807229041191 + "meyer" : 1.7222224639697303, + "a" : 0.5389526202869256, + "css" : 3.2413718179350623, + "definit" : 1.7222224639697303, + "eric" : 1.421192468305749, + "techniqu" : 0.8191324769777867, + "the" : 0.546131204914049, + "layout" : 2.632312138784387, + "comprehens" : 0.9818597744754864, + "modern" : 1.2828897701394677, + "and" : 0.05012460603401282, + "weyl" : 2.3242824552976926, + "design" : 0.6430412179221054, + "guid" : 1.121337531872331, + "selector" : 2.3242824552976926, + "estell" : 2.3242824552976926, + "to" : 0.42665536400725124, + "frontend" : 1.7222224639697303 }, "146" : { - "dougla" : 2.3138672203691533, - "part" : 3.417862451806381, - "languag" : 0.7340836237523433, - "best" : 1.1677391846909153, - "program" : 0.5814734605461849, - "good" : 1.8367459656494909, - "javascript" : 2.4603091135571993, - "opinion" : 3.0104106596839078, - "the" : 0.7259648038218328, - "most" : 2.3138672203691533, - "concis" : 1.5357159699855099, - "and" : 0.0514161306387239, - "crockford" : 2.3138672203691533, - "effect" : 1.2724745352109283, - "of" : 0.5656791933629529, - "reliabl" : 1.5357159699855099, - "guid" : 0.8667091890269342, - "to" : 0.4273764951966715 + "dougla" : 2.3242824552976926, + "part" : 3.433247016692225, + "languag" : 0.7222224639697303, + "best" : 1.1781544196194547, + "program" : 0.5839197658034488, + "good" : 1.8471612005780302, + "javascript" : 2.4769949447364934, + "opinion" : 3.0239611927378247, + "the" : 0.71053307916129, + "most" : 2.3242824552976926, + "concis" : 1.546131204914049, + "and" : 0.05012460603401282, + "crockford" : 2.3242824552976926, + "effect" : 1.2828897701394677, + "of" : 0.5608544617347554, + "reliabl" : 1.546131204914049, + "guid" : 0.8618844573987365, + "to" : 0.42665536400725124 }, "147" : { - "a" : 0.5656791933629529, - "simplic" : 2.012837224705172, - "ux" : 1.711807229041191, - "center" : 2.61876160573047, - "for" : 0.43305362808836206, - "interact" : 2.61876160573047, - "jef" : 2.3138672203691533, - "n" : 0.7228026133426542, - "the" : 0.557992364696662, - "interfac" : 2.61876160573047, - "ui" : 2.2271125517770325, - "and" : 0.0514161306387239, - "design" : 0.6511093886875794, - "raskin" : 2.3138672203691533, - "principl" : 0.9336559786575475, - "user" : 1.8367459656494909, - "human" : 2.7130965053814537 + "a" : 0.5389526202869256, + "simplic" : 2.0232524596337114, + "ux" : 1.7222224639697303, + "center" : 2.632312138784387, + "for" : 0.42665536400725124, + "interact" : 2.632312138784387, + "jef" : 2.3242824552976926, + "n" : 0.7332178482711935, + "the" : 0.546131204914049, + "interfac" : 2.632312138784387, + "ui" : 2.2406630848309494, + "and" : 0.05012460603401282, + "design" : 0.6430412179221054, + "raskin" : 2.3242824552976926, + "principl" : 0.926342446625655, + "user" : 1.8471612005780302, + "human" : 2.728481070267298 }, "148" : { - "engin" : 0.9521393843515605, - "practic" : 0.46163904552683577, - "career" : 1.4107772333772097, - "hunt" : 1.8367459656494909, - "multipl" : 0.670414543882966, - "20th" : 2.3138672203691533, - "edit" : 2.1010297179733644, - "for" : 0.43305362808836206, - "best" : 1.1677391846909153, - "develop" : 1.1097472377132287, - "anniversari" : 2.3138672203691533, - "andrew" : 1.4107772333772097, - "the" : 0.7259648038218328, - "pragmat" : 2.7130965053814537, - "guidanc" : 1.1677391846909153, - "classic" : 1.3596247109298285, - "softwar" : 0.8367459656494909, - "and" : 0.0514161306387239, - "of" : 0.5656791933629529, - "updat" : 2.3138672203691533, - "david" : 1.3138672203691535, - "thoma" : 1.5357159699855099, - "programm" : 1.4107772333772097 + "engin" : 0.926342446625655, + "practic" : 0.4629058307160776, + "career" : 1.421192468305749, + "hunt" : 1.8471612005780302, + "multipl" : 0.6808297788115053, + "20th" : 2.3242824552976926, + "edit" : 1.9244632934024373, + "for" : 0.42665536400725124, + "best" : 1.1781544196194547, + "develop" : 1.1201624726417678, + "anniversari" : 2.3242824552976926, + "andrew" : 1.421192468305749, + "the" : 0.71053307916129, + "pragmat" : 2.728481070267298, + "guidanc" : 1.1781544196194547, + "classic" : 1.3700399458583679, + "softwar" : 0.8471612005780302, + "and" : 0.05012460603401282, + "of" : 0.5608544617347554, + "updat" : 2.3242824552976926, + "david" : 1.3242824552976926, + "thoma" : 1.546131204914049, + "programm" : 1.421192468305749 }, "149" : { - "practic" : 0.46163904552683577, - "multipl" : 0.670414543882966, - "ddd" : 2.2271125517770325, - "pattern" : 1.017910650884944, - "tune" : 2.3138672203691533, - "nick" : 2.3138672203691533, - "comprehens" : 1.0351136194163244, - "millett" : 2.3138672203691533, - "strateg" : 3.0104106596839078, - "appli" : 1.1999238680623165, - "and" : 0.06689392822195765, - "design" : 0.9617675171779496, - "domain" : 1.5357159699855099, - "of" : 0.5656791933629529, - "driven" : 1.4107772333772097, - "architectur" : 0.9916479256352342, - "guid" : 0.8667091890269342, - "implement" : 1.2346859743215286, - "principl" : 0.9336559786575475, - "to" : 0.4273764951966715, - "scott" : 1.5357159699855099 + "practic" : 0.4629058307160776, + "multipl" : 0.6808297788115053, + "ddd" : 2.2406630848309494, + "pattern" : 1.031461183938861, + "tune" : 2.3242824552976926, + "nick" : 2.3242824552976926, + "comprehens" : 0.9818597744754864, + "millett" : 2.3242824552976926, + "strateg" : 3.0239611927378247, + "appli" : 1.210339102990856, + "and" : 0.06521361597109047, + "design" : 0.9498498506535602, + "domain" : 1.546131204914049, + "of" : 0.5608544617347554, + "driven" : 1.421192468305749, + "architectur" : 0.9818597744754864, + "guid" : 0.8618844573987365, + "implement" : 1.2451012092500677, + "principl" : 0.926342446625655, + "to" : 0.42665536400725124, + "scott" : 1.546131204914049 }, "150" : { - "jay" : 2.012837224705172, - "edit" : 1.6148972160331345, - "project" : 1.2346859743215286, - "al" : 1.3596247109298285, - "refactor" : 2.4603091135571993, - "et" : 1.3596247109298285, - "techniqu" : 1.0521653899167194, - "field" : 2.3138672203691533, - "appli" : 1.1999238680623165, - "and" : 0.0514161306387239, - "exampl" : 0.9521393843515605, - "to" : 0.4273764951966715, - "rubi" : 2.7424178745128738 + "jay" : 2.0232524596337114, + "edit" : 1.479184415283436, + "project" : 1.2451012092500677, + "al" : 1.3700399458583679, + "refactor" : 2.4769949447364934, + "et" : 1.3700399458583679, + "techniqu" : 1.065715922970636, + "field" : 2.0232524596337114, + "appli" : 1.210339102990856, + "and" : 0.05012460603401282, + "exampl" : 0.926342446625655, + "to" : 0.42665536400725124, + "rubi" : 2.7591037056921683 }, "151" : { - "hogan" : 2.3138672203691533, - "administr" : 2.61876160573047, - "limoncelli" : 2.012837224705172, - "a" : 0.7359655984882071, - "op" : 1.711807229041191, - "practic" : 0.5241207723332932, - "product" : 1.4107772333772097, - "in" : 0.7456654963021584, - "strata" : 2.3138672203691533, - "for" : 0.43305362808836206, - "j" : 1.4107772333772097, - "best" : 1.5192637063950825, - "n" : 0.7228026133426542, - "environ" : 1.8367459656494909, - "network" : 2.169550174579395, - "the" : 0.557992364696662, - "christina" : 2.3138672203691533, - "r" : 1.2724745352109283, - "system" : 0.9121304855688916, - "and" : 0.06689392822195765, - "of" : 0.5656791933629529, - "oper" : 1.9980125417713546, - "chalup" : 2.3138672203691533, - "thoma" : 1.5357159699855099 + "hogan" : 2.3242824552976926, + "administr" : 2.632312138784387, + "limoncelli" : 2.0232524596337114, + "a" : 0.7011935252349901, + "op" : 1.7222224639697303, + "practic" : 0.5255590138299762, + "product" : 1.421192468305749, + "in" : 0.7222224639697303, + "strata" : 2.3242824552976926, + "for" : 0.42665536400725124, + "j" : 1.421192468305749, + "best" : 1.5328142394489994, + "n" : 0.7332178482711935, + "environ" : 1.8471612005780302, + "network" : 2.184934739465239, + "the" : 0.546131204914049, + "christina" : 2.3242824552976926, + "r" : 1.2828897701394677, + "system" : 0.885779964175042, + "and" : 0.06521361597109047, + "of" : 0.5608544617347554, + "oper" : 2.011563074825271, + "chalup" : 2.3242824552976926, + "thoma" : 1.546131204914049 }, "152" : { - "engin" : 1.406425322081384, - "practic" : 0.3548258280480598, - "product" : 1.4107772333772097, - "python" : 0.7697991760188778, - "learn" : 1.3277752446568454, - "production" : 2.3138672203691533, - "andriy" : 2.3138672203691533, - "burkov" : 2.3138672203691533, - "system" : 0.7010833636494179, - "mlop" : 2.012837224705172, - "essenti" : 2.3138672203691533, - "and" : 0.0514161306387239, - "guid" : 0.8667091890269342, - "machin" : 1.680633055565226, - "to" : 0.4273764951966715, - "ml" : 1.2724745352109283 + "engin" : 1.3683201170597694, + "practic" : 0.3557995067437576, + "product" : 1.421192468305749, + "python" : 0.7802144109474171, + "learn" : 1.3431598095426893, + "production" : 2.3242824552976926, + "andriy" : 2.3242824552976926, + "burkov" : 2.3242824552976926, + "system" : 0.6808297788115053, + "mlop" : 2.0232524596337114, + "essenti" : 2.3242824552976926, + "and" : 0.05012460603401282, + "guid" : 0.8618844573987365, + "machin" : 1.6157247620774942, + "to" : 0.42665536400725124, + "ml" : 1.2828897701394677 }, "153" : { - "scienc" : 1.1999238680623165, - "a" : 0.5656791933629529, - "practic" : 0.5241207723332932, - "data" : 1.69593224035863, - "viz" : 2.3138672203691533, - "heali" : 2.3138672203691533, - "with" : 0.6606547065938096, - "r" : 1.2724745352109283, - "kieran" : 2.3138672203691533, - "and" : 0.0514161306387239, - "introduct" : 1.017910650884944, - "visual" : 2.5285468419995123, - "exampl" : 0.9521393843515605, - "principl" : 0.9336559786575475, - "to" : 0.4273764951966715 + "scienc" : 1.0690099501943866, + "a" : 0.5389526202869256, + "practic" : 0.5255590138299762, + "data" : 1.674999947324867, + "viz" : 2.3242824552976926, + "heali" : 2.3242824552976926, + "with" : 0.6521845973619752, + "r" : 1.2828897701394677, + "kieran" : 2.3242824552976926, + "and" : 0.05012460603401282, + "introduct" : 1.0150823516918936, + "visual" : 2.5439314068853567, + "exampl" : 0.926342446625655, + "principl" : 0.926342446625655, + "to" : 0.42665536400725124 }, "154" : { - "scienc" : 1.1999238680623165, - "communic" : 2.61876160573047, - "a" : 0.5656791933629529, - "practic" : 0.3548258280480598, - "nussbaum" : 2.3138672203691533, - "data" : 1.5636727540530921, - "storytel" : 3.0104106596839078, - "for" : 0.43305362808836206, - "knaflic" : 2.3138672203691533, - "cole" : 2.3138672203691533, - "n" : 0.7228026133426542, - "techniqu" : 0.8087172420492474, - "with" : 0.6606547065938096, - "and" : 0.0514161306387239, - "effect" : 1.2724745352109283, - "visual" : 2.2271125517770325 + "scienc" : 1.0690099501943866, + "communic" : 2.632312138784387, + "a" : 0.5389526202869256, + "practic" : 0.3557995067437576, + "nussbaum" : 2.3242824552976926, + "data" : 1.5443728931754963, + "storytel" : 3.0239611927378247, + "for" : 0.42665536400725124, + "knaflic" : 2.3242824552976926, + "cole" : 2.3242824552976926, + "n" : 0.7332178482711935, + "techniqu" : 0.8191324769777867, + "with" : 0.6521845973619752, + "and" : 0.05012460603401282, + "effect" : 1.2828897701394677, + "visual" : 2.2406630848309494 }, "155" : { - "scienc" : 1.1999238680623165, - "practic" : 0.3548258280480598, - "python" : 1.137086724763167, - "panda" : 3.0104106596839078, - "wes" : 2.3138672203691533, - "ecosystem" : 2.3138672203691533, - "data" : 1.69593224035863, - "pydata" : 2.3138672203691533, - "use" : 0.9521393843515605, - "for" : 0.43305362808836206, - "analysi" : 2.0083305589565263, - "techniqu" : 0.8087172420492474, - "the" : 0.557992364696662, - "mckinney" : 2.3138672203691533, - "and" : 0.0514161306387239, - "numpi" : 2.3138672203691533 + "scienc" : 1.0690099501943866, + "practic" : 0.3557995067437576, + "python" : 1.152471289649011, + "panda" : 3.0239611927378247, + "wes" : 2.3242824552976926, + "ecosystem" : 2.3242824552976926, + "data" : 1.674999947324867, + "pydata" : 2.3242824552976926, + "use" : 0.926342446625655, + "for" : 0.42665536400725124, + "analysi" : 2.0237151238423707, + "techniqu" : 0.8191324769777867, + "the" : 0.546131204914049, + "mckinney" : 2.3242824552976926, + "and" : 0.05012460603401282, + "numpi" : 2.3242824552976926 }, "156" : { - "practic" : 0.46163904552683577, - "recip" : 2.61876160573047, - "task" : 2.3138672203691533, - "cookbook" : 2.3138672203691533, - "scala" : 2.4603091135571993, - "and" : 0.0514161306387239, - "alexand" : 2.3138672203691533, - "for" : 0.43305362808836206, - "languag" : 0.7340836237523433, - "alvin" : 2.3138672203691533, - "idiom" : 1.5357159699855099, - "program" : 0.7565144138531231 + "practic" : 0.4629058307160776, + "recip" : 2.632312138784387, + "task" : 2.3242824552976926, + "cookbook" : 2.3242824552976926, + "scala" : 2.4769949447364934, + "and" : 0.05012460603401282, + "alexand" : 2.3242824552976926, + "for" : 0.42665536400725124, + "languag" : 0.7222224639697303, + "alvin" : 2.3242824552976926, + "idiom" : 1.546131204914049, + "program" : 0.759697130371374 }, "157" : { - "applic" : 1.3596247109298285, - "practic" : 0.46163904552683577, - "robust" : 1.6148972160331345, - "pattern" : 1.017910650884944, - "for" : 0.43305362808836206, - "languag" : 0.7340836237523433, - "best" : 1.5192637063950825, - "program" : 0.5814734605461849, - "dan" : 2.012837224705172, - "and" : 0.0514161306387239, - "effect" : 1.2724745352109283, - "vanderkam" : 2.3138672203691533, - "typescript" : 3.224685986755768, - "write" : 1.3138672203691535 + "applic" : 1.3242824552976926, + "practic" : 0.4629058307160776, + "robust" : 1.6253124509616739, + "pattern" : 1.031461183938861, + "for" : 0.42665536400725124, + "languag" : 0.7222224639697303, + "best" : 1.5328142394489994, + "program" : 0.5839197658034488, + "dan" : 2.0232524596337114, + "and" : 0.05012460603401282, + "effect" : 1.2828897701394677, + "vanderkam" : 2.3242824552976926, + "typescript" : 3.2413718179350623, + "write" : 1.3242824552976926 }, "158" : { - "app" : 1.8367459656494909, - "featur" : 1.6148972160331345, - "pattern" : 0.7823883033268982, - "clear" : 1.6148972160331345, - "for" : 0.43305362808836206, - "languag" : 0.7340836237523433, - "bori" : 2.3138672203691533, - "program" : 0.7565144138531231, - "type" : 3.0104106596839078, - "cherni" : 2.3138672203691533, - "and" : 0.0514161306387239, - "larg" : 1.6148972160331345, - "architectur" : 1.2901636963894048, - "guid" : 0.8667091890269342, - "typescript" : 3.224685986755768, - "to" : 0.4273764951966715 + "app" : 1.8471612005780302, + "featur" : 1.6253124509616739, + "pattern" : 0.7928035382554376, + "clear" : 1.6253124509616739, + "for" : 0.42665536400725124, + "languag" : 0.7222224639697303, + "bori" : 2.3242824552976926, + "program" : 0.759697130371374, + "type" : 3.0239611927378247, + "cherni" : 2.3242824552976926, + "and" : 0.05012460603401282, + "larg" : 1.6253124509616739, + "architectur" : 1.2774290181284798, + "guid" : 0.8618844573987365, + "typescript" : 3.2413718179350623, + "to" : 0.42665536400725124 }, "159" : { - "robust" : 1.6148972160331345, - "multipl" : 0.670414543882966, - "pattern" : 0.7823883033268982, - "version" : 2.389661595724792, - "secur" : 1.7689125317656766, - "forster" : 2.3138672203691533, - "web" : 1.9980125417713546, - "brendan" : 1.8367459656494909, - "and" : 0.06689392822195765, - "design" : 0.847112845140979, - "principl" : 0.9336559786575475, - "api" : 2.587162219913594, - "to" : 0.4273764951966715 + "robust" : 1.6253124509616739, + "multipl" : 0.6808297788115053, + "pattern" : 0.7928035382554376, + "version" : 2.403212128778709, + "secur" : 1.7824630648195934, + "forster" : 2.3242824552976926, + "web" : 2.011563074825271, + "brendan" : 1.8471612005780302, + "and" : 0.06521361597109047, + "design" : 0.8366159129649581, + "principl" : 0.926342446625655, + "api" : 2.6038480510928887, + "to" : 0.42665536400725124 }, "160" : { - "schema" : 3.0104106596839078, - "data" : 1.0585947152658473, - "sadalag" : 2.012837224705172, - "for" : 0.43305362808836206, - "j" : 1.4107772333772097, - "refactor" : 2.2684387004780198, - "evolv" : 2.012837224705172, - "databas" : 2.3530563403421443, - "sql" : 1.5357159699855099, - "techniqu" : 0.8087172420492474, - "pramod" : 2.012837224705172, - "and" : 0.0514161306387239, - "w" : 1.3596247109298285, - "ambler" : 2.3138672203691533, - "safe" : 1.8367459656494909, - "model" : 1.1999238680623165, - "scott" : 1.5357159699855099 + "schema" : 3.0239611927378247, + "data" : 1.0455288543448638, + "sadalag" : 2.0232524596337114, + "for" : 0.42665536400725124, + "j" : 1.421192468305749, + "refactor" : 2.2838232653638633, + "evolv" : 2.0232524596337114, + "databas" : 2.276835593449274, + "sql" : 1.479184415283436, + "techniqu" : 0.8191324769777867, + "pramod" : 2.0232524596337114, + "and" : 0.05012460603401282, + "w" : 1.3700399458583679, + "ambler" : 2.3242824552976926, + "safe" : 1.8471612005780302, + "model" : 1.1781544196194547, + "scott" : 1.546131204914049 }, "161" : { - "engin" : 0.9521393843515605, - "ralph" : 2.012837224705172, - "data" : 1.5636727540530921, - "ross" : 2.012837224705172, - "pattern" : 0.7823883033268982, - "for" : 0.43305362808836206, - "margi" : 2.3138672203691533, - "kimbal" : 2.3138672203691533, - "sql" : 1.5357159699855099, - "techniqu" : 0.8087172420492474, - "the" : 0.557992364696662, - "dw" : 2.3138672203691533, - "warehous" : 3.0104106596839078, - "toolkit" : 2.012837224705172, - "and" : 0.0514161306387239, - "design" : 0.6511093886875794, - "model" : 1.5611369448622232, - "etl" : 2.3138672203691533, - "dimension" : 3.0104106596839078 + "engin" : 0.926342446625655, + "ralph" : 2.0232524596337114, + "data" : 1.5443728931754963, + "ross" : 2.0232524596337114, + "pattern" : 0.7928035382554376, + "for" : 0.42665536400725124, + "margi" : 2.3242824552976926, + "kimbal" : 2.3242824552976926, + "sql" : 1.479184415283436, + "techniqu" : 0.8191324769777867, + "the" : 0.546131204914049, + "dw" : 2.3242824552976926, + "warehous" : 3.0239611927378247, + "toolkit" : 2.0232524596337114, + "and" : 0.05012460603401282, + "design" : 0.6430412179221054, + "model" : 1.5328142394489994, + "etl" : 2.3242824552976926, + "dimension" : 3.0239611927378247 }, "162" : { - "elmasri" : 2.3138672203691533, - "b" : 2.012837224705172, - "textbook" : 1.5357159699855099, - "ramez" : 2.3138672203691533, - "theori" : 1.7689125317656766, - "databas" : 2.3530563403421443, - "sql" : 1.5357159699855099, - "navath" : 2.3138672203691533, - "comprehens" : 1.0351136194163244, - "system" : 0.7010833636494179, - "fundament" : 1.3596247109298285, - "and" : 0.0514161306387239, - "design" : 0.847112845140979, - "of" : 0.5656791933629529, - "implement" : 1.2346859743215286, - "shamkant" : 2.3138672203691533, - "on" : 0.7456654963021584 + "elmasri" : 2.3242824552976926, + "b" : 2.0232524596337114, + "textbook" : 1.3242824552976926, + "ramez" : 2.3242824552976926, + "theori" : 1.6690780720819176, + "databas" : 2.276835593449274, + "sql" : 1.479184415283436, + "navath" : 2.3242824552976926, + "comprehens" : 0.9818597744754864, + "system" : 0.6808297788115053, + "fundament" : 1.3700399458583679, + "and" : 0.05012460603401282, + "design" : 0.8366159129649581, + "of" : 0.5608544617347554, + "implement" : 1.2451012092500677, + "shamkant" : 2.3242824552976926, + "on" : 0.7222224639697303 }, "163" : { - "mostafa" : 2.3138672203691533, - "data" : 1.0585947152658473, - "yaser" : 2.3138672203691533, - "theori" : 1.7689125317656766, - "lin" : 2.3138672203691533, - "ismail" : 2.3138672203691533, - "and" : 0.0514161306387239, - "malik" : 2.3138672203691533, - "introduct" : 0.7823883033268982, - "magdon" : 2.3138672203691533, - "hsuan" : 2.3138672203691533, - "from" : 1.5357159699855099, - "machin" : 1.4802806540142488, - "ml" : 1.2724745352109283, - "matlab" : 1.6148972160331345, - "a" : 0.5656791933629529, - "practic" : 0.3548258280480598, - "python" : 0.7697991760188778, - "learn" : 1.4400819094192359, - "tien" : 2.3138672203691533, - "cours" : 1.8367459656494909, - "s" : 1.2346859743215286, - "concis" : 1.5357159699855099, - "abu" : 2.3138672203691533, - "short" : 2.3138672203691533, - "to" : 0.4273764951966715 + "mostafa" : 2.3242824552976926, + "data" : 1.0455288543448638, + "yaser" : 2.3242824552976926, + "theori" : 1.6690780720819176, + "lin" : 2.3242824552976926, + "ismail" : 2.3242824552976926, + "and" : 0.05012460603401282, + "malik" : 2.3242824552976926, + "introduct" : 0.7802144109474171, + "magdon" : 2.3242824552976926, + "hsuan" : 2.3242824552976926, + "from" : 1.546131204914049, + "machin" : 1.4231102378922986, + "ml" : 1.2828897701394677, + "matlab" : 1.6253124509616739, + "a" : 0.5389526202869256, + "practic" : 0.3557995067437576, + "python" : 0.7802144109474171, + "learn" : 1.4567677405985302, + "tien" : 2.3242824552976926, + "cours" : 1.6253124509616739, + "s" : 1.210339102990856, + "concis" : 1.546131204914049, + "abu" : 2.3242824552976926, + "short" : 2.3242824552976926, + "to" : 0.42665536400725124 }, "164" : { - "intuit" : 2.3138672203691533, - "practic" : 0.46163904552683577, - "deep" : 1.978041001314305, - "python" : 1.001531818637977, - "learn" : 1.4400819094192359, - "use" : 0.9521393843515605, - "fran" : 2.3138672203691533, - "with" : 0.859531590055133, - "explan" : 2.3138672203691533, - "chollet" : 2.3138672203691533, - "and" : 0.0514161306387239, - "exampl" : 0.9521393843515605, - "guid" : 0.8667091890269342, - "oi" : 2.3138672203691533, - "kera" : 2.389661595724792 + "intuit" : 2.3242824552976926, + "practic" : 0.4629058307160776, + "deep" : 1.9947268324935992, + "python" : 1.0150823516918936, + "learn" : 1.4567677405985302, + "use" : 0.926342446625655, + "fran" : 2.3242824552976926, + "with" : 0.8485117238779659, + "explan" : 2.3242824552976926, + "chollet" : 2.3242824552976926, + "and" : 0.05012460603401282, + "exampl" : 0.926342446625655, + "guid" : 0.8618844573987365, + "oi" : 2.3242824552976926, + "kera" : 2.403212128778709 }, "165" : { - "a" : 0.5656791933629529, - "some" : 1.6148972160331345, - "method" : 1.6148972160331345, - "learn" : 0.8988938723983354, - "in" : 0.7456654963021584, - "use" : 0.9521393843515605, - "author" : 1.4687691803548966, - "recognit" : 2.7130965053814537, - "pattern" : 1.1556823922882158, - "n" : 0.7228026133426542, - "materi" : 2.3138672203691533, - "vision" : 3.0104106596839078, - "classic" : 1.3596247109298285, - "and" : 0.0514161306387239, - "machin" : 1.1377759613134721, - "foundat" : 1.2724745352109283, - "ml" : 1.6555275390280006, - "on" : 0.7456654963021584 + "a" : 0.5389526202869256, + "some" : 1.6253124509616739, + "method" : 1.546131204914049, + "learn" : 0.9093091073268746, + "in" : 0.7222224639697303, + "use" : 0.926342446625655, + "author" : 1.479184415283436, + "recognit" : 2.728481070267298, + "pattern" : 1.1710669571740597, + "n" : 0.7332178482711935, + "materi" : 2.3242824552976926, + "vision" : 3.0239611927378247, + "classic" : 1.3700399458583679, + "and" : 0.05012460603401282, + "machin" : 1.0938335339194187, + "foundat" : 1.1781544196194547, + "ml" : 1.6690780720819176, + "on" : 0.7222224639697303 }, "166" : { - "some" : 1.6148972160331345, - "practic" : 0.3548258280480598, - "process" : 1.1677391846909153, - "python" : 1.137086724763167, - "librari" : 1.6148972160331345, - "natur" : 1.8367459656494909, - "use" : 0.9521393843515605, - "author" : 1.4687691803548966, - "languag" : 0.7340836237523433, - "techniqu" : 0.8087172420492474, - "with" : 0.6606547065938096, - "transform" : 2.389661595724792, - "nlp" : 2.2684387004780198, - "modern" : 1.2724745352109283, - "appli" : 1.1999238680623165, - "and" : 0.0514161306387239, - "model" : 1.1999238680623165, - "hand" : 1.4107772333772097, - "on" : 0.7456654963021584 + "some" : 1.6253124509616739, + "practic" : 0.3557995067437576, + "process" : 1.1481911962420115, + "python" : 1.152471289649011, + "librari" : 1.6253124509616739, + "natur" : 1.8471612005780302, + "use" : 0.926342446625655, + "author" : 1.479184415283436, + "languag" : 0.7222224639697303, + "techniqu" : 0.8191324769777867, + "with" : 0.6521845973619752, + "transform" : 2.403212128778709, + "nlp" : 2.2838232653638633, + "modern" : 1.2828897701394677, + "appli" : 1.210339102990856, + "and" : 0.05012460603401282, + "model" : 1.1781544196194547, + "hand" : 1.421192468305749, + "on" : 0.7222224639697303 }, "167" : { - "applic" : 1.3596247109298285, - "practic" : 0.3548258280480598, - "process" : 1.1677391846909153, - "deep" : 1.2346859743215286, - "python" : 0.7697991760188778, - "learn" : 0.8988938723983354, - "in" : 0.7456654963021584, - "natur" : 1.8367459656494909, - "for" : 0.43305362808836206, - "languag" : 0.7340836237523433, - "rothman" : 2.3138672203691533, - "deni" : 2.3138672203691533, - "transform" : 2.7130965053814537, - "nlp" : 2.2684387004780198, - "and" : 0.0514161306387239, - "introduct" : 0.7823883033268982, - "architectur" : 0.9916479256352342, - "to" : 0.4273764951966715 + "applic" : 1.3242824552976926, + "practic" : 0.3557995067437576, + "process" : 1.1481911962420115, + "deep" : 1.2451012092500677, + "python" : 0.7802144109474171, + "learn" : 0.9093091073268746, + "in" : 0.7222224639697303, + "natur" : 1.8471612005780302, + "for" : 0.42665536400725124, + "languag" : 0.7222224639697303, + "rothman" : 2.3242824552976926, + "deni" : 2.3242824552976926, + "transform" : 2.728481070267298, + "nlp" : 2.2838232653638633, + "and" : 0.05012460603401282, + "introduct" : 0.7802144109474171, + "architectur" : 0.9818597744754864, + "to" : 0.42665536400725124 }, "168" : { - "deep" : 1.606363487817917, - "python" : 0.7697991760188778, - "learn" : 1.1694878909087856, - "ai" : 2.012837224705172, - "generat" : 3.224685986755768, - "techniqu" : 0.8087172420492474, - "modern" : 1.2724745352109283, - "gan" : 3.0104106596839078, - "and" : 0.0514161306387239, - "foster" : 2.3138672203691533, - "guid" : 0.8667091890269342, - "model" : 1.1999238680623165, - "david" : 1.3138672203691535, - "to" : 0.4273764951966715, - "vae" : 3.0104106596839078 + "deep" : 1.6199140208718334, + "python" : 0.7802144109474171, + "learn" : 1.1830384239627023, + "ai" : 2.0232524596337114, + "generat" : 3.2413718179350623, + "techniqu" : 0.8191324769777867, + "modern" : 1.2828897701394677, + "gan" : 3.0239611927378247, + "and" : 0.05012460603401282, + "foster" : 2.3242824552976926, + "guid" : 0.8618844573987365, + "model" : 1.1781544196194547, + "david" : 1.3242824552976926, + "to" : 0.42665536400725124, + "vae" : 3.0239611927378247 }, "169" : { - "practic" : 0.3548258280480598, - "deep" : 1.2346859743215286, - "python" : 0.7697991760188778, - "learn" : 1.4400819094192359, - "maxim" : 2.3138672203691533, - "use" : 0.9521393843515605, - "project" : 1.606363487817917, - "approach" : 1.5357159699855099, - "with" : 0.6606547065938096, - "reinforc" : 3.224685986755768, - "lapan" : 2.3138672203691533, - "pytorch" : 3.0104106596839078, - "to" : 0.4273764951966715, - "hand" : 1.8354634978235946, - "on" : 0.9701331774207775 + "practic" : 0.3557995067437576, + "deep" : 1.2451012092500677, + "python" : 0.7802144109474171, + "learn" : 1.4567677405985302, + "maxim" : 2.3242824552976926, + "use" : 0.926342446625655, + "project" : 1.6199140208718334, + "approach" : 1.546131204914049, + "with" : 0.6521845973619752, + "reinforc" : 3.2413718179350623, + "lapan" : 2.3242824552976926, + "pytorch" : 3.0239611927378247, + "to" : 0.42665536400725124, + "hand" : 1.8490140308775116, + "on" : 0.9396330891669681 }, "170" : { - "app" : 2.389661595724792, - "ee" : 2.3138672203691533, - "practic" : 0.3548258280480598, - "luqman" : 2.3138672203691533, - "contain" : 2.2271125517770325, - "abdallah" : 2.3138672203691533, - "pattern" : 0.7823883033268982, - "for" : 0.43305362808836206, - "serverless" : 2.61876160573047, - "pro" : 2.012837224705172, - "cloud" : 2.7424178745128738, - "with" : 0.6606547065938096, - "java" : 1.2387618990944165, - "ghazi" : 2.3138672203691533, - "saeed" : 2.3138672203691533, - "build" : 1.1999238680623165, - "nativ" : 2.9732046469029467, - "and" : 0.0514161306387239 + "app" : 2.403212128778709, + "ee" : 2.3242824552976926, + "practic" : 0.3557995067437576, + "luqman" : 2.3242824552976926, + "contain" : 2.2406630848309494, + "abdallah" : 2.3242824552976926, + "pattern" : 0.7928035382554376, + "for" : 0.42665536400725124, + "serverless" : 2.632312138784387, + "pro" : 2.0232524596337114, + "cloud" : 2.7591037056921683, + "with" : 0.6521845973619752, + "java" : 1.2523124321483334, + "ghazi" : 2.3242824552976926, + "saeed" : 2.3242824552976926, + "build" : 1.210339102990856, + "nativ" : 2.9885892117887907, + "and" : 0.05012460603401282 }, "171" : { - "applic" : 1.3596247109298285, - "practic" : 0.3548258280480598, - "multipl" : 0.670414543882966, - "sbarski" : 2.3138672203691533, - "architect" : 2.012837224705172, - "pattern" : 1.017910650884944, - "for" : 0.43305362808836206, - "serverless" : 2.9732046469029467, - "best" : 1.1677391846909153, - "cloud" : 1.711807229041191, - "peter" : 1.6148972160331345, - "and" : 0.0514161306387239, - "aw" : 3.417862451806381, - "architectur" : 0.9916479256352342, - "on" : 0.9701331774207775 + "applic" : 1.3242824552976926, + "practic" : 0.3557995067437576, + "multipl" : 0.6808297788115053, + "sbarski" : 2.3242824552976926, + "architect" : 2.0232524596337114, + "pattern" : 1.031461183938861, + "for" : 0.42665536400725124, + "serverless" : 2.9885892117887907, + "best" : 1.1781544196194547, + "cloud" : 1.7222224639697303, + "peter" : 1.6253124509616739, + "and" : 0.05012460603401282, + "aw" : 3.433247016692225, + "architectur" : 0.9818597744754864, + "on" : 0.9396330891669681 }, "172" : { - "practic" : 0.3548258280480598, - "deep" : 1.2346859743215286, - "python" : 0.7697991760188778, - "yehezkel" : 2.3138672203691533, - "learn" : 1.4400819094192359, - "use" : 0.9521393843515605, - "lieder" : 2.3138672203691533, - "hope" : 2.3138672203691533, - "itay" : 2.3138672203691533, - "tensorflow" : 2.7130965053814537, - "s" : 1.2346859743215286, - "tom" : 1.711807229041191, - "build" : 1.1999238680623165, - "resheff" : 2.3138672203691533, - "guid" : 0.8667091890269342, - "model" : 1.1999238680623165, - "machin" : 1.4802806540142488, - "to" : 0.4273764951966715, - "hand" : 1.4107772333772097, - "on" : 0.7456654963021584 + "practic" : 0.3557995067437576, + "deep" : 1.2451012092500677, + "python" : 0.7802144109474171, + "yehezkel" : 2.3242824552976926, + "learn" : 1.4567677405985302, + "use" : 0.926342446625655, + "lieder" : 2.3242824552976926, + "hope" : 2.3242824552976926, + "itay" : 2.3242824552976926, + "tensorflow" : 2.728481070267298, + "s" : 1.210339102990856, + "tom" : 1.7222224639697303, + "build" : 1.210339102990856, + "resheff" : 2.3242824552976926, + "guid" : 0.8618844573987365, + "model" : 1.1781544196194547, + "machin" : 1.4231102378922986, + "to" : 0.42665536400725124, + "hand" : 1.421192468305749, + "on" : 0.7222224639697303 }, "173" : { - "a" : 0.5656791933629529, - "engin" : 0.9521393843515605, - "fournier" : 2.3138672203691533, - "career" : 1.8354634978235946, - "camill" : 2.3138672203691533, - "for" : 0.43305362808836206, - "manag" : 2.9083091353465407, - "n" : 0.7228026133426542, - "peopl" : 2.3138672203691533, - "the" : 0.557992364696662, - "path" : 2.3138672203691533, - "guidanc" : 1.1677391846909153, - "and" : 0.0514161306387239, - "leadership" : 3.0104106596839078, - "on" : 0.7456654963021584 + "a" : 0.5389526202869256, + "engin" : 0.926342446625655, + "fournier" : 2.3242824552976926, + "career" : 1.8490140308775116, + "camill" : 2.3242824552976926, + "for" : 0.42665536400725124, + "manag" : 2.7613571018577403, + "n" : 0.7332178482711935, + "peopl" : 2.3242824552976926, + "the" : 0.546131204914049, + "path" : 2.3242824552976926, + "guidanc" : 1.1781544196194547, + "and" : 0.05012460603401282, + "leadership" : 3.0239611927378247, + "on" : 0.7222224639697303 }, "174" : { - "a" : 0.5656791933629529, - "practic" : 0.3548258280480598, - "process" : 1.1677391846909153, - "trench" : 2.3138672203691533, - "agil" : 2.389661595724792, - "project" : 1.2346859743215286, - "real" : 1.4107772333772097, - "team" : 1.8367459656494909, - "n" : 0.7228026133426542, - "techniqu" : 0.8087172420492474, - "the" : 0.557992364696662, - "studi" : 1.5357159699855099, - "softwar" : 0.8367459656494909, - "lean" : 2.7130965053814537, - "appli" : 1.1999238680623165, - "and" : 0.06689392822195765, - "henrik" : 2.3138672203691533, - "from" : 1.5357159699855099, - "to" : 0.4273764951966715, - "kniberg" : 2.3138672203691533, - "case" : 1.5357159699855099 + "a" : 0.5389526202869256, + "practic" : 0.3557995067437576, + "process" : 1.1481911962420115, + "trench" : 2.3242824552976926, + "agil" : 2.403212128778709, + "project" : 1.2451012092500677, + "real" : 1.421192468305749, + "team" : 1.8471612005780302, + "n" : 0.7332178482711935, + "techniqu" : 0.8191324769777867, + "the" : 0.546131204914049, + "studi" : 1.546131204914049, + "softwar" : 0.8471612005780302, + "lean" : 2.728481070267298, + "appli" : 1.210339102990856, + "and" : 0.06521361597109047, + "henrik" : 2.3242824552976926, + "from" : 1.546131204914049, + "to" : 0.42665536400725124, + "kniberg" : 2.3242824552976926, + "case" : 1.546131204914049 }, "175" : { - "a" : 0.5656791933629529, - "practic" : 0.3548258280480598, - "collabor" : 2.61876160573047, - "sourc" : 2.61876160573047, - "in" : 0.7456654963021584, - "author" : 1.4687691803548966, - "work" : 1.8367459656494909, - "document" : 2.012837224705172, - "project" : 1.2346859743215286, - "n" : 0.7228026133426542, - "guidanc" : 1.1677391846909153, - "public" : 2.3138672203691533, - "and" : 0.0514161306387239, - "various" : 1.6148972160331345, - "by" : 1.5357159699855099, - "driven" : 1.4107772333772097, - "communiti" : 2.61876160573047, - "open" : 2.9732046469029467, - "on" : 0.7456654963021584 + "a" : 0.5389526202869256, + "practic" : 0.3557995067437576, + "collabor" : 2.632312138784387, + "sourc" : 2.632312138784387, + "in" : 0.7222224639697303, + "author" : 1.479184415283436, + "work" : 1.8471612005780302, + "document" : 2.0232524596337114, + "project" : 1.2451012092500677, + "n" : 0.7332178482711935, + "guidanc" : 1.1781544196194547, + "public" : 2.3242824552976926, + "and" : 0.05012460603401282, + "various" : 1.6253124509616739, + "by" : 1.546131204914049, + "driven" : 1.421192468305749, + "communiti" : 2.632312138784387, + "open" : 2.9885892117887907, + "on" : 0.7222224639697303 }, "176" : { - "organ" : 1.6148972160331345, - "a" : 0.5656791933629529, - "technic" : 2.012837224705172, - "within" : 2.3138672203691533, - "org" : 2.3138672203691533, - "bridg" : 2.3138672203691533, - "busi" : 1.8367459656494909, - "architect" : 2.61876160573047, - "gregor" : 2.3138672203691533, - "strategi" : 1.9109127603485203, - "n" : 0.7228026133426542, - "the" : 0.557992364696662, - "how" : 2.012837224705172, - "softwar" : 0.8367459656494909, - "and" : 0.0514161306387239, - "design" : 0.6511093886875794, - "elev" : 2.3138672203691533, - "architectur" : 1.4647842281544676, - "oper" : 1.5357159699855099, - "hohp" : 2.3138672203691533 + "organ" : 1.479184415283436, + "a" : 0.5389526202869256, + "technic" : 2.0232524596337114, + "within" : 2.3242824552976926, + "org" : 2.3242824552976926, + "bridg" : 2.3242824552976926, + "busi" : 1.8471612005780302, + "architect" : 2.632312138784387, + "gregor" : 2.3242824552976926, + "strategi" : 1.9244632934024373, + "n" : 0.7332178482711935, + "the" : 0.546131204914049, + "how" : 2.0232524596337114, + "softwar" : 0.8471612005780302, + "and" : 0.05012460603401282, + "design" : 0.6430412179221054, + "elev" : 2.3242824552976926, + "architectur" : 1.4503259420319952, + "oper" : 1.546131204914049, + "hohp" : 2.3242824552976926 }, "177" : { - "practic" : 0.3548258280480598, - "python" : 0.7697991760188778, - "lifecycl" : 2.012837224705172, - "learn" : 1.1694878909087856, - "for" : 0.43305362808836206, - "monitor" : 2.61876160573047, - "system" : 1.0355851377769096, - "mlop" : 2.012837224705172, - "and" : 0.0514161306387239, - "various" : 1.6148972160331345, - "design" : 0.9617675171779496, - "machin" : 1.4802806540142488, - "consider" : 1.711807229041191, - "ml" : 1.6555275390280006 + "practic" : 0.3557995067437576, + "python" : 0.7802144109474171, + "lifecycl" : 2.0232524596337114, + "learn" : 1.1830384239627023, + "for" : 0.42665536400725124, + "monitor" : 2.632312138784387, + "system" : 1.005668137128561, + "mlop" : 2.0232524596337114, + "and" : 0.05012460603401282, + "various" : 1.6253124509616739, + "design" : 0.9498498506535602, + "machin" : 1.4231102378922986, + "consider" : 1.7222224639697303, + "ml" : 1.6690780720819176 }, "178" : { - "multipl" : 0.670414543882966, - "pattern" : 1.1556823922882158, - "for" : 0.43305362808836206, - "distribut" : 2.3530563403421443, - "proven" : 2.3138672203691533, - "servic" : 1.8367459656494909, - "system" : 1.0355851377769096, - "build" : 1.1999238680623165, - "scalabl" : 1.9980125417713546, - "and" : 0.0514161306387239, - "various" : 1.6148972160331345, - "of" : 0.5656791933629529, - "to" : 0.4273764951966715, - "collect" : 1.6148972160331345 + "multipl" : 0.6808297788115053, + "pattern" : 1.1710669571740597, + "for" : 0.42665536400725124, + "distribut" : 2.276835593449274, + "proven" : 2.3242824552976926, + "servic" : 1.8471612005780302, + "system" : 1.005668137128561, + "build" : 1.210339102990856, + "scalabl" : 2.011563074825271, + "and" : 0.05012460603401282, + "various" : 1.6253124509616739, + "of" : 0.5608544617347554, + "to" : 0.42665536400725124, + "collect" : 1.6253124509616739 }, "179" : { - "donald" : 1.6148972160331345, - "art" : 1.2724745352109283, - "e" : 1.4687691803548966, - "pascal" : 1.6148972160331345, - "program" : 0.5814734605461849, - "analysi" : 1.7689125317656766, - "techniqu" : 0.8087172420492474, - "the" : 0.557992364696662, - "1" : 1.8367459656494909, - "comput" : 1.1999238680623165, - "knuth" : 2.1010297179733644, - "and" : 0.0514161306387239, - "of" : 0.5656791933629529, - "volum" : 1.4687691803548966, - "basic" : 1.711807229041191, - "foundat" : 1.2724745352109283, - "algorithm" : 1.406425322081384 + "donald" : 1.6253124509616739, + "art" : 1.2828897701394677, + "e" : 1.421192468305749, + "pascal" : 1.6253124509616739, + "program" : 0.5839197658034488, + "analysi" : 1.7824630648195934, + "techniqu" : 0.8191324769777867, + "the" : 0.546131204914049, + "1" : 1.8471612005780302, + "comput" : 1.0938335339194187, + "knuth" : 2.1145802510272813, + "and" : 0.05012460603401282, + "of" : 0.5608544617347554, + "volum" : 1.479184415283436, + "basic" : 1.7222224639697303, + "foundat" : 1.1781544196194547, + "algorithm" : 1.421809886967228 }, "180" : { - "assort" : 2.3138672203691533, - "donald" : 1.6148972160331345, - "art" : 1.2724745352109283, - "e" : 1.4687691803548966, - "pascal" : 1.6148972160331345, - "seminumer" : 3.0104106596839078, - "continu" : 1.8367459656494909, - "program" : 0.5814734605461849, - "the" : 0.557992364696662, - "cover" : 1.4107772333772097, - "comput" : 1.1999238680623165, - "knuth" : 2.1010297179733644, - "2" : 2.3138672203691533, - "and" : 0.0514161306387239, - "of" : 0.5656791933629529, - "volum" : 1.4687691803548966, - "topic" : 1.8367459656494909, - "algorithm" : 1.406425322081384 + "assort" : 2.3242824552976926, + "donald" : 1.6253124509616739, + "art" : 1.2828897701394677, + "e" : 1.421192468305749, + "pascal" : 1.6253124509616739, + "seminumer" : 3.0239611927378247, + "continu" : 1.8471612005780302, + "program" : 0.5839197658034488, + "the" : 0.546131204914049, + "cover" : 1.210339102990856, + "comput" : 1.0938335339194187, + "knuth" : 2.1145802510272813, + "2" : 2.3242824552976926, + "and" : 0.05012460603401282, + "of" : 0.5608544617347554, + "volum" : 1.479184415283436, + "topic" : 1.6253124509616739, + "algorithm" : 1.421809886967228 }, "181" : { - "donald" : 1.6148972160331345, - "art" : 1.2724745352109283, - "e" : 1.4687691803548966, - "in" : 0.7456654963021584, - "pascal" : 1.6148972160331345, - "program" : 0.5814734605461849, - "sort" : 3.0104106596839078, - "the" : 0.557992364696662, - "comput" : 1.1999238680623165, - "knuth" : 2.1010297179733644, - "search" : 2.389661595724792, - "3" : 2.3138672203691533, - "and" : 0.0514161306387239, - "of" : 0.5656791933629529, - "volum" : 1.4687691803548966, - "topic" : 1.8367459656494909, - "combinatori" : 2.3138672203691533, - "advanc" : 1.711807229041191, - "algorithm" : 1.2387618990944165 + "donald" : 1.6253124509616739, + "art" : 1.2828897701394677, + "e" : 1.421192468305749, + "in" : 0.7222224639697303, + "pascal" : 1.6253124509616739, + "program" : 0.5839197658034488, + "sort" : 3.0239611927378247, + "the" : 0.546131204914049, + "comput" : 1.0938335339194187, + "knuth" : 2.1145802510272813, + "search" : 2.403212128778709, + "3" : 2.3242824552976926, + "and" : 0.05012460603401282, + "of" : 0.5608544617347554, + "volum" : 1.479184415283436, + "topic" : 1.6253124509616739, + "combinatori" : 2.3242824552976926, + "advanc" : 1.546131204914049, + "algorithm" : 1.2523124321483334 }, "182" : { - "richard" : 1.6148972160331345, - "tcp" : 2.61876160573047, - "a" : 0.5656791933629529, - "level" : 1.8367459656494909, - "illustr" : 1.8367459656494909, - "ip" : 3.0104106596839078, - "analysi" : 1.7689125317656766, - "packet" : 2.3138672203691533, - "n" : 0.7228026133426542, - "network" : 1.4687691803548966, - "1" : 1.8367459656494909, - "with" : 0.6606547065938096, - "protocol" : 2.2271125517770325, - "steven" : 1.711807229041191, - "and" : 0.0514161306387239, - "w" : 1.3596247109298285, - "of" : 0.5656791933629529, - "volum" : 1.4687691803548966, - "exampl" : 0.9521393843515605, - "tcpip" : 2.3138672203691533, - "detail" : 2.012837224705172, - "explor" : 1.8367459656494909 + "richard" : 1.6253124509616739, + "tcp" : 2.632312138784387, + "a" : 0.5389526202869256, + "level" : 1.7222224639697303, + "illustr" : 1.8471612005780302, + "ip" : 3.0239611927378247, + "analysi" : 1.7824630648195934, + "packet" : 2.3242824552976926, + "n" : 0.7332178482711935, + "network" : 1.479184415283436, + "1" : 1.8471612005780302, + "with" : 0.6521845973619752, + "protocol" : 2.2406630848309494, + "steven" : 1.7222224639697303, + "and" : 0.05012460603401282, + "w" : 1.3700399458583679, + "of" : 0.5608544617347554, + "volum" : 1.479184415283436, + "exampl" : 0.926342446625655, + "tcpip" : 2.3242824552976926, + "detail" : 2.0232524596337114, + "explor" : 1.8471612005780302 }, "183" : { - "practic" : 0.46163904552683577, - "multipl" : 0.670414543882966, - "ddd" : 2.2271125517770325, - "concept" : 1.2724745352109283, - "for" : 0.43305362808836206, - "project" : 1.2346859743215286, - "vernon" : 2.012837224705172, - "vaughn" : 2.012837224705172, - "real" : 1.4107772333772097, - "distil" : 2.61876160573047, - "core" : 1.6148972160331345, - "concis" : 1.5357159699855099, - "and" : 0.0514161306387239, - "design" : 0.6511093886875794, - "introduct" : 0.7823883033268982, - "domain" : 1.5357159699855099, - "driven" : 1.4107772333772097, - "architectur" : 0.9916479256352342, - "to" : 0.4273764951966715 + "practic" : 0.4629058307160776, + "multipl" : 0.6808297788115053, + "ddd" : 2.2406630848309494, + "concept" : 1.2451012092500677, + "for" : 0.42665536400725124, + "project" : 1.2451012092500677, + "vernon" : 2.0232524596337114, + "vaughn" : 2.0232524596337114, + "real" : 1.421192468305749, + "distil" : 2.632312138784387, + "core" : 1.546131204914049, + "concis" : 1.546131204914049, + "and" : 0.05012460603401282, + "design" : 0.6430412179221054, + "introduct" : 0.7802144109474171, + "domain" : 1.546131204914049, + "driven" : 1.421192468305749, + "architectur" : 0.9818597744754864, + "to" : 0.42665536400725124 }, "184" : { - "organ" : 1.6148972160331345, - "engin" : 1.406425322081384, - "practic" : 0.46163904552683577, - "multipl" : 0.670414543882966, - "code" : 1.317731610066489, - "test" : 1.709380664019927, - "manshreck" : 2.3138672203691533, - "use" : 0.9521393843515605, - "health" : 3.0104106596839078, - "titus" : 2.3138672203691533, - "winter" : 2.3138672203691533, - "scale" : 1.711807229041191, - "hyrum" : 2.3138672203691533, - "wright" : 2.3138672203691533, - "tom" : 1.711807229041191, - "googl" : 2.61876160573047, - "at" : 2.61876160573047, - "softwar" : 1.088631600060811, - "and" : 0.0514161306387239, - "style" : 1.6148972160331345 + "organ" : 1.479184415283436, + "engin" : 1.3683201170597694, + "practic" : 0.4629058307160776, + "multipl" : 0.6808297788115053, + "code" : 1.3037142294433213, + "test" : 1.7229311970738435, + "manshreck" : 2.3242824552976926, + "use" : 0.926342446625655, + "health" : 3.0239611927378247, + "titus" : 2.3242824552976926, + "winter" : 2.3242824552976926, + "scale" : 1.7222224639697303, + "hyrum" : 2.3242824552976926, + "wright" : 2.3242824552976926, + "tom" : 1.7222224639697303, + "googl" : 2.632312138784387, + "at" : 2.632312138784387, + "softwar" : 1.102182133114728, + "and" : 0.05012460603401282, + "style" : 1.546131204914049 }, "185" : { - "workbook" : 2.3138672203691533, - "organ" : 1.6148972160331345, - "practic" : 0.5241207723332932, - "multipl" : 0.670414543882966, - "in" : 0.7456654963021584, - "sre" : 2.7130965053814537, - "al" : 1.3596247109298285, - "et" : 1.3596247109298285, - "the" : 0.557992364696662, - "studi" : 1.9980125417713546, - "exercis" : 1.8367459656494909, - "site" : 2.012837224705172, - "betsi" : 2.012837224705172, - "appli" : 1.1999238680623165, - "and" : 0.0514161306387239, - "beyer" : 2.012837224705172, - "reliabl" : 1.5357159699855099, - "to" : 0.4273764951966715, - "case" : 1.9980125417713546 + "workbook" : 2.3242824552976926, + "organ" : 1.479184415283436, + "practic" : 0.5255590138299762, + "multipl" : 0.6808297788115053, + "in" : 0.7222224639697303, + "sre" : 2.728481070267298, + "al" : 1.3700399458583679, + "et" : 1.3700399458583679, + "the" : 0.546131204914049, + "studi" : 2.011563074825271, + "exercis" : 1.7222224639697303, + "site" : 2.0232524596337114, + "betsi" : 2.0232524596337114, + "appli" : 1.210339102990856, + "and" : 0.05012460603401282, + "beyer" : 2.0232524596337114, + "reliabl" : 1.546131204914049, + "to" : 0.42665536400725124, + "case" : 2.011563074825271 }, "186" : { - "a" : 0.5656791933629529, - "editor" : 2.012837224705172, - "practic" : 0.3548258280480598, - "product" : 1.8354634978235946, - "be" : 2.3138672203691533, - "workflow" : 1.711807229041191, - "edit" : 1.6148972160331345, - "more" : 1.711807229041191, - "for" : 0.43305362808836206, - "neil" : 2.3138672203691533, - "effici" : 1.8367459656494909, - "n" : 0.7228026133426542, - "tool" : 1.5357159699855099, - "drew" : 2.3138672203691533, - "techniqu" : 0.8087172420492474, - "and" : 0.0514161306387239, - "vim" : 3.417862451806381, - "to" : 0.4273764951966715, - "user" : 1.8367459656494909 + "a" : 0.5389526202869256, + "editor" : 2.0232524596337114, + "practic" : 0.3557995067437576, + "product" : 1.8490140308775116, + "be" : 2.3242824552976926, + "workflow" : 1.7222224639697303, + "edit" : 1.479184415283436, + "more" : 1.7222224639697303, + "for" : 0.42665536400725124, + "neil" : 2.3242824552976926, + "effici" : 1.8471612005780302, + "n" : 0.7332178482711935, + "tool" : 1.546131204914049, + "drew" : 2.3242824552976926, + "techniqu" : 0.8191324769777867, + "and" : 0.05012460603401282, + "vim" : 3.433247016692225, + "to" : 0.42665536400725124, + "user" : 1.8471612005780302 }, "187" : { - "a" : 0.5656791933629529, - "intern" : 2.3138672203691533, - "workflow" : 2.2271125517770325, - "straub" : 2.3138672203691533, - "ben" : 2.3138672203691533, - "control" : 3.0104106596839078, - "pro" : 2.012837224705172, - "branch" : 2.3138672203691533, - "version" : 2.389661595724792, - "n" : 0.7228026133426542, - "tool" : 1.5357159699855099, - "chacon" : 2.3138672203691533, - "comprehens" : 1.0351136194163244, - "git" : 3.417862451806381, - "and" : 0.0514161306387239, - "guid" : 0.8667091890269342, - "to" : 0.4273764951966715, - "scott" : 1.5357159699855099 + "a" : 0.5389526202869256, + "intern" : 2.3242824552976926, + "workflow" : 2.2406630848309494, + "straub" : 2.3242824552976926, + "ben" : 2.3242824552976926, + "control" : 2.632312138784387, + "pro" : 2.0232524596337114, + "branch" : 2.3242824552976926, + "version" : 2.403212128778709, + "n" : 0.7332178482711935, + "tool" : 1.546131204914049, + "chacon" : 2.3242824552976926, + "comprehens" : 0.9818597744754864, + "git" : 3.433247016692225, + "and" : 0.05012460603401282, + "guid" : 0.8618844573987365, + "to" : 0.42665536400725124, + "scott" : 1.546131204914049 }, "188" : { - "practic" : 0.3548258280480598, - "c" : 0.8514692224701973, - "orient" : 1.6148972160331345, - "agil" : 2.9425772258000933, - "illustr" : 1.8367459656494909, - "pattern" : 1.1556823922882158, - "develop" : 1.1097472377132287, - "robert" : 1.4107772333772097, - "with" : 0.6606547065938096, - "oop" : 1.8367459656494909, - "exercis" : 1.8367459656494909, - "java" : 0.9521393843515605, - "softwar" : 0.8367459656494909, - "and" : 0.07594785940190192, - "design" : 0.6511093886875794, - "martin" : 1.2724745352109283, - "exampl" : 0.9521393843515605, - "principl" : 1.214714433864479, - "object" : 1.711807229041191 + "practic" : 0.3557995067437576, + "c" : 0.8618844573987365, + "orient" : 1.6253124509616739, + "agil" : 2.959263056979388, + "illustr" : 1.8471612005780302, + "pattern" : 1.1710669571740597, + "develop" : 1.1201624726417678, + "robert" : 1.421192468305749, + "with" : 0.6521845973619752, + "oop" : 1.8471612005780302, + "exercis" : 1.7222224639697303, + "java" : 0.9625546192800998, + "softwar" : 0.8471612005780302, + "and" : 0.07404012095728978, + "design" : 0.6430412179221054, + "martin" : 1.2828897701394677, + "exampl" : 0.926342446625655, + "principl" : 1.2051993093167377, + "object" : 1.7222224639697303 }, "189" : { - "practic" : 0.3548258280480598, - "bdd" : 3.0104106596839078, - "test" : 1.9407411970867192, - "in" : 0.7456654963021584, - "ferguson" : 2.012837224705172, - "develop" : 1.1097472377132287, - "requir" : 3.0104106596839078, - "tool" : 1.5357159699855099, - "smart" : 2.3138672203691533, - "via" : 2.012837224705172, - "java" : 0.9521393843515605, - "and" : 0.0514161306387239, - "driven" : 1.4107772333772097, - "action" : 2.3138672203691533, - "john" : 1.4687691803548966, - "to" : 0.4273764951966715, - "behavior" : 2.012837224705172, - "drive" : 2.012837224705172 + "practic" : 0.3557995067437576, + "bdd" : 3.0239611927378247, + "test" : 1.956125761972563, + "in" : 0.7222224639697303, + "ferguson" : 2.0232524596337114, + "develop" : 1.1201624726417678, + "requir" : 3.0239611927378247, + "tool" : 1.546131204914049, + "smart" : 2.3242824552976926, + "via" : 2.0232524596337114, + "java" : 0.9625546192800998, + "and" : 0.05012460603401282, + "driven" : 1.421192468305749, + "action" : 2.3242824552976926, + "john" : 1.479184415283436, + "to" : 0.42665536400725124, + "behavior" : 2.0232524596337114, + "drive" : 2.0232524596337114 }, "190" : { - "practic" : 0.3548258280480598, - "art" : 1.2724745352109283, - "multipl" : 0.670414543882966, - "test" : 2.1048941076707, - "for" : 0.43305362808836206, - "j" : 1.4107772333772097, - "myer" : 2.3138672203691533, - "strategi" : 1.4687691803548966, - "the" : 0.557992364696662, - "tom" : 1.711807229041191, - "fundament" : 1.3596247109298285, - "softwar" : 1.088631600060811, - "and" : 0.0514161306387239, - "of" : 0.5656791933629529, - "glenford" : 2.3138672203691533, - "badgett" : 2.3138672203691533, - "principl" : 1.214714433864479, - "sandler" : 2.3138672203691533, - "corey" : 2.3138672203691533, - "qualiti" : 1.711807229041191 + "practic" : 0.3557995067437576, + "art" : 1.2828897701394677, + "multipl" : 0.6808297788115053, + "test" : 2.1215799388499943, + "for" : 0.42665536400725124, + "j" : 1.421192468305749, + "myer" : 2.0232524596337114, + "strategi" : 1.479184415283436, + "the" : 0.546131204914049, + "tom" : 1.7222224639697303, + "fundament" : 1.3700399458583679, + "softwar" : 1.102182133114728, + "and" : 0.05012460603401282, + "of" : 0.5608544617347554, + "glenford" : 2.3242824552976926, + "badgett" : 2.3242824552976926, + "principl" : 1.2051993093167377, + "sandler" : 2.3242824552976926, + "corey" : 2.3242824552976926, + "qualiti" : 1.7222224639697303 }, "191" : { - "standard" : 2.3138672203691533, - "a" : 0.5656791933629529, - "overview" : 2.61876160573047, - "c" : 1.3641047751666313, - "bjarn" : 2.012837224705172, - "librari" : 1.6148972160331345, - "compact" : 2.3138672203691533, - "featur" : 1.6148972160331345, - "languag" : 0.9550648138275109, - "program" : 0.5814734605461849, - "tour" : 2.3138672203691533, - "modern" : 1.6555275390280006, - "and" : 0.0514161306387239, - "of" : 0.7359655984882071, - "stroustrup" : 2.012837224705172 + "standard" : 2.3242824552976926, + "a" : 0.5389526202869256, + "overview" : 2.632312138784387, + "c" : 1.3807906063459254, + "bjarn" : 2.0232524596337114, + "librari" : 1.6253124509616739, + "compact" : 2.3242824552976926, + "featur" : 1.6253124509616739, + "languag" : 0.9396330891669681, + "program" : 0.5839197658034488, + "tour" : 2.3242824552976926, + "modern" : 1.6690780720819176, + "and" : 0.05012460603401282, + "of" : 0.7296884779188934, + "stroustrup" : 2.0232524596337114 }, "192" : { - "evolut" : 2.3138672203691533, - "deep" : 1.606363487817917, - "c" : 1.3641047751666313, - "featur" : 1.6148972160331345, - "in" : 0.7456654963021584, - "jon" : 1.8367459656494909, - "languag" : 1.084330523386218, - "program" : 0.5814734605461849, - "version" : 1.8367459656494909, - "into" : 2.012837224705172, - "across" : 1.711807229041191, - "depth" : 1.5357159699855099, - "and" : 0.0514161306387239, - "skeet" : 2.3138672203691533, - "idiom" : 1.5357159699855099, - "dive" : 2.389661595724792 + "evolut" : 2.3242824552976926, + "deep" : 1.6199140208718334, + "c" : 1.3807906063459254, + "featur" : 1.6253124509616739, + "in" : 0.7222224639697303, + "jon" : 1.8471612005780302, + "languag" : 1.0668101521656943, + "program" : 0.5839197658034488, + "version" : 1.8471612005780302, + "into" : 2.0232524596337114, + "across" : 1.7222224639697303, + "depth" : 1.546131204914049, + "and" : 0.05012460603401282, + "skeet" : 2.3242824552976926, + "idiom" : 1.546131204914049, + "dive" : 2.403212128778709 }, "193" : { - "gari" : 2.012837224705172, - "practic" : 0.3548258280480598, - "lifecycl" : 2.61876160573047, - "multipl" : 0.670414543882966, - "code" : 1.317731610066489, - "reduc" : 2.3138672203691533, - "develop" : 1.1097472377132287, - "secur" : 2.178200352601525, - "vulner" : 3.0104106596839078, - "softwar" : 0.8367459656494909, - "mcgraw" : 2.3138672203691533, - "build" : 1.1999238680623165, - "and" : 0.0514161306387239, - "principl" : 0.9336559786575475, - "john" : 1.4687691803548966, - "to" : 0.4273764951966715, - "viega" : 2.3138672203691533 + "gari" : 2.0232524596337114, + "practic" : 0.3557995067437576, + "lifecycl" : 2.632312138784387, + "multipl" : 0.6808297788115053, + "code" : 1.3037142294433213, + "reduc" : 2.3242824552976926, + "develop" : 1.1201624726417678, + "secur" : 2.194886183780819, + "vulner" : 3.0239611927378247, + "softwar" : 0.8471612005780302, + "mcgraw" : 2.3242824552976926, + "build" : 1.210339102990856, + "and" : 0.05012460603401282, + "principl" : 0.926342446625655, + "john" : 1.479184415283436, + "to" : 0.42665536400725124, + "viega" : 2.3242824552976926 }, "194" : { - "through" : 1.8367459656494909, - "a" : 0.5656791933629529, - "engin" : 1.2387618990944165, - "incid" : 2.012837224705172, - "art" : 1.2724745352109283, - "d" : 1.8367459656494909, - "decept" : 2.3138672203691533, - "social" : 3.0104106596839078, - "defens" : 2.3138672203691533, - "awar" : 2.3138672203691533, - "real" : 1.4107772333772097, - "secur" : 1.7689125317656766, - "n" : 0.7228026133426542, - "tactic" : 2.3138672203691533, - "the" : 0.557992364696662, - "mitnick" : 2.3138672203691533, - "kevin" : 1.8367459656494909, - "studi" : 1.5357159699855099, - "and" : 0.06689392822195765, - "of" : 0.5656791933629529, - "case" : 1.5357159699855099 + "through" : 1.8471612005780302, + "a" : 0.5389526202869256, + "engin" : 1.2051993093167377, + "incid" : 2.0232524596337114, + "art" : 1.2828897701394677, + "d" : 1.8471612005780302, + "decept" : 2.3242824552976926, + "social" : 3.0239611927378247, + "defens" : 2.3242824552976926, + "awar" : 2.3242824552976926, + "real" : 1.421192468305749, + "secur" : 1.7824630648195934, + "n" : 0.7332178482711935, + "tactic" : 2.3242824552976926, + "the" : 0.546131204914049, + "mitnick" : 2.3242824552976926, + "kevin" : 1.8471612005780302, + "studi" : 1.546131204914049, + "and" : 0.06521361597109047, + "of" : 0.5608544617347554, + "case" : 1.546131204914049 }, "195" : { - "scienc" : 1.1999238680623165, - "engin" : 1.2387618990944165, - "kuhn" : 2.012837224705172, - "featur" : 2.1010297179733644, - "data" : 1.0585947152658473, - "max" : 2.3138672203691533, - "for" : 0.43305362808836206, - "johnson" : 2.012837224705172, - "techniqu" : 0.8087172420492474, - "r" : 1.2724745352109283, - "kjell" : 2.3138672203691533, - "assess" : 2.3138672203691533, - "appli" : 1.7724330495602796, - "and" : 0.0514161306387239, - "predict" : 3.417862451806381, - "model" : 1.92235002166213 + "scienc" : 1.0690099501943866, + "engin" : 1.2051993093167377, + "kuhn" : 2.0232524596337114, + "featur" : 2.1145802510272813, + "data" : 1.0455288543448638, + "max" : 2.3242824552976926, + "for" : 0.42665536400725124, + "johnson" : 2.0232524596337114, + "techniqu" : 0.8191324769777867, + "r" : 1.2828897701394677, + "kjell" : 2.3242824552976926, + "assess" : 2.3242824552976926, + "appli" : 1.7878176144461237, + "and" : 0.05012460603401282, + "predict" : 3.433247016692225, + "model" : 1.8874740592785442 }, "196" : { - "jurafski" : 2.3138672203691533, - "process" : 1.1677391846909153, - "python" : 0.7697991760188778, - "recognit" : 1.8367459656494909, - "h" : 2.012837224705172, - "languag" : 1.084330523386218, - "dan" : 2.012837224705172, - "comprehens" : 1.0351136194163244, - "java" : 0.9521393843515605, - "nlp" : 2.2684387004780198, - "speech" : 3.417862451806381, - "and" : 0.06689392822195765, - "martin" : 1.2724745352109283, - "model" : 1.5611369448622232, - "text" : 1.6148972160331345, - "jame" : 2.012837224705172, - "on" : 0.7456654963021584 + "jurafski" : 2.3242824552976926, + "process" : 1.1481911962420115, + "python" : 0.7802144109474171, + "recognit" : 1.8471612005780302, + "h" : 1.8471612005780302, + "languag" : 1.0668101521656943, + "dan" : 2.0232524596337114, + "comprehens" : 0.9818597744754864, + "java" : 0.9625546192800998, + "nlp" : 2.2838232653638633, + "speech" : 3.433247016692225, + "and" : 0.06521361597109047, + "martin" : 1.2828897701394677, + "model" : 1.5328142394489994, + "text" : 1.6253124509616739, + "jame" : 2.0232524596337114, + "on" : 0.7222224639697303 }, "197" : { - "matlab" : 1.6148972160331345, - "treatment" : 1.711807229041191, - "probabilist" : 2.389661595724792, - "python" : 0.7697991760188778, - "learn" : 1.1694878909087856, - "in" : 0.7456654963021584, - "depth" : 1.5357159699855099, - "koller" : 2.3138672203691533, - "infer" : 2.61876160573047, - "and" : 0.0514161306387239, - "nir" : 2.012837224705172, - "daphn" : 2.3138672203691533, - "of" : 0.5656791933629529, - "friedman" : 1.8367459656494909, - "model" : 1.7724330495602796, - "machin" : 1.1377759613134721, - "graphic" : 3.417862451806381, - "algorithm" : 0.9521393843515605 + "matlab" : 1.6253124509616739, + "treatment" : 1.7222224639697303, + "probabilist" : 2.403212128778709, + "python" : 0.7802144109474171, + "learn" : 1.1830384239627023, + "in" : 0.7222224639697303, + "depth" : 1.546131204914049, + "koller" : 2.3242824552976926, + "infer" : 2.632312138784387, + "and" : 0.05012460603401282, + "nir" : 2.0232524596337114, + "daphn" : 2.3242824552976926, + "of" : 0.5608544617347554, + "friedman" : 1.8471612005780302, + "model" : 1.7402769345618045, + "machin" : 1.0938335339194187, + "graphic" : 2.9885892117887907, + "algorithm" : 0.9625546192800998 }, "198" : { - "matlab" : 1.6148972160331345, - "reason" : 2.3138672203691533, - "bayesian" : 2.7130965053814537, - "practic" : 0.3548258280480598, - "python" : 0.7697991760188778, - "learn" : 1.3277752446568454, - "approach" : 1.5357159699855099, - "with" : 0.6606547065938096, - "infer" : 2.012837224705172, - "and" : 0.06689392822195765, - "exampl" : 0.9521393843515605, - "machin" : 1.680633055565226, - "david" : 1.3138672203691535, - "to" : 0.4273764951966715, - "barber" : 2.3138672203691533, - "algorithm" : 0.9521393843515605, - "ml" : 1.2724745352109283 + "matlab" : 1.6253124509616739, + "reason" : 2.3242824552976926, + "bayesian" : 2.728481070267298, + "practic" : 0.3557995067437576, + "python" : 0.7802144109474171, + "learn" : 1.3431598095426893, + "approach" : 1.546131204914049, + "with" : 0.6521845973619752, + "infer" : 2.0232524596337114, + "and" : 0.06521361597109047, + "exampl" : 0.926342446625655, + "machin" : 1.6157247620774942, + "david" : 1.3242824552976926, + "to" : 0.42665536400725124, + "barber" : 2.3242824552976926, + "algorithm" : 0.9625546192800998, + "ml" : 1.2828897701394677 }, "199" : { - "a" : 0.5656791933629529, - "access" : 2.3138672203691533, - "learn" : 1.3277752446568454, - "companion" : 2.012837224705172, - "more" : 1.711807229041191, - "hasti" : 2.012837224705172, - "focus" : 1.4107772333772097, - "an" : 1.711807229041191, - "gareth" : 2.3138672203691533, - "robert" : 1.4107772333772097, - "with" : 0.6606547065938096, - "r" : 1.8795991820495856, - "witten" : 2.3138672203691533, - "appli" : 1.5611369448622232, - "daniela" : 2.3138672203691533, - "introduct" : 0.7823883033268982, - "exampl" : 0.9521393843515605, - "trevor" : 1.8367459656494909, - "statist" : 2.587162219913594, - "to" : 0.556029639692613, - "tibshirani" : 2.012837224705172, - "jame" : 2.012837224705172, - "esl" : 2.3138672203691533, - "on" : 0.7456654963021584 + "a" : 0.5389526202869256, + "access" : 2.3242824552976926, + "learn" : 1.3431598095426893, + "companion" : 2.0232524596337114, + "more" : 1.7222224639697303, + "hasti" : 2.0232524596337114, + "focus" : 1.421192468305749, + "an" : 1.7222224639697303, + "gareth" : 2.3242824552976926, + "robert" : 1.421192468305749, + "with" : 0.6521845973619752, + "r" : 1.8949837469354298, + "witten" : 2.3242824552976926, + "appli" : 1.5746874779161402, + "daniela" : 2.3242824552976926, + "introduct" : 0.7802144109474171, + "exampl" : 0.926342446625655, + "trevor" : 1.8471612005780302, + "statist" : 2.4769949447364934, + "to" : 0.5550914263843684, + "tibshirani" : 2.0232524596337114, + "jame" : 2.0232524596337114, + "esl" : 2.3242824552976926, + "on" : 0.7222224639697303 }, "200" : { - "through" : 1.8367459656494909, - "scienc" : 1.1999238680623165, - "practic" : 0.3548258280480598, - "python" : 1.233264461257076, - "educ" : 1.711807229041191, - "use" : 0.9521393843515605, - "author" : 1.4687691803548966, - "concept" : 1.2724745352109283, - "project" : 1.606363487817917, - "program" : 0.7565144138531231, - "an" : 1.711807229041191, - "cs" : 1.8367459656494909, - "comput" : 1.1999238680623165, - "taught" : 1.8367459656494909, - "and" : 0.06689392822195765, - "introduct" : 0.7823883033268982, - "of" : 0.5656791933629529, - "exampl" : 0.9521393843515605, - "plenti" : 2.3138672203691533, - "to" : 0.4273764951966715, - "introductori" : 1.9109127603485203 + "through" : 1.8471612005780302, + "scienc" : 1.0690099501943866, + "practic" : 0.3557995067437576, + "python" : 1.2499502924363703, + "educ" : 1.7222224639697303, + "use" : 0.926342446625655, + "author" : 1.479184415283436, + "concept" : 1.2451012092500677, + "project" : 1.6199140208718334, + "program" : 0.759697130371374, + "an" : 1.7222224639697303, + "cs" : 1.8471612005780302, + "comput" : 1.0938335339194187, + "taught" : 1.8471612005780302, + "and" : 0.06521361597109047, + "introduct" : 0.7802144109474171, + "of" : 0.5608544617347554, + "exampl" : 0.926342446625655, + "plenti" : 2.3242824552976926, + "to" : 0.42665536400725124, + "introductori" : 1.9244632934024373 }, "201" : { - "scienc" : 1.5611369448622232, - "cognit" : 2.012837224705172, - "use" : 0.9521393843515605, - "for" : 0.563415759874073, - "iii" : 2.3138672203691533, - "techniqu" : 1.0521653899167194, - "peter" : 1.6148972160331345, - "skill" : 1.8367459656494909, - "of" : 0.5656791933629529, - "stick" : 2.3138672203691533, - "make" : 1.711807229041191, - "a" : 0.7359655984882071, - "new" : 2.3138672203691533, - "henri" : 2.3138672203691533, - "c" : 0.8514692224701973, - "evid" : 2.3138672203691533, - "learn" : 1.5271937262862205, - "it" : 1.6148972160331345, - "l" : 1.711807229041191, - "brown" : 2.3138672203691533, - "mcdaniel" : 2.3138672203691533, - "n" : 0.7228026133426542, - "roedig" : 2.3138672203691533, - "the" : 0.557992364696662, - "studi" : 1.5357159699855099, - "success" : 2.3138672203691533, - "effect" : 1.2724745352109283, - "programm" : 1.4107772333772097, - "mark" : 2.012837224705172, - "base" : 2.012837224705172 + "scienc" : 1.3908140108661555, + "cognit" : 2.0232524596337114, + "use" : 0.926342446625655, + "for" : 0.5550914263843684, + "iii" : 2.3242824552976926, + "techniqu" : 1.065715922970636, + "peter" : 1.6253124509616739, + "skill" : 1.8471612005780302, + "of" : 0.5608544617347554, + "stick" : 2.3242824552976926, + "make" : 1.7222224639697303, + "a" : 0.7011935252349901, + "new" : 2.3242824552976926, + "henri" : 2.0232524596337114, + "c" : 0.8618844573987365, + "evid" : 2.3242824552976926, + "learn" : 1.5448888980179216, + "it" : 1.479184415283436, + "l" : 1.6253124509616739, + "brown" : 2.3242824552976926, + "mcdaniel" : 2.3242824552976926, + "n" : 0.7332178482711935, + "roedig" : 2.3242824552976926, + "the" : 0.546131204914049, + "studi" : 1.546131204914049, + "success" : 2.3242824552976926, + "effect" : 1.2828897701394677, + "programm" : 1.421192468305749, + "mark" : 2.0232524596337114, + "base" : 2.0232524596337114 }, "202" : { - "a" : 0.5656791933629529, - "practic" : 0.3548258280480598, - "career" : 1.8354634978235946, - "python" : 0.7697991760188778, - "for" : 0.43305362808836206, - "roadmap" : 3.0104106596839078, - "becom" : 2.3138672203691533, - "advic" : 1.5357159699855099, - "develop" : 1.1097472377132287, - "althoff" : 2.3138672203691533, - "cori" : 2.3138672203691533, - "without" : 2.3138672203691533, - "the" : 0.557992364696662, - "formal" : 2.3138672203691533, - "softwar" : 0.8367459656494909, - "taught" : 2.389661595724792, - "and" : 0.0514161306387239, - "self" : 3.0104106596839078, - "programm" : 1.4107772333772097, - "train" : 2.3138672203691533 + "a" : 0.5389526202869256, + "practic" : 0.3557995067437576, + "career" : 1.8490140308775116, + "python" : 0.7802144109474171, + "for" : 0.42665536400725124, + "roadmap" : 3.0239611927378247, + "becom" : 2.3242824552976926, + "advic" : 1.546131204914049, + "develop" : 1.1201624726417678, + "althoff" : 2.3242824552976926, + "cori" : 2.3242824552976926, + "without" : 2.3242824552976926, + "the" : 0.546131204914049, + "formal" : 2.0232524596337114, + "softwar" : 0.8471612005780302, + "taught" : 2.403212128778709, + "and" : 0.05012460603401282, + "self" : 3.0239611927378247, + "programm" : 1.421192468305749, + "train" : 2.3242824552976926 }, "203" : { - "a" : 0.5656791933629529, - "career" : 2.083889037096078, - "learn" : 0.8988938723983354, - "chad" : 2.012837224705172, - "for" : 0.43305362808836206, - "focus" : 1.4107772333772097, - "continu" : 1.8367459656494909, - "fowler" : 1.5357159699855099, - "develop" : 1.1097472377132287, - "n" : 0.7228026133426542, - "the" : 0.557992364696662, - "market" : 2.3138672203691533, - "guidanc" : 1.1677391846909153, - "softwar" : 0.8367459656494909, - "and" : 0.0514161306387239, - "skill" : 2.389661595724792, - "growth" : 2.3138672203691533, - "programm" : 1.4107772333772097, - "passion" : 2.3138672203691533, - "on" : 0.7456654963021584 + "a" : 0.5389526202869256, + "career" : 2.0992736019819223, + "learn" : 0.9093091073268746, + "chad" : 2.0232524596337114, + "for" : 0.42665536400725124, + "focus" : 1.421192468305749, + "continu" : 1.8471612005780302, + "fowler" : 1.546131204914049, + "develop" : 1.1201624726417678, + "n" : 0.7332178482711935, + "the" : 0.546131204914049, + "market" : 2.3242824552976926, + "guidanc" : 1.1781544196194547, + "softwar" : 0.8471612005780302, + "and" : 0.05012460603401282, + "skill" : 2.403212128778709, + "growth" : 2.3242824552976926, + "programm" : 1.421192468305749, + "passion" : 2.3242824552976926, + "on" : 0.7222224639697303 }, "204" : { - "a" : 0.5656791933629529, - "career" : 2.083889037096078, - "product" : 1.8354634978235946, - "technic" : 2.012837224705172, - "for" : 0.43305362808836206, - "develop" : 1.443814443870157, - "manual" : 2.012837224705172, - "non" : 2.3138672203691533, - "n" : 0.7228026133426542, - "life" : 2.3138672203691533, - "the" : 0.557992364696662, - "lifestyl" : 2.3138672203691533, - "cover" : 1.4107772333772097, - "guidanc" : 1.1677391846909153, - "softwar" : 0.8367459656494909, - "and" : 0.0514161306387239, - "skill" : 2.389661595724792, - "john" : 1.4687691803548966, - "sonmez" : 2.3138672203691533, - "soft" : 3.0104106596839078 + "a" : 0.5389526202869256, + "career" : 2.0992736019819223, + "product" : 1.8490140308775116, + "technic" : 2.0232524596337114, + "for" : 0.42665536400725124, + "develop" : 1.4573649769240737, + "manual" : 2.0232524596337114, + "non" : 2.3242824552976926, + "n" : 0.7332178482711935, + "life" : 2.3242824552976926, + "the" : 0.546131204914049, + "lifestyl" : 2.3242824552976926, + "cover" : 1.210339102990856, + "guidanc" : 1.1781544196194547, + "softwar" : 0.8471612005780302, + "and" : 0.05012460603401282, + "skill" : 2.403212128778709, + "john" : 1.479184415283436, + "sonmez" : 2.3242824552976926, + "soft" : 3.0239611927378247 }, "205" : { - "expans" : 2.3138672203691533, - "donald" : 1.6148972160331345, - "art" : 1.2724745352109283, - "deep" : 1.2346859743215286, - "method" : 1.6148972160331345, - "e" : 1.4687691803548966, - "work" : 1.8367459656494909, - "pascal" : 1.6148972160331345, - "program" : 0.5814734605461849, - "analysi" : 1.3596247109298285, - "4a" : 2.3138672203691533, - "the" : 0.557992364696662, - "offer" : 2.3138672203691533, - "comput" : 1.1999238680623165, - "knuth" : 2.3853990019901534, - "and" : 0.0514161306387239, - "of" : 0.7359655984882071, - "essay" : 1.711807229041191, - "volum" : 1.4687691803548966, - "from" : 1.5357159699855099, - "algorithm" : 1.406425322081384 + "expans" : 2.3242824552976926, + "donald" : 1.6253124509616739, + "art" : 1.2828897701394677, + "deep" : 1.2451012092500677, + "method" : 1.546131204914049, + "e" : 1.421192468305749, + "work" : 1.8471612005780302, + "pascal" : 1.6253124509616739, + "program" : 0.5839197658034488, + "analysi" : 1.3700399458583679, + "4a" : 2.3242824552976926, + "the" : 0.546131204914049, + "offer" : 2.3242824552976926, + "comput" : 1.0938335339194187, + "knuth" : 2.4007835668759974, + "and" : 0.05012460603401282, + "of" : 0.7296884779188934, + "essay" : 1.7222224639697303, + "volum" : 1.479184415283436, + "from" : 1.546131204914049, + "algorithm" : 1.421809886967228 }, "206" : { - "the" : 0.557992364696662, - "jk" : 2.3138672203691533, - "fiction" : 3.0104106596839078, - "rowl" : 3.0104106596839078, - "harri" : 3.7069540989986622, - "english" : 2.3138672203691533, - "j" : 1.4107772333772097, - "k" : 2.012837224705172, - "complet" : 2.012837224705172, - "collect" : 1.6148972160331345, - "potter" : 3.7069540989986622 + "the" : 0.546131204914049, + "jk" : 2.3242824552976926, + "fiction" : 3.0239611927378247, + "rowl" : 3.0239611927378247, + "harri" : 3.723639930177957, + "english" : 1.6253124509616739, + "j" : 1.421192468305749, + "k" : 2.0232524596337114, + "complet" : 2.0232524596337114, + "collect" : 1.6253124509616739, + "potter" : 3.723639930177957 + }, + "207" : { + "scienc" : 1.579057318938936, + "engin" : 1.4840561720078205, + "sharon" : 2.3242824552976926, + "scientist" : 2.0232524596337114, + "use" : 0.926342446625655, + "for" : 0.5550914263843684, + "ye" : 2.3242824552976926, + "theori" : 1.2828897701394677, + "cover" : 1.210339102990856, + "mathemat" : 2.1145802510272813, + "and" : 0.08030262590816811, + "english" : 1.6253124509616739, + "statist" : 2.2838232653638633, + "key" : 2.0232524596337114, + "a" : 0.5389526202869256, + "applic" : 1.3242824552976926, + "textbook" : 1.7229311970738435, + "undergradu" : 2.0232524596337114, + "wide" : 2.0232524596337114, + "method" : 1.546131204914049, + "e" : 1.421192468305749, + "in" : 0.7222224639697303, + "edit" : 1.479184415283436, + "h" : 1.8471612005780302, + "raymond" : 1.8471612005780302, + "myer" : 2.632312138784387, + "l" : 1.6253124509616739, + "cours" : 1.6253124509616739, + "the" : 0.546131204914049, + "ronald" : 2.0232524596337114, + "with" : 0.6521845973619752, + "walpol" : 2.3242824552976926, + "comprehens" : 0.9818597744754864, + "ninth" : 2.3242824552976926, + "probabl" : 2.728481070267298 + }, + "208" : { + "scienc" : 1.3908140108661555, + "organ" : 2.184934739465239, + "engin" : 0.926342446625655, + "student" : 2.3242824552976926, + "optim" : 1.7222224639697303, + "for" : 0.5550914263843684, + "theoret" : 2.3242824552976926, + "assembl" : 2.632312138784387, + "cover" : 1.210339102990856, + "comput" : 1.945001466050374, + "william" : 3.0239611927378247, + "and" : 0.08912913089436743, + "design" : 0.9498498506535602, + "provid" : 2.3242824552976926, + "on" : 0.7222224639697303, + "profession" : 1.7222224639697303, + "a" : 0.5389526202869256, + "practic" : 0.3557995067437576, + "textbook" : 1.3242824552976926, + "set" : 1.8471612005780302, + "instruct" : 2.0232524596337114, + "in" : 0.7222224639697303, + "perform" : 1.6690780720819176, + "i" : 2.2406630848309494, + "stall" : 3.0239611927378247, + "it" : 1.479184415283436, + "processor" : 3.0239611927378247, + "o" : 2.632312138784387, + "both" : 2.3242824552976926, + "comprehens" : 0.9818597744754864, + "system" : 0.885779964175042, + "memori" : 2.1145802510272813, + "hierarchi" : 3.0239611927378247, + "exampl" : 0.926342446625655, + "architectur" : 1.4503259420319952, + "principl" : 0.926342446625655, + "foundat" : 1.1781544196194547 + }, + "209" : { + "scienc" : 1.3908140108661555, + "a" : 0.7011935252349901, + "ture" : 3.0239611927378247, + "cohen" : 2.3242824552976926, + "textbook" : 1.3242824552976926, + "languag" : 0.9396330891669681, + "i" : 1.7222224639697303, + "theori" : 1.8949837469354298, + "the" : 0.546131204914049, + "formal" : 2.632312138784387, + "daniel" : 2.0232524596337114, + "cover" : 1.210339102990856, + "comput" : 2.0182301095365878, + "mathemat" : 1.6253124509616739, + "includ" : 2.3242824552976926, + "and" : 0.05012460603401282, + "introduct" : 0.7802144109474171, + "of" : 0.5608544617347554, + "english" : 1.6253124509616739, + "machin" : 1.4231102378922986, + "to" : 0.42665536400725124, + "automata" : 2.632312138784387, + "foundat" : 1.1781544196194547 + }, + "210" : { + "microprocessor" : 2.3242824552976926, + "bio" : 2.3242824552976926, + "program" : 0.9354744949392991, + "assembl" : 2.9885892117887907, + "cover" : 1.210339102990856, + "number" : 2.3242824552976926, + "english" : 1.6253124509616739, + "interrupt" : 2.3242824552976926, + "yu" : 2.3242824552976926, + "practic" : 0.3557995067437576, + "instruct" : 2.0232524596337114, + "level" : 1.7222224639697303, + "system" : 0.6808297788115053, + "memori" : 1.6253124509616739, + "topic" : 1.6253124509616739, + "guid" : 0.8618844573987365, + "style" : 1.546131204914049, + "scienc" : 1.0690099501943866, + "organ" : 2.184934739465239, + "code" : 1.0020631605637733, + "languag" : 1.0668101521656943, + "dos" : 2.3242824552976926, + "marut" : 2.3242824552976926, + "comput" : 1.4231102378922986, + "low" : 2.3242824552976926, + "and" : 0.08912913089436743, + "of" : 0.7296884779188934, + "machin" : 1.0938335339194187, + "graphic" : 2.0232524596337114, + "on" : 0.7222224639697303, + "a" : 0.5389526202869256, + "keyboard" : 2.3242824552976926, + "set" : 1.8471612005780302, + "i" : 1.7222224639697303, + "tutori" : 2.3242824552976926, + "ytha" : 2.3242824552976926, + "8086" : 2.3242824552976926, + "o" : 2.0232524596337114, + "the" : 0.71053307916129, + "with" : 0.6521845973619752, + "charact" : 2.3242824552976926, + "comprehens" : 0.9818597744754864, + "exercis" : 1.7222224639697303, + "pc" : 3.433247016692225, + "charl" : 1.8471612005780302, + "ibm" : 3.433247016692225, + "y" : 2.3242824552976926, + "exampl" : 0.926342446625655, + "to" : 0.42665536400725124, + "advanc" : 1.546131204914049, + "microcomput" : 2.3242824552976926, + "represent" : 2.3242824552976926 + }, + "211" : { + "data" : 1.0455288543448638, + "use" : 0.926342446625655, + "cover" : 1.210339102990856, + "that" : 1.8471612005780302, + "english" : 1.6253124509616739, + "korth" : 2.3242824552976926, + "model" : 1.1781544196194547, + "concurr" : 1.421192468305749, + "textbook" : 1.3242824552976926, + "undergradu" : 2.0232524596337114, + "in" : 0.7222224639697303, + "edit" : 1.479184415283436, + "like" : 2.0232524596337114, + "6th" : 2.3242824552976926, + "is" : 2.3242824552976926, + "it" : 1.479184415283436, + "sudarshan" : 2.3242824552976926, + "cours" : 1.6253124509616739, + "manag" : 2.1145802510272813, + "databas" : 2.5270951645536845, + "core" : 1.546131204914049, + "transact" : 3.0239611927378247, + "as" : 2.3242824552976926, + "system" : 1.005668137128561, + "field" : 2.0232524596337114, + "topic" : 1.6253124509616739, + "scienc" : 1.3908140108661555, + "concept" : 1.6199140208718334, + "optim" : 1.7222224639697303, + "for" : 0.42665536400725124, + "silberschatz" : 2.0232524596337114, + "sql" : 1.9244632934024373, + "comput" : 1.4231102378922986, + "avi" : 2.3242824552976926, + "and" : 0.08912913089436743, + "design" : 0.6430412179221054, + "queri" : 2.632312138784387, + "recoveri" : 2.3242824552976926, + "on" : 0.7222224639697303, + "mine" : 2.0232524596337114, + "a" : 0.5389526202869256, + "henri" : 2.0232524596337114, + "process" : 1.4938311870681658, + "wide" : 2.0232524596337114, + "f" : 2.0232524596337114, + "distribut" : 1.421192468305749, + "control" : 2.0232524596337114, + "graduat" : 2.3242824552976926, + "such" : 2.3242824552976926, + "s" : 1.210339102990856, + "relat" : 2.4007835668759974, + "foundat" : 1.1781544196194547, + "advanc" : 1.546131204914049 } }, "idfScores" : { - "don't" : 1.8367459656494909, - "straub" : 2.3138672203691533, - "opus" : 2.3138672203691533, - "analysi" : 1.3596247109298285, - "branch" : 2.3138672203691533, - "todd" : 2.3138672203691533, - "without" : 2.3138672203691533, - "via" : 2.012837224705172, - "neal" : 2.3138672203691533, - "mathemat" : 1.8367459656494909, - "beaulieu" : 2.3138672203691533, - "visual" : 1.711807229041191, - "volum" : 1.4687691803548966, - "vim" : 2.3138672203691533, - "communiti" : 2.012837224705172, - "beginn" : 1.5357159699855099, - "solid" : 2.3138672203691533, - "viz" : 2.3138672203691533, - "sailu" : 2.3138672203691533, - "illustr" : 1.8367459656494909, - "andriy" : 2.3138672203691533, - "stabil" : 2.3138672203691533, - "scratch" : 2.3138672203691533, - "deboi" : 2.3138672203691533, - "packet" : 2.3138672203691533, - "version" : 1.8367459656494909, - "1" : 1.8367459656494909, - "2" : 2.3138672203691533, - "3" : 2.3138672203691533, - "farley" : 2.3138672203691533, - "saeed" : 2.3138672203691533, - "kua" : 2.3138672203691533, - "niall" : 2.3138672203691533, - "detail" : 2.012837224705172, - "jennif" : 2.012837224705172, - "seri" : 2.3138672203691533, - "retriev" : 2.3138672203691533, - "object" : 1.711807229041191, - "combinator" : 2.3138672203691533, - "sussman" : 2.3138672203691533, - "heather" : 2.3138672203691533, - "manual" : 2.012837224705172, - "craftsmanship" : 2.3138672203691533, - "felleisen" : 2.3138672203691533, - "poppendieck" : 2.3138672203691533, - "machin" : 1.1377759613134721, - "scott" : 1.5357159699855099, - "behavior" : 2.012837224705172, - "hand" : 1.4107772333772097, - "meyer" : 1.711807229041191, - "a" : 0.5656791933629529, - "fournier" : 2.3138672203691533, - "b" : 2.012837224705172, - "c" : 0.8514692224701973, - "d" : 1.8367459656494909, - "learn" : 0.8988938723983354, - "e" : 1.4687691803548966, - "fokkink" : 2.3138672203691533, - "f" : 2.3138672203691533, - "g" : 2.012837224705172, - "strata" : 2.3138672203691533, - "h" : 2.012837224705172, - "i" : 2.3138672203691533, - "j" : 1.4107772333772097, - "k" : 2.012837224705172, - "l" : 1.711807229041191, - "m" : 1.711807229041191, - "anniversari" : 2.3138672203691533, - "n" : 0.7228026133426542, - "p" : 1.6148972160331345, - "the" : 0.557992364696662, - "materi" : 2.3138672203691533, - "r" : 1.2724745352109283, - "fast" : 2.3138672203691533, - "s" : 1.2346859743215286, - "t" : 1.8367459656494909, - "abu" : 2.3138672203691533, - "v" : 2.3138672203691533, - "w" : 1.3596247109298285, - "novel" : 2.012837224705172, - "discuss" : 2.3138672203691533, - "standard" : 2.3138672203691533, - "rivest" : 2.3138672203691533, - "antipattern" : 2.3138672203691533, - "incid" : 2.012837224705172, - "correct" : 1.6148972160331345, - "advic" : 1.5357159699855099, - "kelsey" : 2.3138672203691533, - "good" : 1.8367459656494909, - "specif" : 2.012837224705172, - "deploy" : 1.6148972160331345, - "andrea" : 2.3138672203691533, - "crockford" : 2.3138672203691533, - "serious" : 2.012837224705172, - "cryptographi" : 1.8367459656494909, - "tip" : 2.012837224705172, - "implement" : 1.2346859743215286, - "georg" : 2.012837224705172, - "practic" : 0.3548258280480598, - "grokk" : 2.3138672203691533, - "need" : 2.3138672203691533, - "reduc" : 2.3138672203691533, - "clearer" : 2.3138672203691533, - "massiv" : 2.3138672203691533, - "andrew" : 1.4107772333772097, - "jerom" : 2.3138672203691533, - "evan" : 2.3138672203691533, - "forster" : 2.3138672203691533, - "shell" : 2.012837224705172, - "success" : 2.3138672203691533, - "http" : 2.012837224705172, - "hundr" : 2.3138672203691533, - "neha" : 2.3138672203691533, - "neural" : 2.3138672203691533, - "production" : 2.3138672203691533, - "companion" : 2.012837224705172, - "ferguson" : 2.012837224705172, - "spafford" : 2.3138672203691533, - "rothman" : 2.3138672203691533, - "famili" : 2.3138672203691533, - "wisdom" : 2.3138672203691533, - "kazman" : 2.3138672203691533, - "vol" : 2.3138672203691533, - "softwar" : 0.8367459656494909, - "scope" : 2.3138672203691533, - "combin" : 2.3138672203691533, - "patrick" : 2.012837224705172, - "strang" : 2.3138672203691533, - "bruce" : 1.711807229041191, - "buschmann" : 2.3138672203691533, - "perform" : 1.3138672203691535, - "rosenstock" : 2.3138672203691533, - "rick" : 2.3138672203691533, - "better" : 2.3138672203691533, - "with" : 0.6606547065938096, - "jenif" : 2.3138672203691533, - "anshu" : 2.3138672203691533, - "tls" : 2.3138672203691533, - "automata" : 2.3138672203691533, - "combinatori" : 2.3138672203691533, - "career" : 1.4107772333772097, - "catalog" : 1.8367459656494909, - "focus" : 1.4107772333772097, - "approach" : 1.5357159699855099, - "fisher" : 2.3138672203691533, - "eloqu" : 2.3138672203691533, - "chollet" : 2.3138672203691533, - "aurelien" : 2.3138672203691533, - "herman" : 2.3138672203691533, - "corey" : 2.3138672203691533, - "bloch" : 2.3138672203691533, - "write" : 1.3138672203691535, - "nar" : 2.3138672203691533, - "flow" : 2.012837224705172, - "algorithm" : 0.9521393843515605, - "jami" : 2.3138672203691533, - "pike" : 2.012837224705172, - "understand" : 2.3138672203691533, - "neil" : 2.3138672203691533, - "aho" : 2.3138672203691533, - "idiomat" : 2.012837224705172, - "system" : 0.7010833636494179, - "orchestr" : 2.3138672203691533, - "kafka" : 2.3138672203691533, - "driven" : 1.4107772333772097, - "jame" : 2.012837224705172, - "concret" : 2.3138672203691533, - "niederst" : 2.3138672203691533, - "burkov" : 2.3138672203691533, - "tom" : 1.711807229041191, - "interfac" : 2.012837224705172, - "cookbook" : 2.3138672203691533, - "raghavan" : 2.3138672203691533, - "andi" : 2.3138672203691533, - "gilbert" : 2.3138672203691533, - "product" : 1.4107772333772097, - "linear" : 2.3138672203691533, - "robust" : 1.6148972160331345, - "question" : 2.3138672203691533, - "storytel" : 2.3138672203691533, - "tebeka" : 2.3138672203691533, - "microservic" : 2.012837224705172, - "ross" : 2.012837224705172, - "2nd" : 2.3138672203691533, - "littl" : 2.012837224705172, - "enterpris" : 2.3138672203691533, - "koller" : 2.3138672203691533, - "exampl" : 0.9521393843515605, - "constraint" : 2.3138672203691533, - "logic" : 2.3138672203691533, - "esl" : 2.3138672203691533, - "roland" : 2.3138672203691533, - "robson" : 2.3138672203691533, - "donald" : 1.6148972160331345, - "sarah" : 2.3138672203691533, - "cox" : 2.3138672203691533, - "pramod" : 2.012837224705172, - "mckinney" : 2.3138672203691533, - "function" : 1.711807229041191, - "lam" : 2.3138672203691533, - "plenti" : 2.3138672203691533, - "etl" : 2.3138672203691533, - "complement" : 2.3138672203691533, - "new" : 2.3138672203691533, - "lax" : 2.3138672203691533, - "evid" : 2.3138672203691533, - "law" : 2.3138672203691533, - "simplic" : 2.012837224705172, - "cpu" : 2.3138672203691533, - "ramalho" : 2.3138672203691533, - "real" : 1.4107772333772097, - "tool" : 1.5357159699855099, - "catalogu" : 2.3138672203691533, - "alan" : 2.012837224705172, - "ethic" : 2.3138672203691533, - "numpi" : 2.3138672203691533, - "basic" : 1.711807229041191, - "collect" : 1.6148972160331345, - "unix" : 1.8367459656494909, - "rob" : 2.012837224705172, - "palino" : 2.3138672203691533, - "busi" : 1.8367459656494909, - "matthia" : 2.012837224705172, - "orendorff" : 2.3138672203691533, - "respons" : 2.012837224705172, - "kubernet" : 2.3138672203691533, - "ron" : 2.3138672203691533, - "shavit" : 2.3138672203691533, - "cormen" : 2.012837224705172, - "reinforc" : 2.012837224705172, - "eve" : 2.3138672203691533, - "and" : 0.0514161306387239, - "design" : 0.6511093886875794, - "predict" : 2.3138672203691533, - "burn" : 2.012837224705172, - "rowl" : 2.3138672203691533, - "tien" : 2.3138672203691533, - "katherin" : 2.3138672203691533, - "haverbek" : 2.3138672203691533, - "distil" : 2.012837224705172, - "strategi" : 1.4687691803548966, - "refactor" : 1.5357159699855099, - "robbin" : 2.3138672203691533, - "boundari" : 2.3138672203691533, - "leonard" : 2.3138672203691533, - "ousterhout" : 2.3138672203691533, - "witten" : 2.3138672203691533, - "gorelick" : 2.3138672203691533, - "martin" : 1.2724745352109283, - "parson" : 2.3138672203691533, - "scikit" : 1.8367459656494909, - "leskovec" : 2.3138672203691533, - "reason" : 2.3138672203691533, - "css" : 2.012837224705172, - "cathedr" : 2.3138672203691533, - "cultur" : 2.3138672203691533, - "vlissid" : 2.3138672203691533, - "maintain" : 1.4687691803548966, - "seminumer" : 2.3138672203691533, - "johnson" : 2.012837224705172, - "evolutionari" : 2.3138672203691533, - "lee" : 2.3138672203691533, - "compon" : 2.012837224705172, - "java" : 0.9521393843515605, - "len" : 2.3138672203691533, - "strateg" : 2.3138672203691533, - "nir" : 2.012837224705172, - "english" : 2.3138672203691533, - "prep" : 2.012837224705172, - "mistak" : 2.3138672203691533, - "alfr" : 2.3138672203691533, - "api" : 1.6148972160331345, - "state" : 2.3138672203691533, - "dustin" : 2.3138672203691533, - "lex" : 2.3138672203691533, - "pearl" : 2.3138672203691533, - "ller" : 2.3138672203691533, - "element" : 1.6148972160331345, - "jurafski" : 2.3138672203691533, - "app" : 1.8367459656494909, - "jay" : 2.012837224705172, - "hyrum" : 2.3138672203691533, - "evolv" : 2.012837224705172, - "javascript" : 1.5357159699855099, - "nosql" : 2.012837224705172, - "databas" : 1.4687691803548966, - "alex" : 2.3138672203691533, - "toolkit" : 2.012837224705172, - "creativ" : 2.3138672203691533, - "architectur" : 0.9916479256352342, - "vanderkam" : 2.3138672203691533, - "anil" : 2.3138672203691533, - "slatkin" : 2.3138672203691533, - "schneier" : 2.012837224705172, - "document" : 2.012837224705172, - "elisabeth" : 2.3138672203691533, - "algebra" : 2.3138672203691533, - "experienc" : 2.012837224705172, - "tradeoff" : 2.012837224705172, - "tactic" : 2.3138672203691533, - "kimbal" : 2.3138672203691533, - "kohno" : 2.3138672203691533, - "realtim" : 2.3138672203691533, - "semant" : 2.3138672203691533, - "boswel" : 2.3138672203691533, - "weyl" : 2.3138672203691533, - "malik" : 2.3138672203691533, - "pytorch" : 2.3138672203691533, - "larg" : 1.6148972160331345, - "acceler" : 2.3138672203691533, - "anoth" : 2.3138672203691533, - "graphic" : 2.3138672203691533, - "popular" : 2.3138672203691533, - "resourc" : 2.3138672203691533, - "think" : 1.711807229041191, - "art" : 1.2724745352109283, - "sbarski" : 2.3138672203691533, - "heali" : 2.3138672203691533, - "team" : 1.8367459656494909, - "tour" : 2.3138672203691533, - "abraham" : 2.3138672203691533, - "wilson" : 2.3138672203691533, - "nlp" : 1.5357159699855099, - "googl" : 2.012837224705172, - "classic" : 1.3596247109298285, - "speech" : 2.3138672203691533, - "essenti" : 2.3138672203691533, - "metric" : 2.3138672203691533, - "charl" : 2.012837224705172, - "daphn" : 2.3138672203691533, - "chernyak" : 2.3138672203691533, - "dsls" : 2.3138672203691533, - "principl" : 0.9336559786575475, - "polish" : 2.3138672203691533, - "dataset" : 2.3138672203691533, - "redmond" : 2.3138672203691533, - "thing" : 2.012837224705172, - "through" : 1.8367459656494909, - "definit" : 1.711807229041191, - "minski" : 2.3138672203691533, - "reactiv" : 2.3138672203691533, - "jef" : 2.3138672203691533, - "run" : 1.8367459656494909, - "pitfal" : 2.3138672203691533, - "align" : 2.3138672203691533, - "research" : 2.3138672203691533, - "lin" : 2.3138672203691533, - "technolog" : 2.3138672203691533, - "itay" : 2.3138672203691533, - "kevin" : 1.8367459656494909, - "structur" : 1.6148972160331345, - "throughput" : 2.3138672203691533, - "authorit" : 1.711807229041191, - "tze" : 2.3138672203691533, - "jez" : 1.8367459656494909, - "tech" : 2.3138672203691533, - "recurs" : 2.012837224705172, - "luqman" : 2.3138672203691533, - "reddi" : 2.3138672203691533, - "defens" : 2.3138672203691533, - "bryant" : 2.3138672203691533, - "eric" : 1.4107772333772097, - "develop" : 1.1097472377132287, - "pro" : 2.012837224705172, - "effici" : 1.8367459656494909, - "mcdaniel" : 2.3138672203691533, - "danjou" : 2.3138672203691533, - "aur" : 2.3138672203691533, - "mcconnel" : 2.3138672203691533, - "marijn" : 2.3138672203691533, - "scientist" : 2.3138672203691533, - "book" : 1.4687691803548966, - "concept" : 1.2724745352109283, - "erlang" : 2.3138672203691533, - "awar" : 2.3138672203691533, - "gourley" : 2.3138672203691533, - "lieder" : 2.3138672203691533, - "non" : 2.3138672203691533, - "comput" : 1.1999238680623165, - "introduct" : 0.7823883033268982, - "factor" : 2.3138672203691533, - "lehman" : 2.3138672203691533, - "overview" : 2.012837224705172, - "armstrong" : 2.3138672203691533, - "clariti" : 2.3138672203691533, - "shapira" : 2.3138672203691533, - "wan" : 2.3138672203691533, - "center" : 2.012837224705172, - "emphasi" : 1.8367459656494909, - "kevlin" : 2.3138672203691533, - "way" : 2.3138672203691533, - "jeffrey" : 2.012837224705172, - "ronald" : 2.3138672203691533, - "deliveri" : 2.012837224705172, - "what" : 2.3138672203691533, - "refer" : 1.3596247109298285, - "tanenbaum" : 2.012837224705172, - "chang" : 2.3138672203691533, - "learner" : 2.3138672203691533, - "short" : 2.3138672203691533, - "time" : 2.3138672203691533, - "greg" : 2.3138672203691533, - "rebecca" : 2.3138672203691533, - "container" : 2.3138672203691533, - "play" : 2.3138672203691533, - "randal" : 2.3138672203691533, - "probabilist" : 1.8367459656494909, - "erich" : 2.3138672203691533, - "program" : 0.5814734605461849, - "when" : 2.3138672203691533, - "jim" : 2.012837224705172, - "multi" : 2.3138672203691533, - "hinrich" : 2.3138672203691533, - "ghazi" : 2.3138672203691533, - "daniela" : 2.3138672203691533, - "nystrom" : 2.3138672203691533, - "electron" : 2.3138672203691533, - "totti" : 2.3138672203691533, - "broad" : 2.012837224705172, - "plan" : 2.3138672203691533, - "case" : 1.5357159699855099, - "yaron" : 2.3138672203691533, - "applic" : 1.3596247109298285, - "multipl" : 0.670414543882966, - "openapi" : 2.3138672203691533, - "sutton" : 2.3138672203691533, - "gene" : 1.8367459656494909, - "ramez" : 2.3138672203691533, - "althoff" : 2.3138672203691533, - "aditya" : 2.3138672203691533, - "clifford" : 2.3138672203691533, - "typographi" : 2.3138672203691533, - "studi" : 1.5357159699855099, - "chris" : 2.012837224705172, - "memori" : 1.8367459656494909, - "style" : 1.6148972160331345, - "explor" : 1.8367459656494909, - "chalup" : 2.3138672203691533, - "philosophi" : 1.711807229041191, - "engin" : 0.9521393843515605, - "nussbaum" : 2.3138672203691533, - "pattern" : 0.7823883033268982, - "increment" : 2.3138672203691533, - "roadmap" : 2.3138672203691533, - "resili" : 1.8367459656494909, - "compil" : 1.711807229041191, - "smart" : 2.3138672203691533, - "tensorflow" : 1.8367459656494909, - "mcgraw" : 2.3138672203691533, - "modern" : 1.2724745352109283, - "web" : 1.5357159699855099, - "stroustrup" : 2.012837224705172, - "workbook" : 2.3138672203691533, - "intuit" : 2.3138672203691533, - "editor" : 2.012837224705172, - "rago" : 2.3138672203691533, - "wes" : 2.3138672203691533, - "chad" : 2.012837224705172, - "more" : 1.711807229041191, - "wayn" : 2.3138672203691533, - "bori" : 2.3138672203691533, - "vernon" : 2.012837224705172, - "systemat" : 2.3138672203691533, - "freeman" : 2.3138672203691533, - "clement" : 2.3138672203691533, - "lifestyl" : 2.3138672203691533, - "gagn" : 2.3138672203691533, - "usag" : 2.3138672203691533, - "kieran" : 2.3138672203691533, - "perspect" : 2.3138672203691533, - "harri" : 2.3138672203691533, - "foster" : 2.3138672203691533, - "yoshua" : 2.3138672203691533, - "advanc" : 1.711807229041191, - "sipser" : 2.3138672203691533, - "small" : 2.012837224705172, - "mostafa" : 2.3138672203691533, - "compact" : 2.3138672203691533, - "fiction" : 2.3138672203691533, - "mauric" : 2.3138672203691533, - "horstmann" : 2.012837224705172, - "dan" : 2.012837224705172, - "cloud" : 1.711807229041191, - "protocol" : 1.711807229041191, - "hsuan" : 2.3138672203691533, - "consider" : 1.711807229041191, - "adnan" : 2.3138672203691533, - "hunt" : 1.8367459656494909, - "orient" : 1.6148972160331345, - "king" : 2.3138672203691533, - "profil" : 2.3138672203691533, - "abdallah" : 2.3138672203691533, - "format" : 2.012837224705172, - "usabl" : 2.012837224705172, - "monica" : 2.3138672203691533, - "market" : 2.3138672203691533, - "formal" : 2.3138672203691533, - "most" : 2.3138672203691533, - "micha" : 2.3138672203691533, - "mcdowel" : 2.3138672203691533, - "alexand" : 2.3138672203691533, - "elev" : 2.3138672203691533, - "effect" : 1.2724745352109283, - "madhavapeddi" : 2.3138672203691533, - "topic" : 1.8367459656494909, - "comptia" : 2.3138672203691533, - "estell" : 2.3138672203691533, - "multiprocessor" : 2.3138672203691533, - "histori" : 2.3138672203691533, - "scienc" : 1.1999238680623165, - "joe" : 2.012837224705172, - "game" : 2.3138672203691533, - "handbook" : 2.3138672203691533, - "mike" : 2.3138672203691533, - "beck" : 2.3138672203691533, - "pars" : 2.012837224705172, - "part" : 2.3138672203691533, - "jon" : 1.8367459656494909, - "miki" : 2.3138672203691533, - "karumanchi" : 2.3138672203691533, - "continu" : 1.8367459656494909, - "generat" : 2.012837224705172, - "their" : 2.3138672203691533, - "navath" : 2.3138672203691533, - "general" : 2.3138672203691533, - "cherni" : 2.3138672203691533, - "browser" : 2.3138672203691533, - "nicol" : 2.3138672203691533, - "messag" : 2.3138672203691533, - "david" : 1.3138672203691535, - "dimension" : 2.3138672203691533, - "easi" : 2.3138672203691533, - "sam" : 2.012837224705172, - "rest" : 2.012837224705172, - "process" : 1.1677391846909153, - "debug" : 2.012837224705172, - "ddd" : 1.711807229041191, - "attribut" : 2.3138672203691533, - "clear" : 1.6148972160331345, - "clean" : 1.8367459656494909, - "differ" : 2.012837224705172, - "linguist" : 2.3138672203691533, - "reuven" : 2.3138672203691533, - "build" : 1.1999238680623165, - "various" : 1.6148972160331345, - "user" : 1.8367459656494909, - "frontend" : 1.711807229041191, - "hsien" : 2.3138672203691533, - "intellig" : 2.3138672203691533, - "complet" : 2.012837224705172, - "offer" : 2.3138672203691533, - "fit" : 2.3138672203691533, - "path" : 2.3138672203691533, - "crack" : 2.3138672203691533, - "complex" : 1.8367459656494909, - "sch" : 2.3138672203691533, - "rank" : 2.3138672203691533, - "schocken" : 2.3138672203691533, - "pseudo" : 1.5357159699855099, - "you" : 2.012837224705172, - "soft" : 2.3138672203691533, - "aumasson" : 2.3138672203691533, - "goldratt" : 2.3138672203691533, - "ai" : 2.012837224705172, - "bill" : 2.3138672203691533, - "al" : 1.3596247109298285, - "secur" : 1.3596247109298285, - "cours" : 1.8367459656494909, - "an" : 1.711807229041191, - "beda" : 2.3138672203691533, - "at" : 2.012837224705172, - "abelson" : 2.3138672203691533, - "steven" : 1.711807229041191, - "nativ" : 2.012837224705172, - "aaron" : 2.3138672203691533, - "aw" : 2.3138672203691533, - "abbott" : 2.3138672203691533, - "domain" : 1.5357159699855099, - "raskin" : 2.3138672203691533, - "juli" : 2.3138672203691533, - "sandler" : 2.3138672203691533, - "drive" : 2.012837224705172, - "goodfellow" : 2.3138672203691533, - "preserv" : 2.3138672203691533, - "schema" : 2.3138672203691533, - "frank" : 2.3138672203691533, - "organ" : 1.6148972160331345, - "treatment" : 1.711807229041191, - "gerald" : 2.3138672203691533, - "be" : 2.3138672203691533, - "clrs" : 2.3138672203691533, - "scheme" : 2.012837224705172, - "o'hallaron" : 2.3138672203691533, - "proven" : 2.3138672203691533, - "how" : 2.012837224705172, - "search" : 1.8367459656494909, - "releas" : 2.012837224705172, - "ismail" : 2.3138672203691533, - "peter" : 1.6148972160331345, - "by" : 1.5357159699855099, - "typescript" : 2.012837224705172, - "barto" : 2.3138672203691533, - "mine" : 2.3138672203691533, - "cd" : 2.3138672203691533, - "bdd" : 2.3138672203691533, - "contain" : 1.711807229041191, - "pipelin" : 2.012837224705172, - "set" : 2.3138672203691533, - "richardson" : 2.012837224705172, - "ci" : 2.3138672203691533, - "serverless" : 2.012837224705172, - "willi" : 2.3138672203691533, - "actor" : 2.3138672203691533, - "cs" : 1.8367459656494909, - "ewan" : 2.3138672203691533, - "influenti" : 2.3138672203691533, - "answer" : 2.3138672203691533, - "pollic" : 2.3138672203691533, - "taught" : 1.8367459656494909, - "skiena" : 2.3138672203691533, - "under" : 2.3138672203691533, - "apach" : 2.3138672203691533, - "paul" : 2.012837224705172, - "interview" : 1.8367459656494909, - "hohp" : 2.3138672203691533, - "closur" : 2.3138672203691533, - "bjarn" : 2.012837224705172, - "featur" : 1.6148972160331345, - "nltk" : 2.3138672203691533, - "corpus" : 2.3138672203691533, - "ben" : 2.3138672203691533, - "ford" : 2.3138672203691533, - "jure" : 2.3138672203691533, - "ds" : 2.3138672203691533, - "kent" : 2.3138672203691533, - "guidanc" : 1.1677391846909153, - "dw" : 2.3138672203691533, - "habit" : 2.3138672203691533, - "nichol" : 2.3138672203691533, - "magdon" : 2.3138672203691533, - "tsung" : 2.3138672203691533, - "bird" : 2.3138672203691533, - "eliyahu" : 2.3138672203691533, - "joel" : 2.3138672203691533, - "train" : 2.3138672203691533, - "ee" : 2.3138672203691533, - "richard" : 1.6148972160331345, - "bayesian" : 1.8367459656494909, - "gari" : 2.012837224705172, - "ralph" : 2.012837224705172, - "karwin" : 2.3138672203691533, - "behr" : 2.3138672203691533, - "test" : 1.3138672203691535, - "count" : 2.3138672203691533, - "brown" : 2.3138672203691533, - "luka" : 2.3138672203691533, - "graph" : 2.012837224705172, - "et" : 1.3596247109298285, - "integr" : 2.012837224705172, - "vision" : 2.3138672203691533, - "month" : 2.3138672203691533, - "plauger" : 2.3138672203691533, - "simpson" : 2.012837224705172, - "humbl" : 1.8367459656494909, - "assort" : 2.3138672203691533, - "some" : 1.6148972160331345, - "deep" : 1.2346859743215286, - "stein" : 2.3138672203691533, - "pydata" : 2.3138672203691533, - "sadalag" : 2.012837224705172, - "sierra" : 2.3138672203691533, - "for" : 0.43305362808836206, - "silberschatz" : 2.3138672203691533, - "warehous" : 2.3138672203691533, - "solv" : 1.8367459656494909, - "skill" : 1.8367459656494909, - "selector" : 2.3138672203691533, - "potter" : 2.3138672203691533, - "human" : 1.8367459656494909, - "henri" : 2.3138672203691533, - "collabor" : 2.012837224705172, - "go" : 1.8367459656494909, - "raymond" : 2.012837224705172, - "monitor" : 2.012837224705172, - "margi" : 2.3138672203691533, - "courvill" : 2.3138672203691533, - "michael" : 1.6148972160331345, - "kjell" : 2.3138672203691533, - "hickey" : 2.3138672203691533, - "interpret" : 2.3138672203691533, - "grus" : 2.3138672203691533, - "skeet" : 2.3138672203691533, - "relat" : 1.711807229041191, - "idiom" : 1.5357159699855099, - "foundat" : 1.2724745352109283, - "big" : 2.3138672203691533, - "feather" : 2.3138672203691533, - "expert" : 2.3138672203691533, - "philipp" : 2.3138672203691533, - "manshreck" : 2.3138672203691533, - "selkow" : 2.3138672203691533, - "devop" : 1.4687691803548966, - "construct" : 1.8367459656494909, - "hope" : 2.3138672203691533, - "pickax" : 2.3138672203691533, - "artifici" : 2.3138672203691533, - "carol" : 2.3138672203691533, - "hook" : 2.3138672203691533, - "autom" : 1.8367459656494909, - "lapan" : 2.3138672203691533, - "ravi" : 2.3138672203691533, - "action" : 2.3138672203691533, - "thomson" : 2.3138672203691533, - "model" : 1.1999238680623165, - "text" : 1.6148972160331345, - "python" : 0.7697991760188778, - "20th" : 2.3138672203691533, - "in" : 0.7456654963021584, - "ocaml" : 2.012837224705172, - "made" : 2.3138672203691533, - "ip" : 2.3138672203691533, - "schemer" : 2.3138672203691533, - "hanafe" : 2.3138672203691533, - "index" : 2.3138672203691533, - "worldwid" : 2.3138672203691533, - "it" : 1.6148972160331345, - "manag" : 1.711807229041191, - "surviv" : 2.3138672203691533, - "field" : 2.3138672203691533, - "julien" : 2.3138672203691533, - "experi" : 2.3138672203691533, - "shamkant" : 2.3138672203691533, - "john" : 1.4687691803548966, - "kera" : 1.8367459656494909, - "introductori" : 1.4687691803548966, - "jk" : 2.3138672203691533, - "don" : 2.3138672203691533, - "librari" : 1.6148972160331345, - "natur" : 1.8367459656494909, - "galvin" : 2.3138672203691533, - "optim" : 2.012837224705172, - "jr" : 2.3138672203691533, - "bjarnason" : 2.3138672203691533, - "tailor" : 2.012837224705172, - "js" : 2.012837224705172, - "kathi" : 2.3138672203691533, - "ullman" : 2.012837224705172, - "robert" : 1.4107772333772097, - "world" : 1.8367459656494909, - "file" : 2.3138672203691533, - "stream" : 2.012837224705172, - "joshua" : 1.8367459656494909, - "glenford" : 2.3138672203691533, - "steve" : 1.8367459656494909, - "foucher" : 2.3138672203691533, - "man" : 2.012837224705172, - "map" : 2.3138672203691533, - "gayl" : 2.3138672203691533, - "klein" : 2.3138672203691533, - "lifecycl" : 2.012837224705172, - "creator" : 2.012837224705172, - "max" : 2.3138672203691533, - "within" : 2.3138672203691533, - "sedgewick" : 2.3138672203691533, - "health" : 2.3138672203691533, - "roedig" : 2.3138672203691533, - "off" : 2.012837224705172, - "exercis" : 1.8367459656494909, - "discret" : 2.3138672203691533, - "explan" : 2.3138672203691533, - "platt" : 2.3138672203691533, - "stuart" : 2.3138672203691533, - "probabl" : 2.012837224705172, - "hogan" : 2.3138672203691533, - "expans" : 2.3138672203691533, - "prakash" : 2.3138672203691533, - "cognit" : 2.012837224705172, - "coder" : 2.3138672203691533, - "decept" : 2.3138672203691533, - "use" : 0.9521393843515605, - "ponelat" : 2.3138672203691533, - "edward" : 2.3138672203691533, - "donovan" : 2.3138672203691533, - "while" : 2.3138672203691533, - "wright" : 2.3138672203691533, - "jone" : 2.3138672203691533, - "swagger" : 2.3138672203691533, - "that" : 2.012837224705172, - "high" : 1.711807229041191, - "host" : 2.3138672203691533, - "me" : 2.3138672203691533, - "alvin" : 2.3138672203691533, - "brian" : 1.4107772333772097, - "sonmez" : 2.3138672203691533, - "noam" : 2.3138672203691533, - "ml" : 1.2724745352109283, - "administr" : 2.012837224705172, - "brook" : 2.3138672203691533, - "textbook" : 1.5357159699855099, - "workflow" : 1.711807229041191, - "level" : 1.8367459656494909, - "norvig" : 2.3138672203691533, - "author" : 1.4687691803548966, - "tate" : 2.3138672203691533, - "gwen" : 2.3138672203691533, - "sort" : 2.3138672203691533, - "failur" : 2.3138672203691533, - "chacon" : 2.3138672203691533, - "daniel" : 2.3138672203691533, - "servic" : 1.8367459656494909, - "task" : 2.3138672203691533, - "legaci" : 2.3138672203691533, - "infer" : 2.012837224705172, - "essay" : 1.711807229041191, - "updat" : 2.3138672203691533, - "survey" : 2.3138672203691533, - "trevor" : 1.8367459656494909, - "dsl" : 2.3138672203691533, - "present" : 2.3138672203691533, - "kane" : 2.3138672203691533, - "luciano" : 2.3138672203691533, - "murphi" : 2.3138672203691533, - "code" : 1.0128372247051722, - "bhargava" : 2.3138672203691533, - "kernighan" : 1.6148972160331345, - "paradigm" : 1.6148972160331345, - "bridg" : 2.3138672203691533, - "bos" : 2.3138672203691533, - "knaflic" : 2.3138672203691533, - "fran" : 2.3138672203691533, - "sean" : 2.3138672203691533, - "best" : 1.1677391846909153, - "schedul" : 2.3138672203691533, - "sql" : 1.5357159699855099, - "head" : 2.3138672203691533, - "deni" : 2.3138672203691533, - "transform" : 1.8367459656494909, - "tadayoshi" : 2.3138672203691533, - "fundament" : 1.3596247109298285, - "leadership" : 2.3138672203691533, - "of" : 0.5656791933629529, - "oi" : 2.3138672203691533, - "dive" : 1.8367459656494909, - "tibshirani" : 2.012837224705172, - "thoma" : 1.5357159699855099, - "make" : 1.711807229041191, - "on" : 0.7456654963021584, - "op" : 1.711807229041191, - "technic" : 2.012837224705172, - "os" : 1.8367459656494909, - "social" : 2.3138672203691533, - "anderson" : 2.3138672203691533, - "blandi" : 2.3138672203691533, - "sre" : 1.8367459656494909, - "geron" : 2.3138672203691533, - "titus" : 2.3138672203691533, - "control" : 2.3138672203691533, - "thread" : 2.3138672203691533, - "bert" : 2.3138672203691533, - "drew" : 2.3138672203691533, - "comprehens" : 1.0351136194163244, - "phoenix" : 2.3138672203691533, - "scalabl" : 1.5357159699855099, - "offici" : 2.3138672203691533, - "easier" : 2.3138672203691533, - "matth" : 2.3138672203691533, - "threat" : 2.3138672203691533, - "lutz" : 2.3138672203691533, - "rubi" : 1.711807229041191, - "inform" : 2.3138672203691533, - "wetheral" : 2.3138672203691533, - "forsgren" : 2.3138672203691533, - "about" : 2.012837224705172, - "krug" : 2.3138672203691533, - "herbert" : 2.3138672203691533, - "environ" : 1.8367459656494909, - "crash" : 2.3138672203691533, - "cover" : 1.4107772333772097, - "bank" : 2.3138672203691533, - "prabhakar" : 2.3138672203691533, - "friend" : 2.012837224705172, - "stick" : 2.3138672203691533, - "concurr" : 1.4687691803548966, - "goetz" : 2.3138672203691533, - "leighton" : 2.3138672203691533, - "11" : 2.3138672203691533, - "karl" : 2.3138672203691533, - "akidau" : 2.3138672203691533, - "14" : 2.3138672203691533, - "trench" : 2.3138672203691533, - "tsitsik" : 2.3138672203691533, - "edit" : 1.6148972160331345, - "grigorik" : 2.3138672203691533, - "fluent" : 2.3138672203691533, - "impati" : 2.3138672203691533, - "metz" : 2.3138672203691533, - "empir" : 2.3138672203691533, - "badgett" : 2.3138672203691533, - "programm" : 1.4107772333772097, - "qualiti" : 1.711807229041191, - "access" : 2.3138672203691533, - "bertseka" : 2.3138672203691533, - "practition" : 2.3138672203691533, - "adkin" : 2.3138672203691533, - "languag" : 0.7340836237523433, - "into" : 2.012837224705172, - "beyer" : 2.012837224705172, - "ian" : 2.012837224705172, - "porcello" : 2.3138672203691533, - "tcpip" : 2.3138672203691533, - "nygard" : 2.3138672203691533, - "mix" : 2.3138672203691533, - "key" : 2.3138672203691533, - "emphas" : 2.3138672203691533, - "communic" : 2.012837224705172, - "evolut" : 2.3138672203691533, - "narasimha" : 2.3138672203691533, - "intern" : 2.3138672203691533, - "dougla" : 2.3138672203691533, - "dimitri" : 2.3138672203691533, - "sethi" : 2.3138672203691533, - "leiserson" : 2.3138672203691533, - "everyday" : 2.3138672203691533, - "stori" : 2.3138672203691533, - "mitnick" : 2.3138672203691533, - "pragmat" : 1.8367459656494909, - "friedman" : 1.8367459656494909, - "resheff" : 2.3138672203691533, - "reliabl" : 1.5357159699855099, - "nisan" : 2.3138672203691533, - "amit" : 2.3138672203691533, - "oper" : 1.5357159699855099, - "to" : 0.4273764951966715, - "mani" : 2.3138672203691533, - "open" : 2.012837224705172, - "gamma" : 2.3138672203691533, - "amundsen" : 2.3138672203691533, - "nand2tetri" : 2.3138672203691533, - "bishop" : 2.3138672203691533, - "rapid" : 2.3138672203691533, - "seven" : 1.8367459656494909, - "project" : 1.2346859743215286, - "gareth" : 2.3138672203691533, - "yaser" : 2.3138672203691533, - "oop" : 1.8367459656494909, - "ui" : 1.711807229041191, - "jean" : 2.3138672203691533, - "up" : 1.8367459656494909, - "loper" : 2.3138672203691533, - "passion" : 2.3138672203691533, - "bazaar" : 2.3138672203691533, - "marjori" : 2.3138672203691533, - "ux" : 1.711807229041191, - "59" : 2.3138672203691533, - "aggarw" : 2.3138672203691533, - "asynchron" : 2.3138672203691533, - "solut" : 1.8367459656494909, - "vaughn" : 2.012837224705172, - "4a" : 2.3138672203691533, - "cryptograph" : 2.012837224705172, - "narkhed" : 2.3138672203691533, - "know" : 1.8367459656494909, - "guid" : 0.8667091890269342, - "mler" : 2.3138672203691533, - "elmasri" : 2.3138672203691533, - "newman" : 2.3138672203691533, - "sklearn" : 2.3138672203691533, - "rule" : 2.3138672203691533, - "gelman" : 2.3138672203691533, - "cole" : 2.3138672203691533, - "everi" : 2.3138672203691533, - "life" : 2.3138672203691533, - "kim" : 1.8367459656494909, - "peopl" : 2.3138672203691533, - "docker" : 2.3138672203691533, - "brett" : 2.3138672203691533, - "common" : 2.012837224705172, - "lien" : 2.3138672203691533, - "magnum" : 2.3138672203691533, - "gan" : 2.3138672203691533, - "appli" : 1.1999238680623165, - "queri" : 2.3138672203691533, - "viega" : 2.3138672203691533, - "bate" : 2.3138672203691533, - "ritchi" : 2.3138672203691533, - "gradual" : 2.3138672203691533, - "guido" : 2.3138672203691533, - "org" : 2.3138672203691533, - "christoph" : 2.012837224705172, - "mythic" : 2.3138672203691533, - "russel" : 2.3138672203691533, - "recognit" : 1.8367459656494909, - "sandi" : 2.3138672203691533, - "distribut" : 1.4687691803548966, - "fowler" : 1.5357159699855099, - "hightow" : 2.3138672203691533, - "laakmann" : 2.3138672203691533, - "norman" : 2.3138672203691533, - "layout" : 2.012837224705172, - "bass" : 2.3138672203691533, - "bentley" : 2.3138672203691533, - "mari" : 2.3138672203691533, - "jason" : 1.8367459656494909, - "mark" : 2.012837224705172, - "rajaraman" : 2.3138672203691533, - "base" : 2.012837224705172, - "anand" : 2.3138672203691533, - "intermedi" : 2.3138672203691533, - "sourc" : 2.012837224705172, - "camill" : 2.3138672203691533, - "appel" : 2.3138672203691533, - "ecosystem" : 2.3138672203691533, - "gedeck" : 2.3138672203691533, - "aziz" : 2.3138672203691533, - "react" : 2.3138672203691533, - "dragon" : 2.3138672203691533, - "type" : 2.3138672203691533, - "heineman" : 2.3138672203691533, - "helm" : 2.3138672203691533, - "theori" : 1.3596247109298285, - "chiusano" : 2.3138672203691533, - "techniqu" : 0.8087172420492474, - "vulner" : 2.3138672203691533, - "hack" : 2.3138672203691533, - "problem" : 1.4687691803548966, - "petoff" : 2.3138672203691533, - "ambler" : 2.3138672203691533, - "vae" : 2.3138672203691533, - "proof" : 2.3138672203691533, - "97" : 2.3138672203691533, - "limoncelli" : 2.012837224705172, - "profession" : 1.8367459656494909, - "goal" : 2.3138672203691533, - "method" : 1.6148972160331345, - "work" : 1.8367459656494909, - "exist" : 2.3138672203691533, - "insight" : 2.012837224705172, - "betsi" : 2.012837224705172, - "concis" : 1.5357159699855099, - "organiz" : 2.3138672203691533, - "denni" : 2.3138672203691533, - "math" : 1.711807229041191, - "coverag" : 2.012837224705172, - "reusabl" : 2.3138672203691533, - "educ" : 1.711807229041191, - "architect" : 2.012837224705172, - "pascal" : 1.6148972160331345, - "iii" : 2.3138672203691533, - "gregor" : 2.3138672203691533, - "requir" : 2.3138672203691533, - "nick" : 2.3138672203691533, - "millett" : 2.3138672203691533, - "across" : 1.711807229041191, - "lean" : 1.8367459656494909, - "slava" : 2.3138672203691533, - "kyle" : 2.012837224705172, - "henrik" : 2.3138672203691533, - "sayer" : 2.3138672203691533, - "ilya" : 2.3138672203691533, - "statist" : 1.6148972160331345, - "barber" : 2.3138672203691533, - "hasti" : 2.012837224705172, - "myer" : 2.3138672203691533, - "abstract" : 2.012837224705172, - "opinion" : 2.3138672203691533, - "readabl" : 2.012837224705172, - "knuth" : 1.6148972160331345, - "site" : 2.012837224705172, - "depth" : 1.5357159699855099, - "assess" : 2.3138672203691533, - "self" : 2.3138672203691533, - "first" : 1.8367459656494909, - "panda" : 2.3138672203691533, - "allen" : 2.3138672203691533, - "data" : 1.0585947152658473, - "klabnik" : 2.3138672203691533, - "tidwel" : 2.3138672203691533, - "herlihi" : 2.3138672203691533, - "separ" : 2.3138672203691533, - "cori" : 2.3138672203691533, - "niel" : 2.3138672203691533, - "kleppmann" : 2.3138672203691533, - "brendan" : 1.8367459656494909, - "divers" : 2.3138672203691533, - "should" : 2.3138672203691533, - "html" : 2.3138672203691533, - "from" : 1.5357159699855099, - "hardwar" : 1.8367459656494909, - "bengio" : 2.3138672203691533, - "matlab" : 1.6148972160331345, - "yehezkel" : 2.3138672203691533, - "maxim" : 2.3138672203691533, - "kerievski" : 2.3138672203691533, - "like" : 2.3138672203691533, - "yablonski" : 2.3138672203691533, - "core" : 1.6148972160331345, - "safe" : 1.8367459656494909, - "rubyist" : 2.3138672203691533, - "guidelin" : 1.8367459656494909, - "kuhn" : 2.012837224705172, - "recip" : 2.012837224705172, - "dave" : 2.3138672203691533, - "week" : 1.8367459656494909, - "ozsvald" : 2.3138672203691533, - "scala" : 1.5357159699855099, - "link" : 2.3138672203691533, - "winter" : 2.3138672203691533, - "scale" : 1.711807229041191, - "interact" : 2.012837224705172, - "becom" : 2.3138672203691533, - "henney" : 2.3138672203691533, - "leikam" : 2.3138672203691533, - "tune" : 2.3138672203691533, - "network" : 1.4687691803548966, - "christina" : 2.3138672203691533, - "rust" : 2.012837224705172, - "git" : 2.3138672203691533, - "public" : 2.3138672203691533, - "albert" : 2.3138672203691533, - "cay" : 2.012837224705172, - "tcp" : 2.012837224705172, - "agil" : 1.8367459656494909, - "nutshel" : 2.3138672203691533, - "readi" : 2.3138672203691533, - "stephen" : 2.3138672203691533, - "intens" : 2.3138672203691533, - "harold" : 2.3138672203691533, - "follow" : 2.3138672203691533, - "improv" : 1.711807229041191, - "tyler" : 2.3138672203691533, - "shimon" : 2.3138672203691533, - "async" : 2.012837224705172, - "frederick" : 2.3138672203691533, - "buday" : 2.3138672203691533, - "mlop" : 2.012837224705172, - "trade" : 2.012837224705172, - "tdd" : 2.3138672203691533, - "growth" : 2.3138672203691533, - "disciplin" : 2.3138672203691533, - "kniberg" : 2.3138672203691533, - "stanley" : 2.3138672203691533 + "don't" : 1.8471612005780302, + "straub" : 2.3242824552976926, + "opus" : 2.3242824552976926, + "analysi" : 1.3700399458583679, + "branch" : 2.3242824552976926, + "todd" : 2.3242824552976926, + "without" : 2.3242824552976926, + "via" : 2.0232524596337114, + "neal" : 2.3242824552976926, + "mathemat" : 1.6253124509616739, + "beaulieu" : 2.3242824552976926, + "visual" : 1.7222224639697303, + "volum" : 1.479184415283436, + "vim" : 2.3242824552976926, + "communiti" : 2.0232524596337114, + "beginn" : 1.546131204914049, + "solid" : 2.3242824552976926, + "instruct" : 2.0232524596337114, + "viz" : 2.3242824552976926, + "sailu" : 2.3242824552976926, + "illustr" : 1.8471612005780302, + "andriy" : 2.3242824552976926, + "stabil" : 2.3242824552976926, + "scratch" : 2.3242824552976926, + "deboi" : 2.3242824552976926, + "packet" : 2.3242824552976926, + "version" : 1.8471612005780302, + "1" : 1.8471612005780302, + "2" : 2.3242824552976926, + "3" : 2.3242824552976926, + "farley" : 2.3242824552976926, + "saeed" : 2.3242824552976926, + "kua" : 2.3242824552976926, + "niall" : 2.3242824552976926, + "detail" : 2.0232524596337114, + "jennif" : 2.0232524596337114, + "seri" : 2.3242824552976926, + "retriev" : 2.3242824552976926, + "object" : 1.7222224639697303, + "ture" : 2.3242824552976926, + "combinator" : 2.3242824552976926, + "sussman" : 2.3242824552976926, + "heather" : 2.3242824552976926, + "manual" : 2.0232524596337114, + "craftsmanship" : 2.3242824552976926, + "felleisen" : 2.3242824552976926, + "poppendieck" : 2.3242824552976926, + "machin" : 1.0938335339194187, + "scott" : 1.546131204914049, + "behavior" : 2.0232524596337114, + "hand" : 1.421192468305749, + "meyer" : 1.7222224639697303, + "a" : 0.5389526202869256, + "fournier" : 2.3242824552976926, + "b" : 2.0232524596337114, + "c" : 0.8618844573987365, + "d" : 1.8471612005780302, + "learn" : 0.9093091073268746, + "e" : 1.421192468305749, + "fokkink" : 2.3242824552976926, + "f" : 2.0232524596337114, + "g" : 2.0232524596337114, + "strata" : 2.3242824552976926, + "h" : 1.8471612005780302, + "i" : 1.7222224639697303, + "j" : 1.421192468305749, + "k" : 2.0232524596337114, + "l" : 1.6253124509616739, + "m" : 1.7222224639697303, + "anniversari" : 2.3242824552976926, + "n" : 0.7332178482711935, + "o" : 2.0232524596337114, + "p" : 1.6253124509616739, + "the" : 0.546131204914049, + "materi" : 2.3242824552976926, + "r" : 1.2828897701394677, + "fast" : 2.3242824552976926, + "s" : 1.210339102990856, + "t" : 1.8471612005780302, + "abu" : 2.3242824552976926, + "v" : 2.3242824552976926, + "w" : 1.3700399458583679, + "y" : 2.3242824552976926, + "novel" : 2.0232524596337114, + "discuss" : 2.3242824552976926, + "standard" : 2.3242824552976926, + "rivest" : 2.3242824552976926, + "antipattern" : 2.3242824552976926, + "incid" : 2.0232524596337114, + "correct" : 1.6253124509616739, + "advic" : 1.546131204914049, + "kelsey" : 2.3242824552976926, + "good" : 1.8471612005780302, + "specif" : 2.0232524596337114, + "deploy" : 1.6253124509616739, + "andrea" : 2.3242824552976926, + "crockford" : 2.3242824552976926, + "serious" : 2.0232524596337114, + "cryptographi" : 1.8471612005780302, + "tip" : 2.0232524596337114, + "implement" : 1.2451012092500677, + "georg" : 2.0232524596337114, + "practic" : 0.3557995067437576, + "grokk" : 2.3242824552976926, + "need" : 2.3242824552976926, + "reduc" : 2.3242824552976926, + "clearer" : 2.3242824552976926, + "massiv" : 2.3242824552976926, + "andrew" : 1.421192468305749, + "jerom" : 2.3242824552976926, + "evan" : 2.3242824552976926, + "transact" : 2.3242824552976926, + "forster" : 2.3242824552976926, + "shell" : 2.0232524596337114, + "success" : 2.3242824552976926, + "http" : 2.0232524596337114, + "hundr" : 2.3242824552976926, + "neha" : 2.3242824552976926, + "neural" : 2.3242824552976926, + "production" : 2.3242824552976926, + "companion" : 2.0232524596337114, + "ferguson" : 2.0232524596337114, + "spafford" : 2.3242824552976926, + "rothman" : 2.3242824552976926, + "famili" : 2.3242824552976926, + "wisdom" : 2.3242824552976926, + "kazman" : 2.3242824552976926, + "vol" : 2.3242824552976926, + "softwar" : 0.8471612005780302, + "scope" : 2.3242824552976926, + "combin" : 2.3242824552976926, + "patrick" : 2.0232524596337114, + "strang" : 2.3242824552976926, + "bruce" : 1.7222224639697303, + "buschmann" : 2.3242824552976926, + "perform" : 1.2828897701394677, + "rosenstock" : 2.3242824552976926, + "rick" : 2.3242824552976926, + "better" : 2.3242824552976926, + "with" : 0.6521845973619752, + "jenif" : 2.3242824552976926, + "anshu" : 2.3242824552976926, + "tls" : 2.3242824552976926, + "automata" : 2.0232524596337114, + "combinatori" : 2.3242824552976926, + "career" : 1.421192468305749, + "catalog" : 1.8471612005780302, + "focus" : 1.421192468305749, + "approach" : 1.546131204914049, + "fisher" : 2.3242824552976926, + "eloqu" : 2.3242824552976926, + "number" : 2.3242824552976926, + "chollet" : 2.3242824552976926, + "aurelien" : 2.3242824552976926, + "herman" : 2.3242824552976926, + "corey" : 2.3242824552976926, + "bloch" : 2.3242824552976926, + "write" : 1.3242824552976926, + "nar" : 2.3242824552976926, + "flow" : 2.0232524596337114, + "algorithm" : 0.9625546192800998, + "jami" : 2.3242824552976926, + "pike" : 2.0232524596337114, + "understand" : 2.3242824552976926, + "neil" : 2.3242824552976926, + "aho" : 2.3242824552976926, + "6th" : 2.3242824552976926, + "idiomat" : 2.0232524596337114, + "system" : 0.6808297788115053, + "orchestr" : 2.3242824552976926, + "kafka" : 2.3242824552976926, + "driven" : 1.421192468305749, + "jame" : 2.0232524596337114, + "concret" : 2.3242824552976926, + "niederst" : 2.3242824552976926, + "burkov" : 2.3242824552976926, + "tom" : 1.7222224639697303, + "interfac" : 2.0232524596337114, + "cookbook" : 2.3242824552976926, + "raghavan" : 2.3242824552976926, + "andi" : 2.3242824552976926, + "gilbert" : 2.3242824552976926, + "product" : 1.421192468305749, + "linear" : 2.3242824552976926, + "robust" : 1.6253124509616739, + "question" : 2.3242824552976926, + "storytel" : 2.3242824552976926, + "tebeka" : 2.3242824552976926, + "microservic" : 2.0232524596337114, + "ross" : 2.0232524596337114, + "2nd" : 2.3242824552976926, + "ytha" : 2.3242824552976926, + "littl" : 2.0232524596337114, + "enterpris" : 2.3242824552976926, + "charact" : 2.3242824552976926, + "koller" : 2.3242824552976926, + "exampl" : 0.926342446625655, + "constraint" : 2.3242824552976926, + "logic" : 2.3242824552976926, + "esl" : 2.3242824552976926, + "roland" : 2.3242824552976926, + "robson" : 2.3242824552976926, + "donald" : 1.6253124509616739, + "sarah" : 2.3242824552976926, + "cox" : 2.3242824552976926, + "pramod" : 2.0232524596337114, + "mckinney" : 2.3242824552976926, + "function" : 1.7222224639697303, + "lam" : 2.3242824552976926, + "plenti" : 2.3242824552976926, + "etl" : 2.3242824552976926, + "complement" : 2.3242824552976926, + "new" : 2.3242824552976926, + "lax" : 2.3242824552976926, + "evid" : 2.3242824552976926, + "law" : 2.3242824552976926, + "simplic" : 2.0232524596337114, + "cpu" : 2.3242824552976926, + "ramalho" : 2.3242824552976926, + "real" : 1.421192468305749, + "tool" : 1.546131204914049, + "catalogu" : 2.3242824552976926, + "alan" : 2.0232524596337114, + "ethic" : 2.3242824552976926, + "numpi" : 2.3242824552976926, + "basic" : 1.7222224639697303, + "collect" : 1.6253124509616739, + "unix" : 1.8471612005780302, + "rob" : 2.0232524596337114, + "palino" : 2.3242824552976926, + "busi" : 1.8471612005780302, + "matthia" : 2.0232524596337114, + "orendorff" : 2.3242824552976926, + "respons" : 2.0232524596337114, + "kubernet" : 2.3242824552976926, + "ron" : 2.3242824552976926, + "shavit" : 2.3242824552976926, + "cormen" : 2.0232524596337114, + "reinforc" : 2.0232524596337114, + "eve" : 2.3242824552976926, + "and" : 0.05012460603401282, + "design" : 0.6430412179221054, + "predict" : 2.3242824552976926, + "burn" : 2.0232524596337114, + "rowl" : 2.3242824552976926, + "tien" : 2.3242824552976926, + "katherin" : 2.3242824552976926, + "haverbek" : 2.3242824552976926, + "distil" : 2.0232524596337114, + "strategi" : 1.479184415283436, + "refactor" : 1.546131204914049, + "robbin" : 2.3242824552976926, + "boundari" : 2.3242824552976926, + "leonard" : 2.3242824552976926, + "ousterhout" : 2.3242824552976926, + "witten" : 2.3242824552976926, + "gorelick" : 2.3242824552976926, + "martin" : 1.2828897701394677, + "ninth" : 2.3242824552976926, + "parson" : 2.3242824552976926, + "scikit" : 1.8471612005780302, + "leskovec" : 2.3242824552976926, + "reason" : 2.3242824552976926, + "css" : 2.0232524596337114, + "cathedr" : 2.3242824552976926, + "cultur" : 2.3242824552976926, + "vlissid" : 2.3242824552976926, + "maintain" : 1.479184415283436, + "seminumer" : 2.3242824552976926, + "johnson" : 2.0232524596337114, + "evolutionari" : 2.3242824552976926, + "lee" : 2.3242824552976926, + "compon" : 2.0232524596337114, + "java" : 0.9625546192800998, + "len" : 2.3242824552976926, + "strateg" : 2.3242824552976926, + "nir" : 2.0232524596337114, + "english" : 1.6253124509616739, + "prep" : 2.0232524596337114, + "mistak" : 2.3242824552976926, + "alfr" : 2.3242824552976926, + "api" : 1.6253124509616739, + "state" : 2.3242824552976926, + "dustin" : 2.3242824552976926, + "lex" : 2.3242824552976926, + "pearl" : 2.3242824552976926, + "ller" : 2.3242824552976926, + "element" : 1.6253124509616739, + "jurafski" : 2.3242824552976926, + "app" : 1.8471612005780302, + "undergradu" : 2.0232524596337114, + "jay" : 2.0232524596337114, + "hyrum" : 2.3242824552976926, + "processor" : 2.3242824552976926, + "evolv" : 2.0232524596337114, + "javascript" : 1.546131204914049, + "nosql" : 2.0232524596337114, + "databas" : 1.421192468305749, + "alex" : 2.3242824552976926, + "toolkit" : 2.0232524596337114, + "creativ" : 2.3242824552976926, + "architectur" : 0.9818597744754864, + "vanderkam" : 2.3242824552976926, + "anil" : 2.3242824552976926, + "slatkin" : 2.3242824552976926, + "schneier" : 2.0232524596337114, + "document" : 2.0232524596337114, + "elisabeth" : 2.3242824552976926, + "algebra" : 2.3242824552976926, + "experienc" : 2.0232524596337114, + "theoret" : 2.3242824552976926, + "tradeoff" : 2.0232524596337114, + "tactic" : 2.3242824552976926, + "kimbal" : 2.3242824552976926, + "marut" : 2.3242824552976926, + "kohno" : 2.3242824552976926, + "realtim" : 2.3242824552976926, + "semant" : 2.3242824552976926, + "boswel" : 2.3242824552976926, + "weyl" : 2.3242824552976926, + "malik" : 2.3242824552976926, + "pytorch" : 2.3242824552976926, + "larg" : 1.6253124509616739, + "acceler" : 2.3242824552976926, + "anoth" : 2.3242824552976926, + "graphic" : 2.0232524596337114, + "popular" : 2.3242824552976926, + "resourc" : 2.3242824552976926, + "think" : 1.7222224639697303, + "art" : 1.2828897701394677, + "sbarski" : 2.3242824552976926, + "heali" : 2.3242824552976926, + "team" : 1.8471612005780302, + "tour" : 2.3242824552976926, + "abraham" : 2.3242824552976926, + "such" : 2.3242824552976926, + "wilson" : 2.3242824552976926, + "nlp" : 1.546131204914049, + "googl" : 2.0232524596337114, + "classic" : 1.3700399458583679, + "speech" : 2.3242824552976926, + "essenti" : 2.3242824552976926, + "metric" : 2.3242824552976926, + "charl" : 1.8471612005780302, + "daphn" : 2.3242824552976926, + "chernyak" : 2.3242824552976926, + "dsls" : 2.3242824552976926, + "principl" : 0.926342446625655, + "polish" : 2.3242824552976926, + "dataset" : 2.3242824552976926, + "redmond" : 2.3242824552976926, + "thing" : 2.0232524596337114, + "through" : 1.8471612005780302, + "cohen" : 2.3242824552976926, + "definit" : 1.7222224639697303, + "minski" : 2.3242824552976926, + "reactiv" : 2.3242824552976926, + "jef" : 2.3242824552976926, + "run" : 1.8471612005780302, + "pitfal" : 2.3242824552976926, + "align" : 2.3242824552976926, + "research" : 2.3242824552976926, + "lin" : 2.3242824552976926, + "technolog" : 2.3242824552976926, + "itay" : 2.3242824552976926, + "kevin" : 1.8471612005780302, + "structur" : 1.6253124509616739, + "throughput" : 2.3242824552976926, + "authorit" : 1.7222224639697303, + "tze" : 2.3242824552976926, + "jez" : 1.8471612005780302, + "tech" : 2.3242824552976926, + "recurs" : 2.0232524596337114, + "luqman" : 2.3242824552976926, + "reddi" : 2.3242824552976926, + "defens" : 2.3242824552976926, + "bryant" : 2.3242824552976926, + "eric" : 1.421192468305749, + "develop" : 1.1201624726417678, + "pro" : 2.0232524596337114, + "effici" : 1.8471612005780302, + "mcdaniel" : 2.3242824552976926, + "danjou" : 2.3242824552976926, + "aur" : 2.3242824552976926, + "mcconnel" : 2.3242824552976926, + "marijn" : 2.3242824552976926, + "scientist" : 2.0232524596337114, + "book" : 1.479184415283436, + "concept" : 1.2451012092500677, + "erlang" : 2.3242824552976926, + "awar" : 2.3242824552976926, + "gourley" : 2.3242824552976926, + "lieder" : 2.3242824552976926, + "non" : 2.3242824552976926, + "comput" : 1.0938335339194187, + "avi" : 2.3242824552976926, + "introduct" : 0.7802144109474171, + "factor" : 2.3242824552976926, + "lehman" : 2.3242824552976926, + "overview" : 2.0232524596337114, + "armstrong" : 2.3242824552976926, + "clariti" : 2.3242824552976926, + "shapira" : 2.3242824552976926, + "wan" : 2.3242824552976926, + "center" : 2.0232524596337114, + "emphasi" : 1.8471612005780302, + "kevlin" : 2.3242824552976926, + "way" : 2.3242824552976926, + "jeffrey" : 2.0232524596337114, + "ronald" : 2.0232524596337114, + "deliveri" : 2.0232524596337114, + "what" : 2.3242824552976926, + "refer" : 1.3700399458583679, + "tanenbaum" : 2.0232524596337114, + "chang" : 2.3242824552976926, + "learner" : 2.3242824552976926, + "short" : 2.3242824552976926, + "time" : 2.3242824552976926, + "greg" : 2.3242824552976926, + "rebecca" : 2.3242824552976926, + "microprocessor" : 2.3242824552976926, + "container" : 2.3242824552976926, + "play" : 2.3242824552976926, + "randal" : 2.3242824552976926, + "probabilist" : 1.8471612005780302, + "erich" : 2.3242824552976926, + "program" : 0.5839197658034488, + "when" : 2.3242824552976926, + "jim" : 2.0232524596337114, + "multi" : 2.3242824552976926, + "hinrich" : 2.3242824552976926, + "ghazi" : 2.3242824552976926, + "daniela" : 2.3242824552976926, + "nystrom" : 2.3242824552976926, + "electron" : 2.3242824552976926, + "totti" : 2.3242824552976926, + "broad" : 2.0232524596337114, + "plan" : 2.3242824552976926, + "case" : 1.546131204914049, + "yaron" : 2.3242824552976926, + "applic" : 1.3242824552976926, + "multipl" : 0.6808297788115053, + "openapi" : 2.3242824552976926, + "sutton" : 2.3242824552976926, + "gene" : 1.8471612005780302, + "ramez" : 2.3242824552976926, + "althoff" : 2.3242824552976926, + "sudarshan" : 2.3242824552976926, + "aditya" : 2.3242824552976926, + "clifford" : 2.3242824552976926, + "typographi" : 2.3242824552976926, + "studi" : 1.546131204914049, + "chris" : 2.0232524596337114, + "memori" : 1.6253124509616739, + "style" : 1.546131204914049, + "explor" : 1.8471612005780302, + "chalup" : 2.3242824552976926, + "philosophi" : 1.7222224639697303, + "engin" : 0.926342446625655, + "nussbaum" : 2.3242824552976926, + "pattern" : 0.7928035382554376, + "increment" : 2.3242824552976926, + "roadmap" : 2.3242824552976926, + "resili" : 1.8471612005780302, + "compil" : 1.7222224639697303, + "smart" : 2.3242824552976926, + "tensorflow" : 1.8471612005780302, + "mcgraw" : 2.3242824552976926, + "modern" : 1.2828897701394677, + "low" : 2.3242824552976926, + "web" : 1.546131204914049, + "stroustrup" : 2.0232524596337114, + "workbook" : 2.3242824552976926, + "intuit" : 2.3242824552976926, + "editor" : 2.0232524596337114, + "rago" : 2.3242824552976926, + "wes" : 2.3242824552976926, + "chad" : 2.0232524596337114, + "more" : 1.7222224639697303, + "wayn" : 2.3242824552976926, + "tutori" : 2.3242824552976926, + "bori" : 2.3242824552976926, + "vernon" : 2.0232524596337114, + "systemat" : 2.3242824552976926, + "freeman" : 2.3242824552976926, + "clement" : 2.3242824552976926, + "lifestyl" : 2.3242824552976926, + "gagn" : 2.3242824552976926, + "usag" : 2.3242824552976926, + "kieran" : 2.3242824552976926, + "perspect" : 2.3242824552976926, + "harri" : 2.3242824552976926, + "foster" : 2.3242824552976926, + "yoshua" : 2.3242824552976926, + "advanc" : 1.546131204914049, + "sipser" : 2.3242824552976926, + "small" : 2.0232524596337114, + "mostafa" : 2.3242824552976926, + "compact" : 2.3242824552976926, + "fiction" : 2.3242824552976926, + "mauric" : 2.3242824552976926, + "horstmann" : 2.0232524596337114, + "dan" : 2.0232524596337114, + "cloud" : 1.7222224639697303, + "protocol" : 1.7222224639697303, + "interrupt" : 2.3242824552976926, + "hsuan" : 2.3242824552976926, + "consider" : 1.7222224639697303, + "adnan" : 2.3242824552976926, + "hunt" : 1.8471612005780302, + "orient" : 1.6253124509616739, + "king" : 2.3242824552976926, + "profil" : 2.3242824552976926, + "abdallah" : 2.3242824552976926, + "format" : 2.0232524596337114, + "usabl" : 2.0232524596337114, + "monica" : 2.3242824552976926, + "both" : 2.3242824552976926, + "market" : 2.3242824552976926, + "formal" : 2.0232524596337114, + "most" : 2.3242824552976926, + "micha" : 2.3242824552976926, + "mcdowel" : 2.3242824552976926, + "alexand" : 2.3242824552976926, + "elev" : 2.3242824552976926, + "effect" : 1.2828897701394677, + "madhavapeddi" : 2.3242824552976926, + "topic" : 1.6253124509616739, + "comptia" : 2.3242824552976926, + "estell" : 2.3242824552976926, + "multiprocessor" : 2.3242824552976926, + "histori" : 2.3242824552976926, + "scienc" : 1.0690099501943866, + "joe" : 2.0232524596337114, + "game" : 2.3242824552976926, + "handbook" : 2.3242824552976926, + "mike" : 2.3242824552976926, + "beck" : 2.3242824552976926, + "pars" : 2.0232524596337114, + "part" : 2.3242824552976926, + "jon" : 1.8471612005780302, + "miki" : 2.3242824552976926, + "karumanchi" : 2.3242824552976926, + "continu" : 1.8471612005780302, + "generat" : 2.0232524596337114, + "their" : 2.3242824552976926, + "navath" : 2.3242824552976926, + "general" : 2.3242824552976926, + "cherni" : 2.3242824552976926, + "browser" : 2.3242824552976926, + "nicol" : 2.3242824552976926, + "messag" : 2.3242824552976926, + "david" : 1.3242824552976926, + "dimension" : 2.3242824552976926, + "easi" : 2.3242824552976926, + "sam" : 2.0232524596337114, + "rest" : 2.0232524596337114, + "process" : 1.1481911962420115, + "debug" : 2.0232524596337114, + "ddd" : 1.7222224639697303, + "attribut" : 2.3242824552976926, + "clear" : 1.6253124509616739, + "clean" : 1.8471612005780302, + "differ" : 2.0232524596337114, + "linguist" : 2.3242824552976926, + "reuven" : 2.3242824552976926, + "build" : 1.210339102990856, + "various" : 1.6253124509616739, + "user" : 1.8471612005780302, + "frontend" : 1.7222224639697303, + "hsien" : 2.3242824552976926, + "intellig" : 2.3242824552976926, + "complet" : 2.0232524596337114, + "offer" : 2.3242824552976926, + "fit" : 2.3242824552976926, + "path" : 2.3242824552976926, + "crack" : 2.3242824552976926, + "complex" : 1.8471612005780302, + "sch" : 2.3242824552976926, + "rank" : 2.3242824552976926, + "schocken" : 2.3242824552976926, + "pseudo" : 1.546131204914049, + "you" : 2.0232524596337114, + "soft" : 2.3242824552976926, + "aumasson" : 2.3242824552976926, + "goldratt" : 2.3242824552976926, + "ai" : 2.0232524596337114, + "bill" : 2.3242824552976926, + "al" : 1.3700399458583679, + "secur" : 1.3700399458583679, + "cours" : 1.6253124509616739, + "an" : 1.7222224639697303, + "beda" : 2.3242824552976926, + "as" : 2.3242824552976926, + "at" : 2.0232524596337114, + "abelson" : 2.3242824552976926, + "steven" : 1.7222224639697303, + "nativ" : 2.0232524596337114, + "aaron" : 2.3242824552976926, + "aw" : 2.3242824552976926, + "hierarchi" : 2.3242824552976926, + "abbott" : 2.3242824552976926, + "domain" : 1.546131204914049, + "raskin" : 2.3242824552976926, + "juli" : 2.3242824552976926, + "sandler" : 2.3242824552976926, + "drive" : 2.0232524596337114, + "goodfellow" : 2.3242824552976926, + "preserv" : 2.3242824552976926, + "schema" : 2.3242824552976926, + "frank" : 2.3242824552976926, + "organ" : 1.479184415283436, + "treatment" : 1.7222224639697303, + "gerald" : 2.3242824552976926, + "be" : 2.3242824552976926, + "clrs" : 2.3242824552976926, + "scheme" : 2.0232524596337114, + "o'hallaron" : 2.3242824552976926, + "proven" : 2.3242824552976926, + "how" : 2.0232524596337114, + "search" : 1.8471612005780302, + "releas" : 2.0232524596337114, + "ismail" : 2.3242824552976926, + "peter" : 1.6253124509616739, + "by" : 1.546131204914049, + "typescript" : 2.0232524596337114, + "barto" : 2.3242824552976926, + "mine" : 2.0232524596337114, + "cd" : 2.3242824552976926, + "bdd" : 2.3242824552976926, + "contain" : 1.7222224639697303, + "pipelin" : 2.0232524596337114, + "set" : 1.8471612005780302, + "richardson" : 2.0232524596337114, + "ci" : 2.3242824552976926, + "serverless" : 2.0232524596337114, + "willi" : 2.3242824552976926, + "actor" : 2.3242824552976926, + "cs" : 1.8471612005780302, + "ewan" : 2.3242824552976926, + "influenti" : 2.3242824552976926, + "answer" : 2.3242824552976926, + "pollic" : 2.3242824552976926, + "taught" : 1.8471612005780302, + "skiena" : 2.3242824552976926, + "under" : 2.3242824552976926, + "apach" : 2.3242824552976926, + "paul" : 2.0232524596337114, + "interview" : 1.8471612005780302, + "represent" : 2.3242824552976926, + "hohp" : 2.3242824552976926, + "closur" : 2.3242824552976926, + "bjarn" : 2.0232524596337114, + "featur" : 1.6253124509616739, + "nltk" : 2.3242824552976926, + "corpus" : 2.3242824552976926, + "ben" : 2.3242824552976926, + "ford" : 2.3242824552976926, + "jure" : 2.3242824552976926, + "ds" : 2.3242824552976926, + "kent" : 2.3242824552976926, + "guidanc" : 1.1781544196194547, + "dw" : 2.3242824552976926, + "habit" : 2.3242824552976926, + "nichol" : 2.3242824552976926, + "magdon" : 2.3242824552976926, + "tsung" : 2.3242824552976926, + "bird" : 2.3242824552976926, + "eliyahu" : 2.3242824552976926, + "korth" : 2.3242824552976926, + "joel" : 2.3242824552976926, + "train" : 2.3242824552976926, + "ee" : 2.3242824552976926, + "richard" : 1.6253124509616739, + "bayesian" : 1.8471612005780302, + "gari" : 2.0232524596337114, + "ralph" : 2.0232524596337114, + "karwin" : 2.3242824552976926, + "behr" : 2.3242824552976926, + "test" : 1.3242824552976926, + "count" : 2.3242824552976926, + "brown" : 2.3242824552976926, + "luka" : 2.3242824552976926, + "graph" : 2.0232524596337114, + "et" : 1.3700399458583679, + "integr" : 2.0232524596337114, + "walpol" : 2.3242824552976926, + "vision" : 2.3242824552976926, + "month" : 2.3242824552976926, + "plauger" : 2.3242824552976926, + "simpson" : 2.0232524596337114, + "humbl" : 1.8471612005780302, + "assort" : 2.3242824552976926, + "some" : 1.6253124509616739, + "deep" : 1.2451012092500677, + "stein" : 2.3242824552976926, + "pydata" : 2.3242824552976926, + "sadalag" : 2.0232524596337114, + "sierra" : 2.3242824552976926, + "for" : 0.42665536400725124, + "silberschatz" : 2.0232524596337114, + "warehous" : 2.3242824552976926, + "solv" : 1.8471612005780302, + "skill" : 1.8471612005780302, + "selector" : 2.3242824552976926, + "potter" : 2.3242824552976926, + "human" : 1.8471612005780302, + "henri" : 2.0232524596337114, + "collabor" : 2.0232524596337114, + "go" : 1.8471612005780302, + "raymond" : 1.8471612005780302, + "monitor" : 2.0232524596337114, + "margi" : 2.3242824552976926, + "courvill" : 2.3242824552976926, + "michael" : 1.6253124509616739, + "kjell" : 2.3242824552976926, + "hickey" : 2.3242824552976926, + "interpret" : 2.3242824552976926, + "grus" : 2.3242824552976926, + "skeet" : 2.3242824552976926, + "relat" : 1.6253124509616739, + "idiom" : 1.546131204914049, + "foundat" : 1.1781544196194547, + "big" : 2.3242824552976926, + "feather" : 2.3242824552976926, + "expert" : 2.3242824552976926, + "philipp" : 2.3242824552976926, + "manshreck" : 2.3242824552976926, + "selkow" : 2.3242824552976926, + "devop" : 1.479184415283436, + "bio" : 2.3242824552976926, + "construct" : 1.8471612005780302, + "hope" : 2.3242824552976926, + "pickax" : 2.3242824552976926, + "artifici" : 2.3242824552976926, + "assembl" : 2.0232524596337114, + "carol" : 2.3242824552976926, + "hook" : 2.3242824552976926, + "autom" : 1.8471612005780302, + "william" : 2.3242824552976926, + "lapan" : 2.3242824552976926, + "ravi" : 2.3242824552976926, + "action" : 2.3242824552976926, + "thomson" : 2.3242824552976926, + "model" : 1.1781544196194547, + "text" : 1.6253124509616739, + "python" : 0.7802144109474171, + "20th" : 2.3242824552976926, + "in" : 0.7222224639697303, + "ocaml" : 2.0232524596337114, + "made" : 2.3242824552976926, + "ip" : 2.3242824552976926, + "schemer" : 2.3242824552976926, + "hanafe" : 2.3242824552976926, + "index" : 2.3242824552976926, + "worldwid" : 2.3242824552976926, + "is" : 2.3242824552976926, + "stall" : 2.3242824552976926, + "it" : 1.479184415283436, + "manag" : 1.6253124509616739, + "surviv" : 2.3242824552976926, + "field" : 2.0232524596337114, + "julien" : 2.3242824552976926, + "experi" : 2.3242824552976926, + "shamkant" : 2.3242824552976926, + "john" : 1.479184415283436, + "kera" : 1.8471612005780302, + "introductori" : 1.479184415283436, + "jk" : 2.3242824552976926, + "don" : 2.3242824552976926, + "librari" : 1.6253124509616739, + "natur" : 1.8471612005780302, + "galvin" : 2.3242824552976926, + "optim" : 1.7222224639697303, + "jr" : 2.3242824552976926, + "dos" : 2.3242824552976926, + "bjarnason" : 2.3242824552976926, + "tailor" : 2.0232524596337114, + "js" : 2.0232524596337114, + "kathi" : 2.3242824552976926, + "ullman" : 2.0232524596337114, + "robert" : 1.421192468305749, + "world" : 1.8471612005780302, + "file" : 2.3242824552976926, + "stream" : 2.0232524596337114, + "joshua" : 1.8471612005780302, + "glenford" : 2.3242824552976926, + "steve" : 1.8471612005780302, + "foucher" : 2.3242824552976926, + "man" : 2.0232524596337114, + "map" : 2.3242824552976926, + "gayl" : 2.3242824552976926, + "klein" : 2.3242824552976926, + "lifecycl" : 2.0232524596337114, + "creator" : 2.0232524596337114, + "max" : 2.3242824552976926, + "within" : 2.3242824552976926, + "sedgewick" : 2.3242824552976926, + "health" : 2.3242824552976926, + "roedig" : 2.3242824552976926, + "off" : 2.0232524596337114, + "exercis" : 1.7222224639697303, + "discret" : 2.3242824552976926, + "explan" : 2.3242824552976926, + "platt" : 2.3242824552976926, + "stuart" : 2.3242824552976926, + "probabl" : 1.8471612005780302, + "hogan" : 2.3242824552976926, + "expans" : 2.3242824552976926, + "prakash" : 2.3242824552976926, + "cognit" : 2.0232524596337114, + "coder" : 2.3242824552976926, + "decept" : 2.3242824552976926, + "use" : 0.926342446625655, + "ponelat" : 2.3242824552976926, + "edward" : 2.3242824552976926, + "donovan" : 2.3242824552976926, + "while" : 2.3242824552976926, + "wright" : 2.3242824552976926, + "jone" : 2.3242824552976926, + "swagger" : 2.3242824552976926, + "that" : 1.8471612005780302, + "high" : 1.7222224639697303, + "host" : 2.3242824552976926, + "me" : 2.3242824552976926, + "alvin" : 2.3242824552976926, + "brian" : 1.421192468305749, + "sonmez" : 2.3242824552976926, + "noam" : 2.3242824552976926, + "ml" : 1.2828897701394677, + "administr" : 2.0232524596337114, + "brook" : 2.3242824552976926, + "textbook" : 1.3242824552976926, + "workflow" : 1.7222224639697303, + "level" : 1.7222224639697303, + "norvig" : 2.3242824552976926, + "author" : 1.479184415283436, + "tate" : 2.3242824552976926, + "gwen" : 2.3242824552976926, + "sort" : 2.3242824552976926, + "failur" : 2.3242824552976926, + "chacon" : 2.3242824552976926, + "daniel" : 2.0232524596337114, + "servic" : 1.8471612005780302, + "task" : 2.3242824552976926, + "legaci" : 2.3242824552976926, + "infer" : 2.0232524596337114, + "essay" : 1.7222224639697303, + "updat" : 2.3242824552976926, + "survey" : 2.3242824552976926, + "trevor" : 1.8471612005780302, + "dsl" : 2.3242824552976926, + "present" : 2.3242824552976926, + "kane" : 2.3242824552976926, + "luciano" : 2.3242824552976926, + "murphi" : 2.3242824552976926, + "code" : 1.0020631605637733, + "bhargava" : 2.3242824552976926, + "student" : 2.3242824552976926, + "kernighan" : 1.6253124509616739, + "paradigm" : 1.6253124509616739, + "bridg" : 2.3242824552976926, + "bos" : 2.3242824552976926, + "knaflic" : 2.3242824552976926, + "fran" : 2.3242824552976926, + "sean" : 2.3242824552976926, + "best" : 1.1781544196194547, + "schedul" : 2.3242824552976926, + "sql" : 1.479184415283436, + "head" : 2.3242824552976926, + "deni" : 2.3242824552976926, + "transform" : 1.8471612005780302, + "tadayoshi" : 2.3242824552976926, + "fundament" : 1.3700399458583679, + "leadership" : 2.3242824552976926, + "of" : 0.5608544617347554, + "oi" : 2.3242824552976926, + "dive" : 1.8471612005780302, + "tibshirani" : 2.0232524596337114, + "thoma" : 1.546131204914049, + "make" : 1.7222224639697303, + "on" : 0.7222224639697303, + "keyboard" : 2.3242824552976926, + "op" : 1.7222224639697303, + "technic" : 2.0232524596337114, + "os" : 1.8471612005780302, + "social" : 2.3242824552976926, + "anderson" : 2.3242824552976926, + "blandi" : 2.3242824552976926, + "sre" : 1.8471612005780302, + "geron" : 2.3242824552976926, + "titus" : 2.3242824552976926, + "control" : 2.0232524596337114, + "thread" : 2.3242824552976926, + "bert" : 2.3242824552976926, + "drew" : 2.3242824552976926, + "comprehens" : 0.9818597744754864, + "phoenix" : 2.3242824552976926, + "pc" : 2.3242824552976926, + "scalabl" : 1.546131204914049, + "offici" : 2.3242824552976926, + "easier" : 2.3242824552976926, + "matth" : 2.3242824552976926, + "threat" : 2.3242824552976926, + "lutz" : 2.3242824552976926, + "rubi" : 1.7222224639697303, + "inform" : 2.3242824552976926, + "wetheral" : 2.3242824552976926, + "forsgren" : 2.3242824552976926, + "about" : 2.0232524596337114, + "krug" : 2.3242824552976926, + "herbert" : 2.3242824552976926, + "environ" : 1.8471612005780302, + "crash" : 2.3242824552976926, + "cover" : 1.210339102990856, + "bank" : 2.3242824552976926, + "prabhakar" : 2.3242824552976926, + "friend" : 2.0232524596337114, + "stick" : 2.3242824552976926, + "concurr" : 1.421192468305749, + "goetz" : 2.3242824552976926, + "leighton" : 2.3242824552976926, + "11" : 2.3242824552976926, + "karl" : 2.3242824552976926, + "akidau" : 2.3242824552976926, + "14" : 2.3242824552976926, + "trench" : 2.3242824552976926, + "tsitsik" : 2.3242824552976926, + "edit" : 1.479184415283436, + "grigorik" : 2.3242824552976926, + "fluent" : 2.3242824552976926, + "impati" : 2.3242824552976926, + "metz" : 2.3242824552976926, + "empir" : 2.3242824552976926, + "includ" : 2.3242824552976926, + "badgett" : 2.3242824552976926, + "programm" : 1.421192468305749, + "qualiti" : 1.7222224639697303, + "access" : 2.3242824552976926, + "bertseka" : 2.3242824552976926, + "practition" : 2.3242824552976926, + "adkin" : 2.3242824552976926, + "languag" : 0.7222224639697303, + "into" : 2.0232524596337114, + "beyer" : 2.0232524596337114, + "ian" : 2.0232524596337114, + "porcello" : 2.3242824552976926, + "tcpip" : 2.3242824552976926, + "nygard" : 2.3242824552976926, + "mix" : 2.3242824552976926, + "key" : 2.0232524596337114, + "emphas" : 2.3242824552976926, + "communic" : 2.0232524596337114, + "evolut" : 2.3242824552976926, + "narasimha" : 2.3242824552976926, + "intern" : 2.3242824552976926, + "dougla" : 2.3242824552976926, + "dimitri" : 2.3242824552976926, + "sethi" : 2.3242824552976926, + "leiserson" : 2.3242824552976926, + "everyday" : 2.3242824552976926, + "stori" : 2.3242824552976926, + "mitnick" : 2.3242824552976926, + "pragmat" : 1.8471612005780302, + "ibm" : 2.3242824552976926, + "friedman" : 1.8471612005780302, + "resheff" : 2.3242824552976926, + "reliabl" : 1.546131204914049, + "nisan" : 2.3242824552976926, + "amit" : 2.3242824552976926, + "oper" : 1.546131204914049, + "to" : 0.42665536400725124, + "mani" : 2.3242824552976926, + "open" : 2.0232524596337114, + "gamma" : 2.3242824552976926, + "amundsen" : 2.3242824552976926, + "nand2tetri" : 2.3242824552976926, + "bishop" : 2.3242824552976926, + "rapid" : 2.3242824552976926, + "seven" : 1.8471612005780302, + "project" : 1.2451012092500677, + "gareth" : 2.3242824552976926, + "yaser" : 2.3242824552976926, + "oop" : 1.8471612005780302, + "ui" : 1.7222224639697303, + "jean" : 2.3242824552976926, + "up" : 1.8471612005780302, + "loper" : 2.3242824552976926, + "passion" : 2.3242824552976926, + "bazaar" : 2.3242824552976926, + "marjori" : 2.3242824552976926, + "ux" : 1.7222224639697303, + "59" : 2.3242824552976926, + "aggarw" : 2.3242824552976926, + "asynchron" : 2.3242824552976926, + "solut" : 1.8471612005780302, + "vaughn" : 2.0232524596337114, + "4a" : 2.3242824552976926, + "cryptograph" : 2.0232524596337114, + "narkhed" : 2.3242824552976926, + "know" : 1.8471612005780302, + "guid" : 0.8618844573987365, + "mler" : 2.3242824552976926, + "elmasri" : 2.3242824552976926, + "newman" : 2.3242824552976926, + "sklearn" : 2.3242824552976926, + "rule" : 2.3242824552976926, + "gelman" : 2.3242824552976926, + "cole" : 2.3242824552976926, + "everi" : 2.3242824552976926, + "life" : 2.3242824552976926, + "kim" : 1.8471612005780302, + "peopl" : 2.3242824552976926, + "docker" : 2.3242824552976926, + "brett" : 2.3242824552976926, + "common" : 2.0232524596337114, + "lien" : 2.3242824552976926, + "magnum" : 2.3242824552976926, + "gan" : 2.3242824552976926, + "appli" : 1.210339102990856, + "queri" : 2.0232524596337114, + "viega" : 2.3242824552976926, + "bate" : 2.3242824552976926, + "ritchi" : 2.3242824552976926, + "gradual" : 2.3242824552976926, + "wide" : 2.0232524596337114, + "guido" : 2.3242824552976926, + "org" : 2.3242824552976926, + "christoph" : 2.0232524596337114, + "mythic" : 2.3242824552976926, + "russel" : 2.3242824552976926, + "recognit" : 1.8471612005780302, + "sandi" : 2.3242824552976926, + "distribut" : 1.421192468305749, + "fowler" : 1.546131204914049, + "graduat" : 2.3242824552976926, + "hightow" : 2.3242824552976926, + "laakmann" : 2.3242824552976926, + "norman" : 2.3242824552976926, + "layout" : 2.0232524596337114, + "bass" : 2.3242824552976926, + "bentley" : 2.3242824552976926, + "mari" : 2.3242824552976926, + "jason" : 1.8471612005780302, + "microcomput" : 2.3242824552976926, + "mark" : 2.0232524596337114, + "rajaraman" : 2.3242824552976926, + "base" : 2.0232524596337114, + "anand" : 2.3242824552976926, + "intermedi" : 2.3242824552976926, + "sourc" : 2.0232524596337114, + "camill" : 2.3242824552976926, + "appel" : 2.3242824552976926, + "ecosystem" : 2.3242824552976926, + "gedeck" : 2.3242824552976926, + "aziz" : 2.3242824552976926, + "react" : 2.3242824552976926, + "dragon" : 2.3242824552976926, + "ye" : 2.3242824552976926, + "type" : 2.3242824552976926, + "heineman" : 2.3242824552976926, + "helm" : 2.3242824552976926, + "theori" : 1.2828897701394677, + "chiusano" : 2.3242824552976926, + "techniqu" : 0.8191324769777867, + "vulner" : 2.3242824552976926, + "hack" : 2.3242824552976926, + "problem" : 1.479184415283436, + "petoff" : 2.3242824552976926, + "ambler" : 2.3242824552976926, + "vae" : 2.3242824552976926, + "proof" : 2.3242824552976926, + "yu" : 2.3242824552976926, + "97" : 2.3242824552976926, + "limoncelli" : 2.0232524596337114, + "profession" : 1.7222224639697303, + "goal" : 2.3242824552976926, + "method" : 1.546131204914049, + "work" : 1.8471612005780302, + "exist" : 2.3242824552976926, + "insight" : 2.0232524596337114, + "betsi" : 2.0232524596337114, + "concis" : 1.546131204914049, + "organiz" : 2.3242824552976926, + "denni" : 2.3242824552976926, + "math" : 1.7222224639697303, + "coverag" : 2.0232524596337114, + "reusabl" : 2.3242824552976926, + "educ" : 1.7222224639697303, + "architect" : 2.0232524596337114, + "pascal" : 1.6253124509616739, + "iii" : 2.3242824552976926, + "gregor" : 2.3242824552976926, + "requir" : 2.3242824552976926, + "nick" : 2.3242824552976926, + "millett" : 2.3242824552976926, + "across" : 1.7222224639697303, + "lean" : 1.8471612005780302, + "slava" : 2.3242824552976926, + "kyle" : 2.0232524596337114, + "henrik" : 2.3242824552976926, + "sayer" : 2.3242824552976926, + "ilya" : 2.3242824552976926, + "statist" : 1.546131204914049, + "barber" : 2.3242824552976926, + "hasti" : 2.0232524596337114, + "myer" : 2.0232524596337114, + "abstract" : 2.0232524596337114, + "opinion" : 2.3242824552976926, + "readabl" : 2.0232524596337114, + "knuth" : 1.6253124509616739, + "site" : 2.0232524596337114, + "depth" : 1.546131204914049, + "assess" : 2.3242824552976926, + "self" : 2.3242824552976926, + "first" : 1.8471612005780302, + "sharon" : 2.3242824552976926, + "panda" : 2.3242824552976926, + "allen" : 2.3242824552976926, + "data" : 1.0455288543448638, + "klabnik" : 2.3242824552976926, + "tidwel" : 2.3242824552976926, + "herlihi" : 2.3242824552976926, + "separ" : 2.3242824552976926, + "cori" : 2.3242824552976926, + "niel" : 2.3242824552976926, + "kleppmann" : 2.3242824552976926, + "brendan" : 1.8471612005780302, + "divers" : 2.3242824552976926, + "should" : 2.3242824552976926, + "html" : 2.3242824552976926, + "from" : 1.546131204914049, + "hardwar" : 1.8471612005780302, + "bengio" : 2.3242824552976926, + "matlab" : 1.6253124509616739, + "yehezkel" : 2.3242824552976926, + "maxim" : 2.3242824552976926, + "kerievski" : 2.3242824552976926, + "like" : 2.0232524596337114, + "yablonski" : 2.3242824552976926, + "core" : 1.546131204914049, + "safe" : 1.8471612005780302, + "rubyist" : 2.3242824552976926, + "guidelin" : 1.8471612005780302, + "kuhn" : 2.0232524596337114, + "recip" : 2.0232524596337114, + "dave" : 2.3242824552976926, + "week" : 1.8471612005780302, + "ozsvald" : 2.3242824552976926, + "scala" : 1.546131204914049, + "link" : 2.3242824552976926, + "winter" : 2.3242824552976926, + "scale" : 1.7222224639697303, + "interact" : 2.0232524596337114, + "becom" : 2.3242824552976926, + "henney" : 2.3242824552976926, + "leikam" : 2.3242824552976926, + "tune" : 2.3242824552976926, + "network" : 1.479184415283436, + "christina" : 2.3242824552976926, + "rust" : 2.0232524596337114, + "git" : 2.3242824552976926, + "public" : 2.3242824552976926, + "albert" : 2.3242824552976926, + "cay" : 2.0232524596337114, + "recoveri" : 2.3242824552976926, + "provid" : 2.3242824552976926, + "tcp" : 2.0232524596337114, + "agil" : 1.8471612005780302, + "nutshel" : 2.3242824552976926, + "readi" : 2.3242824552976926, + "stephen" : 2.3242824552976926, + "intens" : 2.3242824552976926, + "harold" : 2.3242824552976926, + "8086" : 2.3242824552976926, + "follow" : 2.3242824552976926, + "improv" : 1.7222224639697303, + "tyler" : 2.3242824552976926, + "shimon" : 2.3242824552976926, + "async" : 2.0232524596337114, + "frederick" : 2.3242824552976926, + "buday" : 2.3242824552976926, + "mlop" : 2.0232524596337114, + "trade" : 2.0232524596337114, + "tdd" : 2.3242824552976926, + "growth" : 2.3242824552976926, + "disciplin" : 2.3242824552976926, + "kniberg" : 2.3242824552976926, + "stanley" : 2.3242824552976926 } } \ No newline at end of file