From 85eac0b3f90ec2876e166ad318480bdf8964b02f Mon Sep 17 00:00:00 2001 From: Luke Avedon Date: Mon, 19 Apr 2021 11:55:53 -0400 Subject: [PATCH] quotes feature now pulls in year, source. --- API.cs | 42 ++++++++++-- bin/Debug/net5.0/OxfordV2.dll | Bin 21504 -> 21504 bytes bin/Debug/net5.0/OxfordV2.pdb | Bin 14348 -> 14536 bytes logs/Log_OxfordApplication_20210419-1056.txt | 53 +++++++++++++++ logs/Log_OxfordApplication_20210419-1110.txt | 53 +++++++++++++++ logs/Log_OxfordApplication_20210419-1112.txt | 53 +++++++++++++++ logs/Log_OxfordApplication_20210419-1124.txt | 53 +++++++++++++++ logs/Log_OxfordApplication_20210419-1125.txt | 53 +++++++++++++++ logs/Log_OxfordApplication_20210419-1134.txt | 53 +++++++++++++++ logs/Log_OxfordApplication_20210419-1135.txt | 53 +++++++++++++++ logs/Log_OxfordApplication_20210419-1141.txt | 53 +++++++++++++++ logs/Log_OxfordApplication_20210419-1145.txt | 53 +++++++++++++++ logs/Log_OxfordApplication_20210419-1147.txt | 53 +++++++++++++++ logs/Log_OxfordApplication_20210419-1148.txt | 53 +++++++++++++++ logs/Log_OxfordApplication_20210419-1149.txt | 53 +++++++++++++++ logs/Log_OxfordApplication_20210419-1151.txt | 64 +++++++++++++++++++ obj/Debug/net5.0/OxfordV2.assets.cache | Bin 191 -> 191 bytes obj/Debug/net5.0/OxfordV2.dll | Bin 21504 -> 21504 bytes obj/Debug/net5.0/OxfordV2.pdb | Bin 14348 -> 14536 bytes 19 files changed, 736 insertions(+), 6 deletions(-) create mode 100644 logs/Log_OxfordApplication_20210419-1056.txt create mode 100644 logs/Log_OxfordApplication_20210419-1110.txt create mode 100644 logs/Log_OxfordApplication_20210419-1112.txt create mode 100644 logs/Log_OxfordApplication_20210419-1124.txt create mode 100644 logs/Log_OxfordApplication_20210419-1125.txt create mode 100644 logs/Log_OxfordApplication_20210419-1134.txt create mode 100644 logs/Log_OxfordApplication_20210419-1135.txt create mode 100644 logs/Log_OxfordApplication_20210419-1141.txt create mode 100644 logs/Log_OxfordApplication_20210419-1145.txt create mode 100644 logs/Log_OxfordApplication_20210419-1147.txt create mode 100644 logs/Log_OxfordApplication_20210419-1148.txt create mode 100644 logs/Log_OxfordApplication_20210419-1149.txt create mode 100644 logs/Log_OxfordApplication_20210419-1151.txt diff --git a/API.cs b/API.cs index 60ca472..b448baa 100644 --- a/API.cs +++ b/API.cs @@ -272,7 +272,41 @@ public static void APICalls(CurrentQuery query) getQuotes.RunSynchronously(); Trace.WriteLine("Ran quotations synchronously."); Trace.WriteLine("Parsing quotations JSON."); - + + JsonElement root = JSONResponse.RootElement; + JsonElement quoteData = root.GetProperty("data"); + foreach (JsonElement item in quoteData.EnumerateArray()) + { + try { + // Print the quote + JsonElement quoteInfoBlock = item.GetProperty("text"); + JsonElement actualQuote = quoteInfoBlock.GetProperty("full_text"); + + // Get the source of the quote + JsonElement quoteSourceBlock = item.GetProperty("source"); + JsonElement quoteTitle = quoteSourceBlock.GetProperty("title"); + JsonElement quoteAuthor = quoteSourceBlock.GetProperty("author"); + + + // quoteSourceBlock.TryGetProperty("author", out JsonElement quoteAuthor); + + + // Get what year the quote is from + JsonElement quoteYear = item.GetProperty("year"); + Console.WriteLine("\"{0}\", Year: {1}, Source: {2} {3}", + actualQuote.ToString(), quoteYear.ToString(), quoteAuthor.ToString(), quoteTitle.ToString()); + Console.WriteLine(); + Console.WriteLine("----Enter for more - X to exit----"); + string input = Console.ReadLine().Trim().ToLower(); + if (input == "x") + break; + } + catch (Exception ex) { + Console.WriteLine(ex); + } + + } + /* string quotesDataString = JSONResponse.RootElement.GetProperty("data").ToString(); // (?<="full_text":\s")(.*?)(?=",) var quotesRegex = new Regex("(?<=\"full_text\":\\s\")(.*?)(?=\",)"); @@ -284,12 +318,8 @@ public static void APICalls(CurrentQuery query) { string input = ""; Console.WriteLine("\"{0}\"", match.Value); - Console.WriteLine(); - Console.WriteLine("----Enter for more - X to exit----"); - input = Console.ReadLine().Trim().ToLower(); - if (input == "x") - break; } + */ Trace.WriteLine("First quote grabbed as:"); Trace.WriteLine(query.Quote); diff --git a/bin/Debug/net5.0/OxfordV2.dll b/bin/Debug/net5.0/OxfordV2.dll index 7c15fa805bb2a7371bb99665646479e5c1fc9a8f..bab246c650736413d7de193d4601bcffd1e58cd9 100644 GIT binary patch delta 6225 zcmbtY4RloHnSQ@JGxy%PLvCj7Bt!lrlY}IbOcDYFNf6tNk;EWaDj=H!g`_mas5tf# zY$zLNqIKbpQOKUm7YL^@jRXeUqms+syIkJVa?9x5DEh(&Px42#HS*+_1g?-*{ zZYH6%9(s0i^4#}%-uHXI_xriuy))^3BE3&M{8jJw{`QGC#~vsXKOLJ`Cw4kQ)cVG^ z5Up`4lm@3q)QXeNh)6}BzM16bI-o*6`prV3=kPDUYl&26@ABr%D#a8YAH9<4^HeJ0 zZ!&-7`?U~HJ6pACG3q$lokf;{(4ECZ-eeW5k_#eS7Ak9d+o{l(itjla^{!O8Rc@bC z=#E%9kr9rP6^+H%sqGVSM4%n+CZ_RFyg`|qLz8B>fkF+jc@T*v<;a_1 zFFAkV;>F2)tKvdrHkUS^{lBpHJA3@|SDniBg6S^d>0ZF@`a}z+4xih7M8Cv!rAlPt zY9RxbhBiSDU`cO*o)6BSN+q_?Iq$Djif1`dV@c}Mvru9lr&E#vEMnw>2xtw}WUpt( zjG^(U(B^Y_!{{Jg2Gc0ZdvvIl$jv^*o*v1wJ9xps@D z&4HYmo&H>nhJ7HjAh1}Ze#a5K0!!kUh}Pwp7Qg*LPK>a)NQ(LSQ;{7kMx_|eiA^j9 zq*$91m$LXCz;DNMVl9hjq_`-RQ|GgKRH|(`v5dtRq?pKw8jFuhadl4YWbr{MuFHus z=a3Zpb7Ct;ZkFOe{!LS3s$%s9sZQ{2l2cO8Vw)7F3oT@EF2Ek;oY}1rNzUaJSCS!I zVlB=O^J3M1H|;LUy6sae$rWuqioIrQLB}w!SX&*OkqGyoO7`MuNp8Cbuyi6;B=@1c z8O|g&G2;4X#L2#8J@FpgBEQ zn)&7&9DKMLl}Jq1R{wdj6C5YIvNt(D&o50aLWsSa)hl5cn1sc+=J^})$$l~yOmX(K z!V~sVOtv}0&Nfzjmd`G=z?Oj7i`lvgmP{D16X05GDFo7DSL3qnQ-E2qPXqO2YdbDA zG+7kJob(_xq$Z<~Vl@ChM~L3akuZPy?k4eTSi zNHy8PiRwAtwQ-8!?xx9L4cX^7P%bI=g5f2vbv_eHh-J=LD4gm<(|Jn#j4CISYpJJj zvzK z-_AKTOSw>(LV(a?*TWaXt%!wB5j2q*qScC(Ig6BF;`bqv2)Z>(23TY3d-iz0Bc#OxH&*yKBtx z%=My(tho_0<<3nDE1$ezPE%n~%k9~g(+!`v%!dE|hYhXSm)GNU94F`3Ep_NJ8h)j) z>FS4Z;#A#5bRO43c>Gqa9<&E;-?9xGgbrfoJ%N{js4cB* zA&E~(3`%{Yw7ZOUcnf5nH@wdyPY3cCw8wZxGwBP)Yw&(ovL#1N>S+}SxO7F-Mi5v0Q|tK-b{bHvZ5B5EQJeB2SUc{m+5DTPXi zzOEE2s@g2dl$+Ayo^s%EgYjOK@qL{!=^K;-TIcvwMqnVXD0}AlaDyu-dJ7aSO3;On*#W2{t6z zF8ZZ$9$!$N%lha8qeJo0(#Gj5DlN-0JvHnp!6qt6RC|-lKBPElw9#cgOtnT^ zT(;H|$J2`6+fkZ6;0b~ax$LW29Ltz?**CNx*r>}M)7L2mjk#&&LM}Vy`MhFLvCIC;vjwa& z%j6PLh8*jnvb0jp_l zbrQHq7>98fOer(%Y|Q^3uficUl|PO72U#pTeqR>x=b(?igq^)h7g&A1Ig5b?)d7Pz zkQmz}CM0%C{H(+ti37ANg=RZI3dt{S^G0cmzUHk4et_GnShO4SXp{;J75E$fl~gBw zjpMmOoHUkFo8S&+(OqH{^t;4OGQ$Q+2va+TcrK^__;0iqcpA7UpwbB4ZM;Pj^jzQ_ z>Z6xc?Eh!s4g!Co{*HQN5q|L@N@4rFL=rt>vsV=p6bu;R01fGkPazS<3q%lqn|A{ppf`;&afYzZsgHL%x|H)Ip7b<}F9|20rqH;}=ny+Zz0nN3C(tcE zASLh_;LGY7>Fp6bH@#v+yls3@oJESQP*h`3?8dmi0{ad1JRT@Kj0qGP2OdXf#bS^D z0c1F$ZG#9=wqQCcs)E6S+H_<=}`&?)ba#3-#0$HZJI>A26&3muau6djKh6<9_A zV3dMNl-5J9aB(xWdYW)ZjVn#Kktcwq^eV85P5^Ow!n=?Pfmcx!*g=iJ>!rRL*q)M! z5-xJOL()Di(IaGMF0!{u+6fm~>6Lb$i>#!jJ>nuO*iA}fcaeORQpgTsQQ(^5L) zA}ge@SGdSZRN56TveGW?go~{7O1sZRR?^ZQagmjAY426mr_jM(g{4DMI_x4Vr=@+y zMOMhe1w|#cOYD`HmN+i)ki^px$t&X}woB}ln9l0H^^_7yJ1#=$m6(=TihUXtHDVFA z+0`ac&-$jo{c~`6!pl;b#CJU3fITE012zR7bIwJNr%uxM#T&w#=A&xnrxygj zR^>i#i8c5hf2np(JcIA?muhc`*FHw;l`n6X=4;f^bj2TZvfyJHzl5*Smv(Yayns{n zQtd6V)OoP-*35;1iNar`?Q|RdHi5ZX-Zn}?wP`aH z3JlT!e7CWk*9U!&Zie5+^6h}u$5uxr?WATJrb=qSUEkyCOJMKB$v!OA)w!(Ue#*KQ zz{Md8X*lyQZHiBb%*ju+Yr({$L+v%%*<~*_9LwDGO8d8*xt;Y(M?Fz8Rq~i-S(z_N zR(j09liNz~7FPP(`jp{|3K1q>R1v1>#UWRAtJY}Eb^f|D=6t`ix+1g|f1kr2Uvqz^ zVs-N?b}0R%bGEZ0sz#A>!o(s8A0bm2EYlmM(C6^`lrXPw+Pb2tJWVrAYrA6Y2n}1^ zh%-&oN5a~HeknBUjiLfsF3VgFda%;}U?MrLN3e6O^f3_KN}up)kVd?k;@8p6qhqML zu6e9Jt3NcLkr$~=GY}OR1KwObE-2hFEGKV&;PRuK_TXKr48i^!NOKJ+R7 O)S3z1_>LHB*8UIMoacrB delta 6129 zcmb7I3vd+ImA$X0r@N>2nIEKi}miT3v+L81ya*^O`{FkA?jshO%}m;wk_1S{;% zv$u{}Ww5eFNt%TGQ^6-6ybuY-w_>s)TotUUF@ja8Y0&9y`-{$H-_*%3O0l_U-q1)ZSiMWC`BgQ$n#EaCyg%Q5G>er0d%aWOkBS*il|PYo*q>V$(Nv|} z9WSsXS491*SV{If!y(1F5GA2)eEVMslO%6Os)p7$g6upz4 z&fSs{NyxEPe}?R_!J%I5Ie8P?oyOFu^b-DhaSl*oCK}pXIpB6!CPr6}zlFYFq6{;kpi>cyis{bW z;Ix)6BebUpZq&p6ZoZwCS_qBLJB?f$XPt(|7XlN=KE;8us)Rl<+0-4*@nBIhBie>UeaXwK`@XoinYwanDd&(YwmMwrp~aYhPfp+fH+9Fu6L7~4MY9Lk$M^Tvv<0Yx;tqbP z(-s&(@W53=tMXL$1jc}TKwLsPzKL`U!YI6TRBb^!EKoND;vHvvf+DwWy8wi5j`$v;V%sJm!oUv9mNS%@i5US z4EJ|6apA|b)0^z68b?vZ8w&@!E!pr!C z#OEcBlX|zbA2C1s(ddb5be@!ZH zYb()l)cm#2Pd9vw3yE>N_G@1`)f)TEbU8h!?!%GVf(9YlqjSgY7+r`Cse2K+z~E7L z$w8dK{7UJpRU=Aip2{6((4|KEWXA{fbH+HbF)WQLq&}Uxx$tzB0X64J2Ph&Qps7Rb zPAZjDL7@fw5#Ix}l{|zyjnMB~9O`q~0-ad|ugQIQvwPQNljPmJp!Y>FaF2)sUzeCw*gmCH0uM_?cuHaKlKQ(+ zpXK40#ZpO13@BsK@9{Jm1St-;MwPHNI&LL^Pn$K$vKVGW2aFfgIyAn=Wv{9;z}hA2 zC(E3pD6~2*BWahfQSs16cvU8PBzgi>Rq?{Wtlv1QH7hC^F8h(T7%Y%Tv-1EYtgCoh zFUdJ+fz_yZ>EH468cL(l`5ZHLdCGA6-f`Juo@E&9doCl9B%Q9g%tFO=y5X|>JV`vd z^vN=(k;2=KL4nD{{Xb$nqbG68qOS9&dH^i$vH@d-V$vj+y=L4CHqB+9K!+C1cG;ci z(4r=nHTr}opv5j*?h{l%%U$O8CaI8CgQ5RNjHovN+UYuzz7>j}Ho9!4?_RKNF3VU+ zDx!y7w%-bXecok9)Fjs5mtFR>8UQ=!G7G*S9d_9`_=0qdSsLA6_OvS@de(IgdOE>Q z$#ok8)1hY+l8F>BW}|s71MK)?LyQxrI;FUXcFzB zDzGT=8!EFDSPA{7%N_f1)#KZY z8@>XTJBbhCtx8~zFdoOg7nDW46hT19)E+^#4IGbz)(k zFa+*CZ_W}rk;Yj+2_%4HigA|2Mu{yFKP7RM#4eylJAk7pC~P%G{nW2k0dHV?#YNhj zLXT3LsR5JbOqwbJh@T|JT63vUaQ*_?EtWywE$)^X(yOUOOweCK15P~(_%k{JJOfNw z8uigh^DR0??^zeAgU)G5dKTUQ@Ur$RS|tY&6oxk@?W+<$0CuU@5L4#+m^y^t5`t~7 z=ny|J3dQsEUuH;b5u3DR8lzr=-5(bR4aQ$u5x8ruGVu!WYTqH(e1{xdTs-Be6OW45 zuzurWySY&Gi!QSc_@dP+gjj4X1D@0F7VN!GaD_f24vE{X4Pp=(Qc&(Nw~1#l`v+nF zR=Y}RpDfEsj5kRq#d&lY7w3InLJFY^ndk{|M$Y(A%;Y=x8aQY^C;I5W)fdI1^l9-k zQ7ILiX7sTzP{A9(C|+m{DkC2-Mt&tm_d$=lxRz#mYH?J3Q>jg3KR>C|(inOfSb@h# zEhWhd_iYpg&Y^L@CQ1SqOT7))AQLsZ$ms^8eNm!E$j)43Z-ulQU1X(Q+8rXzp&f#y zjFkFZWaY55kGROnfV5A#$jU`&UviNZQaGn@k(HRV<1Vt&AniuwzBED`6_(ni)Zrp4 z8EN;q$jV`9A90bD0coFfk(GVPO}xntATjh%K!Z_1|T&R(Y{xzQ^lob$>3g>5@} zdOJ7PBD%YCZMM5+vCuhLQ);X8qsa>$z4lw#Cu>ieW%Cm>pXSm$Dkpx^?8d(})Qhux zJM}uhpH^8{v6JfPA#C(5aHpiJ2kZgZTWJ%mBRpFLS>=?AE6@67E8cA3{P}vI@8Y5d z56yhhbu^Wep{KeR&$JrvCJg<84=rY|fKTKWCr3kfXvVq@tX8xLN>zymbRQ2UkUm&q`8MXkm<9cpAt`->Xk9R>B z*F;>=4Y-^)S}FpkfBePksWbO1bxuG3QOVC24mw6_+q5CE%@vW_eEr0W^<5vncIfE# s@-yqveCXH5cC0@h5k1-Ow0>4NAGFTR`j>p{RlZiA4SxE4(O;+kA3(Gg6#xJL diff --git a/bin/Debug/net5.0/OxfordV2.pdb b/bin/Debug/net5.0/OxfordV2.pdb index c0fd66aeaee1ae0bb5180d73a7caf72691a57391..7ac059a2e99aecb72d3349ebcea06ea515db0f26 100644 GIT binary patch delta 2161 zcmYk7du$X{6vn?hJNp8i&?jy8)pqI9HYKJH!Sb+?3Wx**mUe|g*@f*^s2aCu zVn8v9BP43nS`dQ-5?KW?#-K4uVnV_nkU&5&BoZ-EjDq;Y@9YC-lkd#=-E-#5nYm|X zcWpkk<)z@JpdF}s3Yg*m{#NuC$72JLbwl8=CePb^Gyl3FQV z9CuNFRajuJ)X`RJ!F{zl0&WZLaqC#^v0$S|N3++0F0YO=ehaSnbxf;QhTX4sQuI->L_)BI!S#+ zou1Y7ImAlvDF-^fby{AT^_lx6@6YSHc(rrZB)VwxFsad1+* zt)M=q{-rAY3frQ`_tQidzZJvP8a<^fe? z`H3&jJImrb*kG2qnQ)S;Gx<+)>xE~K?*>h zo@Zi-Pd2f{WjNC3C!|{-|IR}CZVF5+@j??zfg%%2yx7DNpJHN(^G@$HEb)>o^ZKa< zO0x?*O2SkVOMz)7miTlNOT5g)5-&Hg#4AiJ@yZO#^-~SVkY^vMBvhMN3e4c1W#j3` z`9I6u*0Swv{L>8Aa!V!mu?)M(oKx^6Pvv`{64*(Q0y4ec%nZm-$)IOh8j=&UEODQS zCGKYf+4zIxMh>wrQ|}3KfLx#94)RQL0}|;eUdV+eE;MEmLhkhLu zWV|Vpzk@uBJS)Q;sAzb$E;SI_rhky zL|-{=ldpqznQsm4ao;HIP2U*pbpJ`(d;OPb*K;DQc)<@C7wpH{whTw(;W?pr2%*gb zspHmYtRJc6B?IxnFk<1M&C$qE7@@xSaA>esPLO2dV@HW`!BMgxmAg1P9P117|EX_d z`sDeMN26&Rh=(^}C_EVMiw{I2>FDxsD8|a6{%|b4&^a7mA2lq_Iz1MR#to125o0Z@Cjniz=E43eEb63tf`cW}|5ruTxCG1(zEAL_;qM zbUyi3jbGv>jqmJa33F#{nuCS45&i*b8~_E6LXo!I!L@`1c}nN|qsT zQ5${QSkbt$<{LGhXB(dlH9lL7A64T&t9`50zA?4$d$s>V_0Co8K#4lgYn*Cq(cbkZ zRp5rw4pt;@%`8;fdmTn@ut+U2YJz9AL!RV6!PhkV?!$WyzkYb!c(Y}0+CQQj*IFw6 E1FOI#3;+NC delta 2051 zcmYk7du&rx9LK-+^tM}JYz+2bn|sj0+VuhJHr!Bw0aGN%Ltw$+f-74yN7%ZxXtGVBj${cirokYhMnech&=C0p;*7?)Xnc?$7zz6Qb+>SD_WhmT=l47B zb9#2Rdw>9U zdD-^pR`SIUU%L~%v}v_*@#L+7?;8Hnzxw)B58&8TI^=XJfL&wZ!NGiO&B2qa67{4I z#X&KH`ggVsX)YcAl-pqU==jrX!)>pQ5}yq|pN<GZc6IzrCz7r zpbk+()G&3F`iMGBeMz0CzNIEAbgc5pz;?L&c2rQ6R4ujG4^&7>_T-RX!#C95RAE5F z^VBEQ50oRQ!EgB0YAs>(swIhbZlTVV6tdk3JMa{H5H2ErPJW!s!^C}L`NWs~O|kgt zoKT8+cyN-7&HB&ssD(?&1@m5XTt)Vpyoy{+u0UdPKv{tVe5|mM{t}b@SL~qAkT0)+xg9Wl1@E|S$7SDu-Hv`g9Cn=Zm(gDL*VE<&nrU|i`e?@j1GLuyXJ}P$ zoYupuV8>%Y4!3-RQIvjcWw@)oA>0$ju4t?ku}Hit+8K|)j86V5LidhnPb4nY%s?y} z?Xh4-xToc5qtscH6_0F>wDhz`JK0sZHDbKz^cu&UO)`-=BJ@$=|FV40>~xIX$*aEoePuk#Kz z=sf-9ijTx1ohO>6bH{2?$u~&xscgxFrlJ~VC|-D<;#-!ZxOsJw3-I)it>k^w;ZW&{ zReLq4sECvS*djxwop^{HEn3KJ$Ww-PM? diff --git a/logs/Log_OxfordApplication_20210419-1056.txt b/logs/Log_OxfordApplication_20210419-1056.txt new file mode 100644 index 0000000..c37e250 --- /dev/null +++ b/logs/Log_OxfordApplication_20210419-1056.txt @@ -0,0 +1,53 @@ +Leaving Main method. +Starting Main Menu +In MainMenu() +The user's input was read as: +d +Word look up selected +Found that QueryMode is set to words. +Looking up the word: +computer +Now to call the words endpoint. +Getting request keys +resetHeaders called. +App Id is: +4ebc819b +Key is: +b6b1ca0e4e766b222d56c20f43c2396f +Here are the request Headers... +Accept: application/json +app_id: 4ebc819b +app_key: b6b1ca0e4e766b222d56c20f43c2396f + +Calling the API +Called callWordsAPI +Making the request +Got responses. +Set JSONResponse to the response. +Left getWords task with the JSONResponse. +Parsing JSON +We now have the data as a string. +[{"id": "computer_nn01", "band": 9, "meta": {"created": 1891, "revised": true, "updated": 2008}, "lemma": "computer", "oed_url": "https://www.oed.com/view/Entry/37975#eid8618136", "daterange": {"end": null, "start": 1613, "obsolete": false, "rangestring": "1613\u2014"}, "etymology": {"etymons": [{"word": "compute", "language": "English", "target_id": "compute_vb01", "part_of_speech": "VB"}, {"word": "-er", "language": "English", "target_id": "er_su01", "part_of_speech": "SUFFIX"}], "etymology_type": "derivative", "etymon_language": [["English"]], "source_language": [["European languages", "Italic", "Latin"]], "etymology_summary": "Formed within English, by derivation."}, "first_use": "\u2018R. B.\u2019", "frequency": [[1750, 0.21], [1760, 0.18], [1770, 0.17], [1780, 0.16], [1790, 0.15], [1800, 0.14], [1810, 0.083], [1820, 0.077], [1830, 0.086], [1840, 0.086], [1850, 0.093], [1860, 0.11], [1870, 0.13], [1880, 0.16], [1890, 0.18], [1900, 0.21], [1910, 0.24], [1920, 0.45], [1930, 2.1], [1940, 10], [1950, 17], [1960, 40], [1970, 77], [1980, 110], [1990, 120], [2000, 120], [2010, 120]], "sense_ids": ["computer_nn01-8618138", "computer_nn01-8618177", "computer_nn01-130514973", "computer_nn01-130514976"], "definition": "An electronic device (or system of devices) which is used to store, manipulate, and communicate information, perform complex calculations, or control or regulate other devices or machines, and is capable of receiving information (data) and of processing it in accordance with variable procedural instructions (programs or software); esp. a small, self-contained one for individual use in the home or workplace, used esp. for handling text, images, music, and video, accessing and using the internet\u2026", "main_entry": true, "inflections": [{"region": "British", "inflections": [{"form": "computer", "part_of_speech": "NN"}, {"form": "computers", "part_of_speech": "NNS"}]}, {"region": "US", "inflections": [{"form": "computer", "part_of_speech": "NN"}, {"form": "computers", "part_of_speech": "NNS"}]}], "frequency_id": "computer_nn01-fq", "oed_reference": "computer, n.", "pronunciations": [{"ipa": ["k\u0259m\u02c8pju\u02d0t\u0259"], "region": "British"}, {"ipa": ["k\u0259m\u02c8pjud\u0259r"], "region": "US"}], "parts_of_speech": ["NN"], "primary_sense_id": "computer_nn01-130514973"}] +Extracted definition. +Set definition to query object. +Now to get and set the word ID. +The wordID was grabbed as: +computer_nn01In MainMenu() +The user's input was read as: +q +Get quotaions based on word selected. +API.cs is starting quotations mode. +Getting request keys +resetHeaders called. +App Id is: +4ebc819b +Key is: +b6b1ca0e4e766b222d56c20f43c2396f +Here are the request Headers... +Accept: application/json +app_id: 4ebc819b +app_key: b6b1ca0e4e766b222d56c20f43c2396f + +Called callQuotationsAPI +Making the request +{"meta": {"total": 33, "count": 33, "offset": 0, "limit": 10000, "provider": "Oxford University Press", "cite": "Oxford English Dictionary API, Oxford University Press, 0.0.0.0/oed/api/v0.2/word/computer_nn01/quotations/?offset=0&limit=10000 . Accessed 19 April 2021"}, "links": {"self": "/oed/api/v0.2/word/computer_nn01/quotations/?offset=0&limit=10000", "prev": null, "next": null, "first": "/oed/api/v0.2/word/computer_nn01/quotations/?offset=0&limit=10000", "last": "/oed/api/v0.2/word/computer_nn01/quotations/?offset=0&limit=10000"}, "data": [{"id": "computer_nn01-130522415", "text": {"keyword": "by computer", "full_text": "The value..was calculated by computer at 5\u00b0 intervals around the circle.", "keyword_offset": 26}, "year": 1962, "lemma": "by computer", "source": {"title": "Proc. Royal Soc. 1961", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid130522415", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514976", "datestring": "1962", "first_in_word": false, "oed_reference": "computer, n., sense 3b", "first_in_sense": true}, {"id": "computer_nn01-130514981", "text": {"keyword": "by computer", "full_text": "Many more exciting dates, parties, and trips. Dating by computer!", "keyword_offset": 53}, "year": 1968, "lemma": "by computer", "source": {"title": "Globe & Mail (Toronto)", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid130514981", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514976", "datestring": "1968", "first_in_word": false, "oed_reference": "computer, n., sense 3b", "first_in_sense": false}, {"id": "computer_nn01-130514991", "text": {"keyword": "by computer", "full_text": "Product mix is an economically important problem which can in many cases be handled by computer.", "keyword_offset": 84}, "year": 1970, "lemma": "by computer", "source": {"title": "Computers & Data Processing", "author": "O. Dopping", "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid130514991", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514976", "datestring": "1970", "first_in_word": false, "oed_reference": "computer, n., sense 3b", "first_in_sense": false}, {"id": "computer_nn01-130514999", "text": {"keyword": "on computer", "full_text": "Information about your relationships which can't, under the Data Protection Act, be stored on computer.", "keyword_offset": 91}, "year": 1989, "lemma": "by computer", "source": {"title": "Which?", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid130514999", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514976", "datestring": "1989", "first_in_word": false, "oed_reference": "computer, n., sense 3b", "first_in_sense": false}, {"id": "computer_nn01-130515015", "text": {"keyword": "on computer", "full_text": "Paperwork. Screw the paperwork. Ted..can do the whole thing on computer now.", "keyword_offset": 60}, "year": 1998, "lemma": "by computer", "source": {"title": "Skydiving", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid130515015", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514976", "datestring": "1998", "first_in_word": false, "oed_reference": "computer, n., sense 3b", "first_in_sense": false}, {"id": "computer_nn01-130515033", "text": {"keyword": "by computer", "full_text": "Popular plot elements can be codified by computer and laid into scripts.", "keyword_offset": 38}, "year": 2007, "lemma": "by computer", "source": {"title": "New Yorker", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid130515033", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514976", "datestring": "2007", "first_in_word": false, "oed_reference": "computer, n., sense 3b", "first_in_sense": false}, {"id": "computer_nn01-118689262", "text": {"keyword": "computer", "full_text": "I haue read the truest computer of Times, and the best Arithmetician that euer breathed, and he reduceth thy dayes into a short number.", "keyword_offset": 23}, "year": 1613, "lemma": "computer", "source": {"title": "Yong Mans Gleanings", "author": "\u2018R. B.\u2019", "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid118689262", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618138", "datestring": "1613", "first_in_word": true, "oed_reference": "computer, n., sense 1", "first_in_sense": true}, {"id": "computer_nn01-8618142", "text": {"keyword": "computers", "full_text": "The Calenders of these computers.", "keyword_offset": 23}, "year": 1646, "lemma": "computer", "source": {"title": "Pseudodoxia Epidemica", "author": "Sir T. Browne", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/37975#eid8618142", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618138", "datestring": "1646", "first_in_word": false, "oed_reference": "computer, n., sense 1", "first_in_sense": false}, {"id": "computer_nn01-8618151", "text": {"keyword": "Computer", "full_text": "A very skillful Computer, who hath given a full Demonstration of it from Rules of Arithmetick.", "keyword_offset": 16}, "year": 1704, "lemma": "computer", "source": {"title": "Tale of Tub", "author": "J. Swift", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/37975#eid8618151", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618138", "datestring": "1704", "first_in_word": false, "oed_reference": "computer, n., sense 1", "first_in_sense": false}, {"id": "computer_nn01-8618167", "text": {"keyword": "computer", "full_text": "To pay the expenses of a computer for reducing his observations.", "keyword_offset": 25}, "year": 1855, "lemma": "computer", "source": {"title": "Mem. Life I. Newton", "author": "D. Brewster", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/37975#eid8618167", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618138", "datestring": "1855", "first_in_word": false, "oed_reference": "computer, n., sense 1", "first_in_sense": false}, {"id": "computer_nn01-155922405", "text": {"keyword": "computer", "full_text": "plunged anew into the column of figures... Her pen was slowly traversing the length of the page, at an elevation of a quarter of an inch above the paper, her eyes following the course of the nib, as if it were the index of a patent computer.", "keyword_offset": 232}, "year": 1869, "lemma": "computer", "source": {"title": "Phemie's Temptation", "author": "\u2018M. Harland\u2019", "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid155922405", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618177", "datestring": "1869", "first_in_word": false, "oed_reference": "computer, n., sense 2", "first_in_sense": true}, {"id": "computer_nn01-118677966", "text": {"keyword": "computer", "full_text": "Some curious computer makes out the cost of electing a President for these United States to be four hundred millions of dollars.", "keyword_offset": 13}, "year": 1893, "lemma": "computer", "source": {"title": "Publ. Amer. Econ. Assoc.", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid118677966", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618138", "datestring": "1893", "first_in_word": false, "oed_reference": "computer, n., sense 1", "first_in_sense": false}, {"id": "computer_nn01-8618184", "text": {"keyword": "computer", "full_text": "This was..a computer made by Mr. W. Cox. He described it as of the nature of a circular slide rule.", "keyword_offset": 12}, "year": 1897, "lemma": "computer", "source": {"title": "Engineering", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid8618184", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618177", "datestring": "1897", "first_in_word": false, "oed_reference": "computer, n., sense 2", "first_in_sense": false}, {"id": "computer_nn01-8618192", "text": {"keyword": "computer", "full_text": "By means of this computer the task is performed mechanically and almost instantaneously.", "keyword_offset": 17}, "year": 1915, "lemma": "computer", "source": {"title": "Chambers's Jrnl.", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid8618192", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618177", "datestring": "1915", "first_in_word": false, "oed_reference": "computer, n., sense 2", "first_in_sense": false}, {"id": "computer_nn01-8618200", "text": {"keyword": "computers", "full_text": "The telescope drive is of an elaborate nature; the effects of changing refraction, of differential flexure and of errors in the gears are automatically allowed for by a system of \u2018computers\u2019.", "keyword_offset": 180}, "year": 1941, "lemma": "computer", "source": {"title": "Nature", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid8618200", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618177", "datestring": "1941", "first_in_word": false, "oed_reference": "computer, n., sense 2", "first_in_sense": false}, {"id": "computer_nn01-118689270", "text": {"keyword": "computers", "full_text": "Iterative methods have found favour with computers, despite an outward semblance of clumsiness which masks their solid advantages from the casual critic.", "keyword_offset": 41}, "year": 1943, "lemma": "computer", "source": {"title": "London, Edinb., & Dublin Philos. Mag.", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid118689270", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618138", "datestring": "1943", "first_in_word": false, "oed_reference": "computer, n., sense 1", "first_in_sense": false}, {"id": "computer_nn01-123616576", "text": {"keyword": "computer", "full_text": "A new electronic computer owned by the war department can add 63,895 to itself 5,000 times in a second.", "keyword_offset": 17}, "year": 1946, "lemma": "computer", "source": {"title": "Modesto (Calif.) Bee", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid123616576", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618177", "datestring": "1946", "first_in_word": false, "oed_reference": "computer, n., sense 2", "first_in_sense": false}, {"id": "computer_nn01-127026327", "text": {"keyword": "computer", "full_text": "If the computer is such that new formulas are easily set up in it, it may be economical to use it in the solution of 5 or 10 problems.", "keyword_offset": 7}, "year": 1946, "lemma": "computer", "source": {"title": "Moore School Lect.", "author": "G. Stibitz", "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid127026327", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1946", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": true}, {"id": "computer_nn01-117116056", "text": {"keyword": "computers", "full_text": "We are engaged at the RCA Laboratories in the development of a storage tube for the inner memory of electronic digital computers.", "keyword_offset": 119}, "year": 1947, "lemma": "computer", "source": {"title": "Math. Tables & Other Aids Computation", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid117116056", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1947", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-127026337", "text": {"keyword": "computer", "full_text": "The problem of constructing a computing routine or \u2018program\u2019 for a modern general purpose computer which will enable it to play chess.", "keyword_offset": 90}, "year": 1950, "lemma": "computer", "source": {"title": "Philos. Mag.", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid127026337", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1950", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-127026345", "text": {"keyword": "computer", "full_text": "We discuss the use of three types of diagnostic and servicing programs which enable us to use the computer to diagnose its own troubles.", "keyword_offset": 98}, "year": 1953, "lemma": "computer", "source": {"title": "Proc. IRE", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid127026345", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1953", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-8618245", "text": {"keyword": "computer", "full_text": "At present a computer can read, remember, do arithmetic, make elementary decisions and print its answers.", "keyword_offset": 13}, "year": 1957, "lemma": "computer", "source": {"title": "Technology", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid8618245", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1957", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-8618261", "text": {"keyword": "Computers", "full_text": "Computers are being used to speed up the production of justified tape for the operation of typesetting machines.", "keyword_offset": 0}, "year": 1963, "lemma": "computer", "source": {"title": "Publishers' Weekly", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid8618261", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1963", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-118689288", "text": {"keyword": "computer", "full_text": "He thoroughly knew the schematics of the computer. No one else had been into it replacing defective components and wiring as he had.", "keyword_offset": 41}, "year": 1966, "lemma": "computer", "source": {"title": "We can remember It for you Wholesale", "author": "P. K. Dick", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/37975#eid118689288", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1966", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-121762571", "text": {"keyword": "computer", "full_text": "To arrive at a world prediction on the rate of consumption of natural resources we have to tell the computer all the known facts, plus the variables that will modify trends and the trends themselves.", "keyword_offset": 100}, "year": 1975, "lemma": "computer", "source": {"title": "Capital", "author": "M. Duffy", "gender": "female"}, "oed_url": "https://www.oed.com/view/Entry/37975#eid121762571", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1975", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-121762580", "text": {"keyword": "computer", "full_text": "If you have bought or are about to buy a small computer or text processor, you need Cave Tab to ensure you make the most of it.", "keyword_offset": 47}, "year": 1980, "lemma": "computer", "source": {"title": "Daily Tel.", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid121762580", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1980", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-118689299", "text": {"keyword": "computers", "full_text": "These \u2018observatories\u2019\u2014some call them computers\u2014of which Stonehenge is the best known, made it possible..to predict eclipses.", "keyword_offset": 37}, "year": 1983, "lemma": "computer", "source": {"title": "Dance of Life", "author": "E. T. Hall", "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid118689299", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618177", "datestring": "1983", "first_in_word": false, "oed_reference": "computer, n., sense 2", "first_in_sense": false}, {"id": "computer_nn01-121762589", "text": {"keyword": "computer", "full_text": "Nothing is easier than catching crooks with priors. The computer does it all, matching crimes to the criminals, fingerprints to the asshole.", "keyword_offset": 56}, "year": 1985, "lemma": "computer", "source": {"title": "Onyx John", "author": "T. Ferguson", "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid121762589", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1985", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-122597347", "text": {"keyword": "computer", "full_text": "Levy bet \u \ No newline at end of file diff --git a/logs/Log_OxfordApplication_20210419-1110.txt b/logs/Log_OxfordApplication_20210419-1110.txt new file mode 100644 index 0000000..c37e250 --- /dev/null +++ b/logs/Log_OxfordApplication_20210419-1110.txt @@ -0,0 +1,53 @@ +Leaving Main method. +Starting Main Menu +In MainMenu() +The user's input was read as: +d +Word look up selected +Found that QueryMode is set to words. +Looking up the word: +computer +Now to call the words endpoint. +Getting request keys +resetHeaders called. +App Id is: +4ebc819b +Key is: +b6b1ca0e4e766b222d56c20f43c2396f +Here are the request Headers... +Accept: application/json +app_id: 4ebc819b +app_key: b6b1ca0e4e766b222d56c20f43c2396f + +Calling the API +Called callWordsAPI +Making the request +Got responses. +Set JSONResponse to the response. +Left getWords task with the JSONResponse. +Parsing JSON +We now have the data as a string. +[{"id": "computer_nn01", "band": 9, "meta": {"created": 1891, "revised": true, "updated": 2008}, "lemma": "computer", "oed_url": "https://www.oed.com/view/Entry/37975#eid8618136", "daterange": {"end": null, "start": 1613, "obsolete": false, "rangestring": "1613\u2014"}, "etymology": {"etymons": [{"word": "compute", "language": "English", "target_id": "compute_vb01", "part_of_speech": "VB"}, {"word": "-er", "language": "English", "target_id": "er_su01", "part_of_speech": "SUFFIX"}], "etymology_type": "derivative", "etymon_language": [["English"]], "source_language": [["European languages", "Italic", "Latin"]], "etymology_summary": "Formed within English, by derivation."}, "first_use": "\u2018R. B.\u2019", "frequency": [[1750, 0.21], [1760, 0.18], [1770, 0.17], [1780, 0.16], [1790, 0.15], [1800, 0.14], [1810, 0.083], [1820, 0.077], [1830, 0.086], [1840, 0.086], [1850, 0.093], [1860, 0.11], [1870, 0.13], [1880, 0.16], [1890, 0.18], [1900, 0.21], [1910, 0.24], [1920, 0.45], [1930, 2.1], [1940, 10], [1950, 17], [1960, 40], [1970, 77], [1980, 110], [1990, 120], [2000, 120], [2010, 120]], "sense_ids": ["computer_nn01-8618138", "computer_nn01-8618177", "computer_nn01-130514973", "computer_nn01-130514976"], "definition": "An electronic device (or system of devices) which is used to store, manipulate, and communicate information, perform complex calculations, or control or regulate other devices or machines, and is capable of receiving information (data) and of processing it in accordance with variable procedural instructions (programs or software); esp. a small, self-contained one for individual use in the home or workplace, used esp. for handling text, images, music, and video, accessing and using the internet\u2026", "main_entry": true, "inflections": [{"region": "British", "inflections": [{"form": "computer", "part_of_speech": "NN"}, {"form": "computers", "part_of_speech": "NNS"}]}, {"region": "US", "inflections": [{"form": "computer", "part_of_speech": "NN"}, {"form": "computers", "part_of_speech": "NNS"}]}], "frequency_id": "computer_nn01-fq", "oed_reference": "computer, n.", "pronunciations": [{"ipa": ["k\u0259m\u02c8pju\u02d0t\u0259"], "region": "British"}, {"ipa": ["k\u0259m\u02c8pjud\u0259r"], "region": "US"}], "parts_of_speech": ["NN"], "primary_sense_id": "computer_nn01-130514973"}] +Extracted definition. +Set definition to query object. +Now to get and set the word ID. +The wordID was grabbed as: +computer_nn01In MainMenu() +The user's input was read as: +q +Get quotaions based on word selected. +API.cs is starting quotations mode. +Getting request keys +resetHeaders called. +App Id is: +4ebc819b +Key is: +b6b1ca0e4e766b222d56c20f43c2396f +Here are the request Headers... +Accept: application/json +app_id: 4ebc819b +app_key: b6b1ca0e4e766b222d56c20f43c2396f + +Called callQuotationsAPI +Making the request +{"meta": {"total": 33, "count": 33, "offset": 0, "limit": 10000, "provider": "Oxford University Press", "cite": "Oxford English Dictionary API, Oxford University Press, 0.0.0.0/oed/api/v0.2/word/computer_nn01/quotations/?offset=0&limit=10000 . Accessed 19 April 2021"}, "links": {"self": "/oed/api/v0.2/word/computer_nn01/quotations/?offset=0&limit=10000", "prev": null, "next": null, "first": "/oed/api/v0.2/word/computer_nn01/quotations/?offset=0&limit=10000", "last": "/oed/api/v0.2/word/computer_nn01/quotations/?offset=0&limit=10000"}, "data": [{"id": "computer_nn01-130522415", "text": {"keyword": "by computer", "full_text": "The value..was calculated by computer at 5\u00b0 intervals around the circle.", "keyword_offset": 26}, "year": 1962, "lemma": "by computer", "source": {"title": "Proc. Royal Soc. 1961", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid130522415", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514976", "datestring": "1962", "first_in_word": false, "oed_reference": "computer, n., sense 3b", "first_in_sense": true}, {"id": "computer_nn01-130514981", "text": {"keyword": "by computer", "full_text": "Many more exciting dates, parties, and trips. Dating by computer!", "keyword_offset": 53}, "year": 1968, "lemma": "by computer", "source": {"title": "Globe & Mail (Toronto)", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid130514981", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514976", "datestring": "1968", "first_in_word": false, "oed_reference": "computer, n., sense 3b", "first_in_sense": false}, {"id": "computer_nn01-130514991", "text": {"keyword": "by computer", "full_text": "Product mix is an economically important problem which can in many cases be handled by computer.", "keyword_offset": 84}, "year": 1970, "lemma": "by computer", "source": {"title": "Computers & Data Processing", "author": "O. Dopping", "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid130514991", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514976", "datestring": "1970", "first_in_word": false, "oed_reference": "computer, n., sense 3b", "first_in_sense": false}, {"id": "computer_nn01-130514999", "text": {"keyword": "on computer", "full_text": "Information about your relationships which can't, under the Data Protection Act, be stored on computer.", "keyword_offset": 91}, "year": 1989, "lemma": "by computer", "source": {"title": "Which?", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid130514999", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514976", "datestring": "1989", "first_in_word": false, "oed_reference": "computer, n., sense 3b", "first_in_sense": false}, {"id": "computer_nn01-130515015", "text": {"keyword": "on computer", "full_text": "Paperwork. Screw the paperwork. Ted..can do the whole thing on computer now.", "keyword_offset": 60}, "year": 1998, "lemma": "by computer", "source": {"title": "Skydiving", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid130515015", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514976", "datestring": "1998", "first_in_word": false, "oed_reference": "computer, n., sense 3b", "first_in_sense": false}, {"id": "computer_nn01-130515033", "text": {"keyword": "by computer", "full_text": "Popular plot elements can be codified by computer and laid into scripts.", "keyword_offset": 38}, "year": 2007, "lemma": "by computer", "source": {"title": "New Yorker", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid130515033", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514976", "datestring": "2007", "first_in_word": false, "oed_reference": "computer, n., sense 3b", "first_in_sense": false}, {"id": "computer_nn01-118689262", "text": {"keyword": "computer", "full_text": "I haue read the truest computer of Times, and the best Arithmetician that euer breathed, and he reduceth thy dayes into a short number.", "keyword_offset": 23}, "year": 1613, "lemma": "computer", "source": {"title": "Yong Mans Gleanings", "author": "\u2018R. B.\u2019", "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid118689262", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618138", "datestring": "1613", "first_in_word": true, "oed_reference": "computer, n., sense 1", "first_in_sense": true}, {"id": "computer_nn01-8618142", "text": {"keyword": "computers", "full_text": "The Calenders of these computers.", "keyword_offset": 23}, "year": 1646, "lemma": "computer", "source": {"title": "Pseudodoxia Epidemica", "author": "Sir T. Browne", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/37975#eid8618142", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618138", "datestring": "1646", "first_in_word": false, "oed_reference": "computer, n., sense 1", "first_in_sense": false}, {"id": "computer_nn01-8618151", "text": {"keyword": "Computer", "full_text": "A very skillful Computer, who hath given a full Demonstration of it from Rules of Arithmetick.", "keyword_offset": 16}, "year": 1704, "lemma": "computer", "source": {"title": "Tale of Tub", "author": "J. Swift", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/37975#eid8618151", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618138", "datestring": "1704", "first_in_word": false, "oed_reference": "computer, n., sense 1", "first_in_sense": false}, {"id": "computer_nn01-8618167", "text": {"keyword": "computer", "full_text": "To pay the expenses of a computer for reducing his observations.", "keyword_offset": 25}, "year": 1855, "lemma": "computer", "source": {"title": "Mem. Life I. Newton", "author": "D. Brewster", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/37975#eid8618167", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618138", "datestring": "1855", "first_in_word": false, "oed_reference": "computer, n., sense 1", "first_in_sense": false}, {"id": "computer_nn01-155922405", "text": {"keyword": "computer", "full_text": "plunged anew into the column of figures... Her pen was slowly traversing the length of the page, at an elevation of a quarter of an inch above the paper, her eyes following the course of the nib, as if it were the index of a patent computer.", "keyword_offset": 232}, "year": 1869, "lemma": "computer", "source": {"title": "Phemie's Temptation", "author": "\u2018M. Harland\u2019", "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid155922405", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618177", "datestring": "1869", "first_in_word": false, "oed_reference": "computer, n., sense 2", "first_in_sense": true}, {"id": "computer_nn01-118677966", "text": {"keyword": "computer", "full_text": "Some curious computer makes out the cost of electing a President for these United States to be four hundred millions of dollars.", "keyword_offset": 13}, "year": 1893, "lemma": "computer", "source": {"title": "Publ. Amer. Econ. Assoc.", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid118677966", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618138", "datestring": "1893", "first_in_word": false, "oed_reference": "computer, n., sense 1", "first_in_sense": false}, {"id": "computer_nn01-8618184", "text": {"keyword": "computer", "full_text": "This was..a computer made by Mr. W. Cox. He described it as of the nature of a circular slide rule.", "keyword_offset": 12}, "year": 1897, "lemma": "computer", "source": {"title": "Engineering", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid8618184", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618177", "datestring": "1897", "first_in_word": false, "oed_reference": "computer, n., sense 2", "first_in_sense": false}, {"id": "computer_nn01-8618192", "text": {"keyword": "computer", "full_text": "By means of this computer the task is performed mechanically and almost instantaneously.", "keyword_offset": 17}, "year": 1915, "lemma": "computer", "source": {"title": "Chambers's Jrnl.", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid8618192", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618177", "datestring": "1915", "first_in_word": false, "oed_reference": "computer, n., sense 2", "first_in_sense": false}, {"id": "computer_nn01-8618200", "text": {"keyword": "computers", "full_text": "The telescope drive is of an elaborate nature; the effects of changing refraction, of differential flexure and of errors in the gears are automatically allowed for by a system of \u2018computers\u2019.", "keyword_offset": 180}, "year": 1941, "lemma": "computer", "source": {"title": "Nature", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid8618200", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618177", "datestring": "1941", "first_in_word": false, "oed_reference": "computer, n., sense 2", "first_in_sense": false}, {"id": "computer_nn01-118689270", "text": {"keyword": "computers", "full_text": "Iterative methods have found favour with computers, despite an outward semblance of clumsiness which masks their solid advantages from the casual critic.", "keyword_offset": 41}, "year": 1943, "lemma": "computer", "source": {"title": "London, Edinb., & Dublin Philos. Mag.", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid118689270", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618138", "datestring": "1943", "first_in_word": false, "oed_reference": "computer, n., sense 1", "first_in_sense": false}, {"id": "computer_nn01-123616576", "text": {"keyword": "computer", "full_text": "A new electronic computer owned by the war department can add 63,895 to itself 5,000 times in a second.", "keyword_offset": 17}, "year": 1946, "lemma": "computer", "source": {"title": "Modesto (Calif.) Bee", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid123616576", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618177", "datestring": "1946", "first_in_word": false, "oed_reference": "computer, n., sense 2", "first_in_sense": false}, {"id": "computer_nn01-127026327", "text": {"keyword": "computer", "full_text": "If the computer is such that new formulas are easily set up in it, it may be economical to use it in the solution of 5 or 10 problems.", "keyword_offset": 7}, "year": 1946, "lemma": "computer", "source": {"title": "Moore School Lect.", "author": "G. Stibitz", "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid127026327", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1946", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": true}, {"id": "computer_nn01-117116056", "text": {"keyword": "computers", "full_text": "We are engaged at the RCA Laboratories in the development of a storage tube for the inner memory of electronic digital computers.", "keyword_offset": 119}, "year": 1947, "lemma": "computer", "source": {"title": "Math. Tables & Other Aids Computation", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid117116056", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1947", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-127026337", "text": {"keyword": "computer", "full_text": "The problem of constructing a computing routine or \u2018program\u2019 for a modern general purpose computer which will enable it to play chess.", "keyword_offset": 90}, "year": 1950, "lemma": "computer", "source": {"title": "Philos. Mag.", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid127026337", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1950", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-127026345", "text": {"keyword": "computer", "full_text": "We discuss the use of three types of diagnostic and servicing programs which enable us to use the computer to diagnose its own troubles.", "keyword_offset": 98}, "year": 1953, "lemma": "computer", "source": {"title": "Proc. IRE", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid127026345", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1953", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-8618245", "text": {"keyword": "computer", "full_text": "At present a computer can read, remember, do arithmetic, make elementary decisions and print its answers.", "keyword_offset": 13}, "year": 1957, "lemma": "computer", "source": {"title": "Technology", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid8618245", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1957", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-8618261", "text": {"keyword": "Computers", "full_text": "Computers are being used to speed up the production of justified tape for the operation of typesetting machines.", "keyword_offset": 0}, "year": 1963, "lemma": "computer", "source": {"title": "Publishers' Weekly", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid8618261", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1963", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-118689288", "text": {"keyword": "computer", "full_text": "He thoroughly knew the schematics of the computer. No one else had been into it replacing defective components and wiring as he had.", "keyword_offset": 41}, "year": 1966, "lemma": "computer", "source": {"title": "We can remember It for you Wholesale", "author": "P. K. Dick", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/37975#eid118689288", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1966", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-121762571", "text": {"keyword": "computer", "full_text": "To arrive at a world prediction on the rate of consumption of natural resources we have to tell the computer all the known facts, plus the variables that will modify trends and the trends themselves.", "keyword_offset": 100}, "year": 1975, "lemma": "computer", "source": {"title": "Capital", "author": "M. Duffy", "gender": "female"}, "oed_url": "https://www.oed.com/view/Entry/37975#eid121762571", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1975", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-121762580", "text": {"keyword": "computer", "full_text": "If you have bought or are about to buy a small computer or text processor, you need Cave Tab to ensure you make the most of it.", "keyword_offset": 47}, "year": 1980, "lemma": "computer", "source": {"title": "Daily Tel.", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid121762580", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1980", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-118689299", "text": {"keyword": "computers", "full_text": "These \u2018observatories\u2019\u2014some call them computers\u2014of which Stonehenge is the best known, made it possible..to predict eclipses.", "keyword_offset": 37}, "year": 1983, "lemma": "computer", "source": {"title": "Dance of Life", "author": "E. T. Hall", "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid118689299", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618177", "datestring": "1983", "first_in_word": false, "oed_reference": "computer, n., sense 2", "first_in_sense": false}, {"id": "computer_nn01-121762589", "text": {"keyword": "computer", "full_text": "Nothing is easier than catching crooks with priors. The computer does it all, matching crimes to the criminals, fingerprints to the asshole.", "keyword_offset": 56}, "year": 1985, "lemma": "computer", "source": {"title": "Onyx John", "author": "T. Ferguson", "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid121762589", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1985", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-122597347", "text": {"keyword": "computer", "full_text": "Levy bet \u \ No newline at end of file diff --git a/logs/Log_OxfordApplication_20210419-1112.txt b/logs/Log_OxfordApplication_20210419-1112.txt new file mode 100644 index 0000000..c37e250 --- /dev/null +++ b/logs/Log_OxfordApplication_20210419-1112.txt @@ -0,0 +1,53 @@ +Leaving Main method. +Starting Main Menu +In MainMenu() +The user's input was read as: +d +Word look up selected +Found that QueryMode is set to words. +Looking up the word: +computer +Now to call the words endpoint. +Getting request keys +resetHeaders called. +App Id is: +4ebc819b +Key is: +b6b1ca0e4e766b222d56c20f43c2396f +Here are the request Headers... +Accept: application/json +app_id: 4ebc819b +app_key: b6b1ca0e4e766b222d56c20f43c2396f + +Calling the API +Called callWordsAPI +Making the request +Got responses. +Set JSONResponse to the response. +Left getWords task with the JSONResponse. +Parsing JSON +We now have the data as a string. +[{"id": "computer_nn01", "band": 9, "meta": {"created": 1891, "revised": true, "updated": 2008}, "lemma": "computer", "oed_url": "https://www.oed.com/view/Entry/37975#eid8618136", "daterange": {"end": null, "start": 1613, "obsolete": false, "rangestring": "1613\u2014"}, "etymology": {"etymons": [{"word": "compute", "language": "English", "target_id": "compute_vb01", "part_of_speech": "VB"}, {"word": "-er", "language": "English", "target_id": "er_su01", "part_of_speech": "SUFFIX"}], "etymology_type": "derivative", "etymon_language": [["English"]], "source_language": [["European languages", "Italic", "Latin"]], "etymology_summary": "Formed within English, by derivation."}, "first_use": "\u2018R. B.\u2019", "frequency": [[1750, 0.21], [1760, 0.18], [1770, 0.17], [1780, 0.16], [1790, 0.15], [1800, 0.14], [1810, 0.083], [1820, 0.077], [1830, 0.086], [1840, 0.086], [1850, 0.093], [1860, 0.11], [1870, 0.13], [1880, 0.16], [1890, 0.18], [1900, 0.21], [1910, 0.24], [1920, 0.45], [1930, 2.1], [1940, 10], [1950, 17], [1960, 40], [1970, 77], [1980, 110], [1990, 120], [2000, 120], [2010, 120]], "sense_ids": ["computer_nn01-8618138", "computer_nn01-8618177", "computer_nn01-130514973", "computer_nn01-130514976"], "definition": "An electronic device (or system of devices) which is used to store, manipulate, and communicate information, perform complex calculations, or control or regulate other devices or machines, and is capable of receiving information (data) and of processing it in accordance with variable procedural instructions (programs or software); esp. a small, self-contained one for individual use in the home or workplace, used esp. for handling text, images, music, and video, accessing and using the internet\u2026", "main_entry": true, "inflections": [{"region": "British", "inflections": [{"form": "computer", "part_of_speech": "NN"}, {"form": "computers", "part_of_speech": "NNS"}]}, {"region": "US", "inflections": [{"form": "computer", "part_of_speech": "NN"}, {"form": "computers", "part_of_speech": "NNS"}]}], "frequency_id": "computer_nn01-fq", "oed_reference": "computer, n.", "pronunciations": [{"ipa": ["k\u0259m\u02c8pju\u02d0t\u0259"], "region": "British"}, {"ipa": ["k\u0259m\u02c8pjud\u0259r"], "region": "US"}], "parts_of_speech": ["NN"], "primary_sense_id": "computer_nn01-130514973"}] +Extracted definition. +Set definition to query object. +Now to get and set the word ID. +The wordID was grabbed as: +computer_nn01In MainMenu() +The user's input was read as: +q +Get quotaions based on word selected. +API.cs is starting quotations mode. +Getting request keys +resetHeaders called. +App Id is: +4ebc819b +Key is: +b6b1ca0e4e766b222d56c20f43c2396f +Here are the request Headers... +Accept: application/json +app_id: 4ebc819b +app_key: b6b1ca0e4e766b222d56c20f43c2396f + +Called callQuotationsAPI +Making the request +{"meta": {"total": 33, "count": 33, "offset": 0, "limit": 10000, "provider": "Oxford University Press", "cite": "Oxford English Dictionary API, Oxford University Press, 0.0.0.0/oed/api/v0.2/word/computer_nn01/quotations/?offset=0&limit=10000 . Accessed 19 April 2021"}, "links": {"self": "/oed/api/v0.2/word/computer_nn01/quotations/?offset=0&limit=10000", "prev": null, "next": null, "first": "/oed/api/v0.2/word/computer_nn01/quotations/?offset=0&limit=10000", "last": "/oed/api/v0.2/word/computer_nn01/quotations/?offset=0&limit=10000"}, "data": [{"id": "computer_nn01-130522415", "text": {"keyword": "by computer", "full_text": "The value..was calculated by computer at 5\u00b0 intervals around the circle.", "keyword_offset": 26}, "year": 1962, "lemma": "by computer", "source": {"title": "Proc. Royal Soc. 1961", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid130522415", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514976", "datestring": "1962", "first_in_word": false, "oed_reference": "computer, n., sense 3b", "first_in_sense": true}, {"id": "computer_nn01-130514981", "text": {"keyword": "by computer", "full_text": "Many more exciting dates, parties, and trips. Dating by computer!", "keyword_offset": 53}, "year": 1968, "lemma": "by computer", "source": {"title": "Globe & Mail (Toronto)", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid130514981", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514976", "datestring": "1968", "first_in_word": false, "oed_reference": "computer, n., sense 3b", "first_in_sense": false}, {"id": "computer_nn01-130514991", "text": {"keyword": "by computer", "full_text": "Product mix is an economically important problem which can in many cases be handled by computer.", "keyword_offset": 84}, "year": 1970, "lemma": "by computer", "source": {"title": "Computers & Data Processing", "author": "O. Dopping", "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid130514991", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514976", "datestring": "1970", "first_in_word": false, "oed_reference": "computer, n., sense 3b", "first_in_sense": false}, {"id": "computer_nn01-130514999", "text": {"keyword": "on computer", "full_text": "Information about your relationships which can't, under the Data Protection Act, be stored on computer.", "keyword_offset": 91}, "year": 1989, "lemma": "by computer", "source": {"title": "Which?", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid130514999", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514976", "datestring": "1989", "first_in_word": false, "oed_reference": "computer, n., sense 3b", "first_in_sense": false}, {"id": "computer_nn01-130515015", "text": {"keyword": "on computer", "full_text": "Paperwork. Screw the paperwork. Ted..can do the whole thing on computer now.", "keyword_offset": 60}, "year": 1998, "lemma": "by computer", "source": {"title": "Skydiving", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid130515015", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514976", "datestring": "1998", "first_in_word": false, "oed_reference": "computer, n., sense 3b", "first_in_sense": false}, {"id": "computer_nn01-130515033", "text": {"keyword": "by computer", "full_text": "Popular plot elements can be codified by computer and laid into scripts.", "keyword_offset": 38}, "year": 2007, "lemma": "by computer", "source": {"title": "New Yorker", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid130515033", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514976", "datestring": "2007", "first_in_word": false, "oed_reference": "computer, n., sense 3b", "first_in_sense": false}, {"id": "computer_nn01-118689262", "text": {"keyword": "computer", "full_text": "I haue read the truest computer of Times, and the best Arithmetician that euer breathed, and he reduceth thy dayes into a short number.", "keyword_offset": 23}, "year": 1613, "lemma": "computer", "source": {"title": "Yong Mans Gleanings", "author": "\u2018R. B.\u2019", "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid118689262", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618138", "datestring": "1613", "first_in_word": true, "oed_reference": "computer, n., sense 1", "first_in_sense": true}, {"id": "computer_nn01-8618142", "text": {"keyword": "computers", "full_text": "The Calenders of these computers.", "keyword_offset": 23}, "year": 1646, "lemma": "computer", "source": {"title": "Pseudodoxia Epidemica", "author": "Sir T. Browne", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/37975#eid8618142", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618138", "datestring": "1646", "first_in_word": false, "oed_reference": "computer, n., sense 1", "first_in_sense": false}, {"id": "computer_nn01-8618151", "text": {"keyword": "Computer", "full_text": "A very skillful Computer, who hath given a full Demonstration of it from Rules of Arithmetick.", "keyword_offset": 16}, "year": 1704, "lemma": "computer", "source": {"title": "Tale of Tub", "author": "J. Swift", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/37975#eid8618151", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618138", "datestring": "1704", "first_in_word": false, "oed_reference": "computer, n., sense 1", "first_in_sense": false}, {"id": "computer_nn01-8618167", "text": {"keyword": "computer", "full_text": "To pay the expenses of a computer for reducing his observations.", "keyword_offset": 25}, "year": 1855, "lemma": "computer", "source": {"title": "Mem. Life I. Newton", "author": "D. Brewster", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/37975#eid8618167", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618138", "datestring": "1855", "first_in_word": false, "oed_reference": "computer, n., sense 1", "first_in_sense": false}, {"id": "computer_nn01-155922405", "text": {"keyword": "computer", "full_text": "plunged anew into the column of figures... Her pen was slowly traversing the length of the page, at an elevation of a quarter of an inch above the paper, her eyes following the course of the nib, as if it were the index of a patent computer.", "keyword_offset": 232}, "year": 1869, "lemma": "computer", "source": {"title": "Phemie's Temptation", "author": "\u2018M. Harland\u2019", "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid155922405", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618177", "datestring": "1869", "first_in_word": false, "oed_reference": "computer, n., sense 2", "first_in_sense": true}, {"id": "computer_nn01-118677966", "text": {"keyword": "computer", "full_text": "Some curious computer makes out the cost of electing a President for these United States to be four hundred millions of dollars.", "keyword_offset": 13}, "year": 1893, "lemma": "computer", "source": {"title": "Publ. Amer. Econ. Assoc.", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid118677966", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618138", "datestring": "1893", "first_in_word": false, "oed_reference": "computer, n., sense 1", "first_in_sense": false}, {"id": "computer_nn01-8618184", "text": {"keyword": "computer", "full_text": "This was..a computer made by Mr. W. Cox. He described it as of the nature of a circular slide rule.", "keyword_offset": 12}, "year": 1897, "lemma": "computer", "source": {"title": "Engineering", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid8618184", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618177", "datestring": "1897", "first_in_word": false, "oed_reference": "computer, n., sense 2", "first_in_sense": false}, {"id": "computer_nn01-8618192", "text": {"keyword": "computer", "full_text": "By means of this computer the task is performed mechanically and almost instantaneously.", "keyword_offset": 17}, "year": 1915, "lemma": "computer", "source": {"title": "Chambers's Jrnl.", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid8618192", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618177", "datestring": "1915", "first_in_word": false, "oed_reference": "computer, n., sense 2", "first_in_sense": false}, {"id": "computer_nn01-8618200", "text": {"keyword": "computers", "full_text": "The telescope drive is of an elaborate nature; the effects of changing refraction, of differential flexure and of errors in the gears are automatically allowed for by a system of \u2018computers\u2019.", "keyword_offset": 180}, "year": 1941, "lemma": "computer", "source": {"title": "Nature", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid8618200", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618177", "datestring": "1941", "first_in_word": false, "oed_reference": "computer, n., sense 2", "first_in_sense": false}, {"id": "computer_nn01-118689270", "text": {"keyword": "computers", "full_text": "Iterative methods have found favour with computers, despite an outward semblance of clumsiness which masks their solid advantages from the casual critic.", "keyword_offset": 41}, "year": 1943, "lemma": "computer", "source": {"title": "London, Edinb., & Dublin Philos. Mag.", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid118689270", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618138", "datestring": "1943", "first_in_word": false, "oed_reference": "computer, n., sense 1", "first_in_sense": false}, {"id": "computer_nn01-123616576", "text": {"keyword": "computer", "full_text": "A new electronic computer owned by the war department can add 63,895 to itself 5,000 times in a second.", "keyword_offset": 17}, "year": 1946, "lemma": "computer", "source": {"title": "Modesto (Calif.) Bee", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid123616576", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618177", "datestring": "1946", "first_in_word": false, "oed_reference": "computer, n., sense 2", "first_in_sense": false}, {"id": "computer_nn01-127026327", "text": {"keyword": "computer", "full_text": "If the computer is such that new formulas are easily set up in it, it may be economical to use it in the solution of 5 or 10 problems.", "keyword_offset": 7}, "year": 1946, "lemma": "computer", "source": {"title": "Moore School Lect.", "author": "G. Stibitz", "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid127026327", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1946", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": true}, {"id": "computer_nn01-117116056", "text": {"keyword": "computers", "full_text": "We are engaged at the RCA Laboratories in the development of a storage tube for the inner memory of electronic digital computers.", "keyword_offset": 119}, "year": 1947, "lemma": "computer", "source": {"title": "Math. Tables & Other Aids Computation", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid117116056", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1947", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-127026337", "text": {"keyword": "computer", "full_text": "The problem of constructing a computing routine or \u2018program\u2019 for a modern general purpose computer which will enable it to play chess.", "keyword_offset": 90}, "year": 1950, "lemma": "computer", "source": {"title": "Philos. Mag.", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid127026337", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1950", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-127026345", "text": {"keyword": "computer", "full_text": "We discuss the use of three types of diagnostic and servicing programs which enable us to use the computer to diagnose its own troubles.", "keyword_offset": 98}, "year": 1953, "lemma": "computer", "source": {"title": "Proc. IRE", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid127026345", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1953", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-8618245", "text": {"keyword": "computer", "full_text": "At present a computer can read, remember, do arithmetic, make elementary decisions and print its answers.", "keyword_offset": 13}, "year": 1957, "lemma": "computer", "source": {"title": "Technology", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid8618245", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1957", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-8618261", "text": {"keyword": "Computers", "full_text": "Computers are being used to speed up the production of justified tape for the operation of typesetting machines.", "keyword_offset": 0}, "year": 1963, "lemma": "computer", "source": {"title": "Publishers' Weekly", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid8618261", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1963", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-118689288", "text": {"keyword": "computer", "full_text": "He thoroughly knew the schematics of the computer. No one else had been into it replacing defective components and wiring as he had.", "keyword_offset": 41}, "year": 1966, "lemma": "computer", "source": {"title": "We can remember It for you Wholesale", "author": "P. K. Dick", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/37975#eid118689288", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1966", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-121762571", "text": {"keyword": "computer", "full_text": "To arrive at a world prediction on the rate of consumption of natural resources we have to tell the computer all the known facts, plus the variables that will modify trends and the trends themselves.", "keyword_offset": 100}, "year": 1975, "lemma": "computer", "source": {"title": "Capital", "author": "M. Duffy", "gender": "female"}, "oed_url": "https://www.oed.com/view/Entry/37975#eid121762571", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1975", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-121762580", "text": {"keyword": "computer", "full_text": "If you have bought or are about to buy a small computer or text processor, you need Cave Tab to ensure you make the most of it.", "keyword_offset": 47}, "year": 1980, "lemma": "computer", "source": {"title": "Daily Tel.", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid121762580", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1980", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-118689299", "text": {"keyword": "computers", "full_text": "These \u2018observatories\u2019\u2014some call them computers\u2014of which Stonehenge is the best known, made it possible..to predict eclipses.", "keyword_offset": 37}, "year": 1983, "lemma": "computer", "source": {"title": "Dance of Life", "author": "E. T. Hall", "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid118689299", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618177", "datestring": "1983", "first_in_word": false, "oed_reference": "computer, n., sense 2", "first_in_sense": false}, {"id": "computer_nn01-121762589", "text": {"keyword": "computer", "full_text": "Nothing is easier than catching crooks with priors. The computer does it all, matching crimes to the criminals, fingerprints to the asshole.", "keyword_offset": 56}, "year": 1985, "lemma": "computer", "source": {"title": "Onyx John", "author": "T. Ferguson", "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid121762589", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1985", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-122597347", "text": {"keyword": "computer", "full_text": "Levy bet \u \ No newline at end of file diff --git a/logs/Log_OxfordApplication_20210419-1124.txt b/logs/Log_OxfordApplication_20210419-1124.txt new file mode 100644 index 0000000..c37e250 --- /dev/null +++ b/logs/Log_OxfordApplication_20210419-1124.txt @@ -0,0 +1,53 @@ +Leaving Main method. +Starting Main Menu +In MainMenu() +The user's input was read as: +d +Word look up selected +Found that QueryMode is set to words. +Looking up the word: +computer +Now to call the words endpoint. +Getting request keys +resetHeaders called. +App Id is: +4ebc819b +Key is: +b6b1ca0e4e766b222d56c20f43c2396f +Here are the request Headers... +Accept: application/json +app_id: 4ebc819b +app_key: b6b1ca0e4e766b222d56c20f43c2396f + +Calling the API +Called callWordsAPI +Making the request +Got responses. +Set JSONResponse to the response. +Left getWords task with the JSONResponse. +Parsing JSON +We now have the data as a string. +[{"id": "computer_nn01", "band": 9, "meta": {"created": 1891, "revised": true, "updated": 2008}, "lemma": "computer", "oed_url": "https://www.oed.com/view/Entry/37975#eid8618136", "daterange": {"end": null, "start": 1613, "obsolete": false, "rangestring": "1613\u2014"}, "etymology": {"etymons": [{"word": "compute", "language": "English", "target_id": "compute_vb01", "part_of_speech": "VB"}, {"word": "-er", "language": "English", "target_id": "er_su01", "part_of_speech": "SUFFIX"}], "etymology_type": "derivative", "etymon_language": [["English"]], "source_language": [["European languages", "Italic", "Latin"]], "etymology_summary": "Formed within English, by derivation."}, "first_use": "\u2018R. B.\u2019", "frequency": [[1750, 0.21], [1760, 0.18], [1770, 0.17], [1780, 0.16], [1790, 0.15], [1800, 0.14], [1810, 0.083], [1820, 0.077], [1830, 0.086], [1840, 0.086], [1850, 0.093], [1860, 0.11], [1870, 0.13], [1880, 0.16], [1890, 0.18], [1900, 0.21], [1910, 0.24], [1920, 0.45], [1930, 2.1], [1940, 10], [1950, 17], [1960, 40], [1970, 77], [1980, 110], [1990, 120], [2000, 120], [2010, 120]], "sense_ids": ["computer_nn01-8618138", "computer_nn01-8618177", "computer_nn01-130514973", "computer_nn01-130514976"], "definition": "An electronic device (or system of devices) which is used to store, manipulate, and communicate information, perform complex calculations, or control or regulate other devices or machines, and is capable of receiving information (data) and of processing it in accordance with variable procedural instructions (programs or software); esp. a small, self-contained one for individual use in the home or workplace, used esp. for handling text, images, music, and video, accessing and using the internet\u2026", "main_entry": true, "inflections": [{"region": "British", "inflections": [{"form": "computer", "part_of_speech": "NN"}, {"form": "computers", "part_of_speech": "NNS"}]}, {"region": "US", "inflections": [{"form": "computer", "part_of_speech": "NN"}, {"form": "computers", "part_of_speech": "NNS"}]}], "frequency_id": "computer_nn01-fq", "oed_reference": "computer, n.", "pronunciations": [{"ipa": ["k\u0259m\u02c8pju\u02d0t\u0259"], "region": "British"}, {"ipa": ["k\u0259m\u02c8pjud\u0259r"], "region": "US"}], "parts_of_speech": ["NN"], "primary_sense_id": "computer_nn01-130514973"}] +Extracted definition. +Set definition to query object. +Now to get and set the word ID. +The wordID was grabbed as: +computer_nn01In MainMenu() +The user's input was read as: +q +Get quotaions based on word selected. +API.cs is starting quotations mode. +Getting request keys +resetHeaders called. +App Id is: +4ebc819b +Key is: +b6b1ca0e4e766b222d56c20f43c2396f +Here are the request Headers... +Accept: application/json +app_id: 4ebc819b +app_key: b6b1ca0e4e766b222d56c20f43c2396f + +Called callQuotationsAPI +Making the request +{"meta": {"total": 33, "count": 33, "offset": 0, "limit": 10000, "provider": "Oxford University Press", "cite": "Oxford English Dictionary API, Oxford University Press, 0.0.0.0/oed/api/v0.2/word/computer_nn01/quotations/?offset=0&limit=10000 . Accessed 19 April 2021"}, "links": {"self": "/oed/api/v0.2/word/computer_nn01/quotations/?offset=0&limit=10000", "prev": null, "next": null, "first": "/oed/api/v0.2/word/computer_nn01/quotations/?offset=0&limit=10000", "last": "/oed/api/v0.2/word/computer_nn01/quotations/?offset=0&limit=10000"}, "data": [{"id": "computer_nn01-130522415", "text": {"keyword": "by computer", "full_text": "The value..was calculated by computer at 5\u00b0 intervals around the circle.", "keyword_offset": 26}, "year": 1962, "lemma": "by computer", "source": {"title": "Proc. Royal Soc. 1961", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid130522415", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514976", "datestring": "1962", "first_in_word": false, "oed_reference": "computer, n., sense 3b", "first_in_sense": true}, {"id": "computer_nn01-130514981", "text": {"keyword": "by computer", "full_text": "Many more exciting dates, parties, and trips. Dating by computer!", "keyword_offset": 53}, "year": 1968, "lemma": "by computer", "source": {"title": "Globe & Mail (Toronto)", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid130514981", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514976", "datestring": "1968", "first_in_word": false, "oed_reference": "computer, n., sense 3b", "first_in_sense": false}, {"id": "computer_nn01-130514991", "text": {"keyword": "by computer", "full_text": "Product mix is an economically important problem which can in many cases be handled by computer.", "keyword_offset": 84}, "year": 1970, "lemma": "by computer", "source": {"title": "Computers & Data Processing", "author": "O. Dopping", "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid130514991", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514976", "datestring": "1970", "first_in_word": false, "oed_reference": "computer, n., sense 3b", "first_in_sense": false}, {"id": "computer_nn01-130514999", "text": {"keyword": "on computer", "full_text": "Information about your relationships which can't, under the Data Protection Act, be stored on computer.", "keyword_offset": 91}, "year": 1989, "lemma": "by computer", "source": {"title": "Which?", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid130514999", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514976", "datestring": "1989", "first_in_word": false, "oed_reference": "computer, n., sense 3b", "first_in_sense": false}, {"id": "computer_nn01-130515015", "text": {"keyword": "on computer", "full_text": "Paperwork. Screw the paperwork. Ted..can do the whole thing on computer now.", "keyword_offset": 60}, "year": 1998, "lemma": "by computer", "source": {"title": "Skydiving", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid130515015", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514976", "datestring": "1998", "first_in_word": false, "oed_reference": "computer, n., sense 3b", "first_in_sense": false}, {"id": "computer_nn01-130515033", "text": {"keyword": "by computer", "full_text": "Popular plot elements can be codified by computer and laid into scripts.", "keyword_offset": 38}, "year": 2007, "lemma": "by computer", "source": {"title": "New Yorker", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid130515033", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514976", "datestring": "2007", "first_in_word": false, "oed_reference": "computer, n., sense 3b", "first_in_sense": false}, {"id": "computer_nn01-118689262", "text": {"keyword": "computer", "full_text": "I haue read the truest computer of Times, and the best Arithmetician that euer breathed, and he reduceth thy dayes into a short number.", "keyword_offset": 23}, "year": 1613, "lemma": "computer", "source": {"title": "Yong Mans Gleanings", "author": "\u2018R. B.\u2019", "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid118689262", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618138", "datestring": "1613", "first_in_word": true, "oed_reference": "computer, n., sense 1", "first_in_sense": true}, {"id": "computer_nn01-8618142", "text": {"keyword": "computers", "full_text": "The Calenders of these computers.", "keyword_offset": 23}, "year": 1646, "lemma": "computer", "source": {"title": "Pseudodoxia Epidemica", "author": "Sir T. Browne", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/37975#eid8618142", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618138", "datestring": "1646", "first_in_word": false, "oed_reference": "computer, n., sense 1", "first_in_sense": false}, {"id": "computer_nn01-8618151", "text": {"keyword": "Computer", "full_text": "A very skillful Computer, who hath given a full Demonstration of it from Rules of Arithmetick.", "keyword_offset": 16}, "year": 1704, "lemma": "computer", "source": {"title": "Tale of Tub", "author": "J. Swift", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/37975#eid8618151", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618138", "datestring": "1704", "first_in_word": false, "oed_reference": "computer, n., sense 1", "first_in_sense": false}, {"id": "computer_nn01-8618167", "text": {"keyword": "computer", "full_text": "To pay the expenses of a computer for reducing his observations.", "keyword_offset": 25}, "year": 1855, "lemma": "computer", "source": {"title": "Mem. Life I. Newton", "author": "D. Brewster", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/37975#eid8618167", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618138", "datestring": "1855", "first_in_word": false, "oed_reference": "computer, n., sense 1", "first_in_sense": false}, {"id": "computer_nn01-155922405", "text": {"keyword": "computer", "full_text": "plunged anew into the column of figures... Her pen was slowly traversing the length of the page, at an elevation of a quarter of an inch above the paper, her eyes following the course of the nib, as if it were the index of a patent computer.", "keyword_offset": 232}, "year": 1869, "lemma": "computer", "source": {"title": "Phemie's Temptation", "author": "\u2018M. Harland\u2019", "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid155922405", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618177", "datestring": "1869", "first_in_word": false, "oed_reference": "computer, n., sense 2", "first_in_sense": true}, {"id": "computer_nn01-118677966", "text": {"keyword": "computer", "full_text": "Some curious computer makes out the cost of electing a President for these United States to be four hundred millions of dollars.", "keyword_offset": 13}, "year": 1893, "lemma": "computer", "source": {"title": "Publ. Amer. Econ. Assoc.", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid118677966", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618138", "datestring": "1893", "first_in_word": false, "oed_reference": "computer, n., sense 1", "first_in_sense": false}, {"id": "computer_nn01-8618184", "text": {"keyword": "computer", "full_text": "This was..a computer made by Mr. W. Cox. He described it as of the nature of a circular slide rule.", "keyword_offset": 12}, "year": 1897, "lemma": "computer", "source": {"title": "Engineering", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid8618184", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618177", "datestring": "1897", "first_in_word": false, "oed_reference": "computer, n., sense 2", "first_in_sense": false}, {"id": "computer_nn01-8618192", "text": {"keyword": "computer", "full_text": "By means of this computer the task is performed mechanically and almost instantaneously.", "keyword_offset": 17}, "year": 1915, "lemma": "computer", "source": {"title": "Chambers's Jrnl.", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid8618192", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618177", "datestring": "1915", "first_in_word": false, "oed_reference": "computer, n., sense 2", "first_in_sense": false}, {"id": "computer_nn01-8618200", "text": {"keyword": "computers", "full_text": "The telescope drive is of an elaborate nature; the effects of changing refraction, of differential flexure and of errors in the gears are automatically allowed for by a system of \u2018computers\u2019.", "keyword_offset": 180}, "year": 1941, "lemma": "computer", "source": {"title": "Nature", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid8618200", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618177", "datestring": "1941", "first_in_word": false, "oed_reference": "computer, n., sense 2", "first_in_sense": false}, {"id": "computer_nn01-118689270", "text": {"keyword": "computers", "full_text": "Iterative methods have found favour with computers, despite an outward semblance of clumsiness which masks their solid advantages from the casual critic.", "keyword_offset": 41}, "year": 1943, "lemma": "computer", "source": {"title": "London, Edinb., & Dublin Philos. Mag.", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid118689270", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618138", "datestring": "1943", "first_in_word": false, "oed_reference": "computer, n., sense 1", "first_in_sense": false}, {"id": "computer_nn01-123616576", "text": {"keyword": "computer", "full_text": "A new electronic computer owned by the war department can add 63,895 to itself 5,000 times in a second.", "keyword_offset": 17}, "year": 1946, "lemma": "computer", "source": {"title": "Modesto (Calif.) Bee", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid123616576", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618177", "datestring": "1946", "first_in_word": false, "oed_reference": "computer, n., sense 2", "first_in_sense": false}, {"id": "computer_nn01-127026327", "text": {"keyword": "computer", "full_text": "If the computer is such that new formulas are easily set up in it, it may be economical to use it in the solution of 5 or 10 problems.", "keyword_offset": 7}, "year": 1946, "lemma": "computer", "source": {"title": "Moore School Lect.", "author": "G. Stibitz", "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid127026327", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1946", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": true}, {"id": "computer_nn01-117116056", "text": {"keyword": "computers", "full_text": "We are engaged at the RCA Laboratories in the development of a storage tube for the inner memory of electronic digital computers.", "keyword_offset": 119}, "year": 1947, "lemma": "computer", "source": {"title": "Math. Tables & Other Aids Computation", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid117116056", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1947", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-127026337", "text": {"keyword": "computer", "full_text": "The problem of constructing a computing routine or \u2018program\u2019 for a modern general purpose computer which will enable it to play chess.", "keyword_offset": 90}, "year": 1950, "lemma": "computer", "source": {"title": "Philos. Mag.", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid127026337", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1950", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-127026345", "text": {"keyword": "computer", "full_text": "We discuss the use of three types of diagnostic and servicing programs which enable us to use the computer to diagnose its own troubles.", "keyword_offset": 98}, "year": 1953, "lemma": "computer", "source": {"title": "Proc. IRE", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid127026345", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1953", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-8618245", "text": {"keyword": "computer", "full_text": "At present a computer can read, remember, do arithmetic, make elementary decisions and print its answers.", "keyword_offset": 13}, "year": 1957, "lemma": "computer", "source": {"title": "Technology", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid8618245", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1957", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-8618261", "text": {"keyword": "Computers", "full_text": "Computers are being used to speed up the production of justified tape for the operation of typesetting machines.", "keyword_offset": 0}, "year": 1963, "lemma": "computer", "source": {"title": "Publishers' Weekly", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid8618261", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1963", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-118689288", "text": {"keyword": "computer", "full_text": "He thoroughly knew the schematics of the computer. No one else had been into it replacing defective components and wiring as he had.", "keyword_offset": 41}, "year": 1966, "lemma": "computer", "source": {"title": "We can remember It for you Wholesale", "author": "P. K. Dick", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/37975#eid118689288", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1966", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-121762571", "text": {"keyword": "computer", "full_text": "To arrive at a world prediction on the rate of consumption of natural resources we have to tell the computer all the known facts, plus the variables that will modify trends and the trends themselves.", "keyword_offset": 100}, "year": 1975, "lemma": "computer", "source": {"title": "Capital", "author": "M. Duffy", "gender": "female"}, "oed_url": "https://www.oed.com/view/Entry/37975#eid121762571", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1975", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-121762580", "text": {"keyword": "computer", "full_text": "If you have bought or are about to buy a small computer or text processor, you need Cave Tab to ensure you make the most of it.", "keyword_offset": 47}, "year": 1980, "lemma": "computer", "source": {"title": "Daily Tel.", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid121762580", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1980", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-118689299", "text": {"keyword": "computers", "full_text": "These \u2018observatories\u2019\u2014some call them computers\u2014of which Stonehenge is the best known, made it possible..to predict eclipses.", "keyword_offset": 37}, "year": 1983, "lemma": "computer", "source": {"title": "Dance of Life", "author": "E. T. Hall", "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid118689299", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618177", "datestring": "1983", "first_in_word": false, "oed_reference": "computer, n., sense 2", "first_in_sense": false}, {"id": "computer_nn01-121762589", "text": {"keyword": "computer", "full_text": "Nothing is easier than catching crooks with priors. The computer does it all, matching crimes to the criminals, fingerprints to the asshole.", "keyword_offset": 56}, "year": 1985, "lemma": "computer", "source": {"title": "Onyx John", "author": "T. Ferguson", "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid121762589", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1985", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-122597347", "text": {"keyword": "computer", "full_text": "Levy bet \u \ No newline at end of file diff --git a/logs/Log_OxfordApplication_20210419-1125.txt b/logs/Log_OxfordApplication_20210419-1125.txt new file mode 100644 index 0000000..c37e250 --- /dev/null +++ b/logs/Log_OxfordApplication_20210419-1125.txt @@ -0,0 +1,53 @@ +Leaving Main method. +Starting Main Menu +In MainMenu() +The user's input was read as: +d +Word look up selected +Found that QueryMode is set to words. +Looking up the word: +computer +Now to call the words endpoint. +Getting request keys +resetHeaders called. +App Id is: +4ebc819b +Key is: +b6b1ca0e4e766b222d56c20f43c2396f +Here are the request Headers... +Accept: application/json +app_id: 4ebc819b +app_key: b6b1ca0e4e766b222d56c20f43c2396f + +Calling the API +Called callWordsAPI +Making the request +Got responses. +Set JSONResponse to the response. +Left getWords task with the JSONResponse. +Parsing JSON +We now have the data as a string. +[{"id": "computer_nn01", "band": 9, "meta": {"created": 1891, "revised": true, "updated": 2008}, "lemma": "computer", "oed_url": "https://www.oed.com/view/Entry/37975#eid8618136", "daterange": {"end": null, "start": 1613, "obsolete": false, "rangestring": "1613\u2014"}, "etymology": {"etymons": [{"word": "compute", "language": "English", "target_id": "compute_vb01", "part_of_speech": "VB"}, {"word": "-er", "language": "English", "target_id": "er_su01", "part_of_speech": "SUFFIX"}], "etymology_type": "derivative", "etymon_language": [["English"]], "source_language": [["European languages", "Italic", "Latin"]], "etymology_summary": "Formed within English, by derivation."}, "first_use": "\u2018R. B.\u2019", "frequency": [[1750, 0.21], [1760, 0.18], [1770, 0.17], [1780, 0.16], [1790, 0.15], [1800, 0.14], [1810, 0.083], [1820, 0.077], [1830, 0.086], [1840, 0.086], [1850, 0.093], [1860, 0.11], [1870, 0.13], [1880, 0.16], [1890, 0.18], [1900, 0.21], [1910, 0.24], [1920, 0.45], [1930, 2.1], [1940, 10], [1950, 17], [1960, 40], [1970, 77], [1980, 110], [1990, 120], [2000, 120], [2010, 120]], "sense_ids": ["computer_nn01-8618138", "computer_nn01-8618177", "computer_nn01-130514973", "computer_nn01-130514976"], "definition": "An electronic device (or system of devices) which is used to store, manipulate, and communicate information, perform complex calculations, or control or regulate other devices or machines, and is capable of receiving information (data) and of processing it in accordance with variable procedural instructions (programs or software); esp. a small, self-contained one for individual use in the home or workplace, used esp. for handling text, images, music, and video, accessing and using the internet\u2026", "main_entry": true, "inflections": [{"region": "British", "inflections": [{"form": "computer", "part_of_speech": "NN"}, {"form": "computers", "part_of_speech": "NNS"}]}, {"region": "US", "inflections": [{"form": "computer", "part_of_speech": "NN"}, {"form": "computers", "part_of_speech": "NNS"}]}], "frequency_id": "computer_nn01-fq", "oed_reference": "computer, n.", "pronunciations": [{"ipa": ["k\u0259m\u02c8pju\u02d0t\u0259"], "region": "British"}, {"ipa": ["k\u0259m\u02c8pjud\u0259r"], "region": "US"}], "parts_of_speech": ["NN"], "primary_sense_id": "computer_nn01-130514973"}] +Extracted definition. +Set definition to query object. +Now to get and set the word ID. +The wordID was grabbed as: +computer_nn01In MainMenu() +The user's input was read as: +q +Get quotaions based on word selected. +API.cs is starting quotations mode. +Getting request keys +resetHeaders called. +App Id is: +4ebc819b +Key is: +b6b1ca0e4e766b222d56c20f43c2396f +Here are the request Headers... +Accept: application/json +app_id: 4ebc819b +app_key: b6b1ca0e4e766b222d56c20f43c2396f + +Called callQuotationsAPI +Making the request +{"meta": {"total": 33, "count": 33, "offset": 0, "limit": 10000, "provider": "Oxford University Press", "cite": "Oxford English Dictionary API, Oxford University Press, 0.0.0.0/oed/api/v0.2/word/computer_nn01/quotations/?offset=0&limit=10000 . Accessed 19 April 2021"}, "links": {"self": "/oed/api/v0.2/word/computer_nn01/quotations/?offset=0&limit=10000", "prev": null, "next": null, "first": "/oed/api/v0.2/word/computer_nn01/quotations/?offset=0&limit=10000", "last": "/oed/api/v0.2/word/computer_nn01/quotations/?offset=0&limit=10000"}, "data": [{"id": "computer_nn01-130522415", "text": {"keyword": "by computer", "full_text": "The value..was calculated by computer at 5\u00b0 intervals around the circle.", "keyword_offset": 26}, "year": 1962, "lemma": "by computer", "source": {"title": "Proc. Royal Soc. 1961", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid130522415", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514976", "datestring": "1962", "first_in_word": false, "oed_reference": "computer, n., sense 3b", "first_in_sense": true}, {"id": "computer_nn01-130514981", "text": {"keyword": "by computer", "full_text": "Many more exciting dates, parties, and trips. Dating by computer!", "keyword_offset": 53}, "year": 1968, "lemma": "by computer", "source": {"title": "Globe & Mail (Toronto)", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid130514981", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514976", "datestring": "1968", "first_in_word": false, "oed_reference": "computer, n., sense 3b", "first_in_sense": false}, {"id": "computer_nn01-130514991", "text": {"keyword": "by computer", "full_text": "Product mix is an economically important problem which can in many cases be handled by computer.", "keyword_offset": 84}, "year": 1970, "lemma": "by computer", "source": {"title": "Computers & Data Processing", "author": "O. Dopping", "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid130514991", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514976", "datestring": "1970", "first_in_word": false, "oed_reference": "computer, n., sense 3b", "first_in_sense": false}, {"id": "computer_nn01-130514999", "text": {"keyword": "on computer", "full_text": "Information about your relationships which can't, under the Data Protection Act, be stored on computer.", "keyword_offset": 91}, "year": 1989, "lemma": "by computer", "source": {"title": "Which?", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid130514999", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514976", "datestring": "1989", "first_in_word": false, "oed_reference": "computer, n., sense 3b", "first_in_sense": false}, {"id": "computer_nn01-130515015", "text": {"keyword": "on computer", "full_text": "Paperwork. Screw the paperwork. Ted..can do the whole thing on computer now.", "keyword_offset": 60}, "year": 1998, "lemma": "by computer", "source": {"title": "Skydiving", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid130515015", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514976", "datestring": "1998", "first_in_word": false, "oed_reference": "computer, n., sense 3b", "first_in_sense": false}, {"id": "computer_nn01-130515033", "text": {"keyword": "by computer", "full_text": "Popular plot elements can be codified by computer and laid into scripts.", "keyword_offset": 38}, "year": 2007, "lemma": "by computer", "source": {"title": "New Yorker", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid130515033", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514976", "datestring": "2007", "first_in_word": false, "oed_reference": "computer, n., sense 3b", "first_in_sense": false}, {"id": "computer_nn01-118689262", "text": {"keyword": "computer", "full_text": "I haue read the truest computer of Times, and the best Arithmetician that euer breathed, and he reduceth thy dayes into a short number.", "keyword_offset": 23}, "year": 1613, "lemma": "computer", "source": {"title": "Yong Mans Gleanings", "author": "\u2018R. B.\u2019", "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid118689262", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618138", "datestring": "1613", "first_in_word": true, "oed_reference": "computer, n., sense 1", "first_in_sense": true}, {"id": "computer_nn01-8618142", "text": {"keyword": "computers", "full_text": "The Calenders of these computers.", "keyword_offset": 23}, "year": 1646, "lemma": "computer", "source": {"title": "Pseudodoxia Epidemica", "author": "Sir T. Browne", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/37975#eid8618142", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618138", "datestring": "1646", "first_in_word": false, "oed_reference": "computer, n., sense 1", "first_in_sense": false}, {"id": "computer_nn01-8618151", "text": {"keyword": "Computer", "full_text": "A very skillful Computer, who hath given a full Demonstration of it from Rules of Arithmetick.", "keyword_offset": 16}, "year": 1704, "lemma": "computer", "source": {"title": "Tale of Tub", "author": "J. Swift", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/37975#eid8618151", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618138", "datestring": "1704", "first_in_word": false, "oed_reference": "computer, n., sense 1", "first_in_sense": false}, {"id": "computer_nn01-8618167", "text": {"keyword": "computer", "full_text": "To pay the expenses of a computer for reducing his observations.", "keyword_offset": 25}, "year": 1855, "lemma": "computer", "source": {"title": "Mem. Life I. Newton", "author": "D. Brewster", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/37975#eid8618167", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618138", "datestring": "1855", "first_in_word": false, "oed_reference": "computer, n., sense 1", "first_in_sense": false}, {"id": "computer_nn01-155922405", "text": {"keyword": "computer", "full_text": "plunged anew into the column of figures... Her pen was slowly traversing the length of the page, at an elevation of a quarter of an inch above the paper, her eyes following the course of the nib, as if it were the index of a patent computer.", "keyword_offset": 232}, "year": 1869, "lemma": "computer", "source": {"title": "Phemie's Temptation", "author": "\u2018M. Harland\u2019", "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid155922405", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618177", "datestring": "1869", "first_in_word": false, "oed_reference": "computer, n., sense 2", "first_in_sense": true}, {"id": "computer_nn01-118677966", "text": {"keyword": "computer", "full_text": "Some curious computer makes out the cost of electing a President for these United States to be four hundred millions of dollars.", "keyword_offset": 13}, "year": 1893, "lemma": "computer", "source": {"title": "Publ. Amer. Econ. Assoc.", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid118677966", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618138", "datestring": "1893", "first_in_word": false, "oed_reference": "computer, n., sense 1", "first_in_sense": false}, {"id": "computer_nn01-8618184", "text": {"keyword": "computer", "full_text": "This was..a computer made by Mr. W. Cox. He described it as of the nature of a circular slide rule.", "keyword_offset": 12}, "year": 1897, "lemma": "computer", "source": {"title": "Engineering", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid8618184", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618177", "datestring": "1897", "first_in_word": false, "oed_reference": "computer, n., sense 2", "first_in_sense": false}, {"id": "computer_nn01-8618192", "text": {"keyword": "computer", "full_text": "By means of this computer the task is performed mechanically and almost instantaneously.", "keyword_offset": 17}, "year": 1915, "lemma": "computer", "source": {"title": "Chambers's Jrnl.", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid8618192", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618177", "datestring": "1915", "first_in_word": false, "oed_reference": "computer, n., sense 2", "first_in_sense": false}, {"id": "computer_nn01-8618200", "text": {"keyword": "computers", "full_text": "The telescope drive is of an elaborate nature; the effects of changing refraction, of differential flexure and of errors in the gears are automatically allowed for by a system of \u2018computers\u2019.", "keyword_offset": 180}, "year": 1941, "lemma": "computer", "source": {"title": "Nature", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid8618200", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618177", "datestring": "1941", "first_in_word": false, "oed_reference": "computer, n., sense 2", "first_in_sense": false}, {"id": "computer_nn01-118689270", "text": {"keyword": "computers", "full_text": "Iterative methods have found favour with computers, despite an outward semblance of clumsiness which masks their solid advantages from the casual critic.", "keyword_offset": 41}, "year": 1943, "lemma": "computer", "source": {"title": "London, Edinb., & Dublin Philos. Mag.", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid118689270", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618138", "datestring": "1943", "first_in_word": false, "oed_reference": "computer, n., sense 1", "first_in_sense": false}, {"id": "computer_nn01-123616576", "text": {"keyword": "computer", "full_text": "A new electronic computer owned by the war department can add 63,895 to itself 5,000 times in a second.", "keyword_offset": 17}, "year": 1946, "lemma": "computer", "source": {"title": "Modesto (Calif.) Bee", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid123616576", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618177", "datestring": "1946", "first_in_word": false, "oed_reference": "computer, n., sense 2", "first_in_sense": false}, {"id": "computer_nn01-127026327", "text": {"keyword": "computer", "full_text": "If the computer is such that new formulas are easily set up in it, it may be economical to use it in the solution of 5 or 10 problems.", "keyword_offset": 7}, "year": 1946, "lemma": "computer", "source": {"title": "Moore School Lect.", "author": "G. Stibitz", "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid127026327", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1946", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": true}, {"id": "computer_nn01-117116056", "text": {"keyword": "computers", "full_text": "We are engaged at the RCA Laboratories in the development of a storage tube for the inner memory of electronic digital computers.", "keyword_offset": 119}, "year": 1947, "lemma": "computer", "source": {"title": "Math. Tables & Other Aids Computation", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid117116056", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1947", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-127026337", "text": {"keyword": "computer", "full_text": "The problem of constructing a computing routine or \u2018program\u2019 for a modern general purpose computer which will enable it to play chess.", "keyword_offset": 90}, "year": 1950, "lemma": "computer", "source": {"title": "Philos. Mag.", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid127026337", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1950", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-127026345", "text": {"keyword": "computer", "full_text": "We discuss the use of three types of diagnostic and servicing programs which enable us to use the computer to diagnose its own troubles.", "keyword_offset": 98}, "year": 1953, "lemma": "computer", "source": {"title": "Proc. IRE", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid127026345", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1953", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-8618245", "text": {"keyword": "computer", "full_text": "At present a computer can read, remember, do arithmetic, make elementary decisions and print its answers.", "keyword_offset": 13}, "year": 1957, "lemma": "computer", "source": {"title": "Technology", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid8618245", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1957", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-8618261", "text": {"keyword": "Computers", "full_text": "Computers are being used to speed up the production of justified tape for the operation of typesetting machines.", "keyword_offset": 0}, "year": 1963, "lemma": "computer", "source": {"title": "Publishers' Weekly", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid8618261", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1963", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-118689288", "text": {"keyword": "computer", "full_text": "He thoroughly knew the schematics of the computer. No one else had been into it replacing defective components and wiring as he had.", "keyword_offset": 41}, "year": 1966, "lemma": "computer", "source": {"title": "We can remember It for you Wholesale", "author": "P. K. Dick", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/37975#eid118689288", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1966", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-121762571", "text": {"keyword": "computer", "full_text": "To arrive at a world prediction on the rate of consumption of natural resources we have to tell the computer all the known facts, plus the variables that will modify trends and the trends themselves.", "keyword_offset": 100}, "year": 1975, "lemma": "computer", "source": {"title": "Capital", "author": "M. Duffy", "gender": "female"}, "oed_url": "https://www.oed.com/view/Entry/37975#eid121762571", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1975", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-121762580", "text": {"keyword": "computer", "full_text": "If you have bought or are about to buy a small computer or text processor, you need Cave Tab to ensure you make the most of it.", "keyword_offset": 47}, "year": 1980, "lemma": "computer", "source": {"title": "Daily Tel.", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid121762580", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1980", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-118689299", "text": {"keyword": "computers", "full_text": "These \u2018observatories\u2019\u2014some call them computers\u2014of which Stonehenge is the best known, made it possible..to predict eclipses.", "keyword_offset": 37}, "year": 1983, "lemma": "computer", "source": {"title": "Dance of Life", "author": "E. T. Hall", "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid118689299", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618177", "datestring": "1983", "first_in_word": false, "oed_reference": "computer, n., sense 2", "first_in_sense": false}, {"id": "computer_nn01-121762589", "text": {"keyword": "computer", "full_text": "Nothing is easier than catching crooks with priors. The computer does it all, matching crimes to the criminals, fingerprints to the asshole.", "keyword_offset": 56}, "year": 1985, "lemma": "computer", "source": {"title": "Onyx John", "author": "T. Ferguson", "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid121762589", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1985", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-122597347", "text": {"keyword": "computer", "full_text": "Levy bet \u \ No newline at end of file diff --git a/logs/Log_OxfordApplication_20210419-1134.txt b/logs/Log_OxfordApplication_20210419-1134.txt new file mode 100644 index 0000000..c37e250 --- /dev/null +++ b/logs/Log_OxfordApplication_20210419-1134.txt @@ -0,0 +1,53 @@ +Leaving Main method. +Starting Main Menu +In MainMenu() +The user's input was read as: +d +Word look up selected +Found that QueryMode is set to words. +Looking up the word: +computer +Now to call the words endpoint. +Getting request keys +resetHeaders called. +App Id is: +4ebc819b +Key is: +b6b1ca0e4e766b222d56c20f43c2396f +Here are the request Headers... +Accept: application/json +app_id: 4ebc819b +app_key: b6b1ca0e4e766b222d56c20f43c2396f + +Calling the API +Called callWordsAPI +Making the request +Got responses. +Set JSONResponse to the response. +Left getWords task with the JSONResponse. +Parsing JSON +We now have the data as a string. +[{"id": "computer_nn01", "band": 9, "meta": {"created": 1891, "revised": true, "updated": 2008}, "lemma": "computer", "oed_url": "https://www.oed.com/view/Entry/37975#eid8618136", "daterange": {"end": null, "start": 1613, "obsolete": false, "rangestring": "1613\u2014"}, "etymology": {"etymons": [{"word": "compute", "language": "English", "target_id": "compute_vb01", "part_of_speech": "VB"}, {"word": "-er", "language": "English", "target_id": "er_su01", "part_of_speech": "SUFFIX"}], "etymology_type": "derivative", "etymon_language": [["English"]], "source_language": [["European languages", "Italic", "Latin"]], "etymology_summary": "Formed within English, by derivation."}, "first_use": "\u2018R. B.\u2019", "frequency": [[1750, 0.21], [1760, 0.18], [1770, 0.17], [1780, 0.16], [1790, 0.15], [1800, 0.14], [1810, 0.083], [1820, 0.077], [1830, 0.086], [1840, 0.086], [1850, 0.093], [1860, 0.11], [1870, 0.13], [1880, 0.16], [1890, 0.18], [1900, 0.21], [1910, 0.24], [1920, 0.45], [1930, 2.1], [1940, 10], [1950, 17], [1960, 40], [1970, 77], [1980, 110], [1990, 120], [2000, 120], [2010, 120]], "sense_ids": ["computer_nn01-8618138", "computer_nn01-8618177", "computer_nn01-130514973", "computer_nn01-130514976"], "definition": "An electronic device (or system of devices) which is used to store, manipulate, and communicate information, perform complex calculations, or control or regulate other devices or machines, and is capable of receiving information (data) and of processing it in accordance with variable procedural instructions (programs or software); esp. a small, self-contained one for individual use in the home or workplace, used esp. for handling text, images, music, and video, accessing and using the internet\u2026", "main_entry": true, "inflections": [{"region": "British", "inflections": [{"form": "computer", "part_of_speech": "NN"}, {"form": "computers", "part_of_speech": "NNS"}]}, {"region": "US", "inflections": [{"form": "computer", "part_of_speech": "NN"}, {"form": "computers", "part_of_speech": "NNS"}]}], "frequency_id": "computer_nn01-fq", "oed_reference": "computer, n.", "pronunciations": [{"ipa": ["k\u0259m\u02c8pju\u02d0t\u0259"], "region": "British"}, {"ipa": ["k\u0259m\u02c8pjud\u0259r"], "region": "US"}], "parts_of_speech": ["NN"], "primary_sense_id": "computer_nn01-130514973"}] +Extracted definition. +Set definition to query object. +Now to get and set the word ID. +The wordID was grabbed as: +computer_nn01In MainMenu() +The user's input was read as: +q +Get quotaions based on word selected. +API.cs is starting quotations mode. +Getting request keys +resetHeaders called. +App Id is: +4ebc819b +Key is: +b6b1ca0e4e766b222d56c20f43c2396f +Here are the request Headers... +Accept: application/json +app_id: 4ebc819b +app_key: b6b1ca0e4e766b222d56c20f43c2396f + +Called callQuotationsAPI +Making the request +{"meta": {"total": 33, "count": 33, "offset": 0, "limit": 10000, "provider": "Oxford University Press", "cite": "Oxford English Dictionary API, Oxford University Press, 0.0.0.0/oed/api/v0.2/word/computer_nn01/quotations/?offset=0&limit=10000 . Accessed 19 April 2021"}, "links": {"self": "/oed/api/v0.2/word/computer_nn01/quotations/?offset=0&limit=10000", "prev": null, "next": null, "first": "/oed/api/v0.2/word/computer_nn01/quotations/?offset=0&limit=10000", "last": "/oed/api/v0.2/word/computer_nn01/quotations/?offset=0&limit=10000"}, "data": [{"id": "computer_nn01-130522415", "text": {"keyword": "by computer", "full_text": "The value..was calculated by computer at 5\u00b0 intervals around the circle.", "keyword_offset": 26}, "year": 1962, "lemma": "by computer", "source": {"title": "Proc. Royal Soc. 1961", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid130522415", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514976", "datestring": "1962", "first_in_word": false, "oed_reference": "computer, n., sense 3b", "first_in_sense": true}, {"id": "computer_nn01-130514981", "text": {"keyword": "by computer", "full_text": "Many more exciting dates, parties, and trips. Dating by computer!", "keyword_offset": 53}, "year": 1968, "lemma": "by computer", "source": {"title": "Globe & Mail (Toronto)", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid130514981", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514976", "datestring": "1968", "first_in_word": false, "oed_reference": "computer, n., sense 3b", "first_in_sense": false}, {"id": "computer_nn01-130514991", "text": {"keyword": "by computer", "full_text": "Product mix is an economically important problem which can in many cases be handled by computer.", "keyword_offset": 84}, "year": 1970, "lemma": "by computer", "source": {"title": "Computers & Data Processing", "author": "O. Dopping", "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid130514991", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514976", "datestring": "1970", "first_in_word": false, "oed_reference": "computer, n., sense 3b", "first_in_sense": false}, {"id": "computer_nn01-130514999", "text": {"keyword": "on computer", "full_text": "Information about your relationships which can't, under the Data Protection Act, be stored on computer.", "keyword_offset": 91}, "year": 1989, "lemma": "by computer", "source": {"title": "Which?", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid130514999", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514976", "datestring": "1989", "first_in_word": false, "oed_reference": "computer, n., sense 3b", "first_in_sense": false}, {"id": "computer_nn01-130515015", "text": {"keyword": "on computer", "full_text": "Paperwork. Screw the paperwork. Ted..can do the whole thing on computer now.", "keyword_offset": 60}, "year": 1998, "lemma": "by computer", "source": {"title": "Skydiving", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid130515015", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514976", "datestring": "1998", "first_in_word": false, "oed_reference": "computer, n., sense 3b", "first_in_sense": false}, {"id": "computer_nn01-130515033", "text": {"keyword": "by computer", "full_text": "Popular plot elements can be codified by computer and laid into scripts.", "keyword_offset": 38}, "year": 2007, "lemma": "by computer", "source": {"title": "New Yorker", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid130515033", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514976", "datestring": "2007", "first_in_word": false, "oed_reference": "computer, n., sense 3b", "first_in_sense": false}, {"id": "computer_nn01-118689262", "text": {"keyword": "computer", "full_text": "I haue read the truest computer of Times, and the best Arithmetician that euer breathed, and he reduceth thy dayes into a short number.", "keyword_offset": 23}, "year": 1613, "lemma": "computer", "source": {"title": "Yong Mans Gleanings", "author": "\u2018R. B.\u2019", "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid118689262", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618138", "datestring": "1613", "first_in_word": true, "oed_reference": "computer, n., sense 1", "first_in_sense": true}, {"id": "computer_nn01-8618142", "text": {"keyword": "computers", "full_text": "The Calenders of these computers.", "keyword_offset": 23}, "year": 1646, "lemma": "computer", "source": {"title": "Pseudodoxia Epidemica", "author": "Sir T. Browne", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/37975#eid8618142", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618138", "datestring": "1646", "first_in_word": false, "oed_reference": "computer, n., sense 1", "first_in_sense": false}, {"id": "computer_nn01-8618151", "text": {"keyword": "Computer", "full_text": "A very skillful Computer, who hath given a full Demonstration of it from Rules of Arithmetick.", "keyword_offset": 16}, "year": 1704, "lemma": "computer", "source": {"title": "Tale of Tub", "author": "J. Swift", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/37975#eid8618151", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618138", "datestring": "1704", "first_in_word": false, "oed_reference": "computer, n., sense 1", "first_in_sense": false}, {"id": "computer_nn01-8618167", "text": {"keyword": "computer", "full_text": "To pay the expenses of a computer for reducing his observations.", "keyword_offset": 25}, "year": 1855, "lemma": "computer", "source": {"title": "Mem. Life I. Newton", "author": "D. Brewster", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/37975#eid8618167", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618138", "datestring": "1855", "first_in_word": false, "oed_reference": "computer, n., sense 1", "first_in_sense": false}, {"id": "computer_nn01-155922405", "text": {"keyword": "computer", "full_text": "plunged anew into the column of figures... Her pen was slowly traversing the length of the page, at an elevation of a quarter of an inch above the paper, her eyes following the course of the nib, as if it were the index of a patent computer.", "keyword_offset": 232}, "year": 1869, "lemma": "computer", "source": {"title": "Phemie's Temptation", "author": "\u2018M. Harland\u2019", "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid155922405", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618177", "datestring": "1869", "first_in_word": false, "oed_reference": "computer, n., sense 2", "first_in_sense": true}, {"id": "computer_nn01-118677966", "text": {"keyword": "computer", "full_text": "Some curious computer makes out the cost of electing a President for these United States to be four hundred millions of dollars.", "keyword_offset": 13}, "year": 1893, "lemma": "computer", "source": {"title": "Publ. Amer. Econ. Assoc.", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid118677966", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618138", "datestring": "1893", "first_in_word": false, "oed_reference": "computer, n., sense 1", "first_in_sense": false}, {"id": "computer_nn01-8618184", "text": {"keyword": "computer", "full_text": "This was..a computer made by Mr. W. Cox. He described it as of the nature of a circular slide rule.", "keyword_offset": 12}, "year": 1897, "lemma": "computer", "source": {"title": "Engineering", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid8618184", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618177", "datestring": "1897", "first_in_word": false, "oed_reference": "computer, n., sense 2", "first_in_sense": false}, {"id": "computer_nn01-8618192", "text": {"keyword": "computer", "full_text": "By means of this computer the task is performed mechanically and almost instantaneously.", "keyword_offset": 17}, "year": 1915, "lemma": "computer", "source": {"title": "Chambers's Jrnl.", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid8618192", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618177", "datestring": "1915", "first_in_word": false, "oed_reference": "computer, n., sense 2", "first_in_sense": false}, {"id": "computer_nn01-8618200", "text": {"keyword": "computers", "full_text": "The telescope drive is of an elaborate nature; the effects of changing refraction, of differential flexure and of errors in the gears are automatically allowed for by a system of \u2018computers\u2019.", "keyword_offset": 180}, "year": 1941, "lemma": "computer", "source": {"title": "Nature", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid8618200", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618177", "datestring": "1941", "first_in_word": false, "oed_reference": "computer, n., sense 2", "first_in_sense": false}, {"id": "computer_nn01-118689270", "text": {"keyword": "computers", "full_text": "Iterative methods have found favour with computers, despite an outward semblance of clumsiness which masks their solid advantages from the casual critic.", "keyword_offset": 41}, "year": 1943, "lemma": "computer", "source": {"title": "London, Edinb., & Dublin Philos. Mag.", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid118689270", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618138", "datestring": "1943", "first_in_word": false, "oed_reference": "computer, n., sense 1", "first_in_sense": false}, {"id": "computer_nn01-123616576", "text": {"keyword": "computer", "full_text": "A new electronic computer owned by the war department can add 63,895 to itself 5,000 times in a second.", "keyword_offset": 17}, "year": 1946, "lemma": "computer", "source": {"title": "Modesto (Calif.) Bee", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid123616576", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618177", "datestring": "1946", "first_in_word": false, "oed_reference": "computer, n., sense 2", "first_in_sense": false}, {"id": "computer_nn01-127026327", "text": {"keyword": "computer", "full_text": "If the computer is such that new formulas are easily set up in it, it may be economical to use it in the solution of 5 or 10 problems.", "keyword_offset": 7}, "year": 1946, "lemma": "computer", "source": {"title": "Moore School Lect.", "author": "G. Stibitz", "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid127026327", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1946", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": true}, {"id": "computer_nn01-117116056", "text": {"keyword": "computers", "full_text": "We are engaged at the RCA Laboratories in the development of a storage tube for the inner memory of electronic digital computers.", "keyword_offset": 119}, "year": 1947, "lemma": "computer", "source": {"title": "Math. Tables & Other Aids Computation", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid117116056", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1947", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-127026337", "text": {"keyword": "computer", "full_text": "The problem of constructing a computing routine or \u2018program\u2019 for a modern general purpose computer which will enable it to play chess.", "keyword_offset": 90}, "year": 1950, "lemma": "computer", "source": {"title": "Philos. Mag.", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid127026337", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1950", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-127026345", "text": {"keyword": "computer", "full_text": "We discuss the use of three types of diagnostic and servicing programs which enable us to use the computer to diagnose its own troubles.", "keyword_offset": 98}, "year": 1953, "lemma": "computer", "source": {"title": "Proc. IRE", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid127026345", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1953", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-8618245", "text": {"keyword": "computer", "full_text": "At present a computer can read, remember, do arithmetic, make elementary decisions and print its answers.", "keyword_offset": 13}, "year": 1957, "lemma": "computer", "source": {"title": "Technology", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid8618245", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1957", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-8618261", "text": {"keyword": "Computers", "full_text": "Computers are being used to speed up the production of justified tape for the operation of typesetting machines.", "keyword_offset": 0}, "year": 1963, "lemma": "computer", "source": {"title": "Publishers' Weekly", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid8618261", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1963", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-118689288", "text": {"keyword": "computer", "full_text": "He thoroughly knew the schematics of the computer. No one else had been into it replacing defective components and wiring as he had.", "keyword_offset": 41}, "year": 1966, "lemma": "computer", "source": {"title": "We can remember It for you Wholesale", "author": "P. K. Dick", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/37975#eid118689288", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1966", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-121762571", "text": {"keyword": "computer", "full_text": "To arrive at a world prediction on the rate of consumption of natural resources we have to tell the computer all the known facts, plus the variables that will modify trends and the trends themselves.", "keyword_offset": 100}, "year": 1975, "lemma": "computer", "source": {"title": "Capital", "author": "M. Duffy", "gender": "female"}, "oed_url": "https://www.oed.com/view/Entry/37975#eid121762571", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1975", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-121762580", "text": {"keyword": "computer", "full_text": "If you have bought or are about to buy a small computer or text processor, you need Cave Tab to ensure you make the most of it.", "keyword_offset": 47}, "year": 1980, "lemma": "computer", "source": {"title": "Daily Tel.", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid121762580", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1980", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-118689299", "text": {"keyword": "computers", "full_text": "These \u2018observatories\u2019\u2014some call them computers\u2014of which Stonehenge is the best known, made it possible..to predict eclipses.", "keyword_offset": 37}, "year": 1983, "lemma": "computer", "source": {"title": "Dance of Life", "author": "E. T. Hall", "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid118689299", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618177", "datestring": "1983", "first_in_word": false, "oed_reference": "computer, n., sense 2", "first_in_sense": false}, {"id": "computer_nn01-121762589", "text": {"keyword": "computer", "full_text": "Nothing is easier than catching crooks with priors. The computer does it all, matching crimes to the criminals, fingerprints to the asshole.", "keyword_offset": 56}, "year": 1985, "lemma": "computer", "source": {"title": "Onyx John", "author": "T. Ferguson", "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid121762589", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1985", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-122597347", "text": {"keyword": "computer", "full_text": "Levy bet \u \ No newline at end of file diff --git a/logs/Log_OxfordApplication_20210419-1135.txt b/logs/Log_OxfordApplication_20210419-1135.txt new file mode 100644 index 0000000..c37e250 --- /dev/null +++ b/logs/Log_OxfordApplication_20210419-1135.txt @@ -0,0 +1,53 @@ +Leaving Main method. +Starting Main Menu +In MainMenu() +The user's input was read as: +d +Word look up selected +Found that QueryMode is set to words. +Looking up the word: +computer +Now to call the words endpoint. +Getting request keys +resetHeaders called. +App Id is: +4ebc819b +Key is: +b6b1ca0e4e766b222d56c20f43c2396f +Here are the request Headers... +Accept: application/json +app_id: 4ebc819b +app_key: b6b1ca0e4e766b222d56c20f43c2396f + +Calling the API +Called callWordsAPI +Making the request +Got responses. +Set JSONResponse to the response. +Left getWords task with the JSONResponse. +Parsing JSON +We now have the data as a string. +[{"id": "computer_nn01", "band": 9, "meta": {"created": 1891, "revised": true, "updated": 2008}, "lemma": "computer", "oed_url": "https://www.oed.com/view/Entry/37975#eid8618136", "daterange": {"end": null, "start": 1613, "obsolete": false, "rangestring": "1613\u2014"}, "etymology": {"etymons": [{"word": "compute", "language": "English", "target_id": "compute_vb01", "part_of_speech": "VB"}, {"word": "-er", "language": "English", "target_id": "er_su01", "part_of_speech": "SUFFIX"}], "etymology_type": "derivative", "etymon_language": [["English"]], "source_language": [["European languages", "Italic", "Latin"]], "etymology_summary": "Formed within English, by derivation."}, "first_use": "\u2018R. B.\u2019", "frequency": [[1750, 0.21], [1760, 0.18], [1770, 0.17], [1780, 0.16], [1790, 0.15], [1800, 0.14], [1810, 0.083], [1820, 0.077], [1830, 0.086], [1840, 0.086], [1850, 0.093], [1860, 0.11], [1870, 0.13], [1880, 0.16], [1890, 0.18], [1900, 0.21], [1910, 0.24], [1920, 0.45], [1930, 2.1], [1940, 10], [1950, 17], [1960, 40], [1970, 77], [1980, 110], [1990, 120], [2000, 120], [2010, 120]], "sense_ids": ["computer_nn01-8618138", "computer_nn01-8618177", "computer_nn01-130514973", "computer_nn01-130514976"], "definition": "An electronic device (or system of devices) which is used to store, manipulate, and communicate information, perform complex calculations, or control or regulate other devices or machines, and is capable of receiving information (data) and of processing it in accordance with variable procedural instructions (programs or software); esp. a small, self-contained one for individual use in the home or workplace, used esp. for handling text, images, music, and video, accessing and using the internet\u2026", "main_entry": true, "inflections": [{"region": "British", "inflections": [{"form": "computer", "part_of_speech": "NN"}, {"form": "computers", "part_of_speech": "NNS"}]}, {"region": "US", "inflections": [{"form": "computer", "part_of_speech": "NN"}, {"form": "computers", "part_of_speech": "NNS"}]}], "frequency_id": "computer_nn01-fq", "oed_reference": "computer, n.", "pronunciations": [{"ipa": ["k\u0259m\u02c8pju\u02d0t\u0259"], "region": "British"}, {"ipa": ["k\u0259m\u02c8pjud\u0259r"], "region": "US"}], "parts_of_speech": ["NN"], "primary_sense_id": "computer_nn01-130514973"}] +Extracted definition. +Set definition to query object. +Now to get and set the word ID. +The wordID was grabbed as: +computer_nn01In MainMenu() +The user's input was read as: +q +Get quotaions based on word selected. +API.cs is starting quotations mode. +Getting request keys +resetHeaders called. +App Id is: +4ebc819b +Key is: +b6b1ca0e4e766b222d56c20f43c2396f +Here are the request Headers... +Accept: application/json +app_id: 4ebc819b +app_key: b6b1ca0e4e766b222d56c20f43c2396f + +Called callQuotationsAPI +Making the request +{"meta": {"total": 33, "count": 33, "offset": 0, "limit": 10000, "provider": "Oxford University Press", "cite": "Oxford English Dictionary API, Oxford University Press, 0.0.0.0/oed/api/v0.2/word/computer_nn01/quotations/?offset=0&limit=10000 . Accessed 19 April 2021"}, "links": {"self": "/oed/api/v0.2/word/computer_nn01/quotations/?offset=0&limit=10000", "prev": null, "next": null, "first": "/oed/api/v0.2/word/computer_nn01/quotations/?offset=0&limit=10000", "last": "/oed/api/v0.2/word/computer_nn01/quotations/?offset=0&limit=10000"}, "data": [{"id": "computer_nn01-130522415", "text": {"keyword": "by computer", "full_text": "The value..was calculated by computer at 5\u00b0 intervals around the circle.", "keyword_offset": 26}, "year": 1962, "lemma": "by computer", "source": {"title": "Proc. Royal Soc. 1961", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid130522415", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514976", "datestring": "1962", "first_in_word": false, "oed_reference": "computer, n., sense 3b", "first_in_sense": true}, {"id": "computer_nn01-130514981", "text": {"keyword": "by computer", "full_text": "Many more exciting dates, parties, and trips. Dating by computer!", "keyword_offset": 53}, "year": 1968, "lemma": "by computer", "source": {"title": "Globe & Mail (Toronto)", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid130514981", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514976", "datestring": "1968", "first_in_word": false, "oed_reference": "computer, n., sense 3b", "first_in_sense": false}, {"id": "computer_nn01-130514991", "text": {"keyword": "by computer", "full_text": "Product mix is an economically important problem which can in many cases be handled by computer.", "keyword_offset": 84}, "year": 1970, "lemma": "by computer", "source": {"title": "Computers & Data Processing", "author": "O. Dopping", "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid130514991", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514976", "datestring": "1970", "first_in_word": false, "oed_reference": "computer, n., sense 3b", "first_in_sense": false}, {"id": "computer_nn01-130514999", "text": {"keyword": "on computer", "full_text": "Information about your relationships which can't, under the Data Protection Act, be stored on computer.", "keyword_offset": 91}, "year": 1989, "lemma": "by computer", "source": {"title": "Which?", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid130514999", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514976", "datestring": "1989", "first_in_word": false, "oed_reference": "computer, n., sense 3b", "first_in_sense": false}, {"id": "computer_nn01-130515015", "text": {"keyword": "on computer", "full_text": "Paperwork. Screw the paperwork. Ted..can do the whole thing on computer now.", "keyword_offset": 60}, "year": 1998, "lemma": "by computer", "source": {"title": "Skydiving", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid130515015", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514976", "datestring": "1998", "first_in_word": false, "oed_reference": "computer, n., sense 3b", "first_in_sense": false}, {"id": "computer_nn01-130515033", "text": {"keyword": "by computer", "full_text": "Popular plot elements can be codified by computer and laid into scripts.", "keyword_offset": 38}, "year": 2007, "lemma": "by computer", "source": {"title": "New Yorker", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid130515033", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514976", "datestring": "2007", "first_in_word": false, "oed_reference": "computer, n., sense 3b", "first_in_sense": false}, {"id": "computer_nn01-118689262", "text": {"keyword": "computer", "full_text": "I haue read the truest computer of Times, and the best Arithmetician that euer breathed, and he reduceth thy dayes into a short number.", "keyword_offset": 23}, "year": 1613, "lemma": "computer", "source": {"title": "Yong Mans Gleanings", "author": "\u2018R. B.\u2019", "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid118689262", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618138", "datestring": "1613", "first_in_word": true, "oed_reference": "computer, n., sense 1", "first_in_sense": true}, {"id": "computer_nn01-8618142", "text": {"keyword": "computers", "full_text": "The Calenders of these computers.", "keyword_offset": 23}, "year": 1646, "lemma": "computer", "source": {"title": "Pseudodoxia Epidemica", "author": "Sir T. Browne", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/37975#eid8618142", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618138", "datestring": "1646", "first_in_word": false, "oed_reference": "computer, n., sense 1", "first_in_sense": false}, {"id": "computer_nn01-8618151", "text": {"keyword": "Computer", "full_text": "A very skillful Computer, who hath given a full Demonstration of it from Rules of Arithmetick.", "keyword_offset": 16}, "year": 1704, "lemma": "computer", "source": {"title": "Tale of Tub", "author": "J. Swift", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/37975#eid8618151", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618138", "datestring": "1704", "first_in_word": false, "oed_reference": "computer, n., sense 1", "first_in_sense": false}, {"id": "computer_nn01-8618167", "text": {"keyword": "computer", "full_text": "To pay the expenses of a computer for reducing his observations.", "keyword_offset": 25}, "year": 1855, "lemma": "computer", "source": {"title": "Mem. Life I. Newton", "author": "D. Brewster", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/37975#eid8618167", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618138", "datestring": "1855", "first_in_word": false, "oed_reference": "computer, n., sense 1", "first_in_sense": false}, {"id": "computer_nn01-155922405", "text": {"keyword": "computer", "full_text": "plunged anew into the column of figures... Her pen was slowly traversing the length of the page, at an elevation of a quarter of an inch above the paper, her eyes following the course of the nib, as if it were the index of a patent computer.", "keyword_offset": 232}, "year": 1869, "lemma": "computer", "source": {"title": "Phemie's Temptation", "author": "\u2018M. Harland\u2019", "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid155922405", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618177", "datestring": "1869", "first_in_word": false, "oed_reference": "computer, n., sense 2", "first_in_sense": true}, {"id": "computer_nn01-118677966", "text": {"keyword": "computer", "full_text": "Some curious computer makes out the cost of electing a President for these United States to be four hundred millions of dollars.", "keyword_offset": 13}, "year": 1893, "lemma": "computer", "source": {"title": "Publ. Amer. Econ. Assoc.", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid118677966", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618138", "datestring": "1893", "first_in_word": false, "oed_reference": "computer, n., sense 1", "first_in_sense": false}, {"id": "computer_nn01-8618184", "text": {"keyword": "computer", "full_text": "This was..a computer made by Mr. W. Cox. He described it as of the nature of a circular slide rule.", "keyword_offset": 12}, "year": 1897, "lemma": "computer", "source": {"title": "Engineering", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid8618184", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618177", "datestring": "1897", "first_in_word": false, "oed_reference": "computer, n., sense 2", "first_in_sense": false}, {"id": "computer_nn01-8618192", "text": {"keyword": "computer", "full_text": "By means of this computer the task is performed mechanically and almost instantaneously.", "keyword_offset": 17}, "year": 1915, "lemma": "computer", "source": {"title": "Chambers's Jrnl.", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid8618192", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618177", "datestring": "1915", "first_in_word": false, "oed_reference": "computer, n., sense 2", "first_in_sense": false}, {"id": "computer_nn01-8618200", "text": {"keyword": "computers", "full_text": "The telescope drive is of an elaborate nature; the effects of changing refraction, of differential flexure and of errors in the gears are automatically allowed for by a system of \u2018computers\u2019.", "keyword_offset": 180}, "year": 1941, "lemma": "computer", "source": {"title": "Nature", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid8618200", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618177", "datestring": "1941", "first_in_word": false, "oed_reference": "computer, n., sense 2", "first_in_sense": false}, {"id": "computer_nn01-118689270", "text": {"keyword": "computers", "full_text": "Iterative methods have found favour with computers, despite an outward semblance of clumsiness which masks their solid advantages from the casual critic.", "keyword_offset": 41}, "year": 1943, "lemma": "computer", "source": {"title": "London, Edinb., & Dublin Philos. Mag.", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid118689270", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618138", "datestring": "1943", "first_in_word": false, "oed_reference": "computer, n., sense 1", "first_in_sense": false}, {"id": "computer_nn01-123616576", "text": {"keyword": "computer", "full_text": "A new electronic computer owned by the war department can add 63,895 to itself 5,000 times in a second.", "keyword_offset": 17}, "year": 1946, "lemma": "computer", "source": {"title": "Modesto (Calif.) Bee", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid123616576", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618177", "datestring": "1946", "first_in_word": false, "oed_reference": "computer, n., sense 2", "first_in_sense": false}, {"id": "computer_nn01-127026327", "text": {"keyword": "computer", "full_text": "If the computer is such that new formulas are easily set up in it, it may be economical to use it in the solution of 5 or 10 problems.", "keyword_offset": 7}, "year": 1946, "lemma": "computer", "source": {"title": "Moore School Lect.", "author": "G. Stibitz", "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid127026327", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1946", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": true}, {"id": "computer_nn01-117116056", "text": {"keyword": "computers", "full_text": "We are engaged at the RCA Laboratories in the development of a storage tube for the inner memory of electronic digital computers.", "keyword_offset": 119}, "year": 1947, "lemma": "computer", "source": {"title": "Math. Tables & Other Aids Computation", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid117116056", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1947", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-127026337", "text": {"keyword": "computer", "full_text": "The problem of constructing a computing routine or \u2018program\u2019 for a modern general purpose computer which will enable it to play chess.", "keyword_offset": 90}, "year": 1950, "lemma": "computer", "source": {"title": "Philos. Mag.", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid127026337", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1950", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-127026345", "text": {"keyword": "computer", "full_text": "We discuss the use of three types of diagnostic and servicing programs which enable us to use the computer to diagnose its own troubles.", "keyword_offset": 98}, "year": 1953, "lemma": "computer", "source": {"title": "Proc. IRE", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid127026345", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1953", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-8618245", "text": {"keyword": "computer", "full_text": "At present a computer can read, remember, do arithmetic, make elementary decisions and print its answers.", "keyword_offset": 13}, "year": 1957, "lemma": "computer", "source": {"title": "Technology", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid8618245", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1957", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-8618261", "text": {"keyword": "Computers", "full_text": "Computers are being used to speed up the production of justified tape for the operation of typesetting machines.", "keyword_offset": 0}, "year": 1963, "lemma": "computer", "source": {"title": "Publishers' Weekly", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid8618261", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1963", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-118689288", "text": {"keyword": "computer", "full_text": "He thoroughly knew the schematics of the computer. No one else had been into it replacing defective components and wiring as he had.", "keyword_offset": 41}, "year": 1966, "lemma": "computer", "source": {"title": "We can remember It for you Wholesale", "author": "P. K. Dick", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/37975#eid118689288", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1966", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-121762571", "text": {"keyword": "computer", "full_text": "To arrive at a world prediction on the rate of consumption of natural resources we have to tell the computer all the known facts, plus the variables that will modify trends and the trends themselves.", "keyword_offset": 100}, "year": 1975, "lemma": "computer", "source": {"title": "Capital", "author": "M. Duffy", "gender": "female"}, "oed_url": "https://www.oed.com/view/Entry/37975#eid121762571", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1975", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-121762580", "text": {"keyword": "computer", "full_text": "If you have bought or are about to buy a small computer or text processor, you need Cave Tab to ensure you make the most of it.", "keyword_offset": 47}, "year": 1980, "lemma": "computer", "source": {"title": "Daily Tel.", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid121762580", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1980", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-118689299", "text": {"keyword": "computers", "full_text": "These \u2018observatories\u2019\u2014some call them computers\u2014of which Stonehenge is the best known, made it possible..to predict eclipses.", "keyword_offset": 37}, "year": 1983, "lemma": "computer", "source": {"title": "Dance of Life", "author": "E. T. Hall", "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid118689299", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618177", "datestring": "1983", "first_in_word": false, "oed_reference": "computer, n., sense 2", "first_in_sense": false}, {"id": "computer_nn01-121762589", "text": {"keyword": "computer", "full_text": "Nothing is easier than catching crooks with priors. The computer does it all, matching crimes to the criminals, fingerprints to the asshole.", "keyword_offset": 56}, "year": 1985, "lemma": "computer", "source": {"title": "Onyx John", "author": "T. Ferguson", "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid121762589", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1985", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-122597347", "text": {"keyword": "computer", "full_text": "Levy bet \u \ No newline at end of file diff --git a/logs/Log_OxfordApplication_20210419-1141.txt b/logs/Log_OxfordApplication_20210419-1141.txt new file mode 100644 index 0000000..c37e250 --- /dev/null +++ b/logs/Log_OxfordApplication_20210419-1141.txt @@ -0,0 +1,53 @@ +Leaving Main method. +Starting Main Menu +In MainMenu() +The user's input was read as: +d +Word look up selected +Found that QueryMode is set to words. +Looking up the word: +computer +Now to call the words endpoint. +Getting request keys +resetHeaders called. +App Id is: +4ebc819b +Key is: +b6b1ca0e4e766b222d56c20f43c2396f +Here are the request Headers... +Accept: application/json +app_id: 4ebc819b +app_key: b6b1ca0e4e766b222d56c20f43c2396f + +Calling the API +Called callWordsAPI +Making the request +Got responses. +Set JSONResponse to the response. +Left getWords task with the JSONResponse. +Parsing JSON +We now have the data as a string. +[{"id": "computer_nn01", "band": 9, "meta": {"created": 1891, "revised": true, "updated": 2008}, "lemma": "computer", "oed_url": "https://www.oed.com/view/Entry/37975#eid8618136", "daterange": {"end": null, "start": 1613, "obsolete": false, "rangestring": "1613\u2014"}, "etymology": {"etymons": [{"word": "compute", "language": "English", "target_id": "compute_vb01", "part_of_speech": "VB"}, {"word": "-er", "language": "English", "target_id": "er_su01", "part_of_speech": "SUFFIX"}], "etymology_type": "derivative", "etymon_language": [["English"]], "source_language": [["European languages", "Italic", "Latin"]], "etymology_summary": "Formed within English, by derivation."}, "first_use": "\u2018R. B.\u2019", "frequency": [[1750, 0.21], [1760, 0.18], [1770, 0.17], [1780, 0.16], [1790, 0.15], [1800, 0.14], [1810, 0.083], [1820, 0.077], [1830, 0.086], [1840, 0.086], [1850, 0.093], [1860, 0.11], [1870, 0.13], [1880, 0.16], [1890, 0.18], [1900, 0.21], [1910, 0.24], [1920, 0.45], [1930, 2.1], [1940, 10], [1950, 17], [1960, 40], [1970, 77], [1980, 110], [1990, 120], [2000, 120], [2010, 120]], "sense_ids": ["computer_nn01-8618138", "computer_nn01-8618177", "computer_nn01-130514973", "computer_nn01-130514976"], "definition": "An electronic device (or system of devices) which is used to store, manipulate, and communicate information, perform complex calculations, or control or regulate other devices or machines, and is capable of receiving information (data) and of processing it in accordance with variable procedural instructions (programs or software); esp. a small, self-contained one for individual use in the home or workplace, used esp. for handling text, images, music, and video, accessing and using the internet\u2026", "main_entry": true, "inflections": [{"region": "British", "inflections": [{"form": "computer", "part_of_speech": "NN"}, {"form": "computers", "part_of_speech": "NNS"}]}, {"region": "US", "inflections": [{"form": "computer", "part_of_speech": "NN"}, {"form": "computers", "part_of_speech": "NNS"}]}], "frequency_id": "computer_nn01-fq", "oed_reference": "computer, n.", "pronunciations": [{"ipa": ["k\u0259m\u02c8pju\u02d0t\u0259"], "region": "British"}, {"ipa": ["k\u0259m\u02c8pjud\u0259r"], "region": "US"}], "parts_of_speech": ["NN"], "primary_sense_id": "computer_nn01-130514973"}] +Extracted definition. +Set definition to query object. +Now to get and set the word ID. +The wordID was grabbed as: +computer_nn01In MainMenu() +The user's input was read as: +q +Get quotaions based on word selected. +API.cs is starting quotations mode. +Getting request keys +resetHeaders called. +App Id is: +4ebc819b +Key is: +b6b1ca0e4e766b222d56c20f43c2396f +Here are the request Headers... +Accept: application/json +app_id: 4ebc819b +app_key: b6b1ca0e4e766b222d56c20f43c2396f + +Called callQuotationsAPI +Making the request +{"meta": {"total": 33, "count": 33, "offset": 0, "limit": 10000, "provider": "Oxford University Press", "cite": "Oxford English Dictionary API, Oxford University Press, 0.0.0.0/oed/api/v0.2/word/computer_nn01/quotations/?offset=0&limit=10000 . Accessed 19 April 2021"}, "links": {"self": "/oed/api/v0.2/word/computer_nn01/quotations/?offset=0&limit=10000", "prev": null, "next": null, "first": "/oed/api/v0.2/word/computer_nn01/quotations/?offset=0&limit=10000", "last": "/oed/api/v0.2/word/computer_nn01/quotations/?offset=0&limit=10000"}, "data": [{"id": "computer_nn01-130522415", "text": {"keyword": "by computer", "full_text": "The value..was calculated by computer at 5\u00b0 intervals around the circle.", "keyword_offset": 26}, "year": 1962, "lemma": "by computer", "source": {"title": "Proc. Royal Soc. 1961", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid130522415", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514976", "datestring": "1962", "first_in_word": false, "oed_reference": "computer, n., sense 3b", "first_in_sense": true}, {"id": "computer_nn01-130514981", "text": {"keyword": "by computer", "full_text": "Many more exciting dates, parties, and trips. Dating by computer!", "keyword_offset": 53}, "year": 1968, "lemma": "by computer", "source": {"title": "Globe & Mail (Toronto)", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid130514981", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514976", "datestring": "1968", "first_in_word": false, "oed_reference": "computer, n., sense 3b", "first_in_sense": false}, {"id": "computer_nn01-130514991", "text": {"keyword": "by computer", "full_text": "Product mix is an economically important problem which can in many cases be handled by computer.", "keyword_offset": 84}, "year": 1970, "lemma": "by computer", "source": {"title": "Computers & Data Processing", "author": "O. Dopping", "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid130514991", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514976", "datestring": "1970", "first_in_word": false, "oed_reference": "computer, n., sense 3b", "first_in_sense": false}, {"id": "computer_nn01-130514999", "text": {"keyword": "on computer", "full_text": "Information about your relationships which can't, under the Data Protection Act, be stored on computer.", "keyword_offset": 91}, "year": 1989, "lemma": "by computer", "source": {"title": "Which?", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid130514999", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514976", "datestring": "1989", "first_in_word": false, "oed_reference": "computer, n., sense 3b", "first_in_sense": false}, {"id": "computer_nn01-130515015", "text": {"keyword": "on computer", "full_text": "Paperwork. Screw the paperwork. Ted..can do the whole thing on computer now.", "keyword_offset": 60}, "year": 1998, "lemma": "by computer", "source": {"title": "Skydiving", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid130515015", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514976", "datestring": "1998", "first_in_word": false, "oed_reference": "computer, n., sense 3b", "first_in_sense": false}, {"id": "computer_nn01-130515033", "text": {"keyword": "by computer", "full_text": "Popular plot elements can be codified by computer and laid into scripts.", "keyword_offset": 38}, "year": 2007, "lemma": "by computer", "source": {"title": "New Yorker", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid130515033", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514976", "datestring": "2007", "first_in_word": false, "oed_reference": "computer, n., sense 3b", "first_in_sense": false}, {"id": "computer_nn01-118689262", "text": {"keyword": "computer", "full_text": "I haue read the truest computer of Times, and the best Arithmetician that euer breathed, and he reduceth thy dayes into a short number.", "keyword_offset": 23}, "year": 1613, "lemma": "computer", "source": {"title": "Yong Mans Gleanings", "author": "\u2018R. B.\u2019", "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid118689262", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618138", "datestring": "1613", "first_in_word": true, "oed_reference": "computer, n., sense 1", "first_in_sense": true}, {"id": "computer_nn01-8618142", "text": {"keyword": "computers", "full_text": "The Calenders of these computers.", "keyword_offset": 23}, "year": 1646, "lemma": "computer", "source": {"title": "Pseudodoxia Epidemica", "author": "Sir T. Browne", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/37975#eid8618142", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618138", "datestring": "1646", "first_in_word": false, "oed_reference": "computer, n., sense 1", "first_in_sense": false}, {"id": "computer_nn01-8618151", "text": {"keyword": "Computer", "full_text": "A very skillful Computer, who hath given a full Demonstration of it from Rules of Arithmetick.", "keyword_offset": 16}, "year": 1704, "lemma": "computer", "source": {"title": "Tale of Tub", "author": "J. Swift", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/37975#eid8618151", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618138", "datestring": "1704", "first_in_word": false, "oed_reference": "computer, n., sense 1", "first_in_sense": false}, {"id": "computer_nn01-8618167", "text": {"keyword": "computer", "full_text": "To pay the expenses of a computer for reducing his observations.", "keyword_offset": 25}, "year": 1855, "lemma": "computer", "source": {"title": "Mem. Life I. Newton", "author": "D. Brewster", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/37975#eid8618167", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618138", "datestring": "1855", "first_in_word": false, "oed_reference": "computer, n., sense 1", "first_in_sense": false}, {"id": "computer_nn01-155922405", "text": {"keyword": "computer", "full_text": "plunged anew into the column of figures... Her pen was slowly traversing the length of the page, at an elevation of a quarter of an inch above the paper, her eyes following the course of the nib, as if it were the index of a patent computer.", "keyword_offset": 232}, "year": 1869, "lemma": "computer", "source": {"title": "Phemie's Temptation", "author": "\u2018M. Harland\u2019", "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid155922405", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618177", "datestring": "1869", "first_in_word": false, "oed_reference": "computer, n., sense 2", "first_in_sense": true}, {"id": "computer_nn01-118677966", "text": {"keyword": "computer", "full_text": "Some curious computer makes out the cost of electing a President for these United States to be four hundred millions of dollars.", "keyword_offset": 13}, "year": 1893, "lemma": "computer", "source": {"title": "Publ. Amer. Econ. Assoc.", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid118677966", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618138", "datestring": "1893", "first_in_word": false, "oed_reference": "computer, n., sense 1", "first_in_sense": false}, {"id": "computer_nn01-8618184", "text": {"keyword": "computer", "full_text": "This was..a computer made by Mr. W. Cox. He described it as of the nature of a circular slide rule.", "keyword_offset": 12}, "year": 1897, "lemma": "computer", "source": {"title": "Engineering", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid8618184", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618177", "datestring": "1897", "first_in_word": false, "oed_reference": "computer, n., sense 2", "first_in_sense": false}, {"id": "computer_nn01-8618192", "text": {"keyword": "computer", "full_text": "By means of this computer the task is performed mechanically and almost instantaneously.", "keyword_offset": 17}, "year": 1915, "lemma": "computer", "source": {"title": "Chambers's Jrnl.", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid8618192", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618177", "datestring": "1915", "first_in_word": false, "oed_reference": "computer, n., sense 2", "first_in_sense": false}, {"id": "computer_nn01-8618200", "text": {"keyword": "computers", "full_text": "The telescope drive is of an elaborate nature; the effects of changing refraction, of differential flexure and of errors in the gears are automatically allowed for by a system of \u2018computers\u2019.", "keyword_offset": 180}, "year": 1941, "lemma": "computer", "source": {"title": "Nature", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid8618200", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618177", "datestring": "1941", "first_in_word": false, "oed_reference": "computer, n., sense 2", "first_in_sense": false}, {"id": "computer_nn01-118689270", "text": {"keyword": "computers", "full_text": "Iterative methods have found favour with computers, despite an outward semblance of clumsiness which masks their solid advantages from the casual critic.", "keyword_offset": 41}, "year": 1943, "lemma": "computer", "source": {"title": "London, Edinb., & Dublin Philos. Mag.", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid118689270", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618138", "datestring": "1943", "first_in_word": false, "oed_reference": "computer, n., sense 1", "first_in_sense": false}, {"id": "computer_nn01-123616576", "text": {"keyword": "computer", "full_text": "A new electronic computer owned by the war department can add 63,895 to itself 5,000 times in a second.", "keyword_offset": 17}, "year": 1946, "lemma": "computer", "source": {"title": "Modesto (Calif.) Bee", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid123616576", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618177", "datestring": "1946", "first_in_word": false, "oed_reference": "computer, n., sense 2", "first_in_sense": false}, {"id": "computer_nn01-127026327", "text": {"keyword": "computer", "full_text": "If the computer is such that new formulas are easily set up in it, it may be economical to use it in the solution of 5 or 10 problems.", "keyword_offset": 7}, "year": 1946, "lemma": "computer", "source": {"title": "Moore School Lect.", "author": "G. Stibitz", "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid127026327", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1946", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": true}, {"id": "computer_nn01-117116056", "text": {"keyword": "computers", "full_text": "We are engaged at the RCA Laboratories in the development of a storage tube for the inner memory of electronic digital computers.", "keyword_offset": 119}, "year": 1947, "lemma": "computer", "source": {"title": "Math. Tables & Other Aids Computation", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid117116056", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1947", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-127026337", "text": {"keyword": "computer", "full_text": "The problem of constructing a computing routine or \u2018program\u2019 for a modern general purpose computer which will enable it to play chess.", "keyword_offset": 90}, "year": 1950, "lemma": "computer", "source": {"title": "Philos. Mag.", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid127026337", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1950", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-127026345", "text": {"keyword": "computer", "full_text": "We discuss the use of three types of diagnostic and servicing programs which enable us to use the computer to diagnose its own troubles.", "keyword_offset": 98}, "year": 1953, "lemma": "computer", "source": {"title": "Proc. IRE", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid127026345", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1953", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-8618245", "text": {"keyword": "computer", "full_text": "At present a computer can read, remember, do arithmetic, make elementary decisions and print its answers.", "keyword_offset": 13}, "year": 1957, "lemma": "computer", "source": {"title": "Technology", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid8618245", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1957", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-8618261", "text": {"keyword": "Computers", "full_text": "Computers are being used to speed up the production of justified tape for the operation of typesetting machines.", "keyword_offset": 0}, "year": 1963, "lemma": "computer", "source": {"title": "Publishers' Weekly", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid8618261", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1963", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-118689288", "text": {"keyword": "computer", "full_text": "He thoroughly knew the schematics of the computer. No one else had been into it replacing defective components and wiring as he had.", "keyword_offset": 41}, "year": 1966, "lemma": "computer", "source": {"title": "We can remember It for you Wholesale", "author": "P. K. Dick", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/37975#eid118689288", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1966", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-121762571", "text": {"keyword": "computer", "full_text": "To arrive at a world prediction on the rate of consumption of natural resources we have to tell the computer all the known facts, plus the variables that will modify trends and the trends themselves.", "keyword_offset": 100}, "year": 1975, "lemma": "computer", "source": {"title": "Capital", "author": "M. Duffy", "gender": "female"}, "oed_url": "https://www.oed.com/view/Entry/37975#eid121762571", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1975", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-121762580", "text": {"keyword": "computer", "full_text": "If you have bought or are about to buy a small computer or text processor, you need Cave Tab to ensure you make the most of it.", "keyword_offset": 47}, "year": 1980, "lemma": "computer", "source": {"title": "Daily Tel.", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid121762580", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1980", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-118689299", "text": {"keyword": "computers", "full_text": "These \u2018observatories\u2019\u2014some call them computers\u2014of which Stonehenge is the best known, made it possible..to predict eclipses.", "keyword_offset": 37}, "year": 1983, "lemma": "computer", "source": {"title": "Dance of Life", "author": "E. T. Hall", "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid118689299", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618177", "datestring": "1983", "first_in_word": false, "oed_reference": "computer, n., sense 2", "first_in_sense": false}, {"id": "computer_nn01-121762589", "text": {"keyword": "computer", "full_text": "Nothing is easier than catching crooks with priors. The computer does it all, matching crimes to the criminals, fingerprints to the asshole.", "keyword_offset": 56}, "year": 1985, "lemma": "computer", "source": {"title": "Onyx John", "author": "T. Ferguson", "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid121762589", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1985", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-122597347", "text": {"keyword": "computer", "full_text": "Levy bet \u \ No newline at end of file diff --git a/logs/Log_OxfordApplication_20210419-1145.txt b/logs/Log_OxfordApplication_20210419-1145.txt new file mode 100644 index 0000000..c37e250 --- /dev/null +++ b/logs/Log_OxfordApplication_20210419-1145.txt @@ -0,0 +1,53 @@ +Leaving Main method. +Starting Main Menu +In MainMenu() +The user's input was read as: +d +Word look up selected +Found that QueryMode is set to words. +Looking up the word: +computer +Now to call the words endpoint. +Getting request keys +resetHeaders called. +App Id is: +4ebc819b +Key is: +b6b1ca0e4e766b222d56c20f43c2396f +Here are the request Headers... +Accept: application/json +app_id: 4ebc819b +app_key: b6b1ca0e4e766b222d56c20f43c2396f + +Calling the API +Called callWordsAPI +Making the request +Got responses. +Set JSONResponse to the response. +Left getWords task with the JSONResponse. +Parsing JSON +We now have the data as a string. +[{"id": "computer_nn01", "band": 9, "meta": {"created": 1891, "revised": true, "updated": 2008}, "lemma": "computer", "oed_url": "https://www.oed.com/view/Entry/37975#eid8618136", "daterange": {"end": null, "start": 1613, "obsolete": false, "rangestring": "1613\u2014"}, "etymology": {"etymons": [{"word": "compute", "language": "English", "target_id": "compute_vb01", "part_of_speech": "VB"}, {"word": "-er", "language": "English", "target_id": "er_su01", "part_of_speech": "SUFFIX"}], "etymology_type": "derivative", "etymon_language": [["English"]], "source_language": [["European languages", "Italic", "Latin"]], "etymology_summary": "Formed within English, by derivation."}, "first_use": "\u2018R. B.\u2019", "frequency": [[1750, 0.21], [1760, 0.18], [1770, 0.17], [1780, 0.16], [1790, 0.15], [1800, 0.14], [1810, 0.083], [1820, 0.077], [1830, 0.086], [1840, 0.086], [1850, 0.093], [1860, 0.11], [1870, 0.13], [1880, 0.16], [1890, 0.18], [1900, 0.21], [1910, 0.24], [1920, 0.45], [1930, 2.1], [1940, 10], [1950, 17], [1960, 40], [1970, 77], [1980, 110], [1990, 120], [2000, 120], [2010, 120]], "sense_ids": ["computer_nn01-8618138", "computer_nn01-8618177", "computer_nn01-130514973", "computer_nn01-130514976"], "definition": "An electronic device (or system of devices) which is used to store, manipulate, and communicate information, perform complex calculations, or control or regulate other devices or machines, and is capable of receiving information (data) and of processing it in accordance with variable procedural instructions (programs or software); esp. a small, self-contained one for individual use in the home or workplace, used esp. for handling text, images, music, and video, accessing and using the internet\u2026", "main_entry": true, "inflections": [{"region": "British", "inflections": [{"form": "computer", "part_of_speech": "NN"}, {"form": "computers", "part_of_speech": "NNS"}]}, {"region": "US", "inflections": [{"form": "computer", "part_of_speech": "NN"}, {"form": "computers", "part_of_speech": "NNS"}]}], "frequency_id": "computer_nn01-fq", "oed_reference": "computer, n.", "pronunciations": [{"ipa": ["k\u0259m\u02c8pju\u02d0t\u0259"], "region": "British"}, {"ipa": ["k\u0259m\u02c8pjud\u0259r"], "region": "US"}], "parts_of_speech": ["NN"], "primary_sense_id": "computer_nn01-130514973"}] +Extracted definition. +Set definition to query object. +Now to get and set the word ID. +The wordID was grabbed as: +computer_nn01In MainMenu() +The user's input was read as: +q +Get quotaions based on word selected. +API.cs is starting quotations mode. +Getting request keys +resetHeaders called. +App Id is: +4ebc819b +Key is: +b6b1ca0e4e766b222d56c20f43c2396f +Here are the request Headers... +Accept: application/json +app_id: 4ebc819b +app_key: b6b1ca0e4e766b222d56c20f43c2396f + +Called callQuotationsAPI +Making the request +{"meta": {"total": 33, "count": 33, "offset": 0, "limit": 10000, "provider": "Oxford University Press", "cite": "Oxford English Dictionary API, Oxford University Press, 0.0.0.0/oed/api/v0.2/word/computer_nn01/quotations/?offset=0&limit=10000 . Accessed 19 April 2021"}, "links": {"self": "/oed/api/v0.2/word/computer_nn01/quotations/?offset=0&limit=10000", "prev": null, "next": null, "first": "/oed/api/v0.2/word/computer_nn01/quotations/?offset=0&limit=10000", "last": "/oed/api/v0.2/word/computer_nn01/quotations/?offset=0&limit=10000"}, "data": [{"id": "computer_nn01-130522415", "text": {"keyword": "by computer", "full_text": "The value..was calculated by computer at 5\u00b0 intervals around the circle.", "keyword_offset": 26}, "year": 1962, "lemma": "by computer", "source": {"title": "Proc. Royal Soc. 1961", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid130522415", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514976", "datestring": "1962", "first_in_word": false, "oed_reference": "computer, n., sense 3b", "first_in_sense": true}, {"id": "computer_nn01-130514981", "text": {"keyword": "by computer", "full_text": "Many more exciting dates, parties, and trips. Dating by computer!", "keyword_offset": 53}, "year": 1968, "lemma": "by computer", "source": {"title": "Globe & Mail (Toronto)", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid130514981", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514976", "datestring": "1968", "first_in_word": false, "oed_reference": "computer, n., sense 3b", "first_in_sense": false}, {"id": "computer_nn01-130514991", "text": {"keyword": "by computer", "full_text": "Product mix is an economically important problem which can in many cases be handled by computer.", "keyword_offset": 84}, "year": 1970, "lemma": "by computer", "source": {"title": "Computers & Data Processing", "author": "O. Dopping", "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid130514991", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514976", "datestring": "1970", "first_in_word": false, "oed_reference": "computer, n., sense 3b", "first_in_sense": false}, {"id": "computer_nn01-130514999", "text": {"keyword": "on computer", "full_text": "Information about your relationships which can't, under the Data Protection Act, be stored on computer.", "keyword_offset": 91}, "year": 1989, "lemma": "by computer", "source": {"title": "Which?", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid130514999", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514976", "datestring": "1989", "first_in_word": false, "oed_reference": "computer, n., sense 3b", "first_in_sense": false}, {"id": "computer_nn01-130515015", "text": {"keyword": "on computer", "full_text": "Paperwork. Screw the paperwork. Ted..can do the whole thing on computer now.", "keyword_offset": 60}, "year": 1998, "lemma": "by computer", "source": {"title": "Skydiving", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid130515015", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514976", "datestring": "1998", "first_in_word": false, "oed_reference": "computer, n., sense 3b", "first_in_sense": false}, {"id": "computer_nn01-130515033", "text": {"keyword": "by computer", "full_text": "Popular plot elements can be codified by computer and laid into scripts.", "keyword_offset": 38}, "year": 2007, "lemma": "by computer", "source": {"title": "New Yorker", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid130515033", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514976", "datestring": "2007", "first_in_word": false, "oed_reference": "computer, n., sense 3b", "first_in_sense": false}, {"id": "computer_nn01-118689262", "text": {"keyword": "computer", "full_text": "I haue read the truest computer of Times, and the best Arithmetician that euer breathed, and he reduceth thy dayes into a short number.", "keyword_offset": 23}, "year": 1613, "lemma": "computer", "source": {"title": "Yong Mans Gleanings", "author": "\u2018R. B.\u2019", "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid118689262", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618138", "datestring": "1613", "first_in_word": true, "oed_reference": "computer, n., sense 1", "first_in_sense": true}, {"id": "computer_nn01-8618142", "text": {"keyword": "computers", "full_text": "The Calenders of these computers.", "keyword_offset": 23}, "year": 1646, "lemma": "computer", "source": {"title": "Pseudodoxia Epidemica", "author": "Sir T. Browne", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/37975#eid8618142", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618138", "datestring": "1646", "first_in_word": false, "oed_reference": "computer, n., sense 1", "first_in_sense": false}, {"id": "computer_nn01-8618151", "text": {"keyword": "Computer", "full_text": "A very skillful Computer, who hath given a full Demonstration of it from Rules of Arithmetick.", "keyword_offset": 16}, "year": 1704, "lemma": "computer", "source": {"title": "Tale of Tub", "author": "J. Swift", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/37975#eid8618151", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618138", "datestring": "1704", "first_in_word": false, "oed_reference": "computer, n., sense 1", "first_in_sense": false}, {"id": "computer_nn01-8618167", "text": {"keyword": "computer", "full_text": "To pay the expenses of a computer for reducing his observations.", "keyword_offset": 25}, "year": 1855, "lemma": "computer", "source": {"title": "Mem. Life I. Newton", "author": "D. Brewster", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/37975#eid8618167", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618138", "datestring": "1855", "first_in_word": false, "oed_reference": "computer, n., sense 1", "first_in_sense": false}, {"id": "computer_nn01-155922405", "text": {"keyword": "computer", "full_text": "plunged anew into the column of figures... Her pen was slowly traversing the length of the page, at an elevation of a quarter of an inch above the paper, her eyes following the course of the nib, as if it were the index of a patent computer.", "keyword_offset": 232}, "year": 1869, "lemma": "computer", "source": {"title": "Phemie's Temptation", "author": "\u2018M. Harland\u2019", "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid155922405", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618177", "datestring": "1869", "first_in_word": false, "oed_reference": "computer, n., sense 2", "first_in_sense": true}, {"id": "computer_nn01-118677966", "text": {"keyword": "computer", "full_text": "Some curious computer makes out the cost of electing a President for these United States to be four hundred millions of dollars.", "keyword_offset": 13}, "year": 1893, "lemma": "computer", "source": {"title": "Publ. Amer. Econ. Assoc.", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid118677966", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618138", "datestring": "1893", "first_in_word": false, "oed_reference": "computer, n., sense 1", "first_in_sense": false}, {"id": "computer_nn01-8618184", "text": {"keyword": "computer", "full_text": "This was..a computer made by Mr. W. Cox. He described it as of the nature of a circular slide rule.", "keyword_offset": 12}, "year": 1897, "lemma": "computer", "source": {"title": "Engineering", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid8618184", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618177", "datestring": "1897", "first_in_word": false, "oed_reference": "computer, n., sense 2", "first_in_sense": false}, {"id": "computer_nn01-8618192", "text": {"keyword": "computer", "full_text": "By means of this computer the task is performed mechanically and almost instantaneously.", "keyword_offset": 17}, "year": 1915, "lemma": "computer", "source": {"title": "Chambers's Jrnl.", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid8618192", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618177", "datestring": "1915", "first_in_word": false, "oed_reference": "computer, n., sense 2", "first_in_sense": false}, {"id": "computer_nn01-8618200", "text": {"keyword": "computers", "full_text": "The telescope drive is of an elaborate nature; the effects of changing refraction, of differential flexure and of errors in the gears are automatically allowed for by a system of \u2018computers\u2019.", "keyword_offset": 180}, "year": 1941, "lemma": "computer", "source": {"title": "Nature", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid8618200", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618177", "datestring": "1941", "first_in_word": false, "oed_reference": "computer, n., sense 2", "first_in_sense": false}, {"id": "computer_nn01-118689270", "text": {"keyword": "computers", "full_text": "Iterative methods have found favour with computers, despite an outward semblance of clumsiness which masks their solid advantages from the casual critic.", "keyword_offset": 41}, "year": 1943, "lemma": "computer", "source": {"title": "London, Edinb., & Dublin Philos. Mag.", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid118689270", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618138", "datestring": "1943", "first_in_word": false, "oed_reference": "computer, n., sense 1", "first_in_sense": false}, {"id": "computer_nn01-123616576", "text": {"keyword": "computer", "full_text": "A new electronic computer owned by the war department can add 63,895 to itself 5,000 times in a second.", "keyword_offset": 17}, "year": 1946, "lemma": "computer", "source": {"title": "Modesto (Calif.) Bee", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid123616576", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618177", "datestring": "1946", "first_in_word": false, "oed_reference": "computer, n., sense 2", "first_in_sense": false}, {"id": "computer_nn01-127026327", "text": {"keyword": "computer", "full_text": "If the computer is such that new formulas are easily set up in it, it may be economical to use it in the solution of 5 or 10 problems.", "keyword_offset": 7}, "year": 1946, "lemma": "computer", "source": {"title": "Moore School Lect.", "author": "G. Stibitz", "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid127026327", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1946", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": true}, {"id": "computer_nn01-117116056", "text": {"keyword": "computers", "full_text": "We are engaged at the RCA Laboratories in the development of a storage tube for the inner memory of electronic digital computers.", "keyword_offset": 119}, "year": 1947, "lemma": "computer", "source": {"title": "Math. Tables & Other Aids Computation", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid117116056", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1947", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-127026337", "text": {"keyword": "computer", "full_text": "The problem of constructing a computing routine or \u2018program\u2019 for a modern general purpose computer which will enable it to play chess.", "keyword_offset": 90}, "year": 1950, "lemma": "computer", "source": {"title": "Philos. Mag.", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid127026337", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1950", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-127026345", "text": {"keyword": "computer", "full_text": "We discuss the use of three types of diagnostic and servicing programs which enable us to use the computer to diagnose its own troubles.", "keyword_offset": 98}, "year": 1953, "lemma": "computer", "source": {"title": "Proc. IRE", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid127026345", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1953", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-8618245", "text": {"keyword": "computer", "full_text": "At present a computer can read, remember, do arithmetic, make elementary decisions and print its answers.", "keyword_offset": 13}, "year": 1957, "lemma": "computer", "source": {"title": "Technology", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid8618245", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1957", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-8618261", "text": {"keyword": "Computers", "full_text": "Computers are being used to speed up the production of justified tape for the operation of typesetting machines.", "keyword_offset": 0}, "year": 1963, "lemma": "computer", "source": {"title": "Publishers' Weekly", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid8618261", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1963", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-118689288", "text": {"keyword": "computer", "full_text": "He thoroughly knew the schematics of the computer. No one else had been into it replacing defective components and wiring as he had.", "keyword_offset": 41}, "year": 1966, "lemma": "computer", "source": {"title": "We can remember It for you Wholesale", "author": "P. K. Dick", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/37975#eid118689288", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1966", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-121762571", "text": {"keyword": "computer", "full_text": "To arrive at a world prediction on the rate of consumption of natural resources we have to tell the computer all the known facts, plus the variables that will modify trends and the trends themselves.", "keyword_offset": 100}, "year": 1975, "lemma": "computer", "source": {"title": "Capital", "author": "M. Duffy", "gender": "female"}, "oed_url": "https://www.oed.com/view/Entry/37975#eid121762571", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1975", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-121762580", "text": {"keyword": "computer", "full_text": "If you have bought or are about to buy a small computer or text processor, you need Cave Tab to ensure you make the most of it.", "keyword_offset": 47}, "year": 1980, "lemma": "computer", "source": {"title": "Daily Tel.", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid121762580", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1980", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-118689299", "text": {"keyword": "computers", "full_text": "These \u2018observatories\u2019\u2014some call them computers\u2014of which Stonehenge is the best known, made it possible..to predict eclipses.", "keyword_offset": 37}, "year": 1983, "lemma": "computer", "source": {"title": "Dance of Life", "author": "E. T. Hall", "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid118689299", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618177", "datestring": "1983", "first_in_word": false, "oed_reference": "computer, n., sense 2", "first_in_sense": false}, {"id": "computer_nn01-121762589", "text": {"keyword": "computer", "full_text": "Nothing is easier than catching crooks with priors. The computer does it all, matching crimes to the criminals, fingerprints to the asshole.", "keyword_offset": 56}, "year": 1985, "lemma": "computer", "source": {"title": "Onyx John", "author": "T. Ferguson", "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid121762589", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1985", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-122597347", "text": {"keyword": "computer", "full_text": "Levy bet \u \ No newline at end of file diff --git a/logs/Log_OxfordApplication_20210419-1147.txt b/logs/Log_OxfordApplication_20210419-1147.txt new file mode 100644 index 0000000..c37e250 --- /dev/null +++ b/logs/Log_OxfordApplication_20210419-1147.txt @@ -0,0 +1,53 @@ +Leaving Main method. +Starting Main Menu +In MainMenu() +The user's input was read as: +d +Word look up selected +Found that QueryMode is set to words. +Looking up the word: +computer +Now to call the words endpoint. +Getting request keys +resetHeaders called. +App Id is: +4ebc819b +Key is: +b6b1ca0e4e766b222d56c20f43c2396f +Here are the request Headers... +Accept: application/json +app_id: 4ebc819b +app_key: b6b1ca0e4e766b222d56c20f43c2396f + +Calling the API +Called callWordsAPI +Making the request +Got responses. +Set JSONResponse to the response. +Left getWords task with the JSONResponse. +Parsing JSON +We now have the data as a string. +[{"id": "computer_nn01", "band": 9, "meta": {"created": 1891, "revised": true, "updated": 2008}, "lemma": "computer", "oed_url": "https://www.oed.com/view/Entry/37975#eid8618136", "daterange": {"end": null, "start": 1613, "obsolete": false, "rangestring": "1613\u2014"}, "etymology": {"etymons": [{"word": "compute", "language": "English", "target_id": "compute_vb01", "part_of_speech": "VB"}, {"word": "-er", "language": "English", "target_id": "er_su01", "part_of_speech": "SUFFIX"}], "etymology_type": "derivative", "etymon_language": [["English"]], "source_language": [["European languages", "Italic", "Latin"]], "etymology_summary": "Formed within English, by derivation."}, "first_use": "\u2018R. B.\u2019", "frequency": [[1750, 0.21], [1760, 0.18], [1770, 0.17], [1780, 0.16], [1790, 0.15], [1800, 0.14], [1810, 0.083], [1820, 0.077], [1830, 0.086], [1840, 0.086], [1850, 0.093], [1860, 0.11], [1870, 0.13], [1880, 0.16], [1890, 0.18], [1900, 0.21], [1910, 0.24], [1920, 0.45], [1930, 2.1], [1940, 10], [1950, 17], [1960, 40], [1970, 77], [1980, 110], [1990, 120], [2000, 120], [2010, 120]], "sense_ids": ["computer_nn01-8618138", "computer_nn01-8618177", "computer_nn01-130514973", "computer_nn01-130514976"], "definition": "An electronic device (or system of devices) which is used to store, manipulate, and communicate information, perform complex calculations, or control or regulate other devices or machines, and is capable of receiving information (data) and of processing it in accordance with variable procedural instructions (programs or software); esp. a small, self-contained one for individual use in the home or workplace, used esp. for handling text, images, music, and video, accessing and using the internet\u2026", "main_entry": true, "inflections": [{"region": "British", "inflections": [{"form": "computer", "part_of_speech": "NN"}, {"form": "computers", "part_of_speech": "NNS"}]}, {"region": "US", "inflections": [{"form": "computer", "part_of_speech": "NN"}, {"form": "computers", "part_of_speech": "NNS"}]}], "frequency_id": "computer_nn01-fq", "oed_reference": "computer, n.", "pronunciations": [{"ipa": ["k\u0259m\u02c8pju\u02d0t\u0259"], "region": "British"}, {"ipa": ["k\u0259m\u02c8pjud\u0259r"], "region": "US"}], "parts_of_speech": ["NN"], "primary_sense_id": "computer_nn01-130514973"}] +Extracted definition. +Set definition to query object. +Now to get and set the word ID. +The wordID was grabbed as: +computer_nn01In MainMenu() +The user's input was read as: +q +Get quotaions based on word selected. +API.cs is starting quotations mode. +Getting request keys +resetHeaders called. +App Id is: +4ebc819b +Key is: +b6b1ca0e4e766b222d56c20f43c2396f +Here are the request Headers... +Accept: application/json +app_id: 4ebc819b +app_key: b6b1ca0e4e766b222d56c20f43c2396f + +Called callQuotationsAPI +Making the request +{"meta": {"total": 33, "count": 33, "offset": 0, "limit": 10000, "provider": "Oxford University Press", "cite": "Oxford English Dictionary API, Oxford University Press, 0.0.0.0/oed/api/v0.2/word/computer_nn01/quotations/?offset=0&limit=10000 . Accessed 19 April 2021"}, "links": {"self": "/oed/api/v0.2/word/computer_nn01/quotations/?offset=0&limit=10000", "prev": null, "next": null, "first": "/oed/api/v0.2/word/computer_nn01/quotations/?offset=0&limit=10000", "last": "/oed/api/v0.2/word/computer_nn01/quotations/?offset=0&limit=10000"}, "data": [{"id": "computer_nn01-130522415", "text": {"keyword": "by computer", "full_text": "The value..was calculated by computer at 5\u00b0 intervals around the circle.", "keyword_offset": 26}, "year": 1962, "lemma": "by computer", "source": {"title": "Proc. Royal Soc. 1961", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid130522415", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514976", "datestring": "1962", "first_in_word": false, "oed_reference": "computer, n., sense 3b", "first_in_sense": true}, {"id": "computer_nn01-130514981", "text": {"keyword": "by computer", "full_text": "Many more exciting dates, parties, and trips. Dating by computer!", "keyword_offset": 53}, "year": 1968, "lemma": "by computer", "source": {"title": "Globe & Mail (Toronto)", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid130514981", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514976", "datestring": "1968", "first_in_word": false, "oed_reference": "computer, n., sense 3b", "first_in_sense": false}, {"id": "computer_nn01-130514991", "text": {"keyword": "by computer", "full_text": "Product mix is an economically important problem which can in many cases be handled by computer.", "keyword_offset": 84}, "year": 1970, "lemma": "by computer", "source": {"title": "Computers & Data Processing", "author": "O. Dopping", "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid130514991", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514976", "datestring": "1970", "first_in_word": false, "oed_reference": "computer, n., sense 3b", "first_in_sense": false}, {"id": "computer_nn01-130514999", "text": {"keyword": "on computer", "full_text": "Information about your relationships which can't, under the Data Protection Act, be stored on computer.", "keyword_offset": 91}, "year": 1989, "lemma": "by computer", "source": {"title": "Which?", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid130514999", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514976", "datestring": "1989", "first_in_word": false, "oed_reference": "computer, n., sense 3b", "first_in_sense": false}, {"id": "computer_nn01-130515015", "text": {"keyword": "on computer", "full_text": "Paperwork. Screw the paperwork. Ted..can do the whole thing on computer now.", "keyword_offset": 60}, "year": 1998, "lemma": "by computer", "source": {"title": "Skydiving", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid130515015", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514976", "datestring": "1998", "first_in_word": false, "oed_reference": "computer, n., sense 3b", "first_in_sense": false}, {"id": "computer_nn01-130515033", "text": {"keyword": "by computer", "full_text": "Popular plot elements can be codified by computer and laid into scripts.", "keyword_offset": 38}, "year": 2007, "lemma": "by computer", "source": {"title": "New Yorker", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid130515033", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514976", "datestring": "2007", "first_in_word": false, "oed_reference": "computer, n., sense 3b", "first_in_sense": false}, {"id": "computer_nn01-118689262", "text": {"keyword": "computer", "full_text": "I haue read the truest computer of Times, and the best Arithmetician that euer breathed, and he reduceth thy dayes into a short number.", "keyword_offset": 23}, "year": 1613, "lemma": "computer", "source": {"title": "Yong Mans Gleanings", "author": "\u2018R. B.\u2019", "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid118689262", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618138", "datestring": "1613", "first_in_word": true, "oed_reference": "computer, n., sense 1", "first_in_sense": true}, {"id": "computer_nn01-8618142", "text": {"keyword": "computers", "full_text": "The Calenders of these computers.", "keyword_offset": 23}, "year": 1646, "lemma": "computer", "source": {"title": "Pseudodoxia Epidemica", "author": "Sir T. Browne", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/37975#eid8618142", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618138", "datestring": "1646", "first_in_word": false, "oed_reference": "computer, n., sense 1", "first_in_sense": false}, {"id": "computer_nn01-8618151", "text": {"keyword": "Computer", "full_text": "A very skillful Computer, who hath given a full Demonstration of it from Rules of Arithmetick.", "keyword_offset": 16}, "year": 1704, "lemma": "computer", "source": {"title": "Tale of Tub", "author": "J. Swift", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/37975#eid8618151", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618138", "datestring": "1704", "first_in_word": false, "oed_reference": "computer, n., sense 1", "first_in_sense": false}, {"id": "computer_nn01-8618167", "text": {"keyword": "computer", "full_text": "To pay the expenses of a computer for reducing his observations.", "keyword_offset": 25}, "year": 1855, "lemma": "computer", "source": {"title": "Mem. Life I. Newton", "author": "D. Brewster", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/37975#eid8618167", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618138", "datestring": "1855", "first_in_word": false, "oed_reference": "computer, n., sense 1", "first_in_sense": false}, {"id": "computer_nn01-155922405", "text": {"keyword": "computer", "full_text": "plunged anew into the column of figures... Her pen was slowly traversing the length of the page, at an elevation of a quarter of an inch above the paper, her eyes following the course of the nib, as if it were the index of a patent computer.", "keyword_offset": 232}, "year": 1869, "lemma": "computer", "source": {"title": "Phemie's Temptation", "author": "\u2018M. Harland\u2019", "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid155922405", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618177", "datestring": "1869", "first_in_word": false, "oed_reference": "computer, n., sense 2", "first_in_sense": true}, {"id": "computer_nn01-118677966", "text": {"keyword": "computer", "full_text": "Some curious computer makes out the cost of electing a President for these United States to be four hundred millions of dollars.", "keyword_offset": 13}, "year": 1893, "lemma": "computer", "source": {"title": "Publ. Amer. Econ. Assoc.", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid118677966", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618138", "datestring": "1893", "first_in_word": false, "oed_reference": "computer, n., sense 1", "first_in_sense": false}, {"id": "computer_nn01-8618184", "text": {"keyword": "computer", "full_text": "This was..a computer made by Mr. W. Cox. He described it as of the nature of a circular slide rule.", "keyword_offset": 12}, "year": 1897, "lemma": "computer", "source": {"title": "Engineering", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid8618184", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618177", "datestring": "1897", "first_in_word": false, "oed_reference": "computer, n., sense 2", "first_in_sense": false}, {"id": "computer_nn01-8618192", "text": {"keyword": "computer", "full_text": "By means of this computer the task is performed mechanically and almost instantaneously.", "keyword_offset": 17}, "year": 1915, "lemma": "computer", "source": {"title": "Chambers's Jrnl.", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid8618192", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618177", "datestring": "1915", "first_in_word": false, "oed_reference": "computer, n., sense 2", "first_in_sense": false}, {"id": "computer_nn01-8618200", "text": {"keyword": "computers", "full_text": "The telescope drive is of an elaborate nature; the effects of changing refraction, of differential flexure and of errors in the gears are automatically allowed for by a system of \u2018computers\u2019.", "keyword_offset": 180}, "year": 1941, "lemma": "computer", "source": {"title": "Nature", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid8618200", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618177", "datestring": "1941", "first_in_word": false, "oed_reference": "computer, n., sense 2", "first_in_sense": false}, {"id": "computer_nn01-118689270", "text": {"keyword": "computers", "full_text": "Iterative methods have found favour with computers, despite an outward semblance of clumsiness which masks their solid advantages from the casual critic.", "keyword_offset": 41}, "year": 1943, "lemma": "computer", "source": {"title": "London, Edinb., & Dublin Philos. Mag.", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid118689270", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618138", "datestring": "1943", "first_in_word": false, "oed_reference": "computer, n., sense 1", "first_in_sense": false}, {"id": "computer_nn01-123616576", "text": {"keyword": "computer", "full_text": "A new electronic computer owned by the war department can add 63,895 to itself 5,000 times in a second.", "keyword_offset": 17}, "year": 1946, "lemma": "computer", "source": {"title": "Modesto (Calif.) Bee", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid123616576", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618177", "datestring": "1946", "first_in_word": false, "oed_reference": "computer, n., sense 2", "first_in_sense": false}, {"id": "computer_nn01-127026327", "text": {"keyword": "computer", "full_text": "If the computer is such that new formulas are easily set up in it, it may be economical to use it in the solution of 5 or 10 problems.", "keyword_offset": 7}, "year": 1946, "lemma": "computer", "source": {"title": "Moore School Lect.", "author": "G. Stibitz", "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid127026327", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1946", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": true}, {"id": "computer_nn01-117116056", "text": {"keyword": "computers", "full_text": "We are engaged at the RCA Laboratories in the development of a storage tube for the inner memory of electronic digital computers.", "keyword_offset": 119}, "year": 1947, "lemma": "computer", "source": {"title": "Math. Tables & Other Aids Computation", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid117116056", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1947", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-127026337", "text": {"keyword": "computer", "full_text": "The problem of constructing a computing routine or \u2018program\u2019 for a modern general purpose computer which will enable it to play chess.", "keyword_offset": 90}, "year": 1950, "lemma": "computer", "source": {"title": "Philos. Mag.", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid127026337", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1950", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-127026345", "text": {"keyword": "computer", "full_text": "We discuss the use of three types of diagnostic and servicing programs which enable us to use the computer to diagnose its own troubles.", "keyword_offset": 98}, "year": 1953, "lemma": "computer", "source": {"title": "Proc. IRE", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid127026345", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1953", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-8618245", "text": {"keyword": "computer", "full_text": "At present a computer can read, remember, do arithmetic, make elementary decisions and print its answers.", "keyword_offset": 13}, "year": 1957, "lemma": "computer", "source": {"title": "Technology", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid8618245", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1957", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-8618261", "text": {"keyword": "Computers", "full_text": "Computers are being used to speed up the production of justified tape for the operation of typesetting machines.", "keyword_offset": 0}, "year": 1963, "lemma": "computer", "source": {"title": "Publishers' Weekly", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid8618261", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1963", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-118689288", "text": {"keyword": "computer", "full_text": "He thoroughly knew the schematics of the computer. No one else had been into it replacing defective components and wiring as he had.", "keyword_offset": 41}, "year": 1966, "lemma": "computer", "source": {"title": "We can remember It for you Wholesale", "author": "P. K. Dick", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/37975#eid118689288", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1966", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-121762571", "text": {"keyword": "computer", "full_text": "To arrive at a world prediction on the rate of consumption of natural resources we have to tell the computer all the known facts, plus the variables that will modify trends and the trends themselves.", "keyword_offset": 100}, "year": 1975, "lemma": "computer", "source": {"title": "Capital", "author": "M. Duffy", "gender": "female"}, "oed_url": "https://www.oed.com/view/Entry/37975#eid121762571", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1975", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-121762580", "text": {"keyword": "computer", "full_text": "If you have bought or are about to buy a small computer or text processor, you need Cave Tab to ensure you make the most of it.", "keyword_offset": 47}, "year": 1980, "lemma": "computer", "source": {"title": "Daily Tel.", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid121762580", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1980", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-118689299", "text": {"keyword": "computers", "full_text": "These \u2018observatories\u2019\u2014some call them computers\u2014of which Stonehenge is the best known, made it possible..to predict eclipses.", "keyword_offset": 37}, "year": 1983, "lemma": "computer", "source": {"title": "Dance of Life", "author": "E. T. Hall", "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid118689299", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618177", "datestring": "1983", "first_in_word": false, "oed_reference": "computer, n., sense 2", "first_in_sense": false}, {"id": "computer_nn01-121762589", "text": {"keyword": "computer", "full_text": "Nothing is easier than catching crooks with priors. The computer does it all, matching crimes to the criminals, fingerprints to the asshole.", "keyword_offset": 56}, "year": 1985, "lemma": "computer", "source": {"title": "Onyx John", "author": "T. Ferguson", "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid121762589", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1985", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-122597347", "text": {"keyword": "computer", "full_text": "Levy bet \u \ No newline at end of file diff --git a/logs/Log_OxfordApplication_20210419-1148.txt b/logs/Log_OxfordApplication_20210419-1148.txt new file mode 100644 index 0000000..c37e250 --- /dev/null +++ b/logs/Log_OxfordApplication_20210419-1148.txt @@ -0,0 +1,53 @@ +Leaving Main method. +Starting Main Menu +In MainMenu() +The user's input was read as: +d +Word look up selected +Found that QueryMode is set to words. +Looking up the word: +computer +Now to call the words endpoint. +Getting request keys +resetHeaders called. +App Id is: +4ebc819b +Key is: +b6b1ca0e4e766b222d56c20f43c2396f +Here are the request Headers... +Accept: application/json +app_id: 4ebc819b +app_key: b6b1ca0e4e766b222d56c20f43c2396f + +Calling the API +Called callWordsAPI +Making the request +Got responses. +Set JSONResponse to the response. +Left getWords task with the JSONResponse. +Parsing JSON +We now have the data as a string. +[{"id": "computer_nn01", "band": 9, "meta": {"created": 1891, "revised": true, "updated": 2008}, "lemma": "computer", "oed_url": "https://www.oed.com/view/Entry/37975#eid8618136", "daterange": {"end": null, "start": 1613, "obsolete": false, "rangestring": "1613\u2014"}, "etymology": {"etymons": [{"word": "compute", "language": "English", "target_id": "compute_vb01", "part_of_speech": "VB"}, {"word": "-er", "language": "English", "target_id": "er_su01", "part_of_speech": "SUFFIX"}], "etymology_type": "derivative", "etymon_language": [["English"]], "source_language": [["European languages", "Italic", "Latin"]], "etymology_summary": "Formed within English, by derivation."}, "first_use": "\u2018R. B.\u2019", "frequency": [[1750, 0.21], [1760, 0.18], [1770, 0.17], [1780, 0.16], [1790, 0.15], [1800, 0.14], [1810, 0.083], [1820, 0.077], [1830, 0.086], [1840, 0.086], [1850, 0.093], [1860, 0.11], [1870, 0.13], [1880, 0.16], [1890, 0.18], [1900, 0.21], [1910, 0.24], [1920, 0.45], [1930, 2.1], [1940, 10], [1950, 17], [1960, 40], [1970, 77], [1980, 110], [1990, 120], [2000, 120], [2010, 120]], "sense_ids": ["computer_nn01-8618138", "computer_nn01-8618177", "computer_nn01-130514973", "computer_nn01-130514976"], "definition": "An electronic device (or system of devices) which is used to store, manipulate, and communicate information, perform complex calculations, or control or regulate other devices or machines, and is capable of receiving information (data) and of processing it in accordance with variable procedural instructions (programs or software); esp. a small, self-contained one for individual use in the home or workplace, used esp. for handling text, images, music, and video, accessing and using the internet\u2026", "main_entry": true, "inflections": [{"region": "British", "inflections": [{"form": "computer", "part_of_speech": "NN"}, {"form": "computers", "part_of_speech": "NNS"}]}, {"region": "US", "inflections": [{"form": "computer", "part_of_speech": "NN"}, {"form": "computers", "part_of_speech": "NNS"}]}], "frequency_id": "computer_nn01-fq", "oed_reference": "computer, n.", "pronunciations": [{"ipa": ["k\u0259m\u02c8pju\u02d0t\u0259"], "region": "British"}, {"ipa": ["k\u0259m\u02c8pjud\u0259r"], "region": "US"}], "parts_of_speech": ["NN"], "primary_sense_id": "computer_nn01-130514973"}] +Extracted definition. +Set definition to query object. +Now to get and set the word ID. +The wordID was grabbed as: +computer_nn01In MainMenu() +The user's input was read as: +q +Get quotaions based on word selected. +API.cs is starting quotations mode. +Getting request keys +resetHeaders called. +App Id is: +4ebc819b +Key is: +b6b1ca0e4e766b222d56c20f43c2396f +Here are the request Headers... +Accept: application/json +app_id: 4ebc819b +app_key: b6b1ca0e4e766b222d56c20f43c2396f + +Called callQuotationsAPI +Making the request +{"meta": {"total": 33, "count": 33, "offset": 0, "limit": 10000, "provider": "Oxford University Press", "cite": "Oxford English Dictionary API, Oxford University Press, 0.0.0.0/oed/api/v0.2/word/computer_nn01/quotations/?offset=0&limit=10000 . Accessed 19 April 2021"}, "links": {"self": "/oed/api/v0.2/word/computer_nn01/quotations/?offset=0&limit=10000", "prev": null, "next": null, "first": "/oed/api/v0.2/word/computer_nn01/quotations/?offset=0&limit=10000", "last": "/oed/api/v0.2/word/computer_nn01/quotations/?offset=0&limit=10000"}, "data": [{"id": "computer_nn01-130522415", "text": {"keyword": "by computer", "full_text": "The value..was calculated by computer at 5\u00b0 intervals around the circle.", "keyword_offset": 26}, "year": 1962, "lemma": "by computer", "source": {"title": "Proc. Royal Soc. 1961", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid130522415", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514976", "datestring": "1962", "first_in_word": false, "oed_reference": "computer, n., sense 3b", "first_in_sense": true}, {"id": "computer_nn01-130514981", "text": {"keyword": "by computer", "full_text": "Many more exciting dates, parties, and trips. Dating by computer!", "keyword_offset": 53}, "year": 1968, "lemma": "by computer", "source": {"title": "Globe & Mail (Toronto)", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid130514981", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514976", "datestring": "1968", "first_in_word": false, "oed_reference": "computer, n., sense 3b", "first_in_sense": false}, {"id": "computer_nn01-130514991", "text": {"keyword": "by computer", "full_text": "Product mix is an economically important problem which can in many cases be handled by computer.", "keyword_offset": 84}, "year": 1970, "lemma": "by computer", "source": {"title": "Computers & Data Processing", "author": "O. Dopping", "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid130514991", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514976", "datestring": "1970", "first_in_word": false, "oed_reference": "computer, n., sense 3b", "first_in_sense": false}, {"id": "computer_nn01-130514999", "text": {"keyword": "on computer", "full_text": "Information about your relationships which can't, under the Data Protection Act, be stored on computer.", "keyword_offset": 91}, "year": 1989, "lemma": "by computer", "source": {"title": "Which?", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid130514999", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514976", "datestring": "1989", "first_in_word": false, "oed_reference": "computer, n., sense 3b", "first_in_sense": false}, {"id": "computer_nn01-130515015", "text": {"keyword": "on computer", "full_text": "Paperwork. Screw the paperwork. Ted..can do the whole thing on computer now.", "keyword_offset": 60}, "year": 1998, "lemma": "by computer", "source": {"title": "Skydiving", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid130515015", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514976", "datestring": "1998", "first_in_word": false, "oed_reference": "computer, n., sense 3b", "first_in_sense": false}, {"id": "computer_nn01-130515033", "text": {"keyword": "by computer", "full_text": "Popular plot elements can be codified by computer and laid into scripts.", "keyword_offset": 38}, "year": 2007, "lemma": "by computer", "source": {"title": "New Yorker", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid130515033", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514976", "datestring": "2007", "first_in_word": false, "oed_reference": "computer, n., sense 3b", "first_in_sense": false}, {"id": "computer_nn01-118689262", "text": {"keyword": "computer", "full_text": "I haue read the truest computer of Times, and the best Arithmetician that euer breathed, and he reduceth thy dayes into a short number.", "keyword_offset": 23}, "year": 1613, "lemma": "computer", "source": {"title": "Yong Mans Gleanings", "author": "\u2018R. B.\u2019", "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid118689262", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618138", "datestring": "1613", "first_in_word": true, "oed_reference": "computer, n., sense 1", "first_in_sense": true}, {"id": "computer_nn01-8618142", "text": {"keyword": "computers", "full_text": "The Calenders of these computers.", "keyword_offset": 23}, "year": 1646, "lemma": "computer", "source": {"title": "Pseudodoxia Epidemica", "author": "Sir T. Browne", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/37975#eid8618142", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618138", "datestring": "1646", "first_in_word": false, "oed_reference": "computer, n., sense 1", "first_in_sense": false}, {"id": "computer_nn01-8618151", "text": {"keyword": "Computer", "full_text": "A very skillful Computer, who hath given a full Demonstration of it from Rules of Arithmetick.", "keyword_offset": 16}, "year": 1704, "lemma": "computer", "source": {"title": "Tale of Tub", "author": "J. Swift", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/37975#eid8618151", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618138", "datestring": "1704", "first_in_word": false, "oed_reference": "computer, n., sense 1", "first_in_sense": false}, {"id": "computer_nn01-8618167", "text": {"keyword": "computer", "full_text": "To pay the expenses of a computer for reducing his observations.", "keyword_offset": 25}, "year": 1855, "lemma": "computer", "source": {"title": "Mem. Life I. Newton", "author": "D. Brewster", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/37975#eid8618167", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618138", "datestring": "1855", "first_in_word": false, "oed_reference": "computer, n., sense 1", "first_in_sense": false}, {"id": "computer_nn01-155922405", "text": {"keyword": "computer", "full_text": "plunged anew into the column of figures... Her pen was slowly traversing the length of the page, at an elevation of a quarter of an inch above the paper, her eyes following the course of the nib, as if it were the index of a patent computer.", "keyword_offset": 232}, "year": 1869, "lemma": "computer", "source": {"title": "Phemie's Temptation", "author": "\u2018M. Harland\u2019", "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid155922405", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618177", "datestring": "1869", "first_in_word": false, "oed_reference": "computer, n., sense 2", "first_in_sense": true}, {"id": "computer_nn01-118677966", "text": {"keyword": "computer", "full_text": "Some curious computer makes out the cost of electing a President for these United States to be four hundred millions of dollars.", "keyword_offset": 13}, "year": 1893, "lemma": "computer", "source": {"title": "Publ. Amer. Econ. Assoc.", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid118677966", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618138", "datestring": "1893", "first_in_word": false, "oed_reference": "computer, n., sense 1", "first_in_sense": false}, {"id": "computer_nn01-8618184", "text": {"keyword": "computer", "full_text": "This was..a computer made by Mr. W. Cox. He described it as of the nature of a circular slide rule.", "keyword_offset": 12}, "year": 1897, "lemma": "computer", "source": {"title": "Engineering", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid8618184", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618177", "datestring": "1897", "first_in_word": false, "oed_reference": "computer, n., sense 2", "first_in_sense": false}, {"id": "computer_nn01-8618192", "text": {"keyword": "computer", "full_text": "By means of this computer the task is performed mechanically and almost instantaneously.", "keyword_offset": 17}, "year": 1915, "lemma": "computer", "source": {"title": "Chambers's Jrnl.", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid8618192", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618177", "datestring": "1915", "first_in_word": false, "oed_reference": "computer, n., sense 2", "first_in_sense": false}, {"id": "computer_nn01-8618200", "text": {"keyword": "computers", "full_text": "The telescope drive is of an elaborate nature; the effects of changing refraction, of differential flexure and of errors in the gears are automatically allowed for by a system of \u2018computers\u2019.", "keyword_offset": 180}, "year": 1941, "lemma": "computer", "source": {"title": "Nature", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid8618200", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618177", "datestring": "1941", "first_in_word": false, "oed_reference": "computer, n., sense 2", "first_in_sense": false}, {"id": "computer_nn01-118689270", "text": {"keyword": "computers", "full_text": "Iterative methods have found favour with computers, despite an outward semblance of clumsiness which masks their solid advantages from the casual critic.", "keyword_offset": 41}, "year": 1943, "lemma": "computer", "source": {"title": "London, Edinb., & Dublin Philos. Mag.", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid118689270", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618138", "datestring": "1943", "first_in_word": false, "oed_reference": "computer, n., sense 1", "first_in_sense": false}, {"id": "computer_nn01-123616576", "text": {"keyword": "computer", "full_text": "A new electronic computer owned by the war department can add 63,895 to itself 5,000 times in a second.", "keyword_offset": 17}, "year": 1946, "lemma": "computer", "source": {"title": "Modesto (Calif.) Bee", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid123616576", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618177", "datestring": "1946", "first_in_word": false, "oed_reference": "computer, n., sense 2", "first_in_sense": false}, {"id": "computer_nn01-127026327", "text": {"keyword": "computer", "full_text": "If the computer is such that new formulas are easily set up in it, it may be economical to use it in the solution of 5 or 10 problems.", "keyword_offset": 7}, "year": 1946, "lemma": "computer", "source": {"title": "Moore School Lect.", "author": "G. Stibitz", "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid127026327", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1946", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": true}, {"id": "computer_nn01-117116056", "text": {"keyword": "computers", "full_text": "We are engaged at the RCA Laboratories in the development of a storage tube for the inner memory of electronic digital computers.", "keyword_offset": 119}, "year": 1947, "lemma": "computer", "source": {"title": "Math. Tables & Other Aids Computation", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid117116056", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1947", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-127026337", "text": {"keyword": "computer", "full_text": "The problem of constructing a computing routine or \u2018program\u2019 for a modern general purpose computer which will enable it to play chess.", "keyword_offset": 90}, "year": 1950, "lemma": "computer", "source": {"title": "Philos. Mag.", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid127026337", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1950", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-127026345", "text": {"keyword": "computer", "full_text": "We discuss the use of three types of diagnostic and servicing programs which enable us to use the computer to diagnose its own troubles.", "keyword_offset": 98}, "year": 1953, "lemma": "computer", "source": {"title": "Proc. IRE", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid127026345", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1953", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-8618245", "text": {"keyword": "computer", "full_text": "At present a computer can read, remember, do arithmetic, make elementary decisions and print its answers.", "keyword_offset": 13}, "year": 1957, "lemma": "computer", "source": {"title": "Technology", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid8618245", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1957", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-8618261", "text": {"keyword": "Computers", "full_text": "Computers are being used to speed up the production of justified tape for the operation of typesetting machines.", "keyword_offset": 0}, "year": 1963, "lemma": "computer", "source": {"title": "Publishers' Weekly", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid8618261", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1963", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-118689288", "text": {"keyword": "computer", "full_text": "He thoroughly knew the schematics of the computer. No one else had been into it replacing defective components and wiring as he had.", "keyword_offset": 41}, "year": 1966, "lemma": "computer", "source": {"title": "We can remember It for you Wholesale", "author": "P. K. Dick", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/37975#eid118689288", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1966", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-121762571", "text": {"keyword": "computer", "full_text": "To arrive at a world prediction on the rate of consumption of natural resources we have to tell the computer all the known facts, plus the variables that will modify trends and the trends themselves.", "keyword_offset": 100}, "year": 1975, "lemma": "computer", "source": {"title": "Capital", "author": "M. Duffy", "gender": "female"}, "oed_url": "https://www.oed.com/view/Entry/37975#eid121762571", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1975", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-121762580", "text": {"keyword": "computer", "full_text": "If you have bought or are about to buy a small computer or text processor, you need Cave Tab to ensure you make the most of it.", "keyword_offset": 47}, "year": 1980, "lemma": "computer", "source": {"title": "Daily Tel.", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid121762580", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1980", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-118689299", "text": {"keyword": "computers", "full_text": "These \u2018observatories\u2019\u2014some call them computers\u2014of which Stonehenge is the best known, made it possible..to predict eclipses.", "keyword_offset": 37}, "year": 1983, "lemma": "computer", "source": {"title": "Dance of Life", "author": "E. T. Hall", "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid118689299", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618177", "datestring": "1983", "first_in_word": false, "oed_reference": "computer, n., sense 2", "first_in_sense": false}, {"id": "computer_nn01-121762589", "text": {"keyword": "computer", "full_text": "Nothing is easier than catching crooks with priors. The computer does it all, matching crimes to the criminals, fingerprints to the asshole.", "keyword_offset": 56}, "year": 1985, "lemma": "computer", "source": {"title": "Onyx John", "author": "T. Ferguson", "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid121762589", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1985", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-122597347", "text": {"keyword": "computer", "full_text": "Levy bet \u \ No newline at end of file diff --git a/logs/Log_OxfordApplication_20210419-1149.txt b/logs/Log_OxfordApplication_20210419-1149.txt new file mode 100644 index 0000000..600f6c8 --- /dev/null +++ b/logs/Log_OxfordApplication_20210419-1149.txt @@ -0,0 +1,53 @@ +Leaving Main method. +Starting Main Menu +In MainMenu() +The user's input was read as: +d +Word look up selected +Found that QueryMode is set to words. +Looking up the word: +chair +Now to call the words endpoint. +Getting request keys +resetHeaders called. +App Id is: +4ebc819b +Key is: +b6b1ca0e4e766b222d56c20f43c2396f +Here are the request Headers... +Accept: application/json +app_id: 4ebc819b +app_key: b6b1ca0e4e766b222d56c20f43c2396f + +Calling the API +Called callWordsAPI +Making the request +Got responses. +Set JSONResponse to the response. +Left getWords task with the JSONResponse. +Parsing JSON +We now have the data as a string. +[{"id": "chair_nn01", "band": 6, "meta": {"created": 1889, "revised": false, "updated": null}, "lemma": "chair", "oed_url": "https://www.oed.com/view/Entry/30215#eid9765745", "daterange": {"end": null, "start": 1297, "obsolete": false, "rangestring": "1297\u2014"}, "etymology": {"etymons": [{"word": "cha\u00ebre", "language": "French"}, {"word": "chaiere", "language": "French"}], "etymology_type": "borrowingHybrid", "etymon_language": [["European languages", "Italic", "Romance", "Italo-Western", "Gallo-Romance", "French"]], "source_language": [["European languages", "Italic", "Romance", "Italo-Western", "Gallo-Romance", "French"], ["European languages", "Greek"]], "etymology_summary": "A borrowing from French, combined with an English element."}, "first_use": "Chronicle of Robert of Gloucester", "frequency": [[1750, 17], [1760, 19], [1770, 20], [1780, 20], [1790, 23], [1800, 24], [1810, 26], [1820, 29], [1830, 30], [1840, 33], [1850, 35], [1860, 38], [1870, 41], [1880, 43], [1890, 45], [1900, 47], [1910, 48], [1920, 47], [1930, 45], [1940, 41], [1950, 37], [1960, 33], [1970, 33], [1980, 38], [1990, 45], [2000, 49], [2010, 52]], "sense_ids": ["chair_nn01-9765748", "chair_nn01-9765918", "chair_nn01-9766034", "chair_nn01-9766086", "chair_nn01-9766128", "chair_nn01-9766167", "chair_nn01-9766191", "chair_nn01-9766261", "chair_nn01-9766309", "chair_nn01-9766353", "chair_nn01-9766415", "chair_nn01-9766435", "chair_nn01-9766456", "chair_nn01-9766508", "chair_nn01-9766538", "chair_nn01-9766562", "chair_nn01-9766607", "chair_nn01-9766670", "chair_nn01-9766761", "chair_nn01-9766784", "chair_nn01-9766861", "chair_nn01-9766921", "chair_nn01-9766962", "chair_nn01-9766979", "chair_nn01-128025765", "chair_nn01-218565101"], "definition": "A seat for one person (always implying more or less of comfort and ease); now the common name for the movable four-legged seat with a rest for the back, which constitutes, in many forms of rudeness or elegance, an ordinary article of household furniture, and is also used in gardens or wherever it is usual to sit. to take a chair: to take a seat, be seated.", "main_entry": true, "inflections": [{"region": "British", "inflections": [{"form": "chair", "part_of_speech": "NN"}, {"form": "chairs", "part_of_speech": "NNS"}]}, {"region": "US", "inflections": [{"form": "chair", "part_of_speech": "NN"}, {"form": "chairs", "part_of_speech": "NNS"}]}], "frequency_id": "chair_nn01-fq", "oed_reference": "chair, n.1", "pronunciations": [{"ipa": ["t\u0283\u025b\u02d0"], "region": "British"}, {"ipa": ["t\u0283\u025b(\u0259)r"], "region": "US"}], "parts_of_speech": ["NN"], "primary_sense_id": "chair_nn01-9765748"}] +Extracted definition. +Set definition to query object. +Now to get and set the word ID. +The wordID was grabbed as: +chair_nn01In MainMenu() +The user's input was read as: +q +Get quotaions based on word selected. +API.cs is starting quotations mode. +Getting request keys +resetHeaders called. +App Id is: +4ebc819b +Key is: +b6b1ca0e4e766b222d56c20f43c2396f +Here are the request Headers... +Accept: application/json +app_id: 4ebc819b +app_key: b6b1ca0e4e766b222d56c20f43c2396f + +Called callQuotationsAPI +Making the request +{"meta": {"total": 129, "count": 129, "offset": 0, "limit": 10000, "provider": "Oxford University Press", "cite": "Oxford English Dictionary API, Oxford University Press, 0.0.0.0/oed/api/v0.2/word/chair_nn01/quotations/?offset=0&limit=10000 . Accessed 19 April 2021"}, "links": {"self": "/oed/api/v0.2/word/chair_nn01/quotations/?offset=0&limit=10000", "prev": null, "next": null, "first": "/oed/api/v0.2/word/chair_nn01/quotations/?offset=0&limit=10000", "last": "/oed/api/v0.2/word/chair_nn01/quotations/?offset=0&limit=10000"}, "data": [{"id": "chair_nn01-9765752", "text": {"keyword": "chaere", "full_text": "Up a chaere he sat adoun, al vp \u00fee see sonde.", "keyword_offset": 5}, "year": 1297, "lemma": "chair", "source": {"title": "R. Gloucester's Chron.", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9765752", "word_id": "chair_nn01", "sense_id": "chair_nn01-9765748", "datestring": "1297", "first_in_word": true, "oed_reference": "chair, n.1, sense 1a", "first_in_sense": true}, {"id": "chair_nn01-9765781", "text": {"keyword": "cha\u021der", "full_text": "A cha\u021der..of the trees of Liban.", "keyword_offset": 2}, "year": 1381, "lemma": "chair", "source": {"title": "Bible (Wycliffite, E.V.)", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9765781", "word_id": "chair_nn01", "sense_id": "chair_nn01-9765748", "datestring": "a1382", "first_in_word": false, "oed_reference": "chair, n.1, sense 1a", "first_in_sense": false}, {"id": "chair_nn01-9766265", "text": {"keyword": "chaier", "full_text": "Vpon the chaier of Moyses, scribis and Pharisees seeten.", "keyword_offset": 9}, "year": 1384, "lemma": "chair", "source": {"title": "Bible (Wycliffite, E.V.)", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9766265", "word_id": "chair_nn01", "sense_id": "chair_nn01-9766261", "datestring": "c1384", "first_in_word": false, "oed_reference": "chair, n.1, sense 3b", "first_in_sense": true}, {"id": "chair_nn01-9765773", "text": {"keyword": "chaiers", "full_text": "He turnyde vpsadoun the bordis and chaungeris, and the chaiers of men sellynge culueris.", "keyword_offset": 55}, "year": 1384, "lemma": "chair", "source": {"title": "Bible (Wycliffite, E.V.)", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9765773", "word_id": "chair_nn01", "sense_id": "chair_nn01-9765748", "datestring": "c1384", "first_in_word": false, "oed_reference": "chair, n.1, sense 1a", "first_in_sense": false}, {"id": "chair_nn01-9766206", "text": {"keyword": "chare", "full_text": "Ianus with double face In his chare hath take his place.", "keyword_offset": 30}, "year": 1393, "lemma": "chair", "source": {"title": "Confessio Amantis", "author": "J. Gower", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9766206", "word_id": "chair_nn01", "sense_id": "chair_nn01-9766191", "datestring": "1393", "first_in_word": false, "oed_reference": "chair, n.1, sense 3a", "first_in_sense": true}, {"id": "chair_nn01-9766194", "text": {"keyword": null, "full_text": "", "keyword_offset": null}, "year": 1399, "lemma": "chair", "source": {"title": null, "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9766194", "word_id": "chair_nn01", "sense_id": "chair_nn01-9766191", "datestring": "a1400", "first_in_word": false, "oed_reference": "chair, n.1, sense 3a", "first_in_sense": false}, {"id": "chair_nn01-9765761", "text": {"keyword": "chaier", "full_text": "A tron of iuor graid..Was neuer yeitt king ne kaiser, \u00feat euer sait in sli chaier.", "keyword_offset": 75}, "year": 1399, "lemma": "chair", "source": {"title": "Cursor Mundi", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9765761", "word_id": "chair_nn01", "sense_id": "chair_nn01-9765748", "datestring": "a1400", "first_in_word": false, "oed_reference": "chair, n.1, sense 1a", "first_in_sense": false}, {"id": "chair_nn01-9766199", "text": {"keyword": "chayer", "full_text": "Nabigo-de-nozar noble in his chayer.", "keyword_offset": 29}, "year": 1400, "lemma": "chair", "source": {"title": "Cleanness", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9766199", "word_id": "chair_nn01", "sense_id": "chair_nn01-9766191", "datestring": "c1400", "first_in_word": false, "oed_reference": "chair, n.1, sense 3a", "first_in_sense": false}, {"id": "chair_nn01-9766273", "text": {"keyword": "chaire", "full_text": "\u2018Uppon the chaire of Moyses\u2019..That is the olde testament.", "keyword_offset": 11}, "year": 1400, "lemma": "chair", "source": {"title": "Rom. Rose", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9766273", "word_id": "chair_nn01", "sense_id": "chair_nn01-9766261", "datestring": "c1400", "first_in_word": false, "oed_reference": "chair, n.1, sense 3b", "first_in_sense": false}, {"id": "chair_nn01-9765789", "text": {"keyword": "Chayere", "full_text": "Men setten him in a Chayere.", "keyword_offset": 20}, "year": 1400, "lemma": "chair", "source": {"title": "Mandeville's Trav.", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9765789", "word_id": "chair_nn01", "sense_id": "chair_nn01-9765748", "datestring": "c1400", "first_in_word": false, "oed_reference": "chair, n.1, sense 1a", "first_in_sense": false}, {"id": "chair_nn01-9766215", "text": {"keyword": "Chayere", "full_text": "Sette hym in the Chayere as domysman.", "keyword_offset": 17}, "year": 1440, "lemma": "chair", "source": {"title": "Gesta Romanorum", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9766215", "word_id": "chair_nn01", "sense_id": "chair_nn01-9766191", "datestring": "c1440", "first_in_word": false, "oed_reference": "chair, n.1, sense 3a", "first_in_sense": false}, {"id": "chair_nn01-9766459", "text": {"keyword": "chaier", "full_text": "To be rad..in the chaier of scolis.", "keyword_offset": 18}, "year": 1449, "lemma": "chair", "source": {"title": "Repressor", "author": "R. Pecock", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9766459", "word_id": "chair_nn01", "sense_id": "chair_nn01-9766456", "datestring": "c1449", "first_in_word": false, "oed_reference": "chair, n.1, sense 6a", "first_in_sense": true}, {"id": "chair_nn01-9765796", "text": {"keyword": "chare", "full_text": "Hec cathedra, a chare.", "keyword_offset": 16}, "year": 1450, "lemma": "chair", "source": {"title": "Anglo-Saxon & Old Eng. Vocab.", "author": "T. Wright", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9765796", "word_id": "chair_nn01", "sense_id": "chair_nn01-9765748", "datestring": "c1450", "first_in_word": false, "oed_reference": "chair, n.1, sense 1a", "first_in_sense": false}, {"id": "chair_nn01-9766359", "text": {"keyword": "chaier", "full_text": "Seynt peter preched in antyoche and ther he made a noble chirche in whiche he sate fyrste in his chaier.", "keyword_offset": 97}, "year": 1480, "lemma": "chair", "source": {"title": "Chron. Eng.", "author": "W. Caxton", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9766359", "word_id": "chair_nn01", "sense_id": "chair_nn01-9766353", "datestring": "1480", "first_in_word": false, "oed_reference": "chair, n.1, sense 4a", "first_in_sense": true}, {"id": "chair_nn01-9765810", "text": {"keyword": "cheyer", "full_text": "He sholde do sette ther a cheyer, that..sholde be redy for the knyght in-to sitte.", "keyword_offset": 26}, "year": 1499, "lemma": "chair", "source": {"title": "Merlin", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9765810", "word_id": "chair_nn01", "sense_id": "chair_nn01-9765748", "datestring": "a1500", "first_in_word": false, "oed_reference": "chair, n.1, sense 1a", "first_in_sense": false}, {"id": "chair_nn01-9766131", "text": {"keyword": "chayre", "full_text": "Yf ye wyll tell me where your herte is set. In the chayre of sorowe no great doubt it is.", "keyword_offset": 51}, "year": 1509, "lemma": "chair", "source": {"title": "Pastime of Pleasure", "author": "S. Hawes", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9766131", "word_id": "chair_nn01", "sense_id": "chair_nn01-9766128", "datestring": "1509", "first_in_word": false, "oed_reference": "chair, n.1, sense 2a", "first_in_sense": true}, {"id": "chair_nn01-9765825", "text": {"keyword": "tcheir", "full_text": "I sall sit heir, into this tcheir.", "keyword_offset": 27}, "year": 1535, "lemma": "chair", "source": {"title": "Satyre", "author": "D. Lindsay", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9765825", "word_id": "chair_nn01", "sense_id": "chair_nn01-9765748", "datestring": "1535", "first_in_word": false, "oed_reference": "chair, n.1, sense 1a", "first_in_sense": false}, {"id": "chair_nn01-9765817", "text": {"keyword": "tchyre", "full_text": "Heir sall the Carle clim vp and sit in the Kings tchyre.", "keyword_offset": 49}, "year": 1535, "lemma": "chair", "source": {"title": "Satyre", "author": "D. Lindsay", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9765817", "word_id": "chair_nn01", "sense_id": "chair_nn01-9765748", "datestring": "1535", "first_in_word": false, "oed_reference": "chair, n.1, sense 1a", "first_in_sense": false}, {"id": "chair_nn01-9766280", "text": {"keyword": "chayre", "full_text": "Euery man maie not syt in the chayre.", "keyword_offset": 30}, "year": 1546, "lemma": "chair", "source": {"title": "Dialogue Prouerbes Eng. Tongue", "author": "J. Heywood", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9766280", "word_id": "chair_nn01", "sense_id": "chair_nn01-9766261", "datestring": "1546", "first_in_word": false, "oed_reference": "chair, n.1, sense 3b", "first_in_sense": false}, {"id": "chair_nn01-9765833", "text": {"keyword": "chayres", "full_text": "Tables, coberdes, cofers, and chayres.", "keyword_offset": 30}, "year": 1553, "lemma": "chair", "source": {"title": "Treat. Newe India", "author": "R. Eden", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9765833", "word_id": "chair_nn01", "sense_id": "chair_nn01-9765748", "datestring": "1553", "first_in_word": false, "oed_reference": "chair, n.1, sense 1a", "first_in_sense": false}, {"id": "chair_nn01-9765843", "text": {"keyword": "cheyars", "full_text": "Thynges necessary to bee vsed, as cheyars.", "keyword_offset": 34}, "year": 1555, "lemma": "chair", "source": {"title": "Decades of Newe Worlde", "author": "R. Eden", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9765843", "word_id": "chair_nn01", "sense_id": "chair_nn01-9765748", "datestring": "1555", "first_in_word": false, "oed_reference": "chair, n.1, sense 1a", "first_in_sense": false}, {"id": "chair_nn01-9766140", "text": {"keyword": "chaire", "full_text": "Our soules sitteth in a sure chaire of a certaine expectacion.", "keyword_offset": 29}, "year": 1557, "lemma": "chair", "source": {"title": "Treat. Morall Philos.", "author": "W. Baldwin", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9766140", "word_id": "chair_nn01", "sense_id": "chair_nn01-9766128", "datestring": "1557", "first_in_word": false, "oed_reference": "chair, n.1, sense 2a", "first_in_sense": false}, {"id": "chair_nn01-9765855", "text": {"keyword": "chaire", "full_text": "In a chaire fast besides him.", "keyword_offset": 5}, "year": 1564, "lemma": "chair", "source": {"title": "Briefe Chron.", "author": "N. Haward", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9765855", "word_id": "chair_nn01", "sense_id": "chair_nn01-9765748", "datestring": "1564", "first_in_word": false, "oed_reference": "chair, n.1, sense 1a", "first_in_sense": false}, {"id": "chair_nn01-9765959", "text": {"keyword": "chayre", "full_text": "A compasse chayre, halfe a circle. Hemicyclus.", "keyword_offset": 11}, "year": 1574, "lemma": "chair", "source": {"title": "Aluearie", "author": "J. Baret", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9765959", "word_id": "chair_nn01", "sense_id": "chair_nn01-9765918", "datestring": "1574", "first_in_word": false, "oed_reference": "chair, n.1, sense 1b", "first_in_sense": true}, {"id": "chair_nn01-9766367", "text": {"keyword": "chaire", "full_text": "Treads downe the Strumpets pride, That sits vpon the chaire of Babylon.", "keyword_offset": 53}, "year": 1591, "lemma": "chair", "source": {"title": "Troublesome Raigne Iohn", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9766367", "word_id": "chair_nn01", "sense_id": "chair_nn01-9766353", "datestring": "1591", "first_in_word": false, "oed_reference": "chair, n.1, sense 4a", "first_in_sense": false}, {"id": "chair_nn01-9766150", "text": {"keyword": "chaire", "full_text": "Imagination the onely storehouse of wit, and peculiar chaire of memorie.", "keyword_offset": 54}, "year": 1597, "lemma": "chair", "source": {"title": "Of Lawes Eccl. Politie", "author": "R. Hooker", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9766150", "word_id": "chair_nn01", "sense_id": "chair_nn01-9766128", "datestring": "1597", "first_in_word": false, "oed_reference": "chair, n.1, sense 2a", "first_in_sense": false}, {"id": "chair_nn01-9766223", "text": {"keyword": "chayre", "full_text": "O how it greeues my vexed soule to see, Each painted asse in chayre of dignitie.", "keyword_offset": 61}, "year": 1602, "lemma": "chair", "source": {"title": "2nd Pt. Returne from Pernassus", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9766223", "word_id": "chair_nn01", "sense_id": "chair_nn01-9766191", "datestring": "1602", "first_in_word": false, "oed_reference": "chair, n.1, sense 3a", "first_in_sense": false}, {"id": "chair_nn01-9765866", "text": {"keyword": "chaire", "full_text": "Like a Barbers chaire that fits all buttockes.", "keyword_offset": 15}, "year": 1615, "lemma": "chair", "source": {"title": "All's Well that ends Well", "author": "W. Shakespeare", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9765866", "word_id": "chair_nn01", "sense_id": "chair_nn01-9765748", "datestring": "a1616", "first_in_word": false, "oed_reference": "chair, n.1, sense 1a", "first_in_sense": false}, {"id": "chair_nn01-9766170", "text": {"keyword": "Chayre", "full_text": "Breake a Launce, and runne a-Tilt at Death, Within a Chayre.", "keyword_offset": 53}, "year": 1615, "lemma": "chair", "source": {"title": "Henry VI, Pt. 1", "author": "W. Shakespeare", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9766170", "word_id": "chair_nn01", "sense_id": "chair_nn01-9766167", "datestring": "a1616", "first_in_word": false, "oed_reference": "chair, n.1, sense 2b", "first_in_sense": true}, {"id": "chair_nn01-9766180", "text": {"keyword": "Chaire", "full_text": "When saplesse Age, and weake vnable limbes Should bring thy Father to his drooping Chaire.", "keyword_offset": 83}, "year": 1615, "lemma": "chair", "source": {"title": "Henry VI, Pt. 1", "author": "W. Shakespeare", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9766180", "word_id": "chair_nn01", "sense_id": "chair_nn01-9766167", "datestring": "a1616", "first_in_word": false, "oed_reference": "chair, n.1, sense 2b", "first_in_sense": false}, {"id": "chair_nn01-9766423", "text": {"keyword": "chaire", "full_text": "It is the chaire of an Archbishop; inhabited for the most by Grecians.", "keyword_offset": 10}, "year": 1615, "lemma": "chair", "source": {"title": "Relation of Journey", "author": "G. Sandys", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9766423", "word_id": "chair_nn01", "sense_id": "chair_nn01-9766415", "datestring": "1615", "first_in_word": false, "oed_reference": "chair, n.1, sense 4b", "first_in_sense": true}, {"id": "chair_nn01-9766541", "text": {"keyword": "chairs", "full_text": "Now there are so many chairs erected, to make inquiry upon all sorts of men.", "keyword_offset": 22}, "year": 1629, "lemma": "chair", "source": {"title": null, "author": "King Charles I", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9766541", "word_id": "chair_nn01", "sense_id": "chair_nn01-9766538", "datestring": "1629", "first_in_word": false, "oed_reference": "chair, n.1, sense 7", "first_in_sense": true}, {"id": "chair_nn01-9766787", "text": {"keyword": "chairs", "full_text": "In many parts beyond the seas the people there are much carried in the streets in chairs that are covered.", "keyword_offset": 82}, "year": 1634, "lemma": "chair", "source": {"title": "Patent for setting up Sedans", "author": "S. Duncombe", "gender": null}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9766787", "word_id": "chair_nn01", "sense_id": "chair_nn01-9766784", "datestring": "1634", "first_in_word": false, "oed_reference": "chair, n.1, sense 10", "first_in_sense": true}, {"id": "chair_nn01-9766376", "text": {"keyword": "chaire", "full_text": "S. Peter would have advanc'd him to the Honour and power of the Bishops chaire.", "keyword_offset": 72}, "year": 1642, "lemma": "chair", "source": {"title": "Of Sacred Order Episcopacy", "author": "Bp. J. Taylor", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9766376", "word_id": "chair_nn01", "sense_id": "chair_nn01-9766353", "datestring": "1642", "first_in_word": false, "oed_reference": "chair, n.1, sense 4a", "first_in_sense": false}, {"id": "chair_nn01-9766431", "text": {"keyword": null, "full_text": "", "keyword_offset": null}, "year": 1642, "lemma": "chair", "source": {"title": null, "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9766431", "word_id": "chair_nn01", "sense_id": "chair_nn01-9766415", "datestring": "1642", "first_in_word": false, "oed_reference": "chair, n.1, sense 4b", "first_in_sense": false}, {"id": "chair_nn01-9766554", "text": {"keyword": "chair", "full_text": "For a Licencer is not contented now to give his single Imprimatur, but brings his chair into the Title leaf; there sits and judges up or judges down what book hee pleases.", "keyword_offset": 82}, "year": 1645, "lemma": "chair", "source": {"title": "Colasterion", "author": "J. Milton", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9766554", "word_id": "chair_nn01", "sense_id": "chair_nn01-9766538", "datestring": "1645", "first_in_word": false, "oed_reference": "chair, n.1, sense 7", "first_in_sense": false}, {"id": "chair_nn01-9766798", "text": {"keyword": "chayres", "full_text": "Using close chayres or sedans.", "keyword_offset": 12}, "year": 1647, "lemma": "chair", "source": {"title": "Sixteen Satyrs", "author": "R. Stapleton", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9766798", "word_id": "chair_nn01", "sense_id": "chair_nn01-9766784", "datestring": "1647", "first_in_word": false, "oed_reference": "chair, n.1, sense 10", "first_in_sense": false}, {"id": "chair_nn01-9766439", "text": {"keyword": "chair", "full_text": "A..charge, not performd by mounting twise into the chair with a formal preachment.", "keyword_offset": 51}, "year": 1649, "lemma": "chair", "source": {"title": "Tenure of Kings", "author": "J. Milton", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9766439", "word_id": "chair_nn01", "sense_id": "chair_nn01-9766435", "datestring": "1649", "first_in_word": false, "oed_reference": "chair, n.1, sense 5", "first_in_sense": true}, {"id": "chair_nn01-9766678", "text": {"keyword": "Chair", "full_text": "The Chair behaves himself like a Busby amongst so many school-boys..and takes a little too much on him.", "keyword_offset": 4}, "year": 1659, "lemma": "chair", "source": {"title": "Diary", "author": "T. Burton", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9766678", "word_id": "chair_nn01", "sense_id": "chair_nn01-9766670", "datestring": "1659", "first_in_word": false, "oed_reference": "chair, n.1, sense 9b", "first_in_sense": true}, {"id": "chair_nn01-9766616", "text": {"keyword": "Chair", "full_text": "I move that your Speaker forbear the Chair.", "keyword_offset": 37}, "year": 1659, "lemma": "chair", "source": {"title": "Diary", "author": "T. Burton", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9766616", "word_id": "chair_nn01", "sense_id": "chair_nn01-9766607", "datestring": "1659", "first_in_word": false, "oed_reference": "chair, n.1, sense 9a", "first_in_sense": true}, {"id": "chair_nn01-9766232", "text": {"keyword": "chair", "full_text": "At the Soldans chair Defi'd the best of Panim chivalry.", "keyword_offset": 15}, "year": 1667, "lemma": "chair", "source": {"title": "Paradise Lost", "author": "J. Milton", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9766232", "word_id": "chair_nn01", "sense_id": "chair_nn01-9766191", "datestring": "1667", "first_in_word": false, "oed_reference": "chair, n.1, sense 3a", "first_in_sense": false}, {"id": "chair_nn01-9766385", "text": {"keyword": "Chair", "full_text": "His first Chair, namely that of Antioch.", "keyword_offset": 10}, "year": 1674, "lemma": "chair", "source": {"title": "Saul & Samuel", "author": "D. Brevint", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9766385", "word_id": "chair_nn01", "sense_id": "chair_nn01-9766353", "datestring": "1674", "first_in_word": false, "oed_reference": "chair, n.1, sense 4a", "first_in_sense": false}, {"id": "chair_nn01-9766689", "text": {"keyword": "Chair", "full_text": "It was referred to Me by this Honourable Chair, to examine and produce the Experiment.", "keyword_offset": 41}, "year": 1676, "lemma": "chair", "source": {"title": "Solution of Salts", "author": "N. Grew", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9766689", "word_id": "chair_nn01", "sense_id": "chair_nn01-9766670", "datestring": "1676\u20137", "first_in_word": false, "oed_reference": "chair, n.1, sense 9b", "first_in_sense": false}, {"id": "chair_nn01-9766567", "text": {"keyword": "Chair", "full_text": "Some people..did so industriously stickle for Sir John Moor's Election to the Chair.", "keyword_offset": 78}, "year": 1682, "lemma": "chair", "source": {"title": "Modest Enq. Election Sheriffs London", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9766567", "word_id": "chair_nn01", "sense_id": "chair_nn01-9766562", "datestring": "1682", "first_in_word": false, "oed_reference": "chair, n.1, sense 8", "first_in_sense": true}, {"id": "chair_nn01-9766808", "text": {"keyword": "Chair", "full_text": "Thy Mask will cover all: There is a Chair below in the Entry to carry thee.", "keyword_offset": 36}, "year": 1688, "lemma": "chair", "source": {"title": "Squire of Alsatia", "author": "T. Shadwell", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9766808", "word_id": "chair_nn01", "sense_id": "chair_nn01-9766784", "datestring": "1688", "first_in_word": false, "oed_reference": "chair, n.1, sense 10", "first_in_sense": false}, {"id": "chair_nn01-9766468", "text": {"keyword": "chair", "full_text": "His prudent presiding in the Professors chair.", "keyword_offset": 40}, "year": 1691, "lemma": "chair", "source": {"title": "Athenae Oxonienses", "author": "A. Wood", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9766468", "word_id": "chair_nn01", "sense_id": "chair_nn01-9766456", "datestring": "1691", "first_in_word": false, "oed_reference": "chair, n.1, sense 6a", "first_in_sense": false}, {"id": "chair_nn01-9766289", "text": {"keyword": "Chair", "full_text": "He and Tiberius got into the Chair by the Tricks and Artifices of their Mothers.", "keyword_offset": 29}, "year": 1692, "lemma": "chair", "source": {"title": "Def. People Eng.", "author": "J. Washington", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9766289", "word_id": "chair_nn01", "sense_id": "chair_nn01-9766261", "datestring": "1692", "first_in_word": false, "oed_reference": "chair, n.1, sense 3b", "first_in_sense": false}, {"id": "chair_nn01-9766477", "text": {"keyword": "Chair", "full_text": "Our Saviour..should have taken the Chair, and have given the Inquisitive World a clear Determination concerning this great Question.", "keyword_offset": 35}, "year": 1693, "lemma": "chair", "source": {"title": "Pract. Disc. Divine Subj.", "author": "J. Norris", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9766477", "word_id": "chair_nn01", "sense_id": "chair_nn01-9766456", "datestring": "1693", "first_in_word": false, "oed_reference": "chair, n.1, sense 6a", "first_in_sense": false}, {"id": "chair_nn01-9766626", "text": {"keyword": "Chair", "full_text": "The Committee of the Commons appointed Mr Pym to sit in the Chair.", "keyword_offset": 60}, "year": 1702, "lemma": "chair", "source": {"title": "Clarendon's Hist. Rebellion", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9766626", "word_id": "chair_nn01", "sense_id": "chair_nn01-9766607", "datestring": "1702", "first_in_word": false, "oed_reference": "chair, n.1, sense 9a", "first_in_sense": false}, {"id": "chair_nn01-9765876", "text": {"keyword": "Chairs", "full_text": "Set Chairs, and the Bohee Tea, and leave us.", "keyword_offset": 4}, "year": 1704, "lemma": "chair", "source": {"title": "Lying Lover", "author": "R. Steele", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9765876", "word_id": "chair_nn01", "sense_id": "chair_nn01-9765748", "datestring": "1704", "first_in_word": false, "oed_reference": "chair, n.1, sense 1a", "first_in_sense": false}, {"id": "chair_nn01-9766488", "text": {"keyword": "Chair", "full_text": "Give that small Insect you contemn, The Chair in Porch or Academ.", "keyword_offset": 40}, "year": 1710, "lemma": "chair", "source": {"title": "Hymnotheo", "author": "T. Ken", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9766488", "word_id": "chair_nn01", "sense_id": "chair_nn01-9766456", "datestring": "a1711", "first_in_word": false, "oed_reference": "chair, n.1, sense 6a", "first_in_sense": false}, {"id": "chair_nn01-9765976", "text": {"keyword": "chair", "full_text": "The great Elbow-chair which stands at the upper End of the Table.", "keyword_offset": 16}, "year": 1711, "lemma": "chair", "source": {"title": "Spectator", "author": "J. Addison", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9765976", "word_id": "chair_nn01", "sense_id": "chair_nn01-9765918", "datestring": "1711", "first_in_word": false, "oed_reference": "chair, n.1, sense 1b", "first_in_sense": false}, {"id": "chair_nn01-9765968", "text": {"keyword": "chair", "full_text": "An easy chair..at the upper End of the Table.", "keyword_offset": 8}, "year": 1711, "lemma": "chair", "source": {"title": "Spectator", "author": "R. Steele", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9765968", "word_id": "chair_nn01", "sense_id": "chair_nn01-9765918", "datestring": "1711", "first_in_word": false, "oed_reference": "chair, n.1, sense 1b", "first_in_sense": false}, {"id": "chair_nn01-9766574", "text": {"keyword": "below the Chair", "full_text": "The Aldermen below the Chair on Horseback in Scarlet Gowns.", "keyword_offset": 13}, "year": 1714, "lemma": "chair", "source": {"title": "London Gaz.", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9766574", "word_id": "chair_nn01", "sense_id": "chair_nn01-9766562", "datestring": "1714", "first_in_word": false, "oed_reference": "chair, n.1, sense 8", "first_in_sense": false}, {"id": "chair_nn01-9766825", "text": {"keyword": "Chair", "full_text": "Call a Chair!", "keyword_offset": 7}, "year": 1722, "lemma": "chair", "source": {"title": "Conscious Lovers", "author": "R. Steele", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9766825", "word_id": "chair_nn01", "sense_id": "chair_nn01-9766784", "datestring": "1722", "first_in_word": false, "oed_reference": "chair, n.1, sense 10", "first_in_sense": false}, {"id": "chair_nn01-9766817", "text": {"keyword": "Chair", "full_text": "She..lock'd three Footmen to her Chair.", "keyword_offset": 33}, "year": 1726, "lemma": "chair", "source": {"title": "Cadenus & Vanessa", "author": "J. Swift", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9766817", "word_id": "chair_nn01", "sense_id": "chair_nn01-9766784", "datestring": "1726", "first_in_word": false, "oed_reference": "chair, n.1, sense 10", "first_in_sense": false}, {"id": "chair_nn01-9766581", "text": {"keyword": "Chair", "full_text": "A Gold Chain is one of the Ornaments or Badges of the Dignity of a Lord-Mayor of London; and remains to the Person, after his being divested of that Magistrature, as a Mark he has pass'd the Chair.", "keyword_offset": 191}, "year": 1728, "lemma": "chair", "source": {"title": "Cycl.", "author": "E. Chambers", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9766581", "word_id": "chair_nn01", "sense_id": "chair_nn01-9766562", "datestring": "1728", "first_in_word": false, "oed_reference": "chair, n.1, sense 8", "first_in_sense": false}, {"id": "chair_nn01-9765985", "text": {"keyword": "Leather-Chairs", "full_text": "Easy Leather-Chairs made..with..Springs.", "keyword_offset": 5}, "year": 1737, "lemma": "chair", "source": {"title": "Wks.", "author": "J. Ozell", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9765985", "word_id": "chair_nn01", "sense_id": "chair_nn01-9765918", "datestring": "1737", "first_in_word": false, "oed_reference": "chair, n.1, sense 1b", "first_in_sense": false}, {"id": "chair_nn01-9766159", "text": {"keyword": "Chair", "full_text": "The Persecutor's Guilt to share Oppressive in the Scorner's Chair.", "keyword_offset": 60}, "year": 1738, "lemma": "chair", "source": {"title": "Coll. Psalms & Hymns", "author": "J. Wesley", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9766159", "word_id": "chair_nn01", "sense_id": "chair_nn01-9766128", "datestring": "1738", "first_in_word": false, "oed_reference": "chair, n.1, sense 2a", "first_in_sense": false}, {"id": "chair_nn01-9765885", "text": {"keyword": "chair", "full_text": "Mistaking a lady's lap for my own chair.", "keyword_offset": 34}, "year": 1751, "lemma": "chair", "source": {"title": "Rambler", "author": "S. Johnson", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9765885", "word_id": "chair_nn01", "sense_id": "chair_nn01-9765748", "datestring": "1751", "first_in_word": false, "oed_reference": "chair, n.1, sense 1a", "first_in_sense": false}, {"id": "chair_nn01-9766834", "text": {"keyword": "chair", "full_text": "At the proper time a chair was called.", "keyword_offset": 21}, "year": 1752, "lemma": "chair", "source": {"title": "Rambler", "author": "S. Johnson", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9766834", "word_id": "chair_nn01", "sense_id": "chair_nn01-9766784", "datestring": "1752", "first_in_word": false, "oed_reference": "chair, n.1, sense 10", "first_in_sense": false}, {"id": "chair_nn01-9766867", "text": {"keyword": "chair", "full_text": "The profits..have enabled me to set up a one-horse chair.", "keyword_offset": 51}, "year": 1753, "lemma": "chair", "source": {"title": "Scots Mag.", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9766867", "word_id": "chair_nn01", "sense_id": "chair_nn01-9766861", "datestring": "1753", "first_in_word": false, "oed_reference": "chair, n.1, sense 11", "first_in_sense": true}, {"id": "chair_nn01-9765894", "text": {"keyword": "take a chair", "full_text": "She..desired me to take a chair.", "keyword_offset": 19}, "year": 1753, "lemma": "chair", "source": {"title": "Scots Mag.", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9765894", "word_id": "chair_nn01", "sense_id": "chair_nn01-9765748", "datestring": "1753", "first_in_word": false, "oed_reference": "chair, n.1, sense 1a", "first_in_sense": false}, {"id": "chair_nn01-9766241", "text": {"keyword": "chair", "full_text": "Close by the regal chair Fell Thirst and Famine scowl.", "keyword_offset": 19}, "year": 1757, "lemma": "chair", "source": {"title": "Ode II", "author": "T. Gray", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9766241", "word_id": "chair_nn01", "sense_id": "chair_nn01-9766191", "datestring": "1757", "first_in_word": false, "oed_reference": "chair, n.1, sense 3a", "first_in_sense": false}, {"id": "chair_nn01-9766875", "text": {"keyword": "chair", "full_text": "There is not a greater difference between a single-horse chair and madam Pompadour's vis a vis.", "keyword_offset": 57}, "year": 1761, "lemma": "chair", "source": {"title": "Life Tristram Shandy", "author": "L. Sterne", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9766875", "word_id": "chair_nn01", "sense_id": "chair_nn01-9766861", "datestring": "1761", "first_in_word": false, "oed_reference": "chair, n.1, sense 11", "first_in_sense": false}, {"id": "chair_nn01-9766590", "text": {"keyword": "past the chair", "full_text": "The judges are the lord-mayor, the aldermen past the chair, and the recorder.", "keyword_offset": 44}, "year": 1766, "lemma": "chair", "source": {"title": "Surv. London", "author": "J. Entick", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9766590", "word_id": "chair_nn01", "sense_id": "chair_nn01-9766562", "datestring": "1766", "first_in_word": false, "oed_reference": "chair, n.1, sense 8", "first_in_sense": false}, {"id": "chair_nn01-9766843", "text": {"keyword": "chair", "full_text": "Help the gentleman into a chair, and carry him to my house.", "keyword_offset": 26}, "year": 1781, "lemma": "chair", "source": {"title": "Trip to Scarborough", "author": "R. B. Sheridan", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9766843", "word_id": "chair_nn01", "sense_id": "chair_nn01-9766784", "datestring": "1781", "first_in_word": false, "oed_reference": "chair, n.1, sense 10", "first_in_sense": false}, {"id": "chair_nn01-9766636", "text": {"keyword": "take the chair", "full_text": "Here comes the neighbouring Squire, with gracious air, To stamp opinions, and to take the chair.", "keyword_offset": 81}, "year": 1785, "lemma": "chair", "source": {"title": "News-paper", "author": "G. Crabbe", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9766636", "word_id": "chair_nn01", "sense_id": "chair_nn01-9766607", "datestring": "1785", "first_in_word": false, "oed_reference": "chair, n.1, sense 9a", "first_in_sense": false}, {"id": "chair_nn01-9765994", "text": {"keyword": "chair", "full_text": "I..found him..sitting in a great chair.", "keyword_offset": 33}, "year": 1790, "lemma": "chair", "source": {"title": "Med. Communications", "author": "J. C. Smyth", "gender": null}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9765994", "word_id": "chair_nn01", "sense_id": "chair_nn01-9765918", "datestring": "1790", "first_in_word": false, "oed_reference": "chair, n.1, sense 1b", "first_in_sense": false}, {"id": "chair_nn01-9766886", "text": {"keyword": "Chair", "full_text": "Chair, a light chaise without pannels, for the use of parks, gardens, &c. commonly applied to all light chaises.", "keyword_offset": 0}, "year": 1795, "lemma": "chair", "source": {"title": "Treat. Carriages", "author": "W. Felton", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9766886", "word_id": "chair_nn01", "sense_id": "chair_nn01-9766861", "datestring": "1795", "first_in_word": false, "oed_reference": "chair, n.1, sense 11", "first_in_sense": false}, {"id": "chair_nn01-9766393", "text": {"keyword": "chair", "full_text": "Henry..took measures not only to humble Becket, but also to lower that chair.", "keyword_offset": 71}, "year": 1796, "lemma": "chair", "source": {"title": "Ess. Abridgm. Eng. Hist.", "author": "E. Burke", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9766393", "word_id": "chair_nn01", "sense_id": "chair_nn01-9766353", "datestring": "a1797", "first_in_word": false, "oed_reference": "chair, n.1, sense 4a", "first_in_sense": false}, {"id": "chair_nn01-9766004", "text": {"keyword": "chair", "full_text": "Having requested the indulgence of an easy chair at the sittings of the French Academy..the King, instead of one easy chair, sent forty to the Academy.", "keyword_offset": 43}, "year": 1796, "lemma": "chair", "source": {"title": "Stud. Nature", "author": "H. Hunter", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9766004", "word_id": "chair_nn01", "sense_id": "chair_nn01-9765918", "datestring": "1796", "first_in_word": false, "oed_reference": "chair, n.1, sense 1b", "first_in_sense": false}, {"id": "chair_nn01-9766970", "text": {"keyword": "Chair", "full_text": "Chair, used in drawing up ore or coal.", "keyword_offset": 0}, "year": 1802, "lemma": "chair", "source": {"title": "Mineral. of Derbyshire", "author": "J. Mawe", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9766970", "word_id": "chair_nn01", "sense_id": "chair_nn01-9766962", "datestring": "1802", "first_in_word": false, "oed_reference": "chair, n.1, sense 13", "first_in_sense": true}, {"id": "chair_nn01-9766644", "text": {"keyword": "Chair", "full_text": "That the thanks of this meeting be given to Dr. Brandreth, for his cool and patient attention and conduct in the Chair.", "keyword_offset": 113}, "year": 1806, "lemma": "chair", "source": {"title": "Med. & Physical Jrnl.", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9766644", "word_id": "chair_nn01", "sense_id": "chair_nn01-9766607", "datestring": "1806", "first_in_word": false, "oed_reference": "chair, n.1, sense 9a", "first_in_sense": false}, {"id": "chair_nn01-9766652", "text": {"keyword": "Chair", "full_text": "Pleas'd to guide His little Club and in the Chair preside.", "keyword_offset": 44}, "year": 1807, "lemma": "chair", "source": {"title": "Newspaper", "author": "G. Crabbe", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9766652", "word_id": "chair_nn01", "sense_id": "chair_nn01-9766607", "datestring": "1807", "first_in_word": false, "oed_reference": "chair, n.1, sense 9a", "first_in_sense": false}, {"id": "chair_nn01-9766852", "text": {"keyword": "chairs", "full_text": "The belle and beau, In chairs and chariots, stop the way.", "keyword_offset": 23}, "year": 1808, "lemma": "chair", "source": {"title": "Siller Gun", "author": "J. Mayne", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9766852", "word_id": "chair_nn01", "sense_id": "chair_nn01-9766784", "datestring": "1808", "first_in_word": false, "oed_reference": "chair, n.1, sense 10", "first_in_sense": false}, {"id": "chair_nn01-9766511", "text": {"keyword": "chair", "full_text": "Fighting his way to a chair of rhetoric.", "keyword_offset": 22}, "year": 1816, "lemma": "chair", "source": {"title": "Antiquary", "author": "W. Scott", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9766511", "word_id": "chair_nn01", "sense_id": "chair_nn01-9766508", "datestring": "1816", "first_in_word": false, "oed_reference": "chair, n.1, sense 6b", "first_in_sense": true}, {"id": "chair_nn01-9766935", "text": {"keyword": "chairs", "full_text": "To fix both the ends of the rails..immoveable in or upon the chairs or props by which they are supported.", "keyword_offset": 61}, "year": 1816, "lemma": "chair", "source": {"title": "Specif. Patent 4067", "author": "W. Losh", "gender": null}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9766935", "word_id": "chair_nn01", "sense_id": "chair_nn01-9766921", "datestring": "1816", "first_in_word": false, "oed_reference": "chair, n.1, sense 12", "first_in_sense": true}, {"id": "chair_nn01-9766312", "text": {"keyword": "chair", "full_text": "He was placed, by the general voice, in the bardic chair, and invested with a blue ribbon.", "keyword_offset": 51}, "year": 1820, "lemma": "chair", "source": {"title": "Cambro-Briton", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9766312", "word_id": "chair_nn01", "sense_id": "chair_nn01-9766309", "datestring": "1820", "first_in_word": false, "oed_reference": "chair, n.1, sense 3c", "first_in_sense": true}, {"id": "chair_nn01-9766896", "text": {"keyword": "chair", "full_text": "As I please to take the air Command the ponies to a chair.", "keyword_offset": 52}, "year": 1821, "lemma": "chair", "source": {"title": "Third Tour Dr. Syntax", "author": "W. Combe", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9766896", "word_id": "chair_nn01", "sense_id": "chair_nn01-9766861", "datestring": "1821", "first_in_word": false, "oed_reference": "chair, n.1, sense 11", "first_in_sense": false}, {"id": "chair_nn01-9766016", "text": {"keyword": "swinging chair", "full_text": "He sat in the swinging chair.", "keyword_offset": 14}, "year": 1830, "lemma": "chair", "source": {"title": "Lawrie Todd", "author": "J. Galt", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9766016", "word_id": "chair_nn01", "sense_id": "chair_nn01-9765918", "datestring": "1830", "first_in_word": false, "oed_reference": "chair, n.1, sense 1b", "first_in_sense": false}, {"id": "chair_nn01-9766945", "text": {"keyword": "chair", "full_text": "Each of these sleepers being a heavy block of stone, having a small cradle of iron, or chair as it is called, rivetted on the top for the purpose of supporting the rails.", "keyword_offset": 87}, "year": 1836, "lemma": "chair", "source": {"title": "Home Tour", "author": "G. Head", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9766945", "word_id": "chair_nn01", "sense_id": "chair_nn01-9766921", "datestring": "1836", "first_in_word": false, "oed_reference": "chair, n.1, sense 12", "first_in_sense": false}, {"id": "chair_nn01-9766698", "text": {"keyword": "Chair", "full_text": "Cries of \u2018Order,\u2019 \u2018Chair,\u2019 \u2018Yes,\u2019 \u2018No,\u2019 \u2018Go on.\u2019", "keyword_offset": 19}, "year": 1836, "lemma": "chair", "source": {"title": "Pickwick Papers", "author": "C. Dickens", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9766698", "word_id": "chair_nn01", "sense_id": "chair_nn01-9766670", "datestring": "1836", "first_in_word": false, "oed_reference": "chair, n.1, sense 9b", "first_in_sense": false}, {"id": "chair_nn01-9765902", "text": {"keyword": "Take a chair", "full_text": "Take a chair.", "keyword_offset": 0}, "year": 1840, "lemma": "chair", "source": {"title": "Poor Jack", "author": "F. Marryat", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9765902", "word_id": "chair_nn01", "sense_id": "chair_nn01-9765748", "datestring": "1840", "first_in_word": false, "oed_reference": "chair, n.1, sense 1a", "first_in_sense": false}, {"id": "chair_nn01-9766026", "text": {"keyword": "wheel-chair", "full_text": "A servant passes, pushing through the crowd a shabby wheel-chair.", "keyword_offset": 53}, "year": 1841, "lemma": "chair", "source": {"title": "Second Funeral Napoleon", "author": "W. M. Thackeray", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9766026", "word_id": "chair_nn01", "sense_id": "chair_nn01-9765918", "datestring": "1841", "first_in_word": false, "oed_reference": "chair, n.1, sense 1b", "first_in_sense": false}, {"id": "chair_nn01-9766037", "text": {"keyword": "chair", "full_text": "Another workman receives it and sits down in a chair having two flat parallel arms sloping downwards.", "keyword_offset": 47}, "year": 1845, "lemma": "chair", "source": {"title": "Brit. Manuf.", "author": "G. Dodd", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9766037", "word_id": "chair_nn01", "sense_id": "chair_nn01-9766034", "datestring": "1845", "first_in_word": false, "oed_reference": "chair, n.1, sense 1c", "first_in_sense": true}, {"id": "chair_nn01-9766662", "text": {"keyword": "chair", "full_text": "John Hampden..was put into the chair.", "keyword_offset": 31}, "year": 1848, "lemma": "chair", "source": {"title": "Hist. Eng.", "author": "T. B. Macaulay", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9766662", "word_id": "chair_nn01", "sense_id": "chair_nn01-9766607", "datestring": "1848", "first_in_word": false, "oed_reference": "chair, n.1, sense 9a", "first_in_sense": false}, {"id": "chair_nn01-9766520", "text": {"keyword": "chairs", "full_text": "Many chairs and many fellowships are made beds of ease.", "keyword_offset": 5}, "year": 1856, "lemma": "chair", "source": {"title": "Eng. Traits", "author": "R. W. Emerson", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9766520", "word_id": "chair_nn01", "sense_id": "chair_nn01-9766508", "datestring": "1856", "first_in_word": false, "oed_reference": "chair, n.1, sense 6b", "first_in_sense": false}, {"id": "chair_nn01-9766301", "text": {"keyword": "chairs", "full_text": "He rooted out the slothful officer.., And in their chairs set up a stronger race.", "keyword_offset": 51}, "year": 1859, "lemma": "chair", "source": {"title": "Enid", "author": "Ld. Tennyson", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9766301", "word_id": "chair_nn01", "sense_id": "chair_nn01-9766261", "datestring": "1859", "first_in_word": false, "oed_reference": "chair, n.1, sense 3b", "first_in_sense": false}, {"id": "chair_nn01-9766706", "text": {"keyword": "chair", "full_text": "An amiable discussion between the \u2018chair\u2019 and an..obstinate person at the other end of the room.", "keyword_offset": 35}, "year": 1860, "lemma": "chair", "source": {"title": "All Year Round", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9766706", "word_id": "chair_nn01", "sense_id": "chair_nn01-9766670", "datestring": "1860", "first_in_word": false, "oed_reference": "chair, n.1, sense 9b", "first_in_sense": false}, {"id": "chair_nn01-9766953", "text": {"keyword": "chair", "full_text": "The flat base of the chair upon which the rails rested being tilted.", "keyword_offset": 21}, "year": 1862, "lemma": "chair", "source": {"title": "Lives Engineers", "author": "S. Smiles", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9766953", "word_id": "chair_nn01", "sense_id": "chair_nn01-9766921", "datestring": "1862", "first_in_word": false, "oed_reference": "chair, n.1, sense 12", "first_in_sense": false}, {"id": "chair_nn01-9766405", "text": {"keyword": "chair", "full_text": "Ealdhun now moved his chair..to a site nobler than that occupied by any other minster in England.", "keyword_offset": 22}, "year": 1870, "lemma": "chair", "source": {"title": "Hist. Norman Conquest", "author": "E. A. Freeman", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9766405", "word_id": "chair_nn01", "sense_id": "chair_nn01-9766353", "datestring": "1870", "first_in_word": false, "oed_reference": "chair, n.1, sense 4a", "first_in_sense": false}, {"id": "chair_nn01-9765910", "text": {"keyword": "chairs", "full_text": "The chairs were all a-row against the walls.", "keyword_offset": 4}, "year": 1870, "lemma": "chair", "source": {"title": "Cranford", "author": "E. C. Gaskell", "gender": "female"}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9765910", "word_id": "chair_nn01", "sense_id": "chair_nn01-9765748", "datestring": "1870", "first_in_word": false, "oed_reference": "chair, n.1, sense 1a", "first_in_sense": false}, {"id": "chair_nn01-9766447", "text": {"keyword": "chair", "full_text": "Whether he preach in chair, or print in book.", "keyword_offset": 21}, "year": 1873, "lemma": "chair", "source": {"title": "Red Cotton Night-cap Country", "author": "R. Browning", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9766447", "word_id": "chair_nn01", "sense_id": "chair_nn01-9766435", "datestring": "1873", "first_in_word": false, "oed_reference": "chair, n.1, sense 5", "first_in_sense": false}, {"id": "chair_nn01-9766320", "text": {"keyword": "Chair", "full_text": "The grand event of the whole Eisteddfod..\u2014the giving of the Chair Prize.", "keyword_offset": 60}, "year": 1874, "lemma": "chair", "source": {"title": "Cassell's Mag.", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9766320", "word_id": "chair_nn01", "sense_id": "chair_nn01-9766309", "datestring": "1874", "first_in_word": false, "oed_reference": "chair, n.1, sense 3c", "first_in_sense": false}, {"id": "chair_nn01-9766528", "text": {"keyword": "Chair", "full_text": "The author had still the Chair of Poetry at Oxford.", "keyword_offset": 25}, "year": 1875, "lemma": "chair", "source": {"title": "Ess. Crit.", "author": "M. Arnold", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9766528", "word_id": "chair_nn01", "sense_id": "chair_nn01-9766508", "datestring": "1875", "first_in_word": false, "oed_reference": "chair, n.1, sense 6b", "first_in_sense": false}, {"id": "chair_nn01-9766500", "text": {"keyword": "chairs", "full_text": "English scholars gathered in thousands round the chairs of William of Champeaux or Abelard.", "keyword_offset": 49}, "year": 1876, "lemma": "chair", "source": {"title": "Short Hist. Eng. People", "author": "J. R. Green", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9766500", "word_id": "chair_nn01", "sense_id": "chair_nn01-9766456", "datestring": "1876", "first_in_word": false, "oed_reference": "chair, n.1, sense 6a", "first_in_sense": false}, {"id": "chair_nn01-9766328", "text": {"keyword": "chair", "full_text": "The chair was a kind of convention where disciples were trained, and bardic matters discussed preparatory to the great Gorsedd... There are now existing four chairs in Wales.", "keyword_offset": 4}, "year": 1877, "lemma": "chair", "source": {"title": "Encycl. Brit.", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9766328", "word_id": "chair_nn01", "sense_id": "chair_nn01-9766309", "datestring": "1877", "first_in_word": false, "oed_reference": "chair, n.1, sense 3c", "first_in_sense": false}, {"id": "chair_nn01-9766253", "text": {"keyword": "chair", "full_text": "Holdelm..was chosen by him as the seat of his episcopal chair.", "keyword_offset": 56}, "year": 1879, "lemma": "chair", "source": {"title": "Celts", "author": "G. F. Maclear", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9766253", "word_id": "chair_nn01", "sense_id": "chair_nn01-9766191", "datestring": "1879", "first_in_word": false, "oed_reference": "chair, n.1, sense 3a", "first_in_sense": false}, {"id": "chair_nn01-9766599", "text": {"keyword": "Chair", "full_text": "All the above have passed the Civic Chair.", "keyword_offset": 36}, "year": 1885, "lemma": "chair", "source": {"title": "Whitaker's Almanack", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9766599", "word_id": "chair_nn01", "sense_id": "chair_nn01-9766562", "datestring": "1885", "first_in_word": false, "oed_reference": "chair, n.1, sense 8", "first_in_sense": false}, {"id": "chair_nn01-9766714", "text": {"keyword": "Chair", "full_text": "It can hardly be conceived that the Chair would fail to gain the support of the House.", "keyword_offset": 36}, "year": 1887, "lemma": "chair", "source": {"title": "Times", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9766714", "word_id": "chair_nn01", "sense_id": "chair_nn01-9766670", "datestring": "1887", "first_in_word": false, "oed_reference": "chair, n.1, sense 9b", "first_in_sense": false}, {"id": "chair_nn01-9766046", "text": {"keyword": "chair", "full_text": "Every two crucibles supply one \u2018chair\u2019. The glassworker's chair is practically his lathe.", "keyword_offset": 32}, "year": 1890, "lemma": "chair", "source": {"title": "Foundry", "author": "W. J. Gordon", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9766046", "word_id": "chair_nn01", "sense_id": "chair_nn01-9766034", "datestring": "1890", "first_in_word": false, "oed_reference": "chair, n.1, sense 1c", "first_in_sense": false}, {"id": "chair_nn01-9766054", "text": {"keyword": "chairs", "full_text": "There were ten chairs at the works, each occupied by a glassmaker, servitor, and footmaker.", "keyword_offset": 15}, "year": 1897, "lemma": "chair", "source": {"title": "Worc. County Express", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9766054", "word_id": "chair_nn01", "sense_id": "chair_nn01-9766034", "datestring": "1897", "first_in_word": false, "oed_reference": "chair, n.1, sense 1c", "first_in_sense": false}, {"id": "chair_nn01-9766097", "text": {"keyword": "chair", "full_text": "He was a copper, and we fly cops have got to send some bloke to the chair for blastin' him.", "keyword_offset": 68}, "year": 1900, "lemma": "chair", "source": {"title": "Powers that Prey", "author": "\u2018J. Flynt\u2019", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9766097", "word_id": "chair_nn01", "sense_id": "chair_nn01-9766086", "datestring": "1900", "first_in_word": false, "oed_reference": "chair, n.1, sense 1d", "first_in_sense": true}, {"id": "chair_nn01-9766061", "text": {"keyword": "chair", "full_text": "Eighty is the limit number of strawstem wineglasses to be made in six hours by a \u2018chair\u2019, which consists of three men and a boy.", "keyword_offset": 82}, "year": 1902, "lemma": "chair", "source": {"title": "B'ham Daily Post", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9766061", "word_id": "chair_nn01", "sense_id": "chair_nn01-9766034", "datestring": "1902", "first_in_word": false, "oed_reference": "chair, n.1, sense 1c", "first_in_sense": false}, {"id": "chair_nn01-9766336", "text": {"keyword": "Chairs", "full_text": "The earliest Eisteddfodau, or \u2018Chairs\u2019 as they were then called,..were held under the patronage of the Princes of Wales at the beginning of the sixth century.", "keyword_offset": 31}, "year": 1909, "lemma": "chair", "source": {"title": "Eisteddfod", "author": "T. R. Roberts", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9766336", "word_id": "chair_nn01", "sense_id": "chair_nn01-9766309", "datestring": "1909", "first_in_word": false, "oed_reference": "chair, n.1, sense 3c", "first_in_sense": false}, {"id": "chair_nn01-9766344", "text": {"keyword": "chair", "full_text": "The Gwyneddigion offered a silver chair to the bard who could write the best verses.", "keyword_offset": 34}, "year": 1909, "lemma": "chair", "source": {"title": "Eisteddfod", "author": "T. R. Roberts", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9766344", "word_id": "chair_nn01", "sense_id": "chair_nn01-9766309", "datestring": "1909", "first_in_word": false, "oed_reference": "chair, n.1, sense 3c", "first_in_sense": false}, {"id": "chair_nn01-9766905", "text": {"keyword": "chair", "full_text": "They went together in a double chair, spinning noiselessly over the shell road.", "keyword_offset": 31}, "year": 1909, "lemma": "chair", "source": {"title": "Firing Line", "author": "R. W. Chambers", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9766905", "word_id": "chair_nn01", "sense_id": "chair_nn01-9766861", "datestring": "1909", "first_in_word": false, "oed_reference": "chair, n.1, sense 11", "first_in_sense": false}, {"id": "chair_nn01-9766913", "text": {"keyword": "chair", "full_text": "Their black chair-boy lay asleep under a thicket of Spanish bayonet.", "keyword_offset": 12}, "year": 1909, "lemma": "chair", "source": {"title": "Firing Line", "author": "R. W. Chambers", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9766913", "word_id": "chair_nn01", "sense_id": "chair_nn01-9766861", "datestring": "1909", "first_in_word": false, "oed_reference": "chair, n.1, sense 11", "first_in_sense": false}, {"id": "chair_nn01-9766107", "text": {"keyword": "chair", "full_text": "I've left papers\u2014proofs, 'n' it'ud be the chair for yours\u2014savvy?", "keyword_offset": 42}, "year": 1917, "lemma": "chair", "source": {"title": "Definite Object", "author": "J. Farnol", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9766107", "word_id": "chair_nn01", "sense_id": "chair_nn01-9766086", "datestring": "1917", "first_in_word": false, "oed_reference": "chair, n.1, sense 1d", "first_in_sense": false}, {"id": "chair_nn01-232255677", "text": {"keyword": "chair form", "full_text": "Sachse's two strain-free configurations of cyclohexane... If Mohr's postulate held,..the boat form has a strain free motion and the chair form is rigid.", "keyword_offset": 132}, "year": 1925, "lemma": "chair", "source": {"title": "Jrnl. Soc. Chem. Industry", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/30215#eid232255677", "word_id": "chair_nn01", "sense_id": "chair_nn01-218565101", "datestring": "1925", "first_in_word": false, "oed_reference": "chair, n.1, Additions", "first_in_sense": true}, {"id": "chair_nn01-9766115", "text": {"keyword": "chair", "full_text": "The discovery of the murderer's handkerchief..was the means of bringing a most notorious criminal to the chair.", "keyword_offset": 105}, "year": 1926, "lemma": "chair", "source": {"title": "Blatchington Tangle", "author": "G. D. H. Cole", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9766115", "word_id": "chair_nn01", "sense_id": "chair_nn01-9766086", "datestring": "1926", "first_in_word": false, "oed_reference": "chair, n.1, sense 1d", "first_in_sense": false}, {"id": "chair_nn01-137418876", "text": {"keyword": "chair", "full_text": "The world's largest ski lift, the 8,200 foot double chair project at..Squaw Valley.", "keyword_offset": 52}, "year": 1949, "lemma": "chair", "source": {"title": "N.Y. Times", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/30215#eid137418876", "word_id": "chair_nn01", "sense_id": "chair_nn01-128025765", "datestring": "1949", "first_in_word": false, "oed_reference": "chair, n.1, Additions", "first_in_sense": true}, {"id": "chair_nn01-137418884", "text": {"keyword": "chairs", "full_text": "It has been rebuilt with double chairs replacing the single seaters.", "keyword_offset": 32}, "year": 1951, "lemma": "chair", "source": {"title": "Chicago Sunday Tribune", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/30215#eid137418884", "word_id": "chair_nn01", "sense_id": "chair_nn01-128025765", "datestring": "1951", "first_in_word": false, "oed_reference": "chair, n.1, Additions", "first_in_sense": false}, {"id": "chair_nn01-218565110", "text": {"keyword": "chair", "full_text": "A system is presented for designating, with symbols, all chair and boat conformations of all pyranoid sugars and derivatives.", "keyword_offset": 57}, "year": 1959, "lemma": "chair", "source": {"title": "Science", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/30215#eid218565110", "word_id": "chair_nn01", "sense_id": "chair_nn01-218565101", "datestring": "1959", "first_in_word": false, "oed_reference": "chair, n.1, Additions", "first_in_sense": false}, {"id": "chair_nn01-9766077", "text": {"keyword": "Chair", "full_text": "Chair, a team or gang of workers producing blown or pressed glassware by hand.", "keyword_offset": 0}, "year": 1962, "lemma": "chair", "source": {"title": "Gloss. Terms Glass Ind.", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9766077", "word_id": "chair_nn01", "sense_id": "chair_nn01-9766034", "datestring": "1962", "first_in_word": false, "oed_reference": "chair, n.1, sense 1c", "first_in_sense": false}, {"id": "chair_nn01-9766068", "text": {"keyword": "chair", "full_text": "Chair, a special long-armed chair in which the craftsman sits when shaping glass.", "keyword_offset": 28}, "year": 1962, "lemma": "chair", "source": {"title": "Gloss. Terms Glass Ind.", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9766068", "word_id": "chair_nn01", "sense_id": "chair_nn01-9766034", "datestring": "1962", "first_in_word": false, "oed_reference": "chair, n.1, sense 1c", "first_in_sense": false}, {"id": "chair_nn01-9766722", "text": {"keyword": "chair", "full_text": "Seventeen members of the university's Department of Linguistics, including the department's distinguished chair, Calvert Watkins, had written a letter to the Crimson on the subject of the students' action.", "keyword_offset": 106}, "year": 1976, "lemma": "chair", "source": {"title": "Words & Women", "author": "C. Miller", "gender": null}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9766722", "word_id": "chair_nn01", "sense_id": "chair_nn01-9766670", "datestring": "1976", "first_in_word": false, "oed_reference": "chair, n.1, sense 9b", "first_in_sense": false}, {"id": "chair_nn01-218565118", "text": {"keyword": "chair", "full_text": "3,4-dimethyl-1,5-hexadiene is free to assume either the chair or boat (it prefers the chair), but other compounds are not so free.", "keyword_offset": 56}, "year": 1977, "lemma": "chair", "source": {"title": "Adv. Org. Chem.", "author": "J. March", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/30215#eid218565118", "word_id": "chair_nn01", "sense_id": "chair_nn01-218565101", "datestring": "1977", "first_in_word": false, "oed_reference": "chair, n.1, Additions", "first_in_sense": false}, {"id": "chair_nn01-9766734", "text": {"keyword": "chair", "full_text": "The chairman of directors of each packing company is called the chair.", "keyword_offset": 64}, "year": 1982, "lemma": "chair", "source": {"title": "Occas. Papers Univ. Sydney Austral. Lang. Res. Centre", "author": "J. A. Sharwood", "gender": null}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9766734", "word_id": "chair_nn01", "sense_id": "chair_nn01-9766670", "datestring": "1982", "first_in_word": false, "oed_reference": "chair, n.1, sense 9b", "first_in_sense": false}, {"id": "chair_nn01-9766745", "text": {"keyword": "chair", "full_text": "Martha Layne Collins..is to serve as chair of the Convention.", "keyword_offset": 37}, "year": 1984, "lemma": "chair", "source": {"title": "New Yorker", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9766745", "word_id": "chair_nn01", "sense_id": "chair_nn01-9766670", "datestring": "1984", "first_in_word": false, "oed_reference": "chair, n.1, sense 9b", "first_in_sense": false}, {"id": "chair_nn01-9766753", "text": {"keyword": "chair", "full_text": "She has annoyed the Black Sections by refusing to resign as chair of the party black advisory committee.", "keyword_offset": 60}, "year": 1986, "lemma": "chair", "source": {"title": "Tribune", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/30215#eid9766753", "word_id": "chair_nn01", "sense_id": "chair_nn01-9766670", "datestring": "1986", "first_in_word": false, "oed_reference": "chair, n.1, sense 9b", "first_in_sense": false}, {"id": "chair_nn01-128040961", "text": {"keyword": "chairs", "full_text": "Sun Valley now is served by 15 modern chairs, including a trio of high-speed, detachable quads (four-person chairs).", "keyword_offset": 38}, "year": 1989, "lemma": "chair", "source": {"title": "St. Petersburg (Florida) Times", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/30215#eid128040961", "word_id": "chair_nn01", "sense_id": "chair_nn01-128025765", "datestring": "1989", "first_in_word": false, "oed_reference": "chair, n.1, Additions", "first_in_sense": false}, {"id": "chair_nn01-128040982", "text": {"keyword": "chairs", "full_text": "The hills today are serviced by double and triple chairs and a T-bar lift.", "keyword_offset": 50}, "year": 1992, "lemma": "chair", "source": {"title": "Globe & Mail (Toronto)", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/30215#eid128040982", "word_id": "chair_nn01", "sense_id": "chair_nn01-128025765", "datestring": "1992", "first_in_word": false, "oed_reference": "chair, n.1, Additions", "first_in_sense": false}, {"id": "chair_nn01-128040992", "text": {"keyword": "chair", "full_text": "Their chair was approaching the unloading point.", "keyword_offset": 6}, "year": 2005, "lemma": "chair", "source": {"title": "Ski Instructors Confidential", "author": "A. R. Smith", "gender": null}, "oed_url": "https://www.oed.com/view/Entry/30215#eid128040992", "word_id": "chair_nn01", "sense_id": "chair_nn01-128025765", "datestring": "2005", "first_in_word": false, "oed_reference": "chair, n.1, Additions", "first_in_sense": false}, {"id": "chair_nn01-264131310", "text": {"keyword": "chair conformation", "full_text": "There are two nonplanar conformations, called the chair conformation and the boat conformation, that are completely free of angle strain.", "keyword_offset": 50}, "year": 2006, "lemma": "chair", "source": {"title": "Org. Chem.", "author": "J. M. Hornback", "gender": null}, "oed_url": "https://www.oed.com/view/Entry/30215#eid264131310", "word_id": "chair_nn01", "sense_id": "chair_nn01-218565101", "datestring": " \ No newline at end of file diff --git a/logs/Log_OxfordApplication_20210419-1151.txt b/logs/Log_OxfordApplication_20210419-1151.txt new file mode 100644 index 0000000..06ac0f4 --- /dev/null +++ b/logs/Log_OxfordApplication_20210419-1151.txt @@ -0,0 +1,64 @@ +Leaving Main method. +Starting Main Menu +In MainMenu() +The user's input was read as: +d +Word look up selected +Found that QueryMode is set to words. +Looking up the word: +computer +Now to call the words endpoint. +Getting request keys +resetHeaders called. +App Id is: +4ebc819b +Key is: +b6b1ca0e4e766b222d56c20f43c2396f +Here are the request Headers... +Accept: application/json +app_id: 4ebc819b +app_key: b6b1ca0e4e766b222d56c20f43c2396f + +Calling the API +Called callWordsAPI +Making the request +Got responses. +Set JSONResponse to the response. +Left getWords task with the JSONResponse. +Parsing JSON +We now have the data as a string. +[{"id": "computer_nn01", "band": 9, "meta": {"created": 1891, "revised": true, "updated": 2008}, "lemma": "computer", "oed_url": "https://www.oed.com/view/Entry/37975#eid8618136", "daterange": {"end": null, "start": 1613, "obsolete": false, "rangestring": "1613\u2014"}, "etymology": {"etymons": [{"word": "compute", "language": "English", "target_id": "compute_vb01", "part_of_speech": "VB"}, {"word": "-er", "language": "English", "target_id": "er_su01", "part_of_speech": "SUFFIX"}], "etymology_type": "derivative", "etymon_language": [["English"]], "source_language": [["European languages", "Italic", "Latin"]], "etymology_summary": "Formed within English, by derivation."}, "first_use": "\u2018R. B.\u2019", "frequency": [[1750, 0.21], [1760, 0.18], [1770, 0.17], [1780, 0.16], [1790, 0.15], [1800, 0.14], [1810, 0.083], [1820, 0.077], [1830, 0.086], [1840, 0.086], [1850, 0.093], [1860, 0.11], [1870, 0.13], [1880, 0.16], [1890, 0.18], [1900, 0.21], [1910, 0.24], [1920, 0.45], [1930, 2.1], [1940, 10], [1950, 17], [1960, 40], [1970, 77], [1980, 110], [1990, 120], [2000, 120], [2010, 120]], "sense_ids": ["computer_nn01-8618138", "computer_nn01-8618177", "computer_nn01-130514973", "computer_nn01-130514976"], "definition": "An electronic device (or system of devices) which is used to store, manipulate, and communicate information, perform complex calculations, or control or regulate other devices or machines, and is capable of receiving information (data) and of processing it in accordance with variable procedural instructions (programs or software); esp. a small, self-contained one for individual use in the home or workplace, used esp. for handling text, images, music, and video, accessing and using the internet\u2026", "main_entry": true, "inflections": [{"region": "British", "inflections": [{"form": "computer", "part_of_speech": "NN"}, {"form": "computers", "part_of_speech": "NNS"}]}, {"region": "US", "inflections": [{"form": "computer", "part_of_speech": "NN"}, {"form": "computers", "part_of_speech": "NNS"}]}], "frequency_id": "computer_nn01-fq", "oed_reference": "computer, n.", "pronunciations": [{"ipa": ["k\u0259m\u02c8pju\u02d0t\u0259"], "region": "British"}, {"ipa": ["k\u0259m\u02c8pjud\u0259r"], "region": "US"}], "parts_of_speech": ["NN"], "primary_sense_id": "computer_nn01-130514973"}] +Extracted definition. +Set definition to query object. +Now to get and set the word ID. +The wordID was grabbed as: +computer_nn01In MainMenu() +The user's input was read as: +q +Get quotaions based on word selected. +API.cs is starting quotations mode. +Getting request keys +resetHeaders called. +App Id is: +4ebc819b +Key is: +b6b1ca0e4e766b222d56c20f43c2396f +Here are the request Headers... +Accept: application/json +app_id: 4ebc819b +app_key: b6b1ca0e4e766b222d56c20f43c2396f + +Called callQuotationsAPI +Making the request +{"meta": {"total": 33, "count": 33, "offset": 0, "limit": 10000, "provider": "Oxford University Press", "cite": "Oxford English Dictionary API, Oxford University Press, 0.0.0.0/oed/api/v0.2/word/computer_nn01/quotations/?offset=0&limit=10000 . Accessed 19 April 2021"}, "links": {"self": "/oed/api/v0.2/word/computer_nn01/quotations/?offset=0&limit=10000", "prev": null, "next": null, "first": "/oed/api/v0.2/word/computer_nn01/quotations/?offset=0&limit=10000", "last": "/oed/api/v0.2/word/computer_nn01/quotations/?offset=0&limit=10000"}, "data": [{"id": "computer_nn01-130522415", "text": {"keyword": "by computer", "full_text": "The value..was calculated by computer at 5\u00b0 intervals around the circle.", "keyword_offset": 26}, "year": 1962, "lemma": "by computer", "source": {"title": "Proc. Royal Soc. 1961", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid130522415", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514976", "datestring": "1962", "first_in_word": false, "oed_reference": "computer, n., sense 3b", "first_in_sense": true}, {"id": "computer_nn01-130514981", "text": {"keyword": "by computer", "full_text": "Many more exciting dates, parties, and trips. Dating by computer!", "keyword_offset": 53}, "year": 1968, "lemma": "by computer", "source": {"title": "Globe & Mail (Toronto)", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid130514981", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514976", "datestring": "1968", "first_in_word": false, "oed_reference": "computer, n., sense 3b", "first_in_sense": false}, {"id": "computer_nn01-130514991", "text": {"keyword": "by computer", "full_text": "Product mix is an economically important problem which can in many cases be handled by computer.", "keyword_offset": 84}, "year": 1970, "lemma": "by computer", "source": {"title": "Computers & Data Processing", "author": "O. Dopping", "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid130514991", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514976", "datestring": "1970", "first_in_word": false, "oed_reference": "computer, n., sense 3b", "first_in_sense": false}, {"id": "computer_nn01-130514999", "text": {"keyword": "on computer", "full_text": "Information about your relationships which can't, under the Data Protection Act, be stored on computer.", "keyword_offset": 91}, "year": 1989, "lemma": "by computer", "source": {"title": "Which?", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid130514999", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514976", "datestring": "1989", "first_in_word": false, "oed_reference": "computer, n., sense 3b", "first_in_sense": false}, {"id": "computer_nn01-130515015", "text": {"keyword": "on computer", "full_text": "Paperwork. Screw the paperwork. Ted..can do the whole thing on computer now.", "keyword_offset": 60}, "year": 1998, "lemma": "by computer", "source": {"title": "Skydiving", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid130515015", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514976", "datestring": "1998", "first_in_word": false, "oed_reference": "computer, n., sense 3b", "first_in_sense": false}, {"id": "computer_nn01-130515033", "text": {"keyword": "by computer", "full_text": "Popular plot elements can be codified by computer and laid into scripts.", "keyword_offset": 38}, "year": 2007, "lemma": "by computer", "source": {"title": "New Yorker", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid130515033", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514976", "datestring": "2007", "first_in_word": false, "oed_reference": "computer, n., sense 3b", "first_in_sense": false}, {"id": "computer_nn01-118689262", "text": {"keyword": "computer", "full_text": "I haue read the truest computer of Times, and the best Arithmetician that euer breathed, and he reduceth thy dayes into a short number.", "keyword_offset": 23}, "year": 1613, "lemma": "computer", "source": {"title": "Yong Mans Gleanings", "author": "\u2018R. B.\u2019", "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid118689262", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618138", "datestring": "1613", "first_in_word": true, "oed_reference": "computer, n., sense 1", "first_in_sense": true}, {"id": "computer_nn01-8618142", "text": {"keyword": "computers", "full_text": "The Calenders of these computers.", "keyword_offset": 23}, "year": 1646, "lemma": "computer", "source": {"title": "Pseudodoxia Epidemica", "author": "Sir T. Browne", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/37975#eid8618142", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618138", "datestring": "1646", "first_in_word": false, "oed_reference": "computer, n., sense 1", "first_in_sense": false}, {"id": "computer_nn01-8618151", "text": {"keyword": "Computer", "full_text": "A very skillful Computer, who hath given a full Demonstration of it from Rules of Arithmetick.", "keyword_offset": 16}, "year": 1704, "lemma": "computer", "source": {"title": "Tale of Tub", "author": "J. Swift", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/37975#eid8618151", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618138", "datestring": "1704", "first_in_word": false, "oed_reference": "computer, n., sense 1", "first_in_sense": false}, {"id": "computer_nn01-8618167", "text": {"keyword": "computer", "full_text": "To pay the expenses of a computer for reducing his observations.", "keyword_offset": 25}, "year": 1855, "lemma": "computer", "source": {"title": "Mem. Life I. Newton", "author": "D. Brewster", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/37975#eid8618167", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618138", "datestring": "1855", "first_in_word": false, "oed_reference": "computer, n., sense 1", "first_in_sense": false}, {"id": "computer_nn01-155922405", "text": {"keyword": "computer", "full_text": "plunged anew into the column of figures... Her pen was slowly traversing the length of the page, at an elevation of a quarter of an inch above the paper, her eyes following the course of the nib, as if it were the index of a patent computer.", "keyword_offset": 232}, "year": 1869, "lemma": "computer", "source": {"title": "Phemie's Temptation", "author": "\u2018M. Harland\u2019", "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid155922405", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618177", "datestring": "1869", "first_in_word": false, "oed_reference": "computer, n., sense 2", "first_in_sense": true}, {"id": "computer_nn01-118677966", "text": {"keyword": "computer", "full_text": "Some curious computer makes out the cost of electing a President for these United States to be four hundred millions of dollars.", "keyword_offset": 13}, "year": 1893, "lemma": "computer", "source": {"title": "Publ. Amer. Econ. Assoc.", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid118677966", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618138", "datestring": "1893", "first_in_word": false, "oed_reference": "computer, n., sense 1", "first_in_sense": false}, {"id": "computer_nn01-8618184", "text": {"keyword": "computer", "full_text": "This was..a computer made by Mr. W. Cox. He described it as of the nature of a circular slide rule.", "keyword_offset": 12}, "year": 1897, "lemma": "computer", "source": {"title": "Engineering", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid8618184", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618177", "datestring": "1897", "first_in_word": false, "oed_reference": "computer, n., sense 2", "first_in_sense": false}, {"id": "computer_nn01-8618192", "text": {"keyword": "computer", "full_text": "By means of this computer the task is performed mechanically and almost instantaneously.", "keyword_offset": 17}, "year": 1915, "lemma": "computer", "source": {"title": "Chambers's Jrnl.", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid8618192", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618177", "datestring": "1915", "first_in_word": false, "oed_reference": "computer, n., sense 2", "first_in_sense": false}, {"id": "computer_nn01-8618200", "text": {"keyword": "computers", "full_text": "The telescope drive is of an elaborate nature; the effects of changing refraction, of differential flexure and of errors in the gears are automatically allowed for by a system of \u2018computers\u2019.", "keyword_offset": 180}, "year": 1941, "lemma": "computer", "source": {"title": "Nature", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid8618200", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618177", "datestring": "1941", "first_in_word": false, "oed_reference": "computer, n., sense 2", "first_in_sense": false}, {"id": "computer_nn01-118689270", "text": {"keyword": "computers", "full_text": "Iterative methods have found favour with computers, despite an outward semblance of clumsiness which masks their solid advantages from the casual critic.", "keyword_offset": 41}, "year": 1943, "lemma": "computer", "source": {"title": "London, Edinb., & Dublin Philos. Mag.", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid118689270", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618138", "datestring": "1943", "first_in_word": false, "oed_reference": "computer, n., sense 1", "first_in_sense": false}, {"id": "computer_nn01-123616576", "text": {"keyword": "computer", "full_text": "A new electronic computer owned by the war department can add 63,895 to itself 5,000 times in a second.", "keyword_offset": 17}, "year": 1946, "lemma": "computer", "source": {"title": "Modesto (Calif.) Bee", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid123616576", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618177", "datestring": "1946", "first_in_word": false, "oed_reference": "computer, n., sense 2", "first_in_sense": false}, {"id": "computer_nn01-127026327", "text": {"keyword": "computer", "full_text": "If the computer is such that new formulas are easily set up in it, it may be economical to use it in the solution of 5 or 10 problems.", "keyword_offset": 7}, "year": 1946, "lemma": "computer", "source": {"title": "Moore School Lect.", "author": "G. Stibitz", "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid127026327", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1946", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": true}, {"id": "computer_nn01-117116056", "text": {"keyword": "computers", "full_text": "We are engaged at the RCA Laboratories in the development of a storage tube for the inner memory of electronic digital computers.", "keyword_offset": 119}, "year": 1947, "lemma": "computer", "source": {"title": "Math. Tables & Other Aids Computation", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid117116056", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1947", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-127026337", "text": {"keyword": "computer", "full_text": "The problem of constructing a computing routine or \u2018program\u2019 for a modern general purpose computer which will enable it to play chess.", "keyword_offset": 90}, "year": 1950, "lemma": "computer", "source": {"title": "Philos. Mag.", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid127026337", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1950", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-127026345", "text": {"keyword": "computer", "full_text": "We discuss the use of three types of diagnostic and servicing programs which enable us to use the computer to diagnose its own troubles.", "keyword_offset": 98}, "year": 1953, "lemma": "computer", "source": {"title": "Proc. IRE", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid127026345", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1953", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-8618245", "text": {"keyword": "computer", "full_text": "At present a computer can read, remember, do arithmetic, make elementary decisions and print its answers.", "keyword_offset": 13}, "year": 1957, "lemma": "computer", "source": {"title": "Technology", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid8618245", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1957", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-8618261", "text": {"keyword": "Computers", "full_text": "Computers are being used to speed up the production of justified tape for the operation of typesetting machines.", "keyword_offset": 0}, "year": 1963, "lemma": "computer", "source": {"title": "Publishers' Weekly", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid8618261", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1963", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-118689288", "text": {"keyword": "computer", "full_text": "He thoroughly knew the schematics of the computer. No one else had been into it replacing defective components and wiring as he had.", "keyword_offset": 41}, "year": 1966, "lemma": "computer", "source": {"title": "We can remember It for you Wholesale", "author": "P. K. Dick", "gender": "male"}, "oed_url": "https://www.oed.com/view/Entry/37975#eid118689288", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1966", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-121762571", "text": {"keyword": "computer", "full_text": "To arrive at a world prediction on the rate of consumption of natural resources we have to tell the computer all the known facts, plus the variables that will modify trends and the trends themselves.", "keyword_offset": 100}, "year": 1975, "lemma": "computer", "source": {"title": "Capital", "author": "M. Duffy", "gender": "female"}, "oed_url": "https://www.oed.com/view/Entry/37975#eid121762571", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1975", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-121762580", "text": {"keyword": "computer", "full_text": "If you have bought or are about to buy a small computer or text processor, you need Cave Tab to ensure you make the most of it.", "keyword_offset": 47}, "year": 1980, "lemma": "computer", "source": {"title": "Daily Tel.", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid121762580", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1980", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-118689299", "text": {"keyword": "computers", "full_text": "These \u2018observatories\u2019\u2014some call them computers\u2014of which Stonehenge is the best known, made it possible..to predict eclipses.", "keyword_offset": 37}, "year": 1983, "lemma": "computer", "source": {"title": "Dance of Life", "author": "E. T. Hall", "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid118689299", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618177", "datestring": "1983", "first_in_word": false, "oed_reference": "computer, n., sense 2", "first_in_sense": false}, {"id": "computer_nn01-121762589", "text": {"keyword": "computer", "full_text": "Nothing is easier than catching crooks with priors. The computer does it all, matching crimes to the criminals, fingerprints to the asshole.", "keyword_offset": 56}, "year": 1985, "lemma": "computer", "source": {"title": "Onyx John", "author": "T. Ferguson", "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid121762589", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1985", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-122597347", "text": {"keyword": "computer", "full_text": "Levy bet \u00a31000 that a computer would not beat him by 1978. He won the bet by comfortably beating Chess 4.7, then the world's best program, which examined up to three million positions.", "keyword_offset": 22}, "year": 1992, "lemma": "computer", "source": {"title": "New Scientist", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid122597347", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1992", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-121762598", "text": {"keyword": "computer", "full_text": "Last year my dad bought a computer for our family and showed us how to dial up the Internet.", "keyword_offset": 26}, "year": 1999, "lemma": "computer", "source": {"title": "Mizz", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid121762598", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "1999", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-121998416", "text": {"keyword": "computer", "full_text": "He married, in 1939, Betty Moore, a computer (what would nowadays be called a numerical analyst).", "keyword_offset": 36}, "year": 2001, "lemma": "computer", "source": {"title": "Daily Tel.", "author": null, "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid121998416", "word_id": "computer_nn01", "sense_id": "computer_nn01-8618138", "datestring": "2001", "first_in_word": false, "oed_reference": "computer, n., sense 1", "first_in_sense": false}, {"id": "computer_nn01-118689315", "text": {"keyword": "computers", "full_text": "India desires modernity; it desires computers, information technology, neural networks, video on demand.", "keyword_offset": 36}, "year": 2004, "lemma": "computer", "source": {"title": "Maximum City", "author": "S. Mehta", "gender": null}, "oed_url": "https://www.oed.com/view/Entry/37975#eid118689315", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "2004", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}, {"id": "computer_nn01-130159261", "text": {"keyword": "computer", "full_text": "Most nights we'd sit on the computer and Instant Message each other or sit on the phone for hours.", "keyword_offset": 28}, "year": 2005, "lemma": "computer", "source": {"title": "Around World in 80 Dates", "author": "J. Cox", "gender": "female"}, "oed_url": "https://www.oed.com/view/Entry/37975#eid130159261", "word_id": "computer_nn01", "sense_id": "computer_nn01-130514973", "datestring": "2005", "first_in_word": false, "oed_reference": "computer, n., sense 3a", "first_in_sense": false}]} + +Got quotation responses. +Set JSONResponse to the response. +Ran quotations synchronously. +Parsing quotations JSON. +First quote grabbed as: + +In MainMenu() +The user's input was read as: +x +Exit selected. diff --git a/obj/Debug/net5.0/OxfordV2.assets.cache b/obj/Debug/net5.0/OxfordV2.assets.cache index b262e02dcb42a7f62c608d0a85163d2177f8d0c7..e599edfaecc06cbbeabb8a935265aa8120e0678b 100644 GIT binary patch delta 55 zcmV-70LcHp0lxt$P)kQa3IG5A=*?AOl9s^_FP{yLf0EQYzxazUytyliyNJMJ5cYzU NyOA*)kw6HMOmk{77oh+E delta 55 zcmV-70LcHp0lxt$P)kQa3IG5A!yuKh1dCjTtLOWG{G8Zm(<1t#HCD$x%a@K9QW+$r NyOA*)kw6HMOmld>7jpmr diff --git a/obj/Debug/net5.0/OxfordV2.dll b/obj/Debug/net5.0/OxfordV2.dll index 7c15fa805bb2a7371bb99665646479e5c1fc9a8f..bab246c650736413d7de193d4601bcffd1e58cd9 100644 GIT binary patch delta 6225 zcmbtY4RloHnSQ@JGxy%PLvCj7Bt!lrlY}IbOcDYFNf6tNk;EWaDj=H!g`_mas5tf# zY$zLNqIKbpQOKUm7YL^@jRXeUqms+syIkJVa?9x5DEh(&Px42#HS*+_1g?-*{ zZYH6%9(s0i^4#}%-uHXI_xriuy))^3BE3&M{8jJw{`QGC#~vsXKOLJ`Cw4kQ)cVG^ z5Up`4lm@3q)QXeNh)6}BzM16bI-o*6`prV3=kPDUYl&26@ABr%D#a8YAH9<4^HeJ0 zZ!&-7`?U~HJ6pACG3q$lokf;{(4ECZ-eeW5k_#eS7Ak9d+o{l(itjla^{!O8Rc@bC z=#E%9kr9rP6^+H%sqGVSM4%n+CZ_RFyg`|qLz8B>fkF+jc@T*v<;a_1 zFFAkV;>F2)tKvdrHkUS^{lBpHJA3@|SDniBg6S^d>0ZF@`a}z+4xih7M8Cv!rAlPt zY9RxbhBiSDU`cO*o)6BSN+q_?Iq$Djif1`dV@c}Mvru9lr&E#vEMnw>2xtw}WUpt( zjG^(U(B^Y_!{{Jg2Gc0ZdvvIl$jv^*o*v1wJ9xps@D z&4HYmo&H>nhJ7HjAh1}Ze#a5K0!!kUh}Pwp7Qg*LPK>a)NQ(LSQ;{7kMx_|eiA^j9 zq*$91m$LXCz;DNMVl9hjq_`-RQ|GgKRH|(`v5dtRq?pKw8jFuhadl4YWbr{MuFHus z=a3Zpb7Ct;ZkFOe{!LS3s$%s9sZQ{2l2cO8Vw)7F3oT@EF2Ek;oY}1rNzUaJSCS!I zVlB=O^J3M1H|;LUy6sae$rWuqioIrQLB}w!SX&*OkqGyoO7`MuNp8Cbuyi6;B=@1c z8O|g&G2;4X#L2#8J@FpgBEQ zn)&7&9DKMLl}Jq1R{wdj6C5YIvNt(D&o50aLWsSa)hl5cn1sc+=J^})$$l~yOmX(K z!V~sVOtv}0&Nfzjmd`G=z?Oj7i`lvgmP{D16X05GDFo7DSL3qnQ-E2qPXqO2YdbDA zG+7kJob(_xq$Z<~Vl@ChM~L3akuZPy?k4eTSi zNHy8PiRwAtwQ-8!?xx9L4cX^7P%bI=g5f2vbv_eHh-J=LD4gm<(|Jn#j4CISYpJJj zvzK z-_AKTOSw>(LV(a?*TWaXt%!wB5j2q*qScC(Ig6BF;`bqv2)Z>(23TY3d-iz0Bc#OxH&*yKBtx z%=My(tho_0<<3nDE1$ezPE%n~%k9~g(+!`v%!dE|hYhXSm)GNU94F`3Ep_NJ8h)j) z>FS4Z;#A#5bRO43c>Gqa9<&E;-?9xGgbrfoJ%N{js4cB* zA&E~(3`%{Yw7ZOUcnf5nH@wdyPY3cCw8wZxGwBP)Yw&(ovL#1N>S+}SxO7F-Mi5v0Q|tK-b{bHvZ5B5EQJeB2SUc{m+5DTPXi zzOEE2s@g2dl$+Ayo^s%EgYjOK@qL{!=^K;-TIcvwMqnVXD0}AlaDyu-dJ7aSO3;On*#W2{t6z zF8ZZ$9$!$N%lha8qeJo0(#Gj5DlN-0JvHnp!6qt6RC|-lKBPElw9#cgOtnT^ zT(;H|$J2`6+fkZ6;0b~ax$LW29Ltz?**CNx*r>}M)7L2mjk#&&LM}Vy`MhFLvCIC;vjwa& z%j6PLh8*jnvb0jp_l zbrQHq7>98fOer(%Y|Q^3uficUl|PO72U#pTeqR>x=b(?igq^)h7g&A1Ig5b?)d7Pz zkQmz}CM0%C{H(+ti37ANg=RZI3dt{S^G0cmzUHk4et_GnShO4SXp{;J75E$fl~gBw zjpMmOoHUkFo8S&+(OqH{^t;4OGQ$Q+2va+TcrK^__;0iqcpA7UpwbB4ZM;Pj^jzQ_ z>Z6xc?Eh!s4g!Co{*HQN5q|L@N@4rFL=rt>vsV=p6bu;R01fGkPazS<3q%lqn|A{ppf`;&afYzZsgHL%x|H)Ip7b<}F9|20rqH;}=ny+Zz0nN3C(tcE zASLh_;LGY7>Fp6bH@#v+yls3@oJESQP*h`3?8dmi0{ad1JRT@Kj0qGP2OdXf#bS^D z0c1F$ZG#9=wqQCcs)E6S+H_<=}`&?)ba#3-#0$HZJI>A26&3muau6djKh6<9_A zV3dMNl-5J9aB(xWdYW)ZjVn#Kktcwq^eV85P5^Ow!n=?Pfmcx!*g=iJ>!rRL*q)M! z5-xJOL()Di(IaGMF0!{u+6fm~>6Lb$i>#!jJ>nuO*iA}fcaeORQpgTsQQ(^5L) zA}ge@SGdSZRN56TveGW?go~{7O1sZRR?^ZQagmjAY426mr_jM(g{4DMI_x4Vr=@+y zMOMhe1w|#cOYD`HmN+i)ki^px$t&X}woB}ln9l0H^^_7yJ1#=$m6(=TihUXtHDVFA z+0`ac&-$jo{c~`6!pl;b#CJU3fITE012zR7bIwJNr%uxM#T&w#=A&xnrxygj zR^>i#i8c5hf2np(JcIA?muhc`*FHw;l`n6X=4;f^bj2TZvfyJHzl5*Smv(Yayns{n zQtd6V)OoP-*35;1iNar`?Q|RdHi5ZX-Zn}?wP`aH z3JlT!e7CWk*9U!&Zie5+^6h}u$5uxr?WATJrb=qSUEkyCOJMKB$v!OA)w!(Ue#*KQ zz{Md8X*lyQZHiBb%*ju+Yr({$L+v%%*<~*_9LwDGO8d8*xt;Y(M?Fz8Rq~i-S(z_N zR(j09liNz~7FPP(`jp{|3K1q>R1v1>#UWRAtJY}Eb^f|D=6t`ix+1g|f1kr2Uvqz^ zVs-N?b}0R%bGEZ0sz#A>!o(s8A0bm2EYlmM(C6^`lrXPw+Pb2tJWVrAYrA6Y2n}1^ zh%-&oN5a~HeknBUjiLfsF3VgFda%;}U?MrLN3e6O^f3_KN}up)kVd?k;@8p6qhqML zu6e9Jt3NcLkr$~=GY}OR1KwObE-2hFEGKV&;PRuK_TXKr48i^!NOKJ+R7 O)S3z1_>LHB*8UIMoacrB delta 6129 zcmb7I3vd+ImA$X0r@N>2nIEKi}miT3v+L81ya*^O`{FkA?jshO%}m;wk_1S{;% zv$u{}Ww5eFNt%TGQ^6-6ybuY-w_>s)TotUUF@ja8Y0&9y`-{$H-_*%3O0l_U-q1)ZSiMWC`BgQ$n#EaCyg%Q5G>er0d%aWOkBS*il|PYo*q>V$(Nv|} z9WSsXS491*SV{If!y(1F5GA2)eEVMslO%6Os)p7$g6upz4 z&fSs{NyxEPe}?R_!J%I5Ie8P?oyOFu^b-DhaSl*oCK}pXIpB6!CPr6}zlFYFq6{;kpi>cyis{bW z;Ix)6BebUpZq&p6ZoZwCS_qBLJB?f$XPt(|7XlN=KE;8us)Rl<+0-4*@nBIhBie>UeaXwK`@XoinYwanDd&(YwmMwrp~aYhPfp+fH+9Fu6L7~4MY9Lk$M^Tvv<0Yx;tqbP z(-s&(@W53=tMXL$1jc}TKwLsPzKL`U!YI6TRBb^!EKoND;vHvvf+DwWy8wi5j`$v;V%sJm!oUv9mNS%@i5US z4EJ|6apA|b)0^z68b?vZ8w&@!E!pr!C z#OEcBlX|zbA2C1s(ddb5be@!ZH zYb()l)cm#2Pd9vw3yE>N_G@1`)f)TEbU8h!?!%GVf(9YlqjSgY7+r`Cse2K+z~E7L z$w8dK{7UJpRU=Aip2{6((4|KEWXA{fbH+HbF)WQLq&}Uxx$tzB0X64J2Ph&Qps7Rb zPAZjDL7@fw5#Ix}l{|zyjnMB~9O`q~0-ad|ugQIQvwPQNljPmJp!Y>FaF2)sUzeCw*gmCH0uM_?cuHaKlKQ(+ zpXK40#ZpO13@BsK@9{Jm1St-;MwPHNI&LL^Pn$K$vKVGW2aFfgIyAn=Wv{9;z}hA2 zC(E3pD6~2*BWahfQSs16cvU8PBzgi>Rq?{Wtlv1QH7hC^F8h(T7%Y%Tv-1EYtgCoh zFUdJ+fz_yZ>EH468cL(l`5ZHLdCGA6-f`Juo@E&9doCl9B%Q9g%tFO=y5X|>JV`vd z^vN=(k;2=KL4nD{{Xb$nqbG68qOS9&dH^i$vH@d-V$vj+y=L4CHqB+9K!+C1cG;ci z(4r=nHTr}opv5j*?h{l%%U$O8CaI8CgQ5RNjHovN+UYuzz7>j}Ho9!4?_RKNF3VU+ zDx!y7w%-bXecok9)Fjs5mtFR>8UQ=!G7G*S9d_9`_=0qdSsLA6_OvS@de(IgdOE>Q z$#ok8)1hY+l8F>BW}|s71MK)?LyQxrI;FUXcFzB zDzGT=8!EFDSPA{7%N_f1)#KZY z8@>XTJBbhCtx8~zFdoOg7nDW46hT19)E+^#4IGbz)(k zFa+*CZ_W}rk;Yj+2_%4HigA|2Mu{yFKP7RM#4eylJAk7pC~P%G{nW2k0dHV?#YNhj zLXT3LsR5JbOqwbJh@T|JT63vUaQ*_?EtWywE$)^X(yOUOOweCK15P~(_%k{JJOfNw z8uigh^DR0??^zeAgU)G5dKTUQ@Ur$RS|tY&6oxk@?W+<$0CuU@5L4#+m^y^t5`t~7 z=ny|J3dQsEUuH;b5u3DR8lzr=-5(bR4aQ$u5x8ruGVu!WYTqH(e1{xdTs-Be6OW45 zuzurWySY&Gi!QSc_@dP+gjj4X1D@0F7VN!GaD_f24vE{X4Pp=(Qc&(Nw~1#l`v+nF zR=Y}RpDfEsj5kRq#d&lY7w3InLJFY^ndk{|M$Y(A%;Y=x8aQY^C;I5W)fdI1^l9-k zQ7ILiX7sTzP{A9(C|+m{DkC2-Mt&tm_d$=lxRz#mYH?J3Q>jg3KR>C|(inOfSb@h# zEhWhd_iYpg&Y^L@CQ1SqOT7))AQLsZ$ms^8eNm!E$j)43Z-ulQU1X(Q+8rXzp&f#y zjFkFZWaY55kGROnfV5A#$jU`&UviNZQaGn@k(HRV<1Vt&AniuwzBED`6_(ni)Zrp4 z8EN;q$jV`9A90bD0coFfk(GVPO}xntATjh%K!Z_1|T&R(Y{xzQ^lob$>3g>5@} zdOJ7PBD%YCZMM5+vCuhLQ);X8qsa>$z4lw#Cu>ieW%Cm>pXSm$Dkpx^?8d(})Qhux zJM}uhpH^8{v6JfPA#C(5aHpiJ2kZgZTWJ%mBRpFLS>=?AE6@67E8cA3{P}vI@8Y5d z56yhhbu^Wep{KeR&$JrvCJg<84=rY|fKTKWCr3kfXvVq@tX8xLN>zymbRQ2UkUm&q`8MXkm<9cpAt`->Xk9R>B z*F;>=4Y-^)S}FpkfBePksWbO1bxuG3QOVC24mw6_+q5CE%@vW_eEr0W^<5vncIfE# s@-yqveCXH5cC0@h5k1-Ow0>4NAGFTR`j>p{RlZiA4SxE4(O;+kA3(Gg6#xJL diff --git a/obj/Debug/net5.0/OxfordV2.pdb b/obj/Debug/net5.0/OxfordV2.pdb index c0fd66aeaee1ae0bb5180d73a7caf72691a57391..7ac059a2e99aecb72d3349ebcea06ea515db0f26 100644 GIT binary patch delta 2161 zcmYk7du$X{6vn?hJNp8i&?jy8)pqI9HYKJH!Sb+?3Wx**mUe|g*@f*^s2aCu zVn8v9BP43nS`dQ-5?KW?#-K4uVnV_nkU&5&BoZ-EjDq;Y@9YC-lkd#=-E-#5nYm|X zcWpkk<)z@JpdF}s3Yg*m{#NuC$72JLbwl8=CePb^Gyl3FQV z9CuNFRajuJ)X`RJ!F{zl0&WZLaqC#^v0$S|N3++0F0YO=ehaSnbxf;QhTX4sQuI->L_)BI!S#+ zou1Y7ImAlvDF-^fby{AT^_lx6@6YSHc(rrZB)VwxFsad1+* zt)M=q{-rAY3frQ`_tQidzZJvP8a<^fe? z`H3&jJImrb*kG2qnQ)S;Gx<+)>xE~K?*>h zo@Zi-Pd2f{WjNC3C!|{-|IR}CZVF5+@j??zfg%%2yx7DNpJHN(^G@$HEb)>o^ZKa< zO0x?*O2SkVOMz)7miTlNOT5g)5-&Hg#4AiJ@yZO#^-~SVkY^vMBvhMN3e4c1W#j3` z`9I6u*0Swv{L>8Aa!V!mu?)M(oKx^6Pvv`{64*(Q0y4ec%nZm-$)IOh8j=&UEODQS zCGKYf+4zIxMh>wrQ|}3KfLx#94)RQL0}|;eUdV+eE;MEmLhkhLu zWV|Vpzk@uBJS)Q;sAzb$E;SI_rhky zL|-{=ldpqznQsm4ao;HIP2U*pbpJ`(d;OPb*K;DQc)<@C7wpH{whTw(;W?pr2%*gb zspHmYtRJc6B?IxnFk<1M&C$qE7@@xSaA>esPLO2dV@HW`!BMgxmAg1P9P117|EX_d z`sDeMN26&Rh=(^}C_EVMiw{I2>FDxsD8|a6{%|b4&^a7mA2lq_Iz1MR#to125o0Z@Cjniz=E43eEb63tf`cW}|5ruTxCG1(zEAL_;qM zbUyi3jbGv>jqmJa33F#{nuCS45&i*b8~_E6LXo!I!L@`1c}nN|qsT zQ5${QSkbt$<{LGhXB(dlH9lL7A64T&t9`50zA?4$d$s>V_0Co8K#4lgYn*Cq(cbkZ zRp5rw4pt;@%`8;fdmTn@ut+U2YJz9AL!RV6!PhkV?!$WyzkYb!c(Y}0+CQQj*IFw6 E1FOI#3;+NC delta 2051 zcmYk7du&rx9LK-+^tM}JYz+2bn|sj0+VuhJHr!Bw0aGN%Ltw$+f-74yN7%ZxXtGVBj${cirokYhMnech&=C0p;*7?)Xnc?$7zz6Qb+>SD_WhmT=l47B zb9#2Rdw>9U zdD-^pR`SIUU%L~%v}v_*@#L+7?;8Hnzxw)B58&8TI^=XJfL&wZ!NGiO&B2qa67{4I z#X&KH`ggVsX)YcAl-pqU==jrX!)>pQ5}yq|pN<GZc6IzrCz7r zpbk+()G&3F`iMGBeMz0CzNIEAbgc5pz;?L&c2rQ6R4ujG4^&7>_T-RX!#C95RAE5F z^VBEQ50oRQ!EgB0YAs>(swIhbZlTVV6tdk3JMa{H5H2ErPJW!s!^C}L`NWs~O|kgt zoKT8+cyN-7&HB&ssD(?&1@m5XTt)Vpyoy{+u0UdPKv{tVe5|mM{t}b@SL~qAkT0)+xg9Wl1@E|S$7SDu-Hv`g9Cn=Zm(gDL*VE<&nrU|i`e?@j1GLuyXJ}P$ zoYupuV8>%Y4!3-RQIvjcWw@)oA>0$ju4t?ku}Hit+8K|)j86V5LidhnPb4nY%s?y} z?Xh4-xToc5qtscH6_0F>wDhz`JK0sZHDbKz^cu&UO)`-=BJ@$=|FV40>~xIX$*aEoePuk#Kz z=sf-9ijTx1ohO>6bH{2?$u~&xscgxFrlJ~VC|-D<;#-!ZxOsJw3-I)it>k^w;ZW&{ zReLq4sECvS*djxwop^{HEn3KJ$Ww-PM?