draft
bool
1 class
date
stringlengths
19
20
title
stringlengths
9
214
tag
sequence
category
sequence
body
stringlengths
575
57.5k
description
stringlengths
40
192
image
stringlengths
28
59
embeddings_base_en
sequence
embeddings_small_en
sequence
embeddings_mini_lm
sequence
slug
stringlengths
8
191
url
stringlengths
49
232
false
2017-12-01 15:26:36
Python: Learning about defaultdict's handling of missing keys
[ "collections", "python", "scikit-learn" ]
[ "Python" ]
While reading the scikit-learn code I came across a bit of code that I didn't understand for a while but in retrospect is quite neat. This is the code snippet that intrigued me: [source,python] ---- vocabulary = defaultdict() vocabulary.default_factory = vocabulary.__len__ ---- Let's quickly see how it works by adapting an example from scikit-learn: [source,python] ---- >>> from collections import defaultdict >>> vocabulary = defaultdict() >>> vocabulary.default_factory = vocabulary.__len__ >>> vocabulary["foo"] 0 >>> vocabulary.items() dict_items([('foo', 0)]) >>> vocabulary["bar"] 1 >>> vocabulary.items() dict_items([('foo', 0), ('bar', 1)]) ---- What seems to happen is that when we try to find a key that doesn't exist in the dictionary an entry gets created with a value equal to the number of items in the dictionary. Let's check if that assumption is correct by explicitly adding a key and then trying to find one that doesn't exist: [source,python] ---- >>> vocabulary["baz"] = "Mark >>> vocabulary["baz"] 'Mark' >>> vocabulary["python"] 3 ---- Now let's see what the dictionary contains: [source,python] ---- >>> vocabulary.items() dict_items([('foo', 0), ('bar', 1), ('baz', 'Mark'), ('python', 3)]) ---- All makes sense so far. If we look at https://github.com/python/cpython/blob/master/Modules/_collectionsmodule.c#L1973[the source code] we can see that this is exactly what's going on: [source,python] ---- """ __missing__(key) # Called by __getitem__ for missing key; pseudo-code: if self.default_factory is None: raise KeyError((key,)) self[key] = value = self.default_factory() return value """ pass ---- scikit-learn uses this code to store a mapping of features to their column position in a matrix, which is a perfect use case. All in all, very neat!
null
null
[ 0.006759584415704012, -0.04484248161315918, -0.013814321719110012, 0.04747326299548149, 0.0876668244600296, 0.023017823696136475, 0.0009692798485048115, 0.04381423071026802, -0.004473086912184954, -0.002877988386899233, -0.04432107135653496, 0.021008161827921867, -0.06578025966882706, 0.016313165426254272, -0.03997601196169853, 0.08677351474761963, 0.0913219302892685, 0.021519919857382774, 0.02848864533007145, 0.029867995530366898, 0.03056204319000244, 0.03779110684990883, 0.005213006399571896, 0.032208558171987534, -0.00047729560174047947, 0.015635930001735687, 0.004677637945860624, 0.019789887592196465, -0.023109950125217438, 0.0012836647219955921, 0.038362834602594376, 0.016041185706853867, 0.020540591329336166, 0.007650571409612894, 0.03494522348046303, -0.012589373625814915, -0.05141386762261391, -0.009838003665208817, -0.008681869134306908, 0.028012258931994438, -0.023080332204699516, 0.014219699427485466, -0.02046818658709526, 0.024115903303027153, -0.06815151870250702, 0.005233866162598133, -0.07667332142591476, 0.03485652059316635, -0.016821948811411858, -0.012496535666286945, -0.05090785771608353, 0.013160967268049717, 0.005077300127595663, -0.036330755800008774, -0.04800768569111824, 0.05537303164601326, 0.022783519700169563, -0.07979286462068558, 0.018123088404536247, -0.017115041613578796, -0.012681985273957253, 0.009954245761036873, 0.000987994484603405, 0.03484620153903961, 0.026740891858935356, -0.06221495196223259, 0.004062588792294264, 0.06631646305322647, -0.05651027336716652, 0.00960034504532814, -0.034741900861263275, 0.03466623276472092, -0.01798003911972046, 0.005579639226198196, -0.04726862162351608, -0.02453749254345894, -0.00915224477648735, 0.044960711151361465, 0.03935353085398674, 0.08256441354751587, 0.006313134916126728, 0.0029319776222109795, 0.03081676922738552, 0.002889578929170966, -0.01886102370917797, -0.01969812996685505, -0.07021066546440125, -0.02373052015900612, -0.0411670058965683, 0.028096433728933334, 0.003819552715867758, -0.053192559629678726, 0.02764405496418476, -0.011722257360816002, -0.005148138850927353, 0.0023869723081588745, -0.005929011385887861, -0.024058133363723755, -0.012782438658177853, 0.0016479288460686803, -0.05377327650785446, -0.033259421586990356, 0.0027152174152433872, 0.02157638594508171, -0.0641472265124321, -0.013460500165820122, -0.02589193359017372, -0.00375412218272686, -0.024066517129540443, -0.0017482260009273887, -0.03289736062288284, -0.012668466195464134, -0.034736428409814835, -0.032987240701913834, -0.0692799985408783, 0.031229645013809204, 0.011140352115035057, 0.00202163215726614, -0.03887919709086418, 0.011471126228570938, 0.03600681945681572, 0.027892688289284706, -0.04152386635541916, 0.08290227502584457, 0.0019338373094797134, 0.009836801327764988, 0.012621166184544563, 0.07699548453092575, -0.0006091067334637046, -0.06567122042179108, -0.020205751061439514, 0.0357363261282444, -0.03629766404628754, -0.011721935123205185, -0.007214892189949751, -0.025210414081811905, -0.03417669236660004, 0.033591434359550476, 0.044682569801807404, 0.03850304335355759, -0.015003127977252007, -0.012355939485132694, -0.020763549953699112, 0.014619642868638039, 0.008295571431517601, 0.003870647167786956, -0.005068793427199125, -0.013376534916460514, -0.029379725456237793, 0.008125657215714455, -0.00763222249224782, 0.06214860826730728, 0.05550886318087578, -0.014479976147413254, 0.016162987798452377, 0.0526677742600441, -0.02015894651412964, 0.04246983304619789, -0.011099161580204964, 0.01397884264588356, 0.03349614888429642, 0.019649533554911613, 0.004036673344671726, 0.06619996577501297, -0.008033884689211845, -0.0337923988699913, 0.002178126946091652, 0.06531942635774612, -0.0015685466350987554, 0.01754719205200672, -0.036000821739435196, -0.056186743080616, 0.06314374506473541, -0.04845341667532921, -0.008716323412954807, 0.01747136376798153, 0.07057231664657593, 0.021748628467321396, 0.07503114640712738, -0.008717385120689869, -0.06459289789199829, 0.017873553559184074, -0.008161645382642746, -0.023759551346302032, 0.04375922307372093, 0.0002777109039016068, 0.09367221593856812, 0.03406067565083504, 0.02062075212597847, 0.017908675596117973, -0.06718131899833679, -0.06470480561256409, -0.03882968798279762, -0.0345735140144825, 0.08068545907735825, -0.04722706601023674, -0.009635181166231632, 0.06615517288446426, 0.02010742574930191, 0.05980865657329559, 0.026288382709026337, -0.019781239330768585, -0.01595337875187397, -0.04411980137228966, -0.026241498067975044, 0.050808049738407135, 0.049012620002031326, -0.038192279636859894, -0.02556333877146244, 0.028802230954170227, 0.006650639697909355, -0.0000838828636915423, 0.04867183044552803, -0.04102339968085289, 0.05899609997868538, 0.02584458887577057, 0.05779451131820679, -0.034376442432403564, 0.03270615264773369, -0.05162779986858368, 0.02500176802277565, -0.01833168789744377, -0.000561328255571425, -0.054227184504270554, -0.0036242303904145956, 0.10552828758955002, 0.08153901994228363, -0.04178391024470329, -0.062306348234415054, -0.014518232084810734, -0.005333155393600464, -0.04724399745464325, 0.0017645027255639434, -0.02189972810447216, -0.027450788766145706, -0.022379092872142792, -0.05632433295249939, -0.009274414740502834, 0.02798948623239994, -0.03226752579212189, -0.0236651748418808, 0.07134948670864105, -0.04845847934484482, 0.017123861238360405, 0.010109558701515198, -0.023326726630330086, -0.004528074525296688, -0.0239544827491045, -0.05628151446580887, -0.00007327825733227655, 0.028910605236887932, -0.013591761700809002, 0.07368340343236923, -0.026480332016944885, -0.019402634352445602, -0.02563351020216942, -0.034682128578424454, -0.016707995906472206, 0.05424339324235916, 0.04831869155168533, -0.01999576762318611, 0.03939313441514969, 0.0008003908442333341, -0.008249467238783836, 0.005419901106506586, -0.056969355791807175, -0.023393550887703896, -0.024860501289367676, 0.022828375920653343, 0.02757856622338295, 0.01727638952434063, 0.012738239951431751, 0.02301601879298687, -0.0062337410636246204, 0.018852276727557182, 0.04354574903845787, 0.0601637177169323, 0.01037735864520073, -0.01124601811170578, -0.03630645573139191, -0.016332751139998436, 0.04852421581745148, -0.035502251237630844, -0.0403314046561718, -0.00784000288695097, -0.08144290745258331, 0.0068226284347474575, -0.061469387263059616, -0.03249957039952278, 0.002365393564105034, 0.010027114301919937, 0.02973944880068302, -0.037870656698942184, 0.00642559677362442, 0.04859070107340813, 0.00899619422852993, -0.020939143374562263, 0.023589318618178368, 0.004026139620691538, 0.021798696368932724, 0.009251082316040993, 0.030514992773532867, 0.038551680743694305, 0.02094087563455105, 0.006405254360288382, -0.032408975064754486, 0.0024643205106258392, -0.0352451428771019, -0.26414576172828674, 0.02520650066435337, -0.016486773267388344, -0.02279716171324253, 0.03138820454478264, -0.0018811464542523026, -0.0015213779406622052, -0.02278091572225094, -0.005935194902122021, 0.047219038009643555, -0.038601335138082504, -0.05930280312895775, -0.02208361029624939, 0.07451757788658142, 0.007279566023498774, 0.03433411568403244, -0.032270647585392, -0.016088344156742096, 0.004874877166002989, 0.04603010416030884, 0.013867257162928581, -0.0582394003868103, -0.03790717571973801, 0.06085388362407684, 0.016165923327207565, 0.05624275654554367, -0.08441033959388733, 0.019958101212978363, -0.07660964876413345, -0.02629133313894272, -0.021124133840203285, -0.012918871827423573, 0.0004726047336589545, -0.03326001390814781, 0.013931434601545334, -0.023704232648015022, 0.03656536340713501, -0.004817500710487366, -0.028355618938803673, 0.014837369322776794, -0.05173911154270172, -0.05584016442298889, -0.000435736496001482, 0.0021297971252352, 0.08593230694532394, 0.014356435276567936, -0.06823141872882843, -0.04292260482907295, -0.03821595013141632, 0.06419549882411957, -0.017958616837859154, -0.012545734643936157, -0.02639888785779476, 0.0668586865067482, -0.0095773721113801, 0.004546307493001223, 0.021643269807100296, 0.001145834568887949, -0.021518807858228683, -0.018019629642367363, -0.015436938963830471, -0.027103828266263008, -0.0185701847076416, -0.06155030056834221, -0.012304427102208138, -0.055969852954149246, -0.07569518685340881, -0.013206901960074902, 0.039240993559360504, 0.04014670476317406, -0.0803045928478241, 0.0009058293071575463, -0.013325825333595276, -0.09929083287715912, 0.015014220029115677, -0.02600427158176899, -0.04883648827672005, -0.014500793069601059, 0.01711108535528183, 0.03312515467405319, -0.05595696344971657, -0.05735981464385986, 0.04573431983590126, 0.015155297704041004, -0.022784074768424034, -0.04808157682418823, 0.019456394016742706, -0.007341037970036268, -0.03660416975617409, -0.007976853288710117, 0.04742633178830147, 0.015162837691605091, 0.009813137352466583, -0.0197683647274971, -0.031138909980654716, 0.026706743985414505, 0.044807225465774536, 0.01049506664276123, 0.058394815772771835, 0.05742376670241356, 0.03452581912279129, -0.0400581881403923, -0.0019815850537270308, -0.02378544956445694, -0.005158643238246441, -0.02500784397125244, -0.04293735697865486, -0.005767126102000475, 0.08112957328557968, 0.007497620303183794, -0.007028918247669935, -0.010101508349180222, -0.028294887393712997, -0.03748980537056923, 0.006735597737133503, -0.03145140781998634, 0.01232658326625824, 0.0171959325671196, 0.048354629427194595, 0.006722453515976667, -0.051490336656570435, 0.03735405579209328, -0.008613494224846363, 0.006259344983845949, -0.05329547077417374, -0.05075928941369057, -0.023129791021347046, -0.007436039391905069, -0.024735432118177414, -0.013499555177986622, -0.0005295026348903775, 0.008708681911230087, 0.00134510628413409, -0.05000877007842064, 0.050885774195194244, -0.003531253430992365, -0.00017311453120782971, -0.006128940265625715, -0.01446610689163208, -0.02895897813141346, -0.03002123162150383, -0.029383840039372444, 0.01282449159771204, 0.022195840254426003, 0.03695753961801529, 0.008327173069119453, 0.050689395517110825, 0.03540991619229317, 0.004106834996491671, 0.015703124925494194, 0.014240692369639874, -0.02259691432118416, 0.04775526747107506, -0.038852788507938385, -0.021366288885474205, 0.006000299472361803, 0.04730163887143135, -0.010217104107141495, -0.02265791781246662, -0.015327933244407177, 0.03967413306236267, -0.047023955732584, -0.001274813781492412, -0.016746843233704567, 0.010176039300858974, 0.05297485738992691, -0.020378876477479935, 0.027812812477350235, 0.008308587595820427, 0.017482910305261612, 0.022057242691516876, 0.015857907012104988, -0.05898818373680115, 0.01130575593560934, 0.016826631501317024, -0.035206712782382965, 0.01658995822072029, 0.04370142146945, -0.02939053624868393, 0.03509659320116043, 0.022486746311187744, -0.026109794154763222, 0.034309595823287964, 0.007158383727073669, 0.053512562066316605, 0.031448107212781906, -0.016500325873494148, -0.017717445269227028, -0.03204898163676262, -0.035541363060474396, -0.030329175293445587, -0.029703300446271896, -0.004934029653668404, 0.02011285163462162, -0.02919168584048748, -0.06976500153541565, -0.019257644191384315, 0.02514302358031273, 0.003638174384832382, 0.015644287690520287, -0.01589861325919628, -0.001091102953068912, -0.010609420016407967, 0.04002269729971886, 0.06585835665464401, -0.0555785596370697, 0.014215481467545033, -0.027842171490192413, 0.03368086367845535, 0.01236689928919077, 0.012545914389193058, -0.06116252765059471, -0.040056969970464706, -0.02675022929906845, -0.0067388080060482025, -0.022788818925619125, -0.04160979390144348, -0.0016086784889921546, 0.012522894889116287, -0.015205003321170807, -0.0017363368533551693, -0.005274875555187464, 0.03634092956781387, -0.032629452645778656, -0.01365781482309103, 0.02672201208770275, -0.0010131900198757648, 0.0017236340790987015, 0.0020879795774817467, -0.02594400942325592, -0.0052328892052173615, -0.03861740976572037, 0.04801013693213463, 0.008486839011311531, -0.007934371940791607, -0.01807413063943386, -0.0321258008480072, 0.01127023808658123, -0.007146719377487898, 0.020159060135483742, 0.011289509944617748, 0.006638784892857075, -0.027504602447152138, -0.005055457819253206, -0.0332578681409359, 0.00870539341121912, 0.006632513832300901, -0.026455320417881012, 0.004222219344228506, 0.029247235506772995, -0.003958107903599739, 0.02446351945400238, 0.016314512118697166, -0.025950994342565536, 0.06455276161432266, -0.025934217497706413, -0.032137613743543625, -0.020189454779028893, -0.043988361954689026, 0.023221999406814575, 0.047274552285671234, 0.02285308577120304, -0.05740836635231972, 0.07760795950889587, 0.02133309654891491, 0.036664582788944244, 0.000688354077283293, 0.0064191753044724464, 0.057072609663009644, -0.0396350733935833, 0.013818456791341305, -0.09537926316261292, -0.014409196563065052, 0.061478424817323685, 0.01727876625955105, -0.018832959234714508, -0.035119201987981796, -0.03263411670923233, 0.022972827777266502, -0.04218437150120735, -0.04052339494228363, 0.032653626054525375, 0.00004226157398079522, 0.00521373376250267, 0.015102275647222996, -0.041523296386003494, -0.002347097033634782, 0.046501848846673965, -0.019080106168985367, -0.001550694927573204, -0.03548135980963707, 0.08891615271568298, -0.02511194907128811, -0.0014539854601025581, 0.002747925231233239, -0.03657353296875954, 0.04008718952536583, 0.03155038505792618, 0.07576009631156921, 0.0579775832593441, 0.006830053869634867, 0.029033148661255836, 0.03891685977578163, -0.016596008092164993, 0.01996631734073162, 0.030611984431743622, 0.03416619077324867, -0.03785694018006325, 0.04160122573375702, 0.018260370939970016, 0.007179721724241972, -0.03872270509600639, 0.07044735550880432, 0.021635819226503372, -0.03517110273241997, -0.03677276894450188, 0.02090228907763958, -0.07684026658535004, -0.01563749834895134, -0.0017603838350623846, -0.03315901756286621, -0.013578829355537891, 0.051702313125133514, 0.0015823099529370666, -0.023350777104496956, 0.05945836007595062, -0.01397424191236496, -0.024851419031620026, 0.029391825199127197, 0.06050904467701912, 0.08869903534650803, 0.043085504323244095, 0.016137301921844482, 0.05831950530409813, -0.0222890954464674, -0.04576331004500389, -0.00723237544298172, -0.044368330389261246, -0.0015798305394127965, 0.01550805289298296, 0.002738286042585969, 0.051792386919260025, 0.003922607284039259, 0.050650455057621, -0.04456391558051109, 0.03840012103319168, 0.002494305372238159, 0.03287702053785324, 0.03697890788316727, 0.06666917353868484, 0.01737147383391857, 0.010318495333194733, -0.014970749616622925, -0.04698179289698601, 0.017454655840992928, 0.0009583699284121394, -0.013250659219920635, 0.002223174786195159, -0.003624058561399579, -0.009854769334197044, 0.020521938800811768, 0.038125064224004745, 0.0711551159620285, -0.03000609390437603, -0.02349396049976349, 0.012885854579508305, -0.002238890854641795, 0.004851693287491798, 0.025591466575860977, -0.01889624260365963, 0.01736387424170971, 0.004859772976487875, -0.037197329103946686, -0.041037481278181076, -0.034253671765327454, 0.025324691087007523, 0.016769031062722206, -0.0057512796483933926, -0.008924010209739208, 0.016783690080046654, 0.04096796736121178, -0.000024078353817458265, -0.04157375544309616, -0.04323049262166023, -0.041484151035547256, -0.05382091552019119, 0.007207449525594711, 0.038330402225255966, -0.020798977464437485, 0.007541663479059935, -0.0254212636500597, -0.018840167671442032, -0.013993422500789165, 0.00833828840404749, -0.037858884781599045, -0.03144439682364464, 0.030656643211841583, 0.009807075373828411, 0.023699181154370308, 0.013721290975809097, 0.023220524191856384, -0.01030777394771576, -0.03491442650556564, -0.0008509350591339171, 0.009585913270711899, 0.048331715166568756, 0.04089893400669098, 0.008657033555209637, -0.07587931305170059, -0.0036236364394426346, 0.014325967989861965, 0.01555530447512865, -0.08540712296962738, -0.0037780501879751682, 0.02268621325492859, -0.0005573848029598594, 0.032976116985082626, -0.012214608490467072, 0.00899605080485344, -0.016834024339914322, -0.007286899257451296, 0.025141820311546326, 0.011561197228729725, 0.04574182257056236, -0.02917463891208172, 0.05573881044983864, 0.02953648753464222, 0.01180482842028141, -0.0336514487862587, -0.03256039321422577, -0.011958080343902111, 0.006015774328261614, -0.04303709417581558, -0.03512316942214966, -0.030425066128373146, -0.07129183411598206, -0.006335645914077759, 0.016641898080706596, -0.045967478305101395, -0.0539579838514328, -0.0003422446607146412, -0.006190089043229818, -0.0160214826464653, 0.03505868837237358, -0.02669454552233219, 0.03192063793540001, -0.04912311211228371, -0.00901012308895588, 0.008634702302515507, 0.012883664108812809, 0.006066862028092146, 0.01267263013869524, 0.00018598097085487098, -0.02654200606048107, -0.009103144519031048, -0.014101211912930012, 0.044142551720142365, 0.040795303881168365, -0.02270844578742981, 0.0038675961550325155 ]
[ -0.07955241203308105, -0.007054829504340887, -0.028233477845788002, -0.02992977388203144, 0.051965322345495224, -0.04425251483917236, 0.04396897181868553, 0.013686826452612877, -0.00801832228899002, -0.009505195543169975, 0.017452144995331764, -0.07012920081615448, -0.011772879399359226, -0.008277863264083862, 0.06246807798743248, -0.017291255295276642, -0.022857319563627243, -0.09413493424654007, -0.02231999859213829, 0.015256213024258614, 0.05291996896266937, -0.013279403559863567, -0.02813444845378399, -0.0373060405254364, 0.02628416195511818, 0.07529009133577347, 0.02760520949959755, -0.014015021733939648, 0.010633638128638268, -0.2478608638048172, 0.012045219540596008, -0.0169683787971735, 0.044557392597198486, 0.00010064516391139477, -0.002798910718411207, 0.04328164458274841, 0.008366547524929047, 0.015549097210168839, -0.01793496124446392, 0.08528919517993927, 0.014302209950983524, 0.0063997795805335045, -0.051238372921943665, -0.008856088854372501, 0.04342874884605408, 0.01662517338991165, -0.0024479140993207693, -0.022224975749850273, -0.005720601882785559, 0.0022577415220439434, -0.06068190559744835, -0.02572266384959221, -0.028061356395483017, -0.011982062831521034, -0.007487885188311338, 0.015913382172584534, 0.05627406761050224, 0.061985041946172714, 0.037186216562986374, 0.020816419273614883, 0.011895503848791122, -0.01078030839562416, -0.13580195605754852, 0.08418972045183182, 0.053588807582855225, 0.06263262033462524, -0.028830496594309807, -0.025268854573369026, -0.017502833157777786, 0.049853503704071045, 0.01841619610786438, -0.010104748420417309, 0.0019279493717476726, 0.06404104083776474, 0.005596316419541836, -0.03318459913134575, 0.016175447031855583, -0.000671028159558773, 0.05237483233213425, -0.041092175990343094, -0.04791489243507385, 0.01413376722484827, 0.025849387049674988, -0.04628153145313263, -0.005878949537873268, 0.0023823364172130823, -0.028626425191760063, 0.0316840261220932, 0.011921972036361694, 0.007018738426268101, 0.02447834052145481, -0.016128059476614, 0.012860085815191269, 0.035793401300907135, -0.08193499594926834, -0.0032074679620563984, 0.020578306168317795, 0.02114103175699711, -0.03782932832837105, 0.4388056993484497, -0.012229148298501968, -0.012603115290403366, 0.017633536830544472, 0.021835431456565857, 0.0069648222997784615, -0.034931786358356476, -0.023747911676764488, -0.04002843424677849, 0.027001501992344856, -0.05265695974230766, 0.018084414303302765, 0.009976552799344063, 0.06517980247735977, -0.05888769403100014, 0.0152212455868721, -0.023552006110548973, 0.023983633145689964, 0.00749532924965024, 0.022243184968829155, 0.035390328615903854, -0.017529066652059555, -0.003111993195489049, 0.006076151970773935, -0.028461609035730362, -0.0011446248972788453, 0.005337084643542767, 0.041509442031383514, 0.06255649775266647, 0.019013818353414536, 0.0012536662397906184, 0.036887843161821365, -0.05321957543492317, -0.07105090469121933, 0.015271296724677086, 0.01782805845141411, 0.019380604848265648, 0.008543611504137516, -0.011453735642135143, 0.014393964782357216, -0.017024865373969078, -0.01719612628221512, -0.009489104151725769, 0.015773015096783638, 0.013587506487965584, -0.04449210315942764, 0.10282371938228607, -0.0163838230073452, -0.013784784823656082, -0.043530527502298355, 0.005932033993303776, 0.0035765348002314568, 0.01954018324613571, 0.004336729645729065, -0.05231659859418869, 0.021555263549089432, 0.03092348948121071, 0.10988473147153854, -0.05187593773007393, -0.041270334273576736, -0.03324506804347038, -0.03171898052096367, -0.03909815847873688, -0.039735663682222366, 0.02273435704410076, 0.05314171686768532, -0.0639716237783432, -0.006804732605814934, 0.02661093883216381, -0.011282730847597122, -0.08430489897727966, 0.04197946563363075, 0.020256955176591873, -0.04257543012499809, 0.015615333802998066, 0.026698928326368332, -0.04775425046682358, -0.06058575585484505, 0.01653548702597618, 0.059777941554784775, 0.0054220641031861305, -0.005227070767432451, -0.013541935943067074, -0.041938528418540955, 0.013700144365429878, -0.01646278239786625, -0.07000184804201126, -0.043901629745960236, -0.0071241240948438644, 0.0044738370925188065, 0.009172010235488415, 0.03031638078391552, -0.0075544374994933605, -0.02280777506530285, 0.03177239000797272, -0.034139808267354965, -0.000006531102826556889, 0.0461929626762867, -0.034798361361026764, -0.015321118757128716, -0.017721133306622505, -0.011661778204143047, 0.03920730575919151, 0.009071632288396358, 0.03767753392457962, -0.045601386576890945, 0.03016236610710621, 0.034765247255563736, -0.018840281292796135, 0.0649871826171875, 0.016345353797078133, -0.021729696542024612, -0.03397637978196144, -0.021169137209653854, -0.010069318115711212, -0.024287166073918343, -0.0664813220500946, -0.04790370166301727, 0.0038213436491787434, 0.004201352130621672, 0.013823014684021473, -0.06361474096775055, -0.062190718948841095, -0.028772657737135887, -0.33025673031806946, -0.023857329040765762, 0.00642647547647357, 0.0002502277202438563, 0.018881460651755333, -0.07269419729709625, 0.0036029815673828125, -0.028285285457968712, -0.0321173369884491, -0.005514377728104591, 0.06486101448535919, -0.004679775796830654, 0.01715751551091671, -0.07435859739780426, 0.001341294264420867, 0.05236825346946716, -0.0175080094486475, -0.040236640721559525, -0.04228438064455986, 0.06312041729688644, -0.010021120309829712, -0.011606009677052498, -0.019301747903227806, -0.0574081614613533, -0.04320388287305832, -0.05787144601345062, 0.09780823439359665, 0.0068284799344837666, 0.09073955565690994, -0.04163643345236778, 0.022967977449297905, 0.04111562296748161, 0.0032527660951018333, -0.0677327886223793, -0.02279343269765377, -0.015294121578335762, -0.016421940177679062, 0.031750764697790146, 0.0028079820331186056, -0.013258617371320724, -0.008185286074876785, 0.027606507763266563, -0.0306507907807827, 0.012933310121297836, -0.020896678790450096, 0.00002739730007306207, -0.033368196338415146, -0.02185329794883728, 0.0019388148793950677, 0.06451092660427094, -0.003909372258931398, 0.06982512027025223, 0.01885206624865532, 0.016731711104512215, -0.024854041635990143, -0.013078992255032063, -0.082160584628582, 0.01252293772995472, -0.02953868918120861, -0.01474195159971714, 0.021771522238850594, 0.04044514521956444, 0.03136888146400452, -0.06589711457490921, -0.011474263854324818, 0.008856900967657566, 0.00601826049387455, -0.0009766712319105864, 0.011586742475628853, -0.016576116904616356, -0.031116515398025513, 0.1365356594324112, 0.029996411874890327, -0.008792418986558914, 0.006287677213549614, 0.0610976479947567, -0.014134463854134083, 0.04004152864217758, 0.008777889423072338, -0.008904783055186272, 0.0423264354467392, 0.007610781583935022, 0.04950078949332237, -0.017093559727072716, 0.026485946029424667, 0.03321734815835953, 0.019807154312729836, 0.01747187040746212, 0.06072545796632767, 0.01371435821056366, -0.0003417687548790127, 0.01119730994105339, 0.013292391784489155, -0.042918991297483444, 0.09124478697776794, -0.009069658815860748, -0.26742464303970337, 0.03216734156012535, 0.08681990951299667, 0.06053529679775238, 0.01995054818689823, 0.009102419950067997, 0.02442414127290249, -0.049675554037094116, 0.007063762750476599, 0.005711936857551336, -0.013314198702573776, 0.021251697093248367, 0.009603905491530895, -0.017624959349632263, -0.0024599169846624136, -0.03620301932096481, 0.08926395326852798, -0.02121131494641304, -0.00027026302996091545, 0.019141970202326775, 0.04094678908586502, 0.02304982766509056, 0.16888132691383362, 0.013660160824656487, 0.0026702682953327894, -0.02782224677503109, -0.012091103009879589, 0.03279520943760872, 0.05595654249191284, 0.02319578267633915, 0.03402149677276611, -0.004947701469063759, 0.03230252116918564, 0.022394362837076187, 0.015340256504714489, -0.03626292943954468, -0.028125789016485214, -0.002599109197035432, 0.04792274162173271, -0.01629628613591194, -0.009085431694984436, 0.006103685591369867, -0.10071723163127899, -0.0018955346895381808, 0.053297922015190125, -0.03423080965876579, 0.009163232520222664, -0.07744691520929337, -0.05328650772571564, -0.013282380998134613, -0.029593991115689278, -0.026739543303847313, -0.000012974447599845007, -0.0034354859963059425, 0.010363449342548847, 0.043390873819589615, 0.04476410895586014, -0.019488848745822906, 0.013510296121239662, 0.0086967209354043, -0.02455984428524971, -0.0417461097240448, 0.11783165484666824, 0.02154381200671196, 0.020084794610738754 ]
[ 0.0025448822416365147, 0.0037415537517517805, -0.015779156237840652, 0.018523136153817177, -0.03421109914779663, -0.024954713881015778, -0.009198490530252457, -0.02093586139380932, -0.033431995660066605, -0.022331610321998596, 0.05226171389222145, -0.002867766423150897, 0.021982382982969284, -0.036220401525497437, 0.021524952724575996, -0.0037946586962789297, -0.008678884245455265, -0.016560209915041924, 0.02602194994688034, -0.023659981787204742, -0.03648294135928154, 0.05793656408786774, 0.03453098610043526, 0.001346125383861363, -0.020046304911375046, 0.0008832410094328225, -0.021275030449032784, 0.01422770693898201, 0.03943505883216858, -0.11248534172773361, -0.017145542427897453, -0.014969532378017902, 0.0063728392124176025, 0.02659839205443859, 0.027848830446600914, 0.012646399438381195, -0.003072509076446295, 0.0029383194632828236, 0.020609918981790543, 0.013598250225186348, -0.05124319717288017, -0.010086885653436184, -0.04371597245335579, 0.025457436218857765, -0.026640454307198524, 0.012581509537994862, -0.03289634361863136, -0.032452914863824844, -0.0033405530266463757, -0.03556324914097786, -0.02763771079480648, 0.036529116332530975, -0.020376235246658325, 0.012541445903480053, 0.03327745944261551, -0.007240150589495897, 0.0007620797259733081, -0.010420188307762146, 0.016716469079256058, -0.02157893404364586, 0.0054440852254629135, -0.027910707518458366, -0.0525919646024704, -0.0406918078660965, 0.011417357251048088, -0.013109100982546806, -0.05876142531633377, 0.007376766297966242, 0.016998859122395515, -0.005179727915674448, -0.019752137362957, -0.011725378222763538, 0.013641475699841976, -0.03853168711066246, 0.013327302411198616, -0.016667800024151802, 0.05970389023423195, -0.05046599730849266, -0.008353711105883121, 0.005893917288631201, -0.05069337040185928, -0.009810781106352806, -0.03829275444149971, 0.014635796658694744, 0.01871919259428978, -0.04252590984106064, -0.023080913349986076, 0.013282527215778828, 0.010182774625718594, 0.0280349999666214, -0.03426922485232353, -0.0261967945843935, 0.019170140847563744, -0.00791433360427618, -0.06361767649650574, 0.044176798313856125, 0.061209455132484436, -0.03354720398783684, 0.004281807225197554, 0.819652259349823, 0.02622811682522297, 0.002584767760708928, 0.0024094735272228718, -0.014879440888762474, 0.009115925058722496, 0.05875740945339203, -0.008587386459112167, -0.03495427221059799, 0.04424012452363968, -0.008698197081685066, 0.010967905633151531, -0.009544863365590572, 0.02004348114132881, 0.03537359461188316, -0.01680702343583107, 0.007931118831038475, 0.031559091061353683, 0.008050112053751945, 0.029372286051511765, 0.019237590953707695, -0.015029040165245533, 0.01570206694304943, 0.034056052565574646, 0.01615362986922264, -0.03680293262004852, -0.1583518087863922, 0.020818278193473816, -7.46745937202908e-33, 0.022123821079730988, -0.017669064924120903, -0.006034566089510918, -0.009175900369882584, 0.016845399513840675, -0.010949840769171715, 0.010059314779937267, 0.015446891076862812, -0.0029112992342561483, -0.046904951333999634, 0.01795576512813568, 0.014369746670126915, -0.024621520191431046, -0.0026091807521879673, 0.02133358269929886, 0.0034768066834658384, 0.017231956124305725, 0.04504167661070824, -0.01579904556274414, 0.02241375483572483, 0.046829886734485626, 0.022035831585526466, 0.012225432321429253, -0.015114648267626762, 0.019718103110790253, -0.0009923820616677403, -0.002673474373295903, -0.0121161425486207, -0.030761729925870895, -0.027285121381282806, -0.06513343006372452, 0.038545217365026474, 0.029474228620529175, -0.056901101022958755, -0.016799459233880043, -0.04157663881778717, -0.003971189726144075, -0.018003398552536964, -0.015201409347355366, -0.05540710687637329, -0.017764737829566002, 0.03243255242705345, -0.01799129508435726, -0.021825358271598816, -0.03314274176955223, 0.010312306694686413, 0.04151061177253723, 0.04454474151134491, 0.013159029185771942, 0.06876567751169205, 0.014116175472736359, 0.0010685734450817108, 0.008783424273133278, 0.008211016654968262, -0.0428449846804142, 0.00771997170522809, -0.017548883333802223, -0.02874465100467205, 0.04182093217968941, -0.012799314223229885, -0.0001787564979167655, 0.011857048608362675, 0.014383318834006786, 0.08116807043552399, 0.011026917025446892, -0.018082240596413612, 0.054538071155548096, 0.025818951427936554, 0.0016445621149614453, 0.01636241190135479, -0.0685369074344635, -0.004049001727253199, -0.06746912747621536, -0.04386197030544281, 0.0021558816079050303, -0.041881125420331955, -0.005787244066596031, -0.0417405441403389, 0.0005097253015264869, 0.010150667279958725, 0.053081393241882324, 0.0022889648098498583, -0.023086918517947197, -0.043174613267183304, 0.0014622986782342196, 0.0034871906973421574, 0.019479461014270782, -0.026817362755537033, -0.008787430822849274, 0.005052815191447735, 0.019120950251817703, 0.006301818415522575, -0.03452140465378761, -0.004373702220618725, -0.02247498743236065, 6.1618153887097024e-33, 0.04083849489688873, -0.028391217812895775, -0.025850767269730568, 0.020485693588852882, -0.012526432983577251, -0.03922416269779205, 0.020113704726099968, 0.02676202915608883, -0.01881810463964939, 0.02155487798154354, -0.01020850706845522, -0.018993334844708443, -0.0006709723966196179, -0.0029998181853443384, 0.048992715775966644, 0.03458269312977791, -0.014275271445512772, 0.0454987958073616, 0.017727414146065712, -0.01134694553911686, 0.014220185577869415, 0.010127341374754906, 0.02096734195947647, 0.004988458007574081, -0.029130790382623672, 0.0342358760535717, -0.02824278548359871, 0.0231038648635149, -0.011214365251362324, 0.008460817858576775, 0.019132791087031364, -0.0002033133787335828, 0.026194659993052483, -0.05530688166618347, -0.005954910069704056, 0.016934188082814217, 0.014611320570111275, 0.002481033094227314, 0.00849157478660345, -0.010396941564977169, 0.07871587574481964, 0.05052956938743591, -0.02905355952680111, 0.01346138957887888, -0.018933923915028572, 0.011499076150357723, 0.003360042115673423, 0.004464803729206324, 0.040441498160362244, 0.027734827250242233, 0.03593505173921585, 0.006120363250374794, 0.0015828507021069527, -0.0075310515239834785, -0.015042463317513466, -0.005109273828566074, -0.01560461986809969, -0.0070098089054226875, -0.06567975133657455, 0.013073455542325974, -0.03265213593840599, -0.011474618688225746, 0.019927246496081352, -0.020520079880952835, -0.027531705796718597, -0.004254143685102463, -0.04338958114385605, 0.009734313003718853, -0.01903514191508293, -0.022958913818001747, 0.006253060419112444, 0.0316665843129158, -0.019104987382888794, 0.0007356077549047768, -0.026778701692819595, 0.026605162769556046, -0.01551101915538311, -0.02383245714008808, -0.027657832950353622, -0.0057029505260288715, 0.028304992243647575, -0.004197575617581606, 0.04495660588145256, 0.038280174136161804, -0.03210167586803436, 0.011644374579191208, 0.0008717926102690399, 0.005394591949880123, -0.020405404269695282, 0.0018359993118792772, 0.02398550882935524, -0.03894548863172531, -0.006117821205407381, 0.050521478056907654, -0.020464841276407242, -1.2802000348699494e-8, -0.04924282059073448, 0.0484485998749733, -0.0005795900360681117, 0.052977606654167175, -0.020345257595181465, 0.005933891981840134, 0.007686188910156488, -0.005376778077334166, 0.0018779815873131156, -0.016323687508702278, 0.039238959550857544, -0.004576451610773802, -0.020816847681999207, 0.02764919400215149, 0.01889902912080288, 0.013614091090857983, -0.03458366170525551, -0.008445451967418194, 0.012360043823719025, -0.01282112393528223, 0.01785849593579769, 0.01594449020922184, 0.010772825218737125, 0.017421036958694458, -0.01783067360520363, 0.022025469690561295, 0.020426644012331963, -0.06288228929042816, 0.04518688842654228, -0.01775938831269741, 0.007376845460385084, -0.05534285306930542, -0.030509065836668015, -0.006875197868794203, -0.006303852424025536, -0.03672926872968674, -0.0066289580427110195, -0.02173827961087227, -0.014216595329344273, 0.00578300142660737, -0.019929181784391403, -0.03045826591551304, -0.019181985408067703, -0.03593365475535393, -0.04786273464560509, -0.026118779554963112, -0.0600089430809021, 0.011763564310967922, 0.01705414056777954, -0.028589166700839996, 0.01634630747139454, -0.001792697818018496, 0.023295989260077477, 0.024193594232201576, 0.03299294412136078, 0.05516744405031204, -0.011968124657869339, 0.01618327386677265, -0.03121817670762539, -0.03934810683131218, 0.06818319857120514, 0.018340395763516426, -0.03312106430530548, 0.014268933795392513 ]
python-learning-defaultdicts-handling-missing-keys
https://markhneedham.com/blog/2017/12/01/python-learning-defaultdicts-handling-missing-keys
false
2010-03-04 18:55:02
Functional C#: Using Join and GroupJoin
[ "c", "net" ]
[ ".NET" ]
An interesting problem which I've come across a few times recently is where we have two collections which we want to use together in some way and get a result which could either be another collection or some other value. In one which http://enginechris.wordpress.com[Chris] and I were playing around with we had a collection of years and a collection of cars with corresponding years and the requirement was to show all the years on the page with the first car we found for that year or an empty value if there was no car for that year. We effectively needed to do a left join on the cars collection. This is an imperative way of solving the problem: [source,csharp] ---- public class Car { public int Year { get; set; } public string Description { get; set; } } ---- [source,csharp] ---- var years = new[] { 2000, 2001, 2002, 2003 }; var cars = new[] { new Car { Year = 2000, Description = "Honda" }, new Car { Year = 2003, Description = "Ford" } }; var newCars = new List<Car>(); foreach (var year in years) { var car = cars.Where(x => x.Year == year).FirstOrDefault() ?? new Car { Year = year, Description = ""}; newCars.Add(car); } ---- We can actually achieve the same result in a more declarative way by making use of 'http://msdn.microsoft.com/en-us/library/bb534297.aspx[GroupJoin]': [source,csharp] ---- var newCars = years.GroupJoin(cars, year => year, car => car.Year, (year, theCars) => theCars.FirstOrDefault() ?? new Car { Year = year, Description = "" }); ---- 'GroupJoin' is useful if we want to keep all of the items in the first collection and get a collection of the items in the second collection which match for the specified keys. In this case it allows us to identify where there are no matching cars for a specific year and then just set a blank description for those years. One nice side effect is that if we later want to include multiple cars for a year then we shouldn't have to change the code too much to achieve that. Another example which I came across is where we have one collection which contains filter criteria which it needs to apply against the other collection. We have a collection of years and need to indicate whether there is a matching car for each of those years. [source,csharp] ---- [Test] public void JoinExample() { var years = new[] { 2000, 2003 }; var cars = new[] { new Car { Year = 2000, Description = "Honda" }, new Car { Year = 2003, Description = "Ford" }, new Car { Year = 2003, Description = "Mercedes"}}; Assert.That(AreThereMatchingCars(years, cars), Is.True); } ---- [source,csharp] ---- public bool AreThereMatchingCars(IEnumerable<int> years, IEnumerable<Car> cars) { foreach (var year in years) { if(cars.Where(c => c.Year == year).Count() == 0) { return false; } } return true; } ---- We can rewrite this function like so: [source,csharp] ---- public bool AreThereMatchingCars(IEnumerable<int> years, IEnumerable<Car> cars) { var distinctCars = cars.GroupBy(x => x.Year).Select(x => x.First()); return years.Join(distinctCars, y => y, c => c.Year, (y, c) => c).Count() == years.Count(); } ---- This actually become more complicated than we expected because we were working out if there were matching cars for each of the specified years by checking the number of filter items and then comparing it to the number of items when we joined that collection with our collection of cars. If we have more than one car for the same year that logic falls down so we needed to get just one car per year which is what the first line of the function does. I can't decide whether or not the code is easier to read and understand by making use of these functions but it's an approach that I picked up when playing around with F# so it's interesting that it can still be applied in C# code as well.
null
null
[ -0.00162479595746845, -0.018270932137966156, -0.01058993674814701, 0.039927199482917786, 0.08797236531972885, -0.0021132559049874544, 0.01177351363003254, 0.02250656671822071, -0.011067614890635014, -0.01994713768362999, 0.012925934977829456, 0.013130532577633858, -0.08527536690235138, 0.029701286926865578, -0.05559781566262245, 0.07801506668329239, 0.06315605342388153, -0.016590828076004982, -0.0015924574108794332, -0.021464290097355843, -0.002477864734828472, 0.07347694039344788, 0.009979436174035072, 0.03802143782377243, 0.03758881613612175, 0.03577449917793274, -0.00004655610246118158, -0.015357546508312225, -0.04604390263557434, -0.0006677129422314465, 0.03135685995221138, 0.01350227277725935, -0.017539964988827705, 0.00785902887582779, 0.019513459876179695, -0.059049464762210846, 0.005671907681971788, -0.015029014088213444, -0.004272126592695713, 0.006876547820866108, -0.05498792231082916, 0.03873296082019806, -0.017092635855078697, 0.0027496926486492157, -0.0498754158616066, 0.017165785655379295, -0.03634296730160713, -0.004830553662031889, -0.03983435779809952, -0.025960464030504227, -0.046401042491197586, 0.0118121188133955, -0.027496781200170517, 0.02614864706993103, -0.034413352608680725, 0.04500460997223854, -0.006184020079672337, -0.0712614580988884, 0.023420507088303566, -0.03978223353624344, 0.0334450788795948, 0.0007756872801110148, 0.008688503876328468, 0.025039054453372955, 0.022835589945316315, -0.024056904017925262, -0.011221555061638355, 0.04836271330714226, -0.05273083224892616, -0.011546418070793152, -0.033052731305360794, -0.008141220547258854, 0.0106867216527462, -0.00854050274938345, 0.007721028756350279, -0.042057137936353683, -0.01146844495087862, 0.0307400394231081, 0.03878225013613701, 0.04684308543801308, -0.00890609622001648, 0.022531429305672646, 0.05204838886857033, 0.011107257567346096, 0.012994286604225636, -0.049645405262708664, -0.054712969809770584, -0.012083540670573711, -0.016034366562962532, 0.05604466050863266, 0.007985249161720276, -0.04177851974964142, 0.0061307428404688835, 0.018158353865146637, -0.012685293331742287, -0.01782248541712761, 0.011643084697425365, -0.032744407653808594, -0.0017976030940189958, 0.0153646944090724, -0.023211674764752388, -0.03004695288836956, 0.03927601873874664, 0.0015094527043402195, -0.0774734616279602, 0.004143655300140381, -0.0068507203832268715, 0.007249030284583569, 0.007906682789325714, -0.010940161533653736, -0.03473317250609398, 0.006020623259246349, -0.03296404704451561, 0.03630717843770981, -0.062438081949949265, 0.04822871834039688, 0.0358070433139801, -0.01264626532793045, 0.009223039261996746, 0.039460550993680954, 0.030947759747505188, 0.03367585688829422, -0.012186574749648571, 0.06637886166572571, 0.007288328837603331, 0.045561645179986954, -0.013717020861804485, 0.06403172761201859, -0.025410257279872894, -0.09485568851232529, 0.00879545509815216, 0.047008927911520004, -0.030453911051154137, -0.010042747482657433, 0.001613171654753387, -0.0395510233938694, -0.01796727254986763, 0.012389332987368107, 0.05959266424179077, 0.02788066864013672, -0.026869021356105804, -0.033315807580947876, 0.01048356480896473, -0.003052495652809739, 0.018922872841358185, 0.02574063651263714, -0.024635491892695427, -0.01217549480497837, -0.016062583774328232, 0.042120713740587234, 0.04211832210421562, 0.03986255079507828, 0.042351361364126205, -0.037971995770931244, 0.001284817815758288, 0.08407241106033325, -0.00228665373288095, 0.035430658608675, 0.008403132669627666, 0.0181033406406641, 0.037405405193567276, 0.02503361366689205, 0.014912089332938194, 0.03774196654558182, -0.0027524582110345364, -0.0022879878524690866, -0.023457620292901993, 0.07136454433202744, -0.016615215688943863, -0.008780301548540592, -0.07782955467700958, -0.05516837164759636, 0.04337140545248985, -0.0633344054222107, -0.008734853938221931, 0.04917396977543831, 0.09498089551925659, 0.013385863974690437, 0.04899653047323227, -0.000599570746999234, -0.07686690986156464, 0.00600803829729557, -0.0013446466764435172, -0.0011922713601961732, 0.03543006628751755, 0.016713064163923264, 0.05915459990501404, 0.0373644195497036, 0.01052201259881258, 0.017946626991033554, -0.06820377707481384, -0.06674477458000183, -0.05694686621427536, -0.03753110021352768, 0.0574362613260746, -0.026298856362700462, -0.003377106273546815, 0.07872042059898376, -0.006116511765867472, 0.05989791080355644, 0.03014577180147171, -0.006878383457660675, 0.037721578031778336, -0.026227828115224838, -0.02853628247976303, 0.04553733393549919, 0.009247004054486752, 0.01114114560186863, -0.027958687394857407, 0.019354332238435745, -0.019601482897996902, 0.02453882060945034, 0.04649048671126366, -0.01501829456537962, 0.06470787525177002, 0.004265771713107824, 0.04875717684626579, -0.04117458686232567, 0.03535347804427147, -0.057831257581710815, 0.04169217497110367, -0.0013963545206934214, -0.007915194146335125, -0.0022631643805652857, -0.017590656876564026, 0.12241028249263763, 0.05252354219555855, -0.03209599107503891, -0.034523483365774155, 0.02280541881918907, 0.022586429491639137, -0.01916510984301567, -0.00245412765070796, -0.04114118218421936, 0.022931499406695366, 0.0052934265695512295, -0.05383731797337532, -0.014195735566318035, 0.019306061789393425, -0.032532643526792526, -0.0008015306084416807, 0.05420645698904991, -0.022974561899900436, 0.07203785330057144, 0.03686417639255524, -0.02199898101389408, -0.019374225288629532, -0.03074447251856327, -0.04823503643274307, -0.010813822038471699, -0.00030054201488383114, -0.011312809772789478, 0.038992270827293396, -0.016129856929183006, -0.010336427949368954, -0.00827629305422306, -0.046910736709833145, 0.01215942483395338, 0.03584430366754532, 0.06564559787511826, -0.01709577813744545, 0.07070022821426392, -0.00889416690915823, -0.010124655440449715, -0.02178170718252659, -0.045220427215099335, -0.004986572545021772, 0.007683516014367342, 0.029940424486994743, 0.032281577587127686, 0.016776371747255325, -0.0009837857214733958, 0.037606265395879745, 0.02447679452598095, -0.020085938274860382, 0.003660624846816063, 0.04080137982964516, -0.008925342932343483, -0.03485007956624031, -0.05529828369617462, -0.018980208784341812, 0.04679325595498085, -0.03138823062181473, -0.0565410852432251, -0.0163363516330719, -0.08599631488323212, 0.058471787720918655, -0.07225820422172546, -0.050747100263834, -0.00267357868142426, 0.031822603195905685, 0.02737194299697876, -0.004722952842712402, 0.009887035936117172, 0.07545199990272522, 0.024839602410793304, -0.0041139256209135056, 0.024104828014969826, 0.004860616289079189, 0.0005238605663180351, -0.04145411029458046, 0.001052887993864715, 0.04644607752561569, -0.014713251031935215, 0.009745901450514793, -0.06052223592996597, 0.026219692081212997, -0.011514547280967236, -0.2810894846916199, 0.021875374019145966, -0.01716948114335537, -0.038863811641931534, 0.046780411154031754, -0.010495074093341827, 0.035962995141744614, -0.05223353952169418, -0.018459158018231392, 0.045240841805934906, 0.0011978887487202883, -0.03776920959353447, -0.033528394997119904, 0.06878887861967087, 0.011400987394154072, 0.014288020320236683, 0.003208016976714134, -0.034340210258960724, -0.012333298102021217, 0.03268127888441086, -0.018368035554885864, -0.07187516242265701, -0.0217156782746315, 0.06456467509269714, 0.02193770557641983, 0.07439329475164413, -0.06512242555618286, 0.01588725484907627, -0.05483144521713257, 0.0025361962616443634, -0.001852203393355012, 0.004806498531252146, 0.02015330083668232, -0.04625798016786575, -0.030226929113268852, -0.043260350823402405, 0.03115128166973591, 0.013692960143089294, -0.016471950337290764, 0.004491792526096106, -0.052710775285959244, -0.039590150117874146, -0.008146604523062706, 0.030847519636154175, 0.06960590183734894, -0.0069660316221416, -0.051614806056022644, -0.028034375980496407, -0.051749203354120255, 0.06970083713531494, -0.029859796166419983, -0.030773427337408066, 0.0002841951500158757, 0.04040387272834778, -0.010418223217129707, -0.0290853139013052, -0.0032110337633639574, -0.0012216364266350865, -0.046248577535152435, -0.015683839097619057, -0.01636822335422039, -0.06366545706987381, -0.004602767992764711, -0.03136241063475609, -0.028803018853068352, -0.07226497679948807, -0.07063160091638565, -0.006154999136924744, 0.06598047912120819, 0.015173876658082008, -0.011930466629564762, -0.003319649724289775, -0.015178551897406578, -0.10756445676088333, 0.001908172038383782, -0.008130298927426338, -0.013553943485021591, -0.023901525884866714, -0.013007614761590958, 0.04094276949763298, -0.039610110223293304, -0.04394720494747162, 0.025975944474339485, 0.042889174073934555, 0.003106597112491727, -0.015782877802848816, 0.017344456166028976, 0.006768594030290842, -0.038325902074575424, 0.0032141078263521194, 0.07627450674772263, 0.01206225622445345, 0.00822423491626978, -0.02683260478079319, 0.019814733415842056, 0.031599920243024826, 0.020038491114974022, 0.01357856672257185, 0.029624618589878082, 0.03995073586702347, 0.06698860973119736, -0.0565313957631588, 0.028783217072486877, -0.016278522089123726, -0.031097501516342163, -0.025640660896897316, -0.03527682274580002, 0.03287329152226448, 0.04256900027394295, 0.0005408772849477828, -0.005231702700257301, -0.011507791467010975, 0.03076517954468727, -0.05689932033419609, -0.01069885678589344, -0.0421840138733387, 0.029342565685510635, 0.03945041447877884, 0.01033043209463358, -0.01792057417333126, -0.029073519632220268, 0.04062782973051071, 0.014115559868514538, -0.008416125550866127, -0.07818146795034409, -0.05328446254134178, -0.010441304184496403, -0.003901938907802105, -0.018739311024546623, 0.038369350135326385, -0.044099338352680206, 0.02717425860464573, 0.014144036918878555, -0.047606080770492554, 0.04032353311777115, -0.019511718302965164, -0.017009258270263672, -0.04309216886758804, -0.026212407276034355, -0.007447633892297745, -0.002774048363789916, -0.03720670938491821, 0.00451833987608552, 0.02504906989634037, 0.03443416208028793, 0.00949975848197937, 0.03554887697100639, 0.020728465169668198, -0.007508622482419014, 0.01334474328905344, -0.038417790085077286, -0.03907320648431778, 0.01723337732255459, -0.020207038149237633, -0.016058851033449173, -0.019003935158252716, 0.02618280053138733, -0.03435685858130455, -0.013071306049823761, -0.056867942214012146, 0.017038194462656975, -0.051092103123664856, -0.0010669557377696037, -0.03185547888278961, 0.01593097299337387, 0.0508723109960556, -0.01825129985809326, 0.03482753038406372, -0.018006581813097, 0.012007801793515682, 0.023692643269896507, -0.010959426872432232, -0.015174559317529202, 0.016494395211338997, -0.011942743323743343, -0.011615945026278496, 0.017457755282521248, 0.005356076173484325, 0.032372746616601944, 0.0061818985268473625, 0.00576609605923295, -0.009453428909182549, 0.006480555050075054, -0.032155733555555344, 0.0481453500688076, 0.033802591264247894, 0.011428366415202618, -0.004640153609216213, -0.011387068778276443, -0.027483949437737465, -0.018842356279492378, -0.03388987109065056, -0.02759110927581787, 0.023874646052718163, -0.04591275006532669, -0.08090684562921524, 0.020176608115434647, -0.01535128802061081, 0.024627400562167168, 0.013102115131914616, 0.016954954713582993, 0.00913779716938734, -0.019824666902422905, 0.022298986092209816, 0.03686772286891937, -0.07226981967687607, 0.024462681263685226, -0.006069366354495287, -0.020799998193979263, 0.042328186333179474, -0.0016978437779471278, -0.038740336894989014, -0.007665611337870359, -0.009623201563954353, 0.01847795397043228, -0.030747508630156517, -0.019619125872850418, -0.03450430557131767, 0.05747823044657707, -0.01259076688438654, 0.006550401449203491, -0.0228133387863636, 0.010496743954718113, -0.018619587644934654, -0.023276420310139656, 0.02377769723534584, -0.04741844907402992, -0.020651353523135185, 0.012467898428440094, -0.027389757335186005, 0.0025839649606496096, -0.04243803769350052, 0.021191636100411415, 0.020650694146752357, -0.025409994646906853, -0.021572111174464226, -0.03655208647251129, 0.014383629895746708, 0.011533656157553196, 0.06594453006982803, 0.006541882641613483, -0.030887415632605553, -0.01653498224914074, -0.025065802037715912, -0.01285043265670538, 0.0016056924359872937, 0.001382322981953621, -0.020203839987516403, 0.014578485861420631, 0.05042566731572151, 0.013139831833541393, 0.009437265805900097, -0.0005365797551348805, -0.015992870554327965, 0.06872831284999847, -0.025908827781677246, -0.01430539507418871, -0.026426933705806732, -0.04847785085439682, 0.007051846478134394, -0.0018443758599460125, 0.03310353681445122, -0.039652902632951736, 0.04322865977883339, 0.05728691443800926, 0.03122652880847454, 0.03137839585542679, 0.019097205251455307, 0.03452587127685547, -0.04187994822859764, 0.00880247913300991, -0.0678003579378128, 0.011221686378121376, 0.025477325543761253, 0.030725667253136635, -0.021734293550252914, -0.023342931643128395, -0.05246610566973686, 0.023644695058465004, -0.06847714632749557, -0.01875470019876957, 0.022152096033096313, -0.02771526202559471, 0.009075184352695942, 0.009844810701906681, -0.03511981666088104, 0.01797586865723133, 0.024114973843097687, -0.018179655075073242, -0.041442014276981354, -0.05284715071320534, 0.08193711936473846, 0.003630838356912136, 0.013131819665431976, -0.031386952847242355, 0.005452463869005442, 0.0580018125474453, 0.031107736751437187, 0.01737235300242901, 0.08812269568443298, -0.04185528680682182, 0.023277325555682182, 0.023425623774528503, -0.03664018213748932, -0.009675036184489727, 0.0027164656203240156, 0.0033166129142045975, -0.03804943338036537, 0.016417616978287697, 0.0002613085671328008, -0.025006001815199852, -0.052122313529253006, 0.07077915221452713, 0.013584166765213013, -0.03498278930783272, -0.061301667243242264, 0.016261247918009758, -0.04976731538772583, -0.009542963467538357, -0.026378214359283447, 0.021755017340183258, -0.04362323135137558, 0.062389399856328964, 0.00286514381878078, 0.014841156080365181, 0.06872420758008957, -0.011468972079455853, -0.009348010644316673, 0.017007922753691673, 0.09262309223413467, 0.0689765214920044, 0.05587396025657654, -0.0020338085014373064, 0.07888762652873993, -0.03692422807216644, -0.04828357696533203, -0.0030728925485163927, -0.057668719440698624, 0.0007251810166053474, -0.0018479155842214823, 0.012392878532409668, 0.07535862922668457, 0.0028303989674896, 0.045424383133649826, -0.018568551167845726, -0.02007216028869152, -0.010007164441049099, 0.016940321773290634, 0.04650217294692993, 0.025419093668460846, 0.012795348651707172, 0.030490471050143242, -0.009029860608279705, -0.03308401629328728, 0.06057078018784523, 0.003724104491993785, -0.0017638461431488395, 0.010506954044103622, -0.019138064235448837, 0.012311634607613087, 0.005351577885448933, 0.06588979065418243, 0.06843332201242447, -0.004448841325938702, -0.018202222883701324, -0.012392274104058743, 0.012772533111274242, 0.02470199204981327, -0.022095903754234314, -0.012389852665364742, -0.02518203854560852, -0.0065317838452756405, -0.011497112922370434, 0.0020699582528322935, -0.010065298527479172, -0.012548685073852539, 0.028349563479423523, -0.02023814432322979, 0.012061436660587788, 0.019176242873072624, 0.01639140211045742, -0.03622274100780487, -0.0330195315182209, -0.04178759455680847, -0.036192793399095535, -0.05582929775118828, 0.010792775079607964, 0.024009883403778076, 0.01165957935154438, -0.03329740837216377, -0.018817316740751266, -0.0032364747021347284, -0.02318495325744152, 0.052226610481739044, -0.0406174473464489, -0.04743063822388649, 0.020371319726109505, 0.03095429204404354, 0.04244334250688553, 0.032292500138282776, 0.043620020151138306, -0.02465098164975643, -0.012005310505628586, -0.030357524752616882, -0.0010674323420971632, 0.050953999161720276, -0.001603575423359871, 0.0126894386485219, -0.08853544294834137, 0.029034581035375595, 0.014956504106521606, -0.026928570121526718, -0.08765459060668945, -0.005228170193731785, 0.02246670052409172, -0.04753881320357323, 0.02288649044930935, 0.006110161077231169, -0.030377261340618134, -0.029698902741074562, 0.009466898627579212, 0.02472754567861557, 0.02250494249165058, 0.044247835874557495, -0.03999313339591026, 0.056064754724502563, 0.021816657856106758, -0.016061943024396896, -0.043918147683143616, -0.0015369956381618977, 0.008427238091826439, 0.019710469990968704, -0.03676512464880943, -0.043280139565467834, -0.026627108454704285, -0.0719168558716774, -0.03908968344330788, -0.005705432500690222, -0.013956569135189056, -0.02737727016210556, 0.01236840058118105, 0.055090874433517456, -0.04590201750397682, 0.03130347654223442, -0.017946703359484673, 0.02106466516852379, -0.03947748616337776, -0.006142341531813145, -0.00879520270973444, 0.03624296933412552, 0.006146703846752644, 0.016810275614261627, 0.012635627761483192, -0.032560888677835464, -0.006159215699881315, -0.013893610797822475, 0.016749920323491096, 0.012217291630804539, -0.01966184377670288, 0.01621405966579914 ]
[ -0.08022121340036392, 0.0039827823638916016, -0.01848561316728592, -0.020298408344388008, 0.07053631544113159, -0.04506514593958855, -0.017752990126609802, -0.00727815181016922, 0.0017693496774882078, -0.02437441237270832, 0.002299088053405285, -0.007672236301004887, 0.01107101608067751, 0.021304644644260406, 0.03890762850642204, -0.00591591652482748, -0.03758108988404274, -0.0311590563505888, -0.0493832528591156, 0.017483122646808624, 0.009484135545790195, -0.03727574273943901, -0.05070921778678894, -0.030502894893288612, 0.017467070370912552, 0.062277596443891525, 0.02379213273525238, -0.051555085927248, -0.00750605296343565, -0.21241803467273712, -0.014302097260951996, -0.025127790868282318, 0.014595240354537964, -0.00121469481382519, -0.0011688492959365249, 0.033982206135988235, 0.01933157630264759, 0.0334828644990921, -0.0016436794539913535, 0.052546948194503784, 0.03639973700046539, 0.04853774234652519, -0.07913775742053986, -0.038998082280159, 0.04120340943336487, 0.013886253349483013, -0.002288391115143895, -0.024772681295871735, -0.012503061443567276, 0.006215430796146393, -0.050780683755874634, -0.019908273592591286, -0.03215659409761429, 0.022702183574438095, -0.03860754892230034, 0.08097458630800247, 0.015108862891793251, 0.014889358542859554, -0.0026906966231763363, 0.020577965304255486, 0.013261624611914158, -0.040218789130449295, -0.13459111750125885, 0.08030377328395844, 0.00929765123873949, 0.05033423379063606, 0.007971415296196938, -0.01685582846403122, -0.025996515527367592, 0.058075305074453354, 0.03502015396952629, -0.04313374683260918, -0.019324399530887604, 0.0549740344285965, 0.013668079860508442, -0.021486273035407066, -0.019832028076052666, 0.015316089615225792, 0.019925568252801895, -0.0347946360707283, -0.06407921761274338, -0.021137120202183723, 0.008258815854787827, -0.02498788945376873, -0.018306229263544083, 0.004844184033572674, 0.004008313175290823, -0.0004077169578522444, 0.02245471440255642, 0.034135811030864716, 0.05975370854139328, 0.0009928096551448107, 0.04733346775174141, 0.005764641799032688, -0.0919041559100151, 0.0006343784043565392, 0.003062067087739706, 0.022101765498518944, -0.01433771476149559, 0.4273841083049774, -0.014904320240020752, -0.00013712499639950693, 0.06306752562522888, 0.0064870575442910194, -0.029940146952867508, 0.022706501185894012, -0.014733819290995598, -0.06077870726585388, 0.010480603203177452, -0.04148942232131958, 0.006268894299864769, -0.007826405577361584, 0.05483829975128174, -0.04392720386385918, -0.0031495492439717054, -0.005945180077105761, 0.011948831379413605, 0.04306524619460106, -0.005989581812173128, -0.0031654753256589174, 0.0014910936588421464, -0.006338654085993767, 0.008346772752702236, 0.030472759157419205, -0.012483677826821804, -0.012847129255533218, 0.05491425096988678, 0.044044241309165955, 0.07161819189786911, -0.00407163193449378, 0.04667475447058678, -0.03478441387414932, -0.08760835230350494, -0.007996910251677036, -0.007723574992269278, 0.016403209418058395, 0.02400454320013523, -0.0010969857685267925, 0.026919066905975342, 0.036110833287239075, -0.014252178370952606, -0.04473871737718582, 0.03255680203437805, -0.007548022549599409, -0.0586746484041214, 0.12815602123737335, 0.00836669560521841, -0.029626760631799698, -0.024693554267287254, -0.018942462280392647, -0.03693276643753052, 0.015630880370736122, 0.015401210635900497, -0.06803528964519501, 0.0007992683677002788, 0.015807032585144043, 0.10006078332662582, -0.030010605230927467, -0.03557595610618591, -0.023641197010874748, -0.017636729404330254, -0.010722175240516663, -0.051992904394865036, 0.033016715198755264, 0.0580780953168869, -0.10903330892324448, -0.020493002608418465, 0.013183980248868465, -0.015328984707593918, -0.07501860707998276, -0.01524986233562231, 0.048741746693849564, -0.02898920327425003, 0.031389012932777405, 0.07720867544412613, 0.01783657632768154, -0.022171499207615852, 0.016107071191072464, 0.014195873402059078, 0.006134552415460348, -0.04958099499344826, 0.02921827882528305, -0.09117745608091354, 0.01631905697286129, -0.01019355934113264, -0.07938897609710693, -0.05289413034915924, 0.004901303444057703, -0.020263181999325752, 0.005465224385261536, 0.018038148060441017, -0.04554210975766182, -0.0463726781308651, 0.119480662047863, -0.03139881044626236, 0.005191335454583168, 0.013341959565877914, 0.0037082447670400143, 0.027248170226812363, -0.028175771236419678, -0.0021164221689105034, -0.0025945075321942568, -0.00014232761168386787, 0.023997219279408455, -0.0236038938164711, 0.02208736352622509, 0.02195604518055916, -0.05379856005311012, 0.06264516711235046, 0.025337817147374153, -0.0485544316470623, -0.027578381821513176, -0.010057143867015839, 0.01741662807762623, 0.016777021810412407, -0.02104116789996624, -0.016724932938814163, 0.0047712852247059345, 0.02914484217762947, 0.009488938376307487, -0.014963362365961075, -0.06347661465406418, 0.02516201138496399, -0.353603333234787, -0.021227579563856125, -0.02970273420214653, 0.022257499396800995, -0.02038552798330784, -0.04939994961023331, 0.00930891651660204, -0.013447308912873268, -0.046784307807683945, 0.012838544324040413, 0.06301450729370117, -0.0048839920200407505, 0.007485472597181797, -0.03519638255238533, 0.011623259633779526, 0.035371437668800354, -0.05240517109632492, -0.015440849587321281, -0.02644534222781658, 0.028649115934967995, 0.022175651043653488, 0.0016165622510015965, -0.002024543471634388, -0.0682363212108612, 0.02143336646258831, -0.027316318824887276, 0.11719497293233871, -0.017635399475693703, 0.036400750279426575, -0.052082620561122894, 0.06124649941921234, 0.011199387721717358, -0.02395249716937542, -0.013066965155303478, -0.01597762107849121, -0.03644418343901634, -0.049183908849954605, -0.03261939063668251, 0.014206689782440662, -0.03482105955481529, -0.047939568758010864, 0.013561462052166462, -0.04778352752327919, -0.02121577225625515, -0.011239669285714626, -0.0005580244469456375, -0.009775941260159016, -0.004366307053714991, -0.008267047815024853, 0.10295123606920242, 0.023032406345009804, -0.0029972041957080364, 0.03143234923481941, 0.04583439603447914, -0.0050606862641870975, -0.01866103895008564, -0.06514561921358109, -0.013079141266644001, 0.0071424450725317, -0.006088025402277708, 0.023525003343820572, 0.05130862444639206, 0.04001421853899956, -0.042378950864076614, 0.009070554748177528, 0.016458021476864815, -0.04449944943189621, -0.013948487117886543, 0.015984946861863136, -0.04622392728924751, -0.053960688412189484, 0.07271797955036163, -0.014941846020519733, 0.012979057617485523, 0.011755668558180332, 0.07231344282627106, -0.032945677638053894, 0.03333275765180588, 0.04079276695847511, 0.008091780357062817, 0.029433775693178177, -0.04026075825095177, 0.0476406030356884, 0.01129512581974268, 0.026363154873251915, 0.09422586113214493, 0.011064617894589901, -0.014592456631362438, 0.05081206560134888, -0.024010200053453445, -0.024706177413463593, -0.008369171060621738, -0.0209469273686409, -0.056815747171640396, 0.04749433323740959, -0.014582477509975433, -0.26888328790664673, 0.04206671565771103, 0.07625215500593185, 0.05198291316628456, 0.004844780080020428, 0.02372317761182785, -0.0019755579996854067, -0.039032287895679474, 0.028308367356657982, -0.0099911168217659, 0.026336537674069405, 0.06800432503223419, -0.0024006827734410763, -0.027596386149525642, 0.02079205960035324, -0.020830435678362846, 0.04691588878631592, -0.004767206963151693, 0.022759977728128433, 0.03582983464002609, 0.035708289593458176, -0.0010453114518895745, 0.1965002864599228, 0.04531906917691231, 0.02969108149409294, 0.0035404260270297527, -0.002041714731603861, 0.012139369733631611, 0.056192122399806976, 0.015063565224409103, 0.02066623419523239, -0.027466541156172752, 0.10047224909067154, 0.0005380441434681416, 0.012161576189100742, -0.06805536150932312, -0.023190990090370178, 0.045103639364242554, 0.030182234942913055, 0.020474402233958244, -0.05420435592532158, 0.017704084515571594, -0.0629417896270752, 0.007263126317411661, 0.08679039776325226, 0.0017864840338006616, 0.01186654157936573, -0.029567968100309372, -0.03058086521923542, 0.005378894042223692, -0.028302613645792007, -0.008944808505475521, -0.014528349041938782, -0.03692576289176941, 0.013984276913106441, 0.021805817261338234, 0.007450167089700699, -0.034058015793561935, 0.020789599046111107, 0.019424723461270332, -0.025378240272402763, 0.008439992554485798, 0.06867063790559769, 0.001851963810622692, 0.02671787329018116 ]
[ -0.043318938463926315, 0.05898900330066681, -0.0056456634774804115, 0.0424732081592083, 0.009343059733510017, 0.042182911187410355, -0.028743164613842964, -0.002927792025730014, -0.023212088271975517, -0.031738631427288055, 0.004366953857243061, -0.038223009556531906, 0.0326903872191906, -0.04997545853257179, 0.001871060929261148, 0.03268248960375786, -0.03508785367012024, -0.01543469075113535, -0.001752345240674913, -0.004444024059921503, -0.011366541497409344, 0.013432720676064491, 0.01689048856496811, 0.004145818296819925, -0.042343419045209885, 0.02700222097337246, -0.04070388525724411, 0.002057276898995042, -0.0023511373437941074, -0.09737826883792877, -0.0416700653731823, -0.020486146211624146, -0.0005017375224269927, 0.036524347960948944, -0.009076301008462906, -0.03115750476717949, 0.013891912996768951, 0.03839225694537163, 0.0037735048681497574, -0.017469923943281174, -0.021020706743001938, 0.01346482615917921, -0.009085088036954403, -0.014963612891733646, 0.007802886422723532, 0.02455250732600689, -0.007866747677326202, -0.007900658994913101, 0.0024979973677545786, -0.005135376006364822, -0.03394349291920662, 0.004203708376735449, 0.01458681095391512, -0.016370316967368126, 0.021295879036188126, 0.008996674790978432, -0.04134456813335419, -0.006527260411530733, -0.03053615242242813, -0.053390175104141235, 0.035832177847623825, -0.032078247517347336, -0.01782488450407982, -0.02719089388847351, 0.009815300814807415, -0.023794865235686302, -0.02363884262740612, 0.014723300002515316, -0.019217228516936302, -0.03755253553390503, -0.005361062940210104, 0.017662959173321724, -0.011222992092370987, -0.03155698627233505, -0.009459653869271278, -0.007044855505228043, 0.02950628288090229, -0.011808803305029869, 0.03182588517665863, -0.04133392870426178, -0.021069377660751343, -0.004925502929836512, -0.02787228673696518, -0.01280405092984438, 0.02744736149907112, -0.017825286835432053, -0.01061184797435999, -0.026587223634123802, -0.01873515546321869, 0.05528707429766655, -0.08497761189937592, -0.017207138240337372, 0.06350724399089813, 0.01097172312438488, -0.042845651507377625, 0.048987772315740585, 0.07086503505706787, -0.02386586368083954, 0.008727810345590115, 0.819198727607727, 0.0011697435984387994, 0.029296571388840675, 0.018407968804240227, -0.028457138687372208, -0.03266062214970589, 0.0170128233730793, -0.020803948864340782, 0.004145069979131222, 0.02227087691426277, -0.04356496408581734, 0.04375459998846054, 0.02863599732518196, 0.023087691515684128, 0.000522351183462888, -0.036057230085134506, 0.009769114665687084, 0.006056913640350103, 0.0037378889974206686, 0.0004190366016700864, 0.00843087024986744, 0.007990135811269283, -0.019924836233258247, 0.017844263464212418, 0.01345089077949524, 0.04923620820045471, -0.20082925260066986, 0.018218209967017174, -7.946848008813486e-33, 0.03962244465947151, -0.03367358818650246, 0.014758427627384663, 0.016855299472808838, 0.025593813508749008, -0.012255487963557243, -0.012760023586452007, 0.030503038316965103, -0.009562152437865734, -0.016753243282437325, 0.05782873556017876, -0.007769085932523012, -0.013443500734865665, -0.04839383810758591, 0.04267130792140961, -0.037164147943258286, -0.014654936268925667, 0.008540497161448002, 0.011431429535150528, -0.0388912670314312, -0.0033610037062317133, 0.04619590938091278, 0.03809870034456253, -0.014701585285365582, 0.0070070531219244, 0.025555871427059174, -0.016524434089660645, 0.0015351937618106604, -0.014521624892950058, -0.0319855734705925, -0.006798292510211468, 0.0669432282447815, -0.03137131407856941, 0.01567230559885502, 0.007950996048748493, -0.02922436222434044, -0.014003564603626728, -0.03674350678920746, -0.015864189714193344, -0.033238187432289124, -0.017052173614501953, -0.015856679528951645, -0.036032602190971375, -0.03913994878530502, -0.03593659773468971, -0.02301284298300743, 0.03852032497525215, 0.029146362096071243, 0.012746895663440228, 0.06665749847888947, 0.0025508874095976353, 0.0018934941617771983, -0.007707533892244101, -0.01950855925679207, -0.04543914273381233, 0.026456445455551147, -0.015386220067739487, -0.011045990511775017, -0.024748586118221283, -0.0015327386790886521, -0.011974222026765347, 0.029621483758091927, 0.0010835248976945877, 0.028838083148002625, -0.005349732469767332, 0.014230800792574883, 0.03537909314036369, -0.016536638140678406, 0.04431111365556717, -0.007562685292214155, -0.019054118543863297, -0.023533020168542862, -0.014869923703372478, -0.04077183082699776, 0.05610504746437073, -0.00518823554739356, 0.017071198672056198, -0.0035351908300071955, 0.011769736185669899, 0.01401330903172493, 0.013619104400277138, 0.01567893475294113, -0.012675032950937748, -0.01758824661374092, -0.004888791125267744, 0.019197221845388412, 0.00168211804702878, 0.02313167229294777, 0.013373738154768944, 0.007850119844079018, 0.011178959161043167, 0.036931537091732025, -0.010521011427044868, -0.004923174157738686, 0.008896838873624802, 6.90416247911504e-33, 0.01378998439759016, -0.05228009819984436, 0.0405053049325943, 0.024509264156222343, 0.032081857323646545, -0.023736821487545967, -0.0022252118214964867, 0.015564500354230404, -0.026289166882634163, 0.03744079917669296, 0.020070629194378853, 0.005412904545664787, -0.02450093999505043, 0.006660219747573137, 0.05391865596175194, -0.012644750066101551, 0.028805097565054893, -0.051438190042972565, 0.020428577437996864, -0.013534455560147762, 0.014735409989953041, -0.02141215279698372, 0.009082815609872341, 0.004615796264261007, -0.021099161356687546, 0.037071406841278076, -0.060692403465509415, -0.0028764985036104918, -0.0009684287360869348, -0.004482494201511145, 0.020222319290041924, -0.011937927454710007, 0.015186858363449574, -0.05473262816667557, -0.045593589544296265, 0.008150228299200535, 0.0001461812062188983, -0.0027379943057894707, -0.011070811189711094, 0.014322714880108833, 0.010621939785778522, -0.042582545429468155, -0.0028721578419208527, 0.02825336903333664, 0.0198531374335289, -0.04140576347708702, -0.003163972171023488, -0.0045551457442343235, 0.013805034570395947, 0.04962087422609329, 0.07451342046260834, 0.02426196075975895, -0.023641206324100494, 0.004480553325265646, 0.022062193602323532, -0.004618573002517223, 0.009913485497236252, -0.005414198152720928, -0.010763054713606834, 0.005322392098605633, -0.00322342524304986, 0.04771507903933525, -0.05896702781319618, 0.04715795814990997, -0.03701585903763771, -0.03767714276909828, -0.04432222247123718, -0.03188975900411606, 0.01719888485968113, -0.026451513171195984, -0.008094423450529575, -0.007207951974123716, -0.007963941432535648, 0.006218504160642624, -0.02723856084048748, -0.035389337688684464, 0.02742934599518776, -0.0018038515700027347, 0.04971526935696602, -0.00983188021928072, -0.0016662176931276917, -0.027520688250660896, 0.06469481438398361, 0.00792601052671671, -0.009440537542104721, 0.029563304036855698, -0.019094863906502724, -0.02811533771455288, 0.03200804814696312, 0.0033513889648020267, -0.023851778358221054, -0.031685926020145416, 0.011688662692904472, 0.020919853821396828, -0.020625144243240356, -1.2891947065440945e-8, -0.058485571295022964, 0.044575925916433334, -0.006766994018107653, 0.002163848141208291, -0.014581188559532166, 0.002937415847554803, -0.0172443650662899, 0.006293723825365305, -0.020266754552721977, 0.0004213670326862484, 0.06301172077655792, 0.02153955027461052, 0.00884997472167015, 0.012766576372087002, -0.002350054681301117, -0.04246463626623154, -0.004510981496423483, -0.0023319260217249393, 0.013354778289794922, 0.011764224618673325, 0.003542867489159107, 0.018466372042894363, -0.04573333263397217, 0.01645560748875141, 0.02760845609009266, -0.030497949570417404, 0.019001860171556473, -0.06454598158597946, 0.0353919193148613, 0.011747198179364204, -0.005306642968207598, -0.01223098672926426, 0.021900055930018425, 0.006296901032328606, 0.00023343203065451235, -0.0654173195362091, -0.017129890620708466, 0.0338018536567688, 0.009486587718129158, 0.006038930732756853, 0.04381929337978363, 0.010858302935957909, -0.02031012251973152, -0.011530584655702114, -0.006620829924941063, 0.008156418800354004, 0.0036807446740567684, -0.018839027732610703, -0.00006758849485777318, -0.03502018749713898, -0.002227422082796693, -0.01658784970641136, 0.019358864054083824, 0.024022620171308517, -0.0012727192370221019, 0.053825344890356064, 0.02573469467461109, 0.018778882920742035, -0.010257010348141193, -0.0039542061276733875, 0.03495645150542259, 0.003548437962308526, -0.05289492383599281, -0.014515561051666737 ]
functional-c-using-join-and-groupjoin
https://markhneedham.com/blog/2010/03/04/functional-c-using-join-and-groupjoin
false
2010-03-02 22:49:11
Riskiest thing first vs Outside in development
[ "software-development" ]
[ "Software Development" ]
I had an interesting conversation with my colleague http://ilovemartinfowler.com/[David Santoro] last week where I described the way that I often pick out the http://www.markhneedham.com/blog/2009/05/11/tackling-the-risk-early-on-at-a-task-level/[riskiest parts of a story or task] and do those first and David pointed out that this approach didn't seem to fit in with the idea of http://www.infoq.com/presentations/bdd-dan-north[outside in development]. The idea with outside in development as I understand it is that we would look to drive any new functionality from the UI i.e. the outside and work our way inwards through the various layers and probably eventually end up with persistence i.e. the inside. In the particular example that were basing our discussion on I described a story that I was working on with my pair where we needed to apply some constraints to certain items in our data set and then display them differently on the UI as a result of that. We went through the existing domain model to see if there was anything in there that we could make use of, and having realised that there wasn't anything we mapped out the tasks we would need to do to implement this functionality. The most difficult/tricky task was to handle the data migration as we realised that we would need to add an extra column to one of the tables. We also needed to do the associated Hibernate mapping and the code from the UI and controller level downwards to make use of this. We did the data migration and associated work first and one we were happy that was working we went and coded from the UI downwards until we reached the persistence layer. In this situation it seemed like it worked out reasonably well and I couldn't see that we would have ended up with a different solution if we had started off driving through the UI. In fact we did end up spending most of our time doing the data migration so to me it seemed somewhat justified doing that first since we did run into a couple of problems. Outside in development in general seems a good thing to me so I'm curious as to whether I'm justifying a sub optimal approach to myself or whether there are some situations where we can vary the approach a bit?
null
null
[ 0.00047249943600036204, -0.0006132779526524246, 0.003189538139849901, 0.055385567247867584, 0.0988534465432167, -0.007032143417745829, 0.016311651095747948, 0.02118811197578907, 0.016280263662338257, -0.028852855786681175, -0.03382037207484245, -0.001956347841769457, -0.053263019770383835, 0.013185225427150726, -0.020698921754956245, 0.07127510756254196, 0.05016553774476051, -0.007736335042864084, 0.028245234861969948, -0.002381297294050455, 0.017182959243655205, 0.05758228898048401, 0.01297798939049244, 0.04326849803328514, 0.03764181584119797, 0.004250105004757643, 0.0016335846157744527, 0.001419868553057313, -0.05991920456290245, -0.0156309362500906, 0.0306958369910717, -0.018251225352287292, -0.007961082272231579, 0.0138073256239295, 0.013124183751642704, -0.0052897194400429726, -0.02312617190182209, 0.03335662558674812, -0.007481684442609549, -0.0036189944949001074, -0.07151539623737335, 0.06002458557486534, -0.012893329374492168, 0.02609781175851822, -0.025009797886013985, -0.008142893202602863, -0.061457570642232895, 0.009764742106199265, 0.014851951971650124, 0.001098108128644526, -0.07693609595298767, 0.048881884664297104, -0.004973302595317364, -0.006222274620085955, -0.0005925002042204142, 0.04038069024682045, 0.02755102887749672, -0.06717956066131592, 0.0059175328351557255, -0.030950983986258507, 0.015943234786391258, -0.010792954824864864, -0.014055253937840462, 0.01729990541934967, 0.02322537451982498, -0.03190164640545845, -0.004677280317991972, 0.03730358928442001, -0.03491135314106941, 0.02177753672003746, -0.01165141724050045, 0.001086199190467596, 0.012213495559990406, -0.015369935892522335, -0.0016315210377797484, -0.054305341094732285, 0.008466621860861778, 0.06127570569515228, 0.013394814915955067, 0.03126468509435654, -0.022806601598858833, -0.0003277472860645503, 0.004839003086090088, 0.016447383910417557, 0.016498200595378876, -0.0585339292883873, -0.002926192944869399, -0.027149396017193794, -0.057251088321208954, 0.059899620711803436, 0.017468329519033432, -0.05766775459051132, 0.023045359179377556, 0.03653421252965927, -0.010732701979577541, 0.0038402369245886803, 0.041187409311532974, 0.0041253045201301575, -0.007053156848996878, -0.009291138499975204, -0.015652718022465706, -0.0037311369087547064, 0.004106914158910513, -0.0008757638279348612, -0.07725974172353745, -0.019590165466070175, -0.040485575795173645, -0.01613546535372734, -0.0015680772485211492, 0.009188635274767876, -0.03436390683054924, 0.0015442855656147003, -0.015193567611277103, 0.010084807872772217, -0.06000262871384621, 0.07212185114622116, 0.005782242864370346, -0.05059155821800232, 0.00385262886993587, -0.0016574350884184241, 0.056844208389520645, 0.012052935548126698, -0.02944716438651085, 0.07112979888916016, -0.000365099695045501, 0.024771085008978844, -0.027164971455931664, 0.04187261685729027, -0.014518911950290203, -0.07482156902551651, -0.0012486688792705536, 0.0405786894261837, -0.025878237560391426, -0.0009540567989461124, 0.013277039863169193, -0.028438080102205276, 0.005864147562533617, 0.017343245446681976, 0.04496832564473152, 0.03585386648774147, -0.009541512466967106, -0.040123745799064636, 0.020800353959202766, 0.024089297279715538, 0.034389324486255646, 0.00898225698620081, -0.0016364238690584898, -0.032796066254377365, -0.04311559721827507, 0.008509237319231033, 0.0056520686484873295, 0.02955314889550209, 0.01903120055794716, -0.038048531860113144, 0.014141548424959183, 0.1074400544166565, 0.01871468871831894, -0.003723816480487585, -0.010119929909706116, 0.012058059684932232, 0.022328542545437813, 0.015667838975787163, 0.007679094094783068, 0.0019935225136578083, 0.014371681958436966, -0.008512030355632305, 0.006877182982861996, 0.024147676303982735, 0.017788046970963478, 0.018346887081861496, -0.07211343944072723, -0.060385145246982574, 0.03833653777837753, -0.04815030097961426, -0.04008914902806282, 0.05585816875100136, 0.08237139135599136, 0.04061262682080269, 0.02658727765083313, -0.0024445983581244946, -0.07618425786495209, -0.0034653751645237207, 0.004329576622694731, 0.011462254449725151, 0.03187744319438934, -0.013779543340206146, 0.05671413615345955, 0.017262274399399757, -0.0014802508521825075, 0.039743147790431976, -0.07944989949464798, -0.07618192583322525, -0.0013658942189067602, -0.022937310859560966, 0.029527250677347183, -0.04336244985461235, 0.023499974980950356, 0.1065077930688858, -0.004553819075226784, 0.05337423086166382, 0.04520131275057793, 0.01999089866876602, 0.027151750400662422, -0.0490114763379097, -0.01982574351131916, 0.05192403122782707, 0.04296644777059555, 0.009645476937294006, -0.05093301832675934, 0.01067227404564619, -0.017345398664474487, -0.01451951451599598, 0.04068099334836006, -0.007220495957881212, 0.05202536657452583, 0.005997571162879467, 0.03378826379776001, -0.01594158262014389, 0.04884485527873039, -0.05023057013750076, 0.03277428075671196, 0.037560757249593735, -0.032427359372377396, 0.021462716162204742, 0.010920019820332527, 0.1129491776227951, 0.06818665564060211, -0.04214835166931152, -0.04063471779227257, 0.030297735705971718, 0.029668740928173065, -0.03458442911505699, 0.01386850606650114, -0.020368807017803192, 0.026135429739952087, 0.0066977799870073795, -0.049782659858465195, -0.04589825123548508, 0.02301180362701416, -0.028452379629015923, 0.019681645557284355, 0.05338964983820915, -0.027217134833335876, 0.06316449493169785, 0.004049173556268215, -0.00434859236702323, -0.006695370655506849, -0.020210223272442818, -0.056063003838062286, 0.0038018878549337387, -0.004637083970010281, -0.012284190393984318, 0.058680929243564606, -0.011435751803219318, -0.01073463261127472, -0.03903699666261673, -0.037664927542209625, 0.016814926639199257, 0.03290664777159691, 0.07862705737352371, -0.011697007343173027, 0.06658943742513657, -0.020708857104182243, 0.024857020005583763, -0.00149556586984545, -0.04422956332564354, -0.03512249514460564, -0.04266823083162308, -0.010204547084867954, 0.03388102352619171, 0.023264043033123016, -0.00007467596151400357, 0.021112743765115738, 0.01135043241083622, -0.016519641503691673, -0.02069650962948799, 0.02913697250187397, -0.0034929325338453054, -0.008240648545324802, -0.022604500874876976, -0.022312741726636887, 0.05449100211262703, -0.0396517813205719, -0.006725815124809742, 0.02671901322901249, -0.06661830842494965, 0.03862019628286362, -0.08147595822811127, -0.05346421152353287, 0.011705121025443077, 0.04004460573196411, 0.03699447214603424, 0.0088571822270751, 0.019345125183463097, 0.07229534536600113, 0.017060965299606323, 0.010127570480108261, -0.008767692372202873, -0.0016144646797329187, 0.053017597645521164, -0.0024780896492302418, -0.016697315499186516, 0.05514790117740631, -0.0025388102512806654, 0.0007951844017952681, -0.06616838276386261, 0.049477797001600266, -0.02428446337580681, -0.3057795763015747, 0.011594364419579506, 0.00616247346624732, -0.05706411972641945, 0.01781175471842289, -0.005031888373196125, 0.007344187702983618, -0.03686513006687164, -0.028851628303527832, 0.011990758590400219, -0.03042513318359852, -0.04139822721481323, -0.01761697605252266, 0.048972416669130325, 0.008009866811335087, 0.07051975280046463, 0.052915677428245544, -0.03391724079847336, 0.003356816479936242, 0.04342280328273773, -0.02883201278746128, -0.07974462956190109, -0.0012120479950681329, 0.04261434078216553, 0.043051429092884064, 0.06376036256551743, -0.07327180355787277, 0.03066651150584221, -0.043998390436172485, -0.008557935245335102, 0.02390144020318985, -0.0033138084691017866, -0.002821034286171198, -0.019067585468292236, -0.010577086359262466, -0.013133569620549679, 0.03625073656439781, 0.02949841320514679, 0.01706237904727459, -0.005929470062255859, -0.022337382659316063, -0.02757985331118107, -0.02261304296553135, 0.02328544855117798, 0.072829969227314, -0.028576333075761795, -0.09524703025817871, 0.013065692037343979, -0.01690119504928589, 0.06314308196306229, -0.02337944321334362, -0.018778108060359955, -0.01422360260039568, 0.04056858271360397, -0.005735317710787058, -0.006990890018641949, -0.00865758303552866, -0.011432155966758728, -0.0483240932226181, -0.026278486475348473, -0.008241397328674793, -0.05468842014670372, -0.007688111159950495, -0.050867512822151184, 0.00423648115247488, -0.049602899700403214, -0.055400434881448746, -0.0050810654647648335, 0.0805477499961853, 0.023391854017972946, -0.038745392113924026, 0.02472047321498394, 0.021010305732488632, -0.11130880564451218, -0.004630642477422953, -0.02120056562125683, -0.009913506917655468, -0.029288029298186302, 0.010042169131338596, 0.021166671067476273, -0.023389412090182304, -0.05635656788945198, 0.008967053145170212, 0.005736839026212692, 0.01952185668051243, -0.020602364093065262, 0.051250334829092026, 0.016465594992041588, -0.022058777511119843, 0.026522448286414146, 0.06843937933444977, -0.01950538530945778, -0.013173607178032398, -0.012809449806809425, 0.0157804973423481, 0.020120864734053612, 0.009516862221062183, -0.02672128565609455, -0.0065530771389603615, 0.008878713473677635, 0.0008773288573138416, -0.054160237312316895, 0.027379851788282394, -0.028577895835042, 0.014427130110561848, -0.005731209181249142, -0.050259556621313095, 0.020014800131320953, 0.033063855022192, 0.04022923856973648, -0.010324180126190186, -0.0221970546990633, 0.0026779689360409975, -0.05567823350429535, -0.04514576494693756, -0.01466215867549181, 0.0006848105695098639, 0.03841036930680275, -0.0015124417841434479, -0.016734348610043526, -0.058231793344020844, 0.00648734625428915, 0.020623667165637016, -0.0035886147525161505, -0.063227079808712, -0.016138091683387756, -0.015282562002539635, -0.005914618261158466, 0.020079171285033226, 0.011608940549194813, -0.013094327412545681, 0.014537225477397442, 0.02963232435286045, -0.019537312909960747, 0.01170995831489563, -0.03395998850464821, -0.05026352033019066, -0.025921180844306946, -0.008054290898144245, -0.004561437759548426, -0.01263678353279829, 0.027886029332876205, 0.01715320348739624, 0.011373527348041534, 0.019518354907631874, 0.006624937988817692, 0.019464246928691864, 0.01044081337749958, 0.033737510442733765, 0.019405899569392204, 0.004711558111011982, -0.05391319841146469, 0.013941592536866665, -0.03912358358502388, -0.04636786878108978, -0.03300851583480835, 0.05546656623482704, -0.03193645551800728, 0.00005938611502642743, -0.019952604547142982, -0.0018179687904193997, -0.0654996857047081, -0.04055514559149742, -0.012833958491683006, 0.016295520588755608, 0.06865104287862778, -0.01903999038040638, 0.005156098864972591, 0.0005799820646643639, -0.00004713893213192932, 0.013282300904393196, 0.01655089482665062, -0.05234394967556, 0.0018804155988618731, 0.0059721157886087894, -0.0005830791778862476, -0.010479161515831947, -0.014776953496038914, 0.042672473937273026, 0.021441461518406868, -0.0012985517969354987, -0.009172859601676464, -0.010053643956780434, 0.011510448530316353, 0.05270131304860115, 0.016545381397008896, 0.013580373488366604, 0.007402665913105011, 0.0021466801408678293, -0.02797785960137844, -0.02431468479335308, 0.0036940095014870167, 0.0014857812784612179, 0.010280398651957512, -0.022885624319314957, -0.06993648409843445, 0.06890197098255157, 0.004328507464379072, 0.0016965200193226337, 0.013849359937012196, -0.01852976717054844, -0.00988364964723587, -0.029243404045701027, 0.03869473189115524, 0.04620617628097534, -0.06608818471431732, -0.0012647752882912755, 0.0006975093856453896, -0.004902367480099201, -0.004805783741176128, -0.0031452251132577658, -0.018262824043631554, -0.034741491079330444, -0.032255709171295166, 0.012392190285027027, -0.05493903160095215, -0.023516640067100525, -0.011758508160710335, 0.02614106610417366, 0.008094352670013905, -0.011582979932427406, -0.014528182335197926, -0.005272549577057362, -0.009870791807770729, -0.02545779198408127, 0.0014197870623320341, -0.013539500534534454, 0.0004669968329835683, 0.003928726073354483, -0.040764324367046356, 0.00420712772756815, -0.03859501704573631, 0.011463549919426441, 0.010162443853914738, -0.035560596734285355, 0.005414375104010105, -0.03424803912639618, 0.01552490796893835, 0.023374691605567932, 0.05141615867614746, -0.004354816395789385, -0.021993663161993027, -0.016976874321699142, -0.026219455525279045, -0.024791294708848, 0.012802916578948498, -0.043788548558950424, -0.0020469999872148037, 0.016836006194353104, 0.05447547510266304, 0.010173329152166843, 0.03437912091612816, -0.024136578664183617, -0.03025098517537117, 0.04393154755234718, -0.06397739052772522, -0.01559540256857872, -0.03829433396458626, -0.07258741557598114, -0.017734430730342865, -0.0009750690078362823, 0.03060045652091503, -0.030417485162615776, 0.030972711741924286, 0.025647073984146118, 0.020753420889377594, 0.03810923546552658, 0.012540709227323532, 0.06270996481180191, -0.059932924807071686, -0.0084351422265172, -0.06964567303657532, -0.005958900321274996, 0.026285722851753235, 0.00526051502674818, -0.01048196479678154, 0.010474423877894878, -0.03250576928257942, 0.05135360360145569, -0.06437388807535172, -0.03975571691989899, 0.03331369534134865, 0.005474945064634085, -0.020041577517986298, 0.008036880753934383, -0.07130612432956696, 0.03230047971010208, 0.01884966529905796, -0.032646551728248596, -0.034843478351831436, -0.009886077605187893, 0.05394701659679413, 0.001844157581217587, 0.027214838191866875, -0.048546984791755676, -0.007637659553438425, 0.07253469526767731, 0.00037113798316568136, -0.005526297260075808, 0.051322054117918015, -0.005928517784923315, 0.057259656488895416, 0.010680697858333588, 0.010749131441116333, -0.010538811795413494, 0.009228138253092766, -0.000984068145044148, -0.07278255373239517, 0.022894617170095444, 0.01640145294368267, -0.0016787447966635227, -0.04185163602232933, 0.06366612017154694, 0.03450422361493111, -0.021937035024166107, -0.05392199754714966, 0.019615566357970238, -0.059662945568561554, -0.00011733137944247574, -0.02246980555355549, -0.0014887404395267367, -0.04695947468280792, 0.04570576548576355, -0.011874107643961906, 0.020279470831155777, 0.06860069185495377, 0.0024239185731858015, -0.0028068176470696926, -0.015291093848645687, 0.08313630521297455, 0.06582599133253098, 0.08093056082725525, 0.008329329080879688, 0.06235890090465546, -0.03098900616168976, -0.04283512011170387, 0.02637026458978653, -0.001646811026148498, -0.02272995188832283, -0.031161390244960785, 0.027554377913475037, 0.08265993744134903, -0.017063764855265617, 0.05675576999783516, -0.017816239967942238, -0.014668162912130356, -0.005610981956124306, 0.013403566554188728, 0.02133382111787796, 0.06692218780517578, 0.0037857280112802982, 0.02134442701935768, -0.028146903961896896, -0.04416177049279213, 0.0037633769679814577, -0.033166784793138504, -0.024536538869142532, 0.03809371963143349, 0.0027370594907552004, 0.02627105638384819, 0.005581382196396589, 0.026105688884854317, 0.09016643464565277, -0.04699651151895523, 0.0193961039185524, -0.030478855594992638, 0.028513358905911446, -0.022113893181085587, 0.028586354106664658, -0.019356761127710342, -0.021992724388837814, 0.0018454671371728182, -0.03773999214172363, -0.035452090203762054, -0.006943296175450087, -0.034235719591379166, 0.04861833527684212, -0.04475892707705498, 0.0005655974964611232, 0.04374997317790985, 0.00905008614063263, -0.04659295454621315, -0.06959965825080872, -0.04543011263012886, -0.01579422317445278, -0.055315062403678894, -0.016187913715839386, 0.03454437106847763, -0.00489715114235878, -0.023175489157438278, -0.0003254219191148877, -0.03165094554424286, -0.02622252330183983, 0.034657612442970276, -0.03209618106484413, -0.042435258626937866, 0.0218956358730793, 0.020544007420539856, 0.030106185004115105, 0.019853755831718445, 0.057211752980947495, -0.007669354323297739, 0.00018511775124352425, -0.038049209862947464, 0.027227260172367096, 0.04226700961589813, 0.001902446267195046, 0.0075796619057655334, -0.08590091019868851, 0.01890523172914982, 0.03452812880277634, -0.025613702833652496, -0.06651519238948822, 0.03577367588877678, 0.033506669104099274, -0.00344704813323915, 0.05485791712999344, -0.016389675438404083, 0.009460781700909138, -0.01875028759241104, -0.01976962573826313, -0.024292901158332825, 0.030576160177588463, 0.03692537546157837, -0.01384871918708086, 0.08948779106140137, 0.04058640077710152, -0.017347553744912148, -0.03977532684803009, 0.01175884809345007, 0.01920519769191742, 0.004251320846378803, -0.015860948711633682, -0.04705888777971268, -0.03406431898474693, -0.06562565267086029, -0.030077215284109116, 0.012863721698522568, -0.02870478667318821, -0.03412207216024399, 0.00024916298571042717, 0.04271460324525833, -0.020416537299752235, 0.02342402935028076, -0.06126958504319191, 0.02313287928700447, -0.025242872536182404, -0.04140052944421768, -0.008977480232715607, 0.009764095768332481, -0.010011333040893078, 0.000696409260854125, 0.016824869439005852, -0.058323342353105545, 0.005924326833337545, 0.00008247765072155744, 0.015594316646456718, 0.01291827205568552, 0.004363599698990583, -0.013261315412819386 ]
[ -0.07724398374557495, -0.01213288027793169, -0.012280774302780628, -0.037138696759939194, 0.038978010416030884, -0.012376321479678154, -0.03167969733476639, -0.006717300973832607, -0.0031946953386068344, -0.012455820105969906, -0.01260180864483118, -0.010788998566567898, -0.006098444573581219, -0.0004063379601575434, 0.06072911620140076, 0.028234023600816727, -0.034274473786354065, -0.0808626115322113, 0.005517630837857723, 0.039181943982839584, -0.01575794816017151, -0.04956035315990448, -0.026368960738182068, -0.02954220399260521, 0.011901749297976494, 0.037315476685762405, 0.018394634127616882, -0.0389079824090004, 0.019128793850541115, -0.19411854445934296, -0.002974166302010417, 0.005761800799518824, 0.019249826669692993, -0.01017708983272314, -0.010070648044347763, 0.055014774203300476, 0.03429045528173447, 0.03851781785488129, 0.015977229923009872, 0.04449296370148659, 0.008541317656636238, 0.023119328543543816, -0.047272682189941406, -0.021480944007635117, 0.03284694626927376, -0.0011338872136548162, -0.001785401371307671, -0.04173862189054489, -0.02841624803841114, 0.013301602564752102, -0.05266014114022255, -0.016870643943548203, -0.045146532356739044, -0.004206654615700245, -0.005367952398955822, 0.06024766340851784, 0.033898238092660904, 0.0566290058195591, -0.021119415760040283, 0.06232243776321411, 0.02049386501312256, 0.0013960788492113352, -0.14256180822849274, 0.103371761739254, 0.0337083674967289, 0.06504358351230621, -0.04251454398036003, -0.04215674474835396, -0.013215059414505959, 0.06491198390722275, -0.012197933159768581, -0.02903336100280285, -0.005560760851949453, 0.044196080416440964, 0.030199894681572914, -0.013726635836064816, -0.0011320352787151933, 0.03547453507781029, 0.035554952919483185, -0.05733415484428406, 0.008537664078176022, 0.020192282274365425, -0.021803593263030052, 0.016902277246117592, -0.04596739262342453, 0.02272619679570198, -0.03045782633125782, 0.03805791214108467, 0.030334418639540672, 0.029609939083456993, 0.05277852341532707, -0.02635015733540058, 0.024775706231594086, -0.0058636125177145, -0.0591576062142849, -0.024378782138228416, 0.0037319285329431295, 0.017752286046743393, -0.04167550057172775, 0.43044814467430115, -0.02035188302397728, -0.02230147458612919, 0.062386009842157364, 0.06205574423074722, -0.031291913241147995, -0.000440990028437227, 0.01767301931977272, -0.06560422480106354, 0.019268451258540154, 0.0049540093168616295, -0.001766617875546217, 0.01051662303507328, 0.012797977775335312, -0.04612487554550171, 0.024070970714092255, 0.022836830466985703, 0.0026108447927981615, 0.0026315287686884403, -0.016386203467845917, -0.017075493931770325, -0.008775878697633743, 0.008248774334788322, 0.03149866685271263, 0.014770573005080223, -0.010182708501815796, -0.01419708039611578, 0.055186234414577484, 0.04395885393023491, 0.028212014585733414, -0.005816560238599777, 0.06115197762846947, -0.06192047894001007, -0.09109923243522644, 0.011295813135802746, -0.010741857811808586, 0.00833940040320158, 0.056991152465343475, -0.027845507487654686, -0.0003725704737007618, 0.035059552639722824, -0.006879337597638369, 0.002215248066931963, 0.03475538268685341, -0.024466130882501602, -0.033725399523973465, 0.11584292352199554, 0.037322528660297394, -0.04641558229923248, -0.00502198189496994, -0.035216279327869415, 0.004467950668185949, 0.039417512714862823, 0.00048590567894279957, -0.05777428671717644, 0.006179508287459612, 0.009870202280580997, 0.05628858879208565, -0.0029525274876505136, -0.06613405793905258, -0.01683235727250576, -0.016294820234179497, -0.038697607815265656, -0.05117238685488701, 0.06404907256364822, 0.054841089993715286, -0.12850789725780487, -0.04264618456363678, 0.025175122544169426, 0.048016030341386795, -0.040725335478782654, -0.00821063481271267, 0.01939789392054081, -0.001376844011247158, -0.011553788557648659, 0.06684849411249161, -0.03265911713242531, -0.05645468831062317, 0.012694924138486385, 0.012541237287223339, 0.02872481942176819, 0.015826145187020302, -0.017826659604907036, -0.016528088599443436, -0.012503356672823429, -0.06448201835155487, -0.11343378573656082, -0.03424864262342453, 0.010906216688454151, -0.02599451132118702, -0.015506694093346596, -0.026892319321632385, -0.029261158779263496, -0.07860075682401657, 0.10699225217103958, -0.02824067696928978, -0.019692547619342804, 0.029851553961634636, -0.008761280216276646, -0.008559606969356537, -0.013396307826042175, -0.025421468541026115, 0.021297993138432503, -0.02672199159860611, 0.027016861364245415, -0.06487476080656052, 0.027369562536478043, 0.04286191612482071, -0.04535255208611488, 0.06903186440467834, 0.057705529034137726, -0.03001844324171543, -0.022319544106721878, 0.02522152103483677, 0.03038979507982731, 0.021381784230470657, -0.0185907781124115, 0.009251843206584454, 0.017289534211158752, -0.0063329413533210754, 0.023806627839803696, -0.019223077222704887, -0.004447682294994593, 0.01025942899286747, -0.3796147108078003, -0.04149213060736656, -0.017898309975862503, -0.008740317076444626, -0.032049696892499924, -0.05747563764452934, 0.020524125546216965, -0.008427941240370274, -0.010621583089232445, 0.0069344923831522465, 0.062196459621191025, -0.018837714567780495, 0.01834981143474579, -0.029947923496365547, 0.0041774557903409, -0.006743770092725754, -0.008303245529532433, -0.011154488660395145, -0.04173693060874939, 0.00040700199315324426, 0.016527673229575157, -0.011224817484617233, -0.02329593151807785, -0.08784901350736618, 0.00610697316005826, -0.03273896127939224, 0.10145304352045059, -0.034435246139764786, 0.09304323047399521, -0.04806869849562645, 0.04890935495495796, 0.006604128051549196, 0.020650304853916168, -0.10257495194673538, 0.01910703256726265, -0.017788516357541084, 0.02531186118721962, -0.006011344026774168, -0.006794825196266174, -0.04583728313446045, -0.03766442835330963, 0.010097678750753403, -0.04989832639694214, -0.06824461370706558, -0.0644928365945816, 0.016352802515029907, -0.024562502279877663, -0.029332712292671204, -0.0222484041005373, 0.06680061668157578, 0.006467569153755903, -0.0012867706827819347, 0.0408128947019577, 0.029617780819535255, -0.004500849638134241, -0.02421964891254902, -0.0904460921883583, 0.025009198114275932, -0.0013037121389061213, 0.015515356324613094, 0.005161917302757502, 0.07839777320623398, 0.037170980125665665, -0.04055048152804375, -0.008667518384754658, 0.016219230368733406, 0.010658590123057365, 0.003469681367278099, 0.05193936079740524, -0.03254789113998413, -0.040275443345308304, 0.0907159149646759, -0.01651015691459179, -0.009351406246423721, 0.03119780123233795, 0.027590662240982056, -0.028926484286785126, 0.041016463190317154, 0.009700356982648373, 0.002264812123030424, 0.016663430258631706, -0.03672785311937332, 0.054918330162763596, 0.0019412809051573277, -0.01511707715690136, 0.04130120202898979, 0.007181292399764061, -0.06223909184336662, 0.03005584329366684, 0.003483082400634885, -0.017087364569306374, -0.0035676320549100637, -0.03485558554530144, -0.065280981361866, 0.06782765686511993, -0.0195230133831501, -0.2396780252456665, 0.014164267107844353, 0.057241637259721756, 0.07186687737703323, -0.005333392880856991, 0.007248631678521633, 0.04146825522184372, -0.014310422353446484, 0.015142017044126987, 0.005486141890287399, 0.013729538768529892, -0.004409805405884981, 0.029818259179592133, 0.003876759670674801, 0.048202551901340485, -0.00632445840165019, 0.0465698204934597, 0.029326152056455612, 0.0023853133898228407, -0.02107526734471321, 0.020282331854104996, 0.004634733311831951, 0.15746858716011047, 0.039817892014980316, 0.018020635470747948, 0.014409049414098263, -0.007328425534069538, -0.01014383789151907, 0.04374363273382187, 0.007606646977365017, 0.022479303181171417, -0.006903155241161585, 0.03246060386300087, 0.018748793751001358, 0.024315228685736656, -0.08438706398010254, -0.028042403981089592, 0.04212484508752823, 0.0336386114358902, 0.002479600254446268, 0.016018547117710114, 0.012740518897771835, -0.005635261535644531, 0.04855738952755928, 0.05563350394368172, 0.01679963991045952, -0.003675864078104496, -0.02624957449734211, -0.05467305704951286, -0.023474467918276787, -0.01951276883482933, -0.06009799987077713, 0.014429682865738869, -0.016830815002322197, 0.008376214653253555, 0.09105000644922256, 0.026525266468524933, -0.015329659916460514, -0.013911225832998753, 0.017542386427521706, 0.02735518291592598, -0.004405458923429251, 0.10533272475004196, -0.005729397758841515, 0.02560277283191681 ]
[ -0.020672069862484932, 0.004114223178476095, 0.0014355047605931759, 0.017439398914575577, -0.014238549396395683, 0.0016721124993637204, 0.009401177987456322, 0.03802033141255379, -0.007532145828008652, -0.01710358075797558, -0.009340432472527027, -0.012939543463289738, 0.021498383954167366, -0.02082430012524128, 0.004312627948820591, 0.006635046098381281, 0.024923453107476234, -0.015619704499840736, 0.0213320329785347, 0.0013743703020736575, -0.022331897169351578, 0.01381930336356163, -0.01950753666460514, -0.032300904393196106, -0.0034126394893974066, 0.016514725983142853, 0.00606481684371829, -0.03187742829322815, 0.031094828620553017, -0.1238718181848526, -0.03184173256158829, -0.03594345599412918, -0.023526152595877647, 0.010927792638540268, -0.025458136573433876, -0.013383119367063046, 0.005611446686089039, 0.004669044632464647, 0.01499223429709673, -0.016335129737854004, 0.004479927476495504, -0.0031896347645670176, -0.0034723978023976088, 0.02652624435722828, 0.005012017209082842, -0.01399396825581789, -0.026432041078805923, -0.04873676970601082, -0.028146376833319664, -0.00799444131553173, -0.03528397157788277, 0.0016697135288268328, -0.004511870443820953, 0.01517817284911871, 0.009788536466658115, 0.0026210129726678133, -0.003982021939009428, -0.010705569759011269, 0.001418556785210967, 0.04307470843195915, -0.0041292947717010975, 0.009012699127197266, -0.004149236716330051, -0.035201527178287506, -0.007388735190033913, -0.017819879576563835, -0.018385907635092735, 0.005298742093145847, 0.000637429126072675, -0.028013095259666443, -0.022375034168362617, 0.02696029283106327, -0.028401486575603485, -0.019831733778119087, 0.036094196140766144, -0.01866438239812851, -0.011601327918469906, -0.01898864097893238, 0.003433976322412491, -0.05172200873494148, -0.0006920868181623518, 0.0508558563888073, 0.019428983330726624, 0.027413498610258102, 0.005935930646955967, 0.0014484247658401728, -0.0022106508258730173, -0.015974408015608788, 0.0030577508732676506, -0.022172950208187103, -0.0031999084167182446, 0.010950084775686264, -0.028950687497854233, 0.03254956379532814, -0.08667605370283127, -0.029361261054873466, -0.013499866239726543, -0.008416391909122467, 0.0034906493965536356, 0.8678561449050903, -0.019783126190304756, 0.022181300446391106, 0.01469652820378542, 0.04127839207649231, -0.014142614789307117, -0.02540304698050022, 0.016333822160959244, 0.003958774730563164, -0.010234659537672997, -0.024180391803383827, 0.030786341056227684, 0.014785143546760082, 0.023393264040350914, 0.0008907738956622779, 0.03585199639201164, -0.007872066460549831, -0.03023204393684864, 0.002375965006649494, -0.020988186821341515, -0.00794010516256094, 0.012259592302143574, 0.002520914189517498, -0.012495379894971848, 0.005552959628403187, 0.004215007182210684, -0.19277027249336243, 0.027452904731035233, -8.39253375319188e-33, 0.0378878116607666, -0.0030589436646550894, 0.025723665952682495, 0.013586065731942654, 0.01044410839676857, -0.019388098269701004, 0.037778377532958984, 0.006659260950982571, 0.016530567780137062, -0.010725214146077633, -0.016084307804703712, -0.010219402611255646, -0.0333847738802433, -0.04948330298066139, 0.05082767456769943, -0.006038717459887266, -0.018159357830882072, 0.04016758129000664, -0.0014545117737725377, 0.01149235013872385, 0.03701557219028473, 0.03504359349608421, -0.01662878319621086, -0.005414440296590328, 0.02916692942380905, 0.03487379848957062, 0.021925436332821846, 0.0037982736248522997, -0.007893181405961514, -0.045710355043411255, -0.01065606065094471, 0.018979597836732864, -0.011071277782320976, -0.005729661788791418, 0.002793229417875409, -0.02751590684056282, -0.010829254053533077, 0.006885468494147062, -0.018594693392515182, -0.024218905717134476, -0.0499466210603714, 0.015334068797528744, -0.03051397018134594, -0.0016071214340627193, -0.007343463134020567, -0.01147103775292635, 0.021407125517725945, 0.02121422067284584, 0.01562882401049137, -0.030719716101884842, 0.005358397960662842, 0.0001719969732221216, -0.0048614381812512875, 0.017365243285894394, -0.021687598899006844, 0.011637377552688122, -0.022847745567560196, -0.009120936505496502, 0.04691186547279358, 0.04152953624725342, -0.006158291362226009, -0.009030898101627827, -0.026632389053702354, 0.019654901698231697, -0.02307768538594246, -0.010703708045184612, 0.016883211210370064, -0.010155321098864079, 0.02164403907954693, -0.015502610243856907, -0.04286595433950424, -0.006182489916682243, -0.004543591756373644, -0.026148945093154907, 0.01908954791724682, -0.0067961569875478745, -0.00995774194598198, 0.0034668506123125553, 0.009132400155067444, 0.012832185253500938, 0.02368847280740738, 0.006365020293742418, -0.023971321061253548, -0.001476431847549975, 0.011578290723264217, -0.013302725739777088, -0.0013757087290287018, 0.009552634321153164, -0.03543560579419136, 0.02999093011021614, 0.04350350424647331, 0.023038510233163834, 0.017833774909377098, -0.013880780898034573, -0.026814231649041176, 8.87080126223919e-33, 0.020320691168308258, -0.022141961380839348, -0.022235877811908722, -0.017279542982578278, 0.01878519169986248, -0.02029624581336975, 0.026304706931114197, 0.03512009605765343, -0.04150443524122238, 0.0235285647213459, -0.025923775508999825, 0.028303246945142746, -0.016638604924082756, 0.04175925254821777, 0.015792323276400566, -0.001338618341833353, 0.013868103735148907, -0.0045444718562066555, -0.012693153694272041, 0.010128029622137547, 0.020227698609232903, 0.021458521485328674, -0.02511708438396454, 0.0006126314401626587, 0.03041556291282177, 0.06039838865399361, -0.006693578790873289, 0.03040156699717045, 0.006373912561684847, 0.011520536616444588, 0.0018559767631813884, -0.020030656829476357, 0.030196363106369972, -0.030353184789419174, -0.022157572209835052, 0.024179507046937943, 0.003461301326751709, -0.03738411143422127, -0.01683046855032444, -0.013957102783024311, -0.015622424893081188, -0.0025128070265054703, 0.005635138601064682, 0.029862286522984505, 0.02698652073740959, 0.039548154920339584, 0.002196079585701227, 0.004300856497138739, -0.010146287269890308, 0.015314594842493534, -0.0031668576411902905, 0.02167927846312523, -0.0043249670416116714, -0.016482079401612282, -0.018859727308154106, -0.02695038542151451, -0.028719495981931686, -0.0008517477544955909, -0.016379471868276596, 0.005416399333626032, -0.00028425850905478, 0.022013695910573006, 0.007040613330900669, 0.00001675264684308786, -0.01415117084980011, 0.016987133771181107, 0.005172376986593008, -0.0017526025185361505, 0.01824764348566532, -0.04090387001633644, -0.012467816472053528, 0.0010345039190724492, 0.011984504759311676, 0.02588248997926712, 0.047583017498254776, -0.04965471476316452, -0.007680683862417936, 0.004681488033384085, -0.007338918745517731, 0.043889645487070084, 0.0005842721438966691, -0.018209287896752357, 0.021235503256320953, -0.014925999566912651, -0.006393317598849535, 0.014871159568428993, -0.010511553846299648, 0.01787601038813591, -0.009043930098414421, 0.0003927852085325867, -0.030688809230923653, -0.023128889501094818, -0.0028190286830067635, 0.02467002533376217, -0.00936458632349968, -1.3923516561931137e-8, -0.007440578658133745, 0.027854638174176216, 0.02623853087425232, -0.014466595835983753, 0.012273436412215233, 0.013342438265681267, -0.004604712128639221, 0.008050288073718548, -0.016947362571954727, 0.006233919877558947, 0.03137196972966194, -0.006392219569534063, -0.01406347006559372, 0.018084712326526642, 0.005667864345014095, -0.049634937196969986, 0.0029396002646535635, -0.02472231723368168, 0.03043581172823906, 0.012626967392861843, 0.018258720636367798, 0.04846851900219917, -0.02014833316206932, -0.0016266389284282923, 0.022353030741214752, -0.0011818232014775276, -0.023313598707318306, -0.08894999325275421, 0.0021282879170030355, 0.026841429993510246, 0.019198056310415268, -0.03189018741250038, 0.0061947377398610115, 0.04801221936941147, -0.028461972251534462, -0.03446025773882866, 0.025958716869354248, 0.02293366566300392, 0.013021626509726048, -0.01567123830318451, 0.023741589859128, -0.01043707225471735, 0.0105610815808177, -0.023673735558986664, -0.021072443574666977, 0.027358390390872955, -0.024809014052152634, -0.007624256424605846, 0.054890092462301254, -0.02010134980082512, -0.004979835357517004, -0.0478355772793293, 0.018721498548984528, 0.0302153080701828, 0.03849900886416435, -0.01569409854710102, 0.021298082545399666, 0.0071935877203941345, 0.0024739208165556192, 0.0006557269371114671, 0.020442714914679527, 0.037217482924461365, -0.00849810428917408, -0.010321632027626038 ]
riskiest-thing-first-vs-outside-in-development
https://markhneedham.com/blog/2010/03/02/riskiest-thing-first-vs-outside-in-development
false
2010-03-18 23:21:55
Essential and accidental complexity
[ "software-development" ]
[ "Software Development" ]
I've been reading Neal Ford's http://www.ibm.com/developerworks/views/java/libraryview.jsp?search_by=evolutionary+architecture+emergent+design:[series of articles on Evolutionary architecture and emergent design] and in the one about 'http://www.ibm.com/developerworks/java/library/j-eaed1/index.html[Investigating architecture and design]' he discusses Essential and accidental complexity which I've previously read about in Neal's book, 'http://www.markhneedham.com/blog/2008/09/05/the-productive-programmer-book-review/[The Productive Programmer]'. Neal defines these terms like so: ____ *Essential complexity* is the core of the problem we have to solve, and it consists of the parts of the software that are legitimately difficult problems. Most software problems contain some complexity. ____ ____ *Accidental complexity* is all the stuff that doesn't necessarily relate directly to the solution, but that we have to deal with anyway. ____ I find it interesting to consider where the line is for when something becomes essential complexity and when it's accidental complexity although Neal suggests that there's a spectrum between these two definitions upon which a piece of complexity sit. I recently read 37 signals book 'http://www.markhneedham.com/blog/2010/03/08/getting-real-book-review/[Getting real]' and one of the things that really stood out for me was the idea of keeping an application simple and writing less software wherever possible. I'm intrigued as to where this would fit in with respect to essential and accidental complexity because quite often we end up implementing features which aren't part of the application's core value but do add some value yet become way more complicated than anyone would have originally imagined. Quite often these won't be the first features played in a release because they're not considered top priority and therefore when they are played the amount of analysis done on their potential impact is often less and as we implement these features they end up pervading across the application and increasing its overall complexity. Another thing that often happens is that we start developing these features, complicating the code base as we go, before the business eventually decides that it's not worth the time that it's taking. By this time the complexity has spread across the code and it's quite difficult to get rid of it cleanly. What typically seems to happen is that some of it will just end up staying around in the code base pretty much unused and confusing people who come across it and don't understand what it's being used for. If we were coming from the angle of Domain Driven Design then we might say that any complexity in the core domain of our application is essential and we should expect that complexity to exist. On the other hand perhaps we should be more strict about what complexity is actually essential and try and ensure that only complexity around the absolutely vital features is allowed and look to compromise on simpler solutions for features which play a more supporting role. If we were to follow a definition along these lines then I think we would recognise that there is actually quite a lot of accidental complexity in our applications because although some complex features do contribute to the solution it probably causes more pain than the value that it adds. The take away for me is that we should be aware that this type of accidental complexity can creep into our applications and make sure that the business knows the trade offs we are making by implementing these types of features.
null
null
[ 0.00959621462970972, 0.01762828417122364, -0.008748260326683521, 0.011148937046527863, 0.10323912650346756, 0.02171802520751953, 0.030652297660708427, 0.032900989055633545, 0.0052103204652667046, -0.02505870722234249, -0.014306684955954552, -0.010662948712706566, -0.0506509467959404, 0.008799300529062748, -0.031614772975444794, 0.0671842023730278, 0.07422643899917603, -0.01578412763774395, 0.016270920634269714, 0.010204081423580647, 0.03007964789867401, 0.07352249324321747, 0.02414410375058651, 0.04608170688152313, 0.03722820430994034, 0.0012270527658984065, 0.012330287136137486, -0.01092441100627184, -0.04188644140958786, 0.008147639222443104, 0.041321154683828354, -0.0010482391808182001, 0.00010057116742245853, -0.01387060433626175, 0.01500166580080986, -0.022676892578601837, -0.04225042462348938, 0.0018750759772956371, -0.02168523147702217, 0.0034465561620891094, -0.06495187431573868, 0.05854888632893562, -0.002132679568603635, 0.021921660751104355, -0.03048015758395195, 0.012053465470671654, -0.06318258494138718, 0.007420973386615515, -0.014751115813851357, 0.0009337665978819132, -0.06278828531503677, 0.03670833632349968, -0.009987777099013329, 0.0011897830991074443, -0.0168229378759861, 0.059178270399570465, 0.01369215827435255, -0.0572592169046402, 0.011160175316035748, -0.040244750678539276, 0.004751029424369335, -0.027085352689027786, -0.012904323637485504, 0.032481007277965546, 0.01033091265708208, -0.028623109683394432, -0.015892263501882553, 0.03621542453765869, -0.03795997425913811, 0.011118561029434204, -0.03296761214733124, 0.02027849294245243, -0.015536251477897167, 0.0015467925695702434, -0.0040495614521205425, -0.047408103942871094, 0.02158023789525032, 0.06431396305561066, 0.014871755614876747, 0.034323547035455704, -0.02013762854039669, 0.03836487978696823, 0.007322536315768957, 0.031197035685181618, 0.003667854005470872, -0.042594362050294876, -0.009899841621518135, -0.014517438597977161, -0.0433332659304142, 0.05081895738840103, 0.02198539860546589, -0.06985440850257874, -0.005634136497974396, 0.05202942714095116, 0.008989130146801472, 0.004253271967172623, 0.013318109326064587, 0.005361440125852823, -0.016511036083102226, -0.002244949573650956, -0.01874963380396366, -0.013558145612478256, -0.01850244216620922, -0.001020244206301868, -0.07078000158071518, 0.003902870463207364, -0.022341245785355568, -0.01172223873436451, -0.0037102827336639166, 0.013960334472358227, -0.02139424718916416, 0.014163410291075706, -0.02774929814040661, 0.0030054294038563967, -0.08292315900325775, 0.07486959546804428, -0.0035040206275880337, -0.03707118332386017, 0.0037545727100223303, 0.02083211950957775, 0.04093543812632561, 0.019719019532203674, -0.02733389288187027, 0.07666270434856415, -0.004638420883566141, 0.004437832627445459, -0.024001607671380043, 0.05337633937597275, -0.03455636277794838, -0.044458743184804916, -0.007345079444348812, 0.0670907273888588, -0.024946829304099083, -0.021002737805247307, -0.0005639379960484803, -0.0227125883102417, 0.013764780946075916, 0.024752063676714897, 0.027873508632183075, 0.06483503431081772, -0.01627618633210659, -0.0596148781478405, 0.034716375172138214, -0.008013204671442509, 0.014403915032744408, 0.00010572697647148743, 0.002450158353894949, -0.005569132044911385, -0.01873946562409401, -0.03275982290506363, 0.014822673983871937, 0.04383806139230728, -0.003246965818107128, -0.0260289516299963, 0.04812873527407646, 0.10325663536787033, 0.029875582084059715, 0.007809528615325689, -0.008172210305929184, 0.01816747337579727, 0.04088909178972244, 0.02595941536128521, 0.02362637035548687, -0.003393486374989152, 0.0017317677848041058, -0.005998037755489349, -0.006809726357460022, 0.047978725284338, -0.0023861436638981104, -0.014708288013935089, -0.05590056627988815, -0.04770544543862343, 0.04097581282258034, -0.03489535674452782, -0.032496172934770584, 0.01484584528952837, 0.08152171224355698, 0.028004171326756477, 0.04414220526814461, 0.0001519899960840121, -0.07032933831214905, 0.01982087269425392, 0.0023350848350673914, 0.024674328044056892, 0.023788901045918465, -0.025203699246048927, 0.05854404717683792, 0.025050407275557518, 0.0014991599600762129, 0.01030883751809597, -0.050407472997903824, -0.08418800681829453, -0.016298945993185043, -0.024683572351932526, 0.04517387971282005, -0.014186649583280087, 0.007358161732554436, 0.07226517796516418, 0.008163065649569035, 0.055278703570365906, 0.02807597629725933, -0.0006274518673308194, -0.005113701801747084, -0.042542826384305954, -0.03401859849691391, 0.03966387361288071, 0.06160704419016838, -0.001965356757864356, -0.0539243184030056, -0.005682943854480982, 0.009162528440356255, -0.019162453711032867, 0.04658520966768265, -0.02092737704515457, 0.04928034171462059, -0.0008569060591980815, 0.06809218972921371, -0.04005312919616699, 0.028173670172691345, -0.052348848432302475, 0.0071562002412974834, 0.010967181995511055, -0.001793410861864686, 0.040128111839294434, 0.007624776102602482, 0.12364248931407928, 0.05992584303021431, -0.07017385959625244, -0.03951169550418854, 0.0492214672267437, 0.013251134194433689, -0.051427751779556274, 0.002996849361807108, -0.014172236435115337, 0.019825944676995277, 0.0015547495568171144, -0.05227901041507721, -0.01539634820073843, 0.03666899725794792, -0.04172811657190323, -0.009240647777915001, 0.04697176441550255, -0.04001133143901825, 0.06599415838718414, 0.005086630117148161, -0.026713408529758453, 0.0009752334444783628, -0.04763135313987732, -0.07327975332736969, 0.001319127855822444, -0.014812213368713856, -0.019331948831677437, 0.06881903856992722, -0.025238841772079468, -0.04775768890976906, -0.04876391962170601, -0.050893545150756836, 0.011967733502388, 0.05092832073569298, 0.061436817049980164, -0.004971606656908989, 0.05042768269777298, 0.0019079450285062194, 0.007808433845639229, 0.0007291764486581087, -0.05179598927497864, -0.02149675227701664, -0.0506390705704689, 0.014090769924223423, 0.01803484931588173, -0.013265236280858517, 0.023854468017816544, 0.03459477424621582, 0.008549046702682972, -0.0059889452531933784, -0.029466290026903152, 0.050435103476047516, -0.028556155040860176, -0.008400248363614082, 0.0015534422127529979, -0.013046061620116234, 0.06291551142930984, -0.039854925125837326, -0.034442443400621414, 0.019355762749910355, -0.06482676416635513, 0.050199173390865326, -0.07001849263906479, -0.033239807933568954, 0.012667216360569, 0.01962261088192463, 0.04322144761681557, 0.009807305410504341, 0.013676770962774754, 0.07681462168693542, 0.025818509981036186, -0.0007570707821287215, -0.016395138576626778, -0.0016917830798774958, 0.02478545531630516, 0.015241569839417934, -0.001908410806208849, 0.04632182419300079, 0.027751293033361435, 0.0010356669081375003, -0.03694126754999161, 0.051464613527059555, -0.015584936365485191, -0.2872123718261719, 0.014810457825660706, 0.018447747454047203, -0.053823329508304596, 0.009777791798114777, 0.011941123753786087, -0.01426730491220951, -0.04577194154262543, -0.007391674444079399, 0.005810001865029335, -0.025046050548553467, -0.052900537848472595, -0.017359046265482903, 0.059366267174482346, -0.006685915868729353, 0.01408676989376545, 0.010990245267748833, -0.020492278039455414, -0.027187267318367958, 0.051061224192380905, -0.019402354955673218, -0.07832160592079163, 0.004365652799606323, 0.024717729538679123, 0.04619922116398811, 0.04641115665435791, -0.10371275991201401, 0.038486868143081665, -0.04651582986116409, 0.005994487088173628, -0.005140436813235283, -0.0018561235629022121, 0.009183255024254322, -0.0218846183270216, -0.011922330595552921, -0.0046190135180950165, 0.030358290299773216, 0.0037347839679569006, -0.0006767026497982442, 0.042144473642110825, -0.012414820492267609, -0.03644488379359245, 0.000741721480153501, 0.02389051578938961, 0.05249350890517235, -0.009559848345816135, -0.07694339007139206, -0.01079119648784399, -0.03173649311065674, 0.07227738201618195, -0.05493564158678055, -0.02301168628036976, 0.005188519600778818, 0.04116050526499748, 0.003094114363193512, -0.00842337403446436, -0.0039444006979465485, -0.044802475720644, -0.040045738220214844, -0.022847317159175873, -0.0033618509769439697, -0.034120846539735794, -0.0029340283945202827, -0.03599284589290619, 0.006980282254517078, -0.05364321544766426, -0.08392792195081711, -0.011605219915509224, 0.076441690325737, 0.017104683443903923, -0.01859637349843979, 0.023579219356179237, 0.013112002052366734, -0.1144661158323288, -0.01440348755568266, -0.019882073625922203, -0.017543276771903038, -0.01098547875881195, 0.008677056059241295, 0.030399706214666367, -0.03465309739112854, -0.027144908905029297, 0.007540084887295961, 0.027715636417269707, 0.03833317011594772, -0.026965295895934105, 0.028160281479358673, 0.00020249502267688513, -0.030298352241516113, 0.025606747716665268, 0.06560046225786209, 0.008312909863889217, -0.02431497722864151, -0.05231206864118576, 0.04410260543227196, 0.008312974125146866, 0.03288465365767479, 0.012511934153735638, 0.007965950295329094, 0.034961502999067307, 0.007266627624630928, -0.049892425537109375, 0.021419217810034752, -0.003768667345866561, -0.016467919573187828, -0.017837831750512123, -0.04625709727406502, 0.015735773369669914, 0.052339229732751846, 0.021000100299715996, -0.0063950130715966225, -0.058651410043239594, -0.0006777235539630055, -0.04999716952443123, -0.02205026149749756, -0.03401239216327667, 0.016406560316681862, 0.05964028090238571, -0.005439623724669218, -0.017737435176968575, -0.06298568099737167, 0.022637518122792244, 0.010945110581815243, -0.009681680239737034, -0.05008493736386299, -0.023811517283320427, -0.03215422108769417, -0.018575431779026985, 0.009984633885324001, 0.027721885591745377, -0.006116167176514864, 0.024841666221618652, 0.014024695381522179, -0.023833278566598892, 0.003665147116407752, -0.018347952514886856, -0.05483284965157509, -0.021158000454306602, -0.008737859316170216, -0.014114601537585258, 0.006270337384194136, 0.032110318541526794, 0.018710581585764885, -0.015363067388534546, 0.03699394315481186, 0.001234444440342486, 0.031229259446263313, -0.014719643630087376, 0.04112114757299423, 0.009260430000722408, -0.004912962205708027, -0.07601366937160492, 0.02357284538447857, -0.05041923746466637, -0.04374437779188156, -0.0352020263671875, 0.02622012421488762, -0.032689400017261505, -0.05084751546382904, -0.015912527218461037, 0.032571032643318176, -0.049494728446006775, -0.055990830063819885, -0.05030389502644539, 0.029053278267383575, 0.07229994237422943, -0.004534174222499132, 0.030670706182718277, -0.013907365500926971, -0.011243360117077827, -0.0010335574625059962, -0.005916954949498177, -0.052382826805114746, 0.01214294321835041, 0.01702001877129078, -0.003621577052399516, -0.001058473833836615, -0.021674076095223427, 0.04590519517660141, 0.02225099503993988, -0.017291536554694176, -0.0396120510995388, 0.002077460987493396, 0.02853706292808056, 0.05209955945611, 0.006718742661178112, -0.006245510187000036, 0.00021689642744604498, -0.03056156449019909, -0.04496510326862335, -0.026213286444544792, -0.012323656119406223, 0.0015736371278762817, 0.01483037881553173, -0.028477288782596588, -0.07934971898794174, 0.055429182946681976, 0.0022696468513458967, 0.023969901725649834, -0.0016931549180299044, 0.009373903274536133, 0.009771068580448627, -0.01740827038884163, 0.04569539427757263, 0.05965457484126091, -0.06021518260240555, -0.0012714194599539042, -0.015195980668067932, 0.012240068055689335, 0.02256932109594345, 0.00553792342543602, -0.03829951956868172, -0.022464502602815628, -0.019492164254188538, -0.0031129997223615646, -0.04048164561390877, -0.03759137913584709, -0.0205207709223032, -0.0007980359368957579, 0.014997142367064953, -0.016235806047916412, -0.0034817613195627928, -0.005116262938827276, -0.02947179786860943, -0.013172918930649757, 0.01024489663541317, -0.037895649671554565, 0.014339286834001541, 0.003869182663038373, -0.02736934833228588, -0.007737049367278814, -0.019436461851000786, 0.013377225026488304, 0.007699476554989815, -0.02071528695523739, -0.032489873468875885, -0.02417805977165699, -0.00308060459792614, 0.014370632357895374, 0.048680417239665985, -0.02815876714885235, -0.015334820374846458, -0.03960468992590904, -0.013773404993116856, -0.032716087996959686, 0.0025394046679139137, -0.019022447988390923, -0.005792562384158373, 0.020904608070850372, 0.051039714366197586, 0.004381339065730572, 0.006453640293329954, -0.01677372120320797, -0.025837890803813934, 0.04059037193655968, -0.05194946005940437, -0.016377825289964676, -0.03432061895728111, -0.06985330581665039, -0.012740873731672764, 0.006272916216403246, 0.012913592159748077, -0.026022793725132942, 0.045404840260744095, 0.026552416384220123, 0.04142114892601967, 0.00863674283027649, 0.008151882328093052, 0.04244670644402504, -0.05544213950634003, 0.004586273338645697, -0.09205389767885208, 0.006069779861718416, 0.03239825740456581, -0.004413019400089979, 0.009748549200594425, -0.0005920070689171553, -0.04569855332374573, 0.046595651656389236, -0.07999782264232635, -0.021078461781144142, 0.049083445221185684, -0.0008884855196811259, -0.013902639970183372, 0.021761823445558548, -0.05972503125667572, 0.016462862491607666, 0.008741993457078934, -0.03646324574947357, -0.02488641068339348, -0.0153230344876647, 0.03441953286528587, 0.006495424080640078, 0.02570939064025879, -0.018097132444381714, -0.013974606990814209, 0.061505503952503204, 0.002264093840494752, 0.01688453182578087, 0.0459597148001194, -0.01981508545577526, 0.056079864501953125, 0.034429341554641724, 0.032717928290367126, -0.008493207395076752, 0.019534822553396225, -0.011524045839905739, -0.05013715848326683, 0.009990188293159008, -0.010169517248868942, -0.018716435879468918, -0.03453383222222328, 0.05597665533423424, 0.0364241898059845, -0.017595874145627022, -0.033370256423950195, 0.0163064394146204, -0.06636461615562439, 0.0022765847388654947, -0.014580152928829193, -0.008009261451661587, -0.0384390689432621, 0.049960628151893616, -0.01944299414753914, 0.020238317549228668, 0.0733962208032608, 0.0016716450918465853, -0.019300537183880806, -0.0321018360555172, 0.11142115294933319, 0.09697546809911728, 0.06456468999385834, 0.005031210836023092, 0.06614487618207932, -0.020974868908524513, -0.03925637900829315, 0.012347711250185966, -0.009223992936313152, -0.024404605850577354, -0.025410810485482216, 0.03761954978108406, 0.06653591245412827, -0.003816680982708931, 0.0731670930981636, -0.046163298189640045, -0.03318357840180397, 0.010380861349403858, 0.049930278211832047, 0.01036223117262125, 0.07411420345306396, 0.015478224493563175, 0.026193061843514442, -0.018463993445038795, -0.04713895916938782, 0.012027554214000702, -0.016084682196378708, -0.01042891014367342, 0.03262816369533539, 0.021838506683707237, 0.030243728309869766, 0.011238052509725094, 0.04422474279999733, 0.09368608891963959, -0.03133520483970642, 0.0016658131498843431, 0.009210878051817417, 0.014793423004448414, -0.02058190479874611, 0.009116257540881634, -0.027703573927283287, -0.028217868879437447, -0.010615776292979717, -0.020407984033226967, -0.023120282217860222, 0.012571455910801888, -0.019096756353974342, 0.04626325145363808, -0.022411705926060677, 0.006907620932906866, 0.02682855725288391, 0.021702896803617477, -0.03435412794351578, -0.051615551114082336, -0.040826600044965744, -0.009894952178001404, -0.05093587562441826, -0.0042174337431788445, 0.015915969386696815, -0.010121744126081467, -0.029340868815779686, -0.014495194889605045, -0.004560850095003843, -0.013620595447719097, 0.07051319628953934, -0.06249900162220001, -0.030141305178403854, 0.021193141117691994, 0.024996213614940643, 0.008942871354520321, 0.015023401007056236, 0.046442970633506775, -0.025798777118325233, -0.007169822230935097, -0.014050152152776718, -0.011701569892466068, 0.015309091657400131, 0.021383898332715034, 0.03110061027109623, -0.0724082663655281, 0.01449777465313673, 0.020406734198331833, -0.019526060670614243, -0.0810999646782875, 0.030482888221740723, 0.01973312720656395, -0.0012410723138600588, 0.05570303648710251, -0.008882051333785057, 0.03381121903657913, -0.04282297194004059, 0.00232093408703804, -0.007359004113823175, 0.017522655427455902, 0.04262932762503624, -0.026884539052844048, 0.0901017040014267, 0.01194479875266552, -0.0001807392545742914, -0.030199363827705383, 0.004595856182277203, -0.000967749219853431, -0.008167111314833164, -0.01708812452852726, -0.019916730001568794, -0.02292800322175026, -0.08480837941169739, -0.011854447424411774, 0.03414241224527359, -0.02827867679297924, -0.04421726614236832, 0.04419156163930893, 0.03874173015356064, -0.0360502228140831, 0.01840515248477459, -0.042159225791692734, 0.021121008321642876, -0.030240342020988464, -0.015888892114162445, 0.018621211871504784, 0.0007448301184922457, -0.009457913227379322, -0.003580370219424367, 0.0024928031489253044, -0.035445600748062134, 0.0024567244108766317, -0.006862543523311615, 0.023289646953344345, 0.024161599576473236, 0.021417181938886642, -0.01631290093064308 ]
[ -0.12556329369544983, -0.02897615358233452, -0.02433914691209793, -0.03665456548333168, 0.037341564893722534, -0.020444875583052635, -0.02191251330077648, 0.032735105603933334, 0.001129691838286817, -0.02674352377653122, -0.014911430887877941, -0.01112365908920765, -0.000637890538200736, -0.005742598790675402, 0.09667930006980896, 0.014464045874774456, -0.0029091746546328068, -0.07080003619194031, 0.009444719180464745, -0.0033047629985958338, 0.04546135663986206, -0.02237440086901188, -0.03739647939801216, -0.045609425753355026, -0.003074781736359, 0.03523663803935051, 0.029575008898973465, -0.03354606032371521, 0.016403978690505028, -0.20355495810508728, -0.01237258780747652, 0.0195753313601017, 0.06478163599967957, -0.04206141456961632, 0.0018904689932242036, 0.05765892565250397, 0.014333548955619335, 0.038535021245479584, -0.030925964936614037, 0.056611690670251846, 0.011451976373791695, 0.03577020764350891, -0.04303651675581932, -0.04301076754927635, -0.01068204641342163, 0.004272962920367718, 0.01205449365079403, -0.033797867596149445, -0.037515152245759964, -0.0107953492552042, -0.07628408074378967, -0.03656476363539696, -0.00755570363253355, -0.001000255928374827, 0.006962095387279987, 0.022927455604076385, 0.047492705285549164, 0.08513808995485306, -0.029317721724510193, 0.017730282619595528, 0.04138956591486931, -0.03141479566693306, -0.10615035891532898, 0.07785184681415558, 0.0829830914735794, 0.04888960346579552, -0.05208372697234154, -0.04374440014362335, -0.028802620247006416, 0.10175440460443497, 0.008690902963280678, -0.0022663918789476156, -0.018779242411255836, 0.0272963959723711, 0.021064557135105133, 0.007719224318861961, -0.004060314502567053, 0.0027256119064986706, 0.021039770916104317, -0.042228780686855316, -0.003397044027224183, -0.017534928396344185, -0.013902038335800171, 0.0020588976331055164, -0.05040059983730316, 0.02440735511481762, -0.022163981571793556, 0.05934058129787445, 0.033735763281583786, 0.023156730458140373, 0.03305207937955856, -0.0039020334370434284, 0.05950215458869934, -0.0018055146792903543, -0.045950088649988174, 0.014623673632740974, -0.013013710267841816, -0.014930522069334984, -0.03716996684670448, 0.4175751805305481, -0.017994331195950508, -0.047060322016477585, 0.0830201655626297, 0.04795696213841438, -0.004275614861398935, 0.0018232151633128524, 0.014955446124076843, -0.05827370285987854, 0.017864396795630455, -0.03924660384654999, -0.0010574464686214924, 0.022394996136426926, 0.07509882003068924, -0.027053607627749443, -0.017660168930888176, -0.0008070016046985984, 0.0035335274878889322, 0.020204555243253708, 0.0300556942820549, -0.005208638962358236, -0.007421096321195364, 0.0036216755397617817, 0.011915258131921291, -0.0009095081477425992, -0.005828453227877617, -0.02119200862944126, -0.011647449806332588, 0.0489211268723011, 0.015271141193807125, -0.022030984982848167, 0.046634357422590256, -0.0369693748652935, -0.045422766357660294, -0.013348408043384552, 0.01301843672990799, 0.015443525277078152, 0.01024235226213932, -0.022637581452727318, -0.02011983096599579, 0.019974054768681526, -0.007707756012678146, 0.03416312858462334, 0.026673194020986557, -0.027999525889754295, -0.05321098491549492, 0.12134343385696411, 0.042608220130205154, -0.03468639403581619, -0.011526422575116158, -0.043082330375909805, -0.012675831094384193, 0.024466706439852715, -0.0043807136826217175, -0.06098674610257149, 0.03444815054535866, 0.004605491645634174, 0.08246732503175735, -0.013544674962759018, -0.07648628950119019, -0.02925548143684864, -0.008941958658397198, -0.004825987853109837, -0.048111509531736374, 0.091213159263134, 0.058363161981105804, -0.08197911828756332, -0.0038600009866058826, 0.007898082956671715, 0.030733343213796616, -0.042413823306560516, -0.017165277153253555, 0.04717329144477844, -0.00731000117957592, 0.006520872935652733, 0.07497134804725647, -0.04252396896481514, -0.0482594333589077, 0.010800966992974281, 0.049455828964710236, 0.014688927680253983, 0.03539029136300087, 0.011367606930434704, -0.0385063998401165, 0.009794734418392181, -0.021360712125897408, -0.09691637754440308, -0.028420036658644676, 0.00449460931122303, -0.027804555371403694, -0.005994658451527357, -0.008859875611960888, -0.010563818737864494, -0.05256393551826477, 0.09919639676809311, -0.028158430010080338, -0.03719079867005348, 0.035524882376194, -0.00986224040389061, -0.041259121149778366, -0.0449676439166069, -0.06323914229869843, 0.04605214670300484, -0.02818598784506321, 0.02518456056714058, -0.05812450870871544, 0.0385684035718441, 0.04270495846867561, -0.050732698291540146, 0.08659610897302628, 0.06025301292538643, -0.036050133407115936, -0.03539440408349037, -0.004589056596159935, 0.043713655322790146, 0.015246785245835781, 0.0010956940241158009, -0.0023344664368778467, 0.023264899849891663, 0.01264646090567112, 0.02911878004670143, -0.025044774636626244, 0.003518505720421672, -0.0390174463391304, -0.3421456217765808, -0.045404817909002304, -0.03802718222141266, -0.030719757080078125, 0.008347087539732456, -0.04421200975775719, 0.004202292766422033, -0.03235788270831108, -0.022640855982899666, -0.01440531574189663, 0.05968905985355377, -0.011637480929493904, -0.02408173680305481, -0.07239929586648941, 0.011663050390779972, -0.0011005857959389687, -0.04717756435275078, -0.04007698595523834, -0.06839460134506226, -0.0013850238174200058, 0.007838425226509571, 0.0020565204322338104, 0.001766447676345706, -0.06835290044546127, -0.04742380604147911, -0.05107280984520912, 0.08602135628461838, -0.02792469598352909, 0.10310886055231094, -0.035449542105197906, 0.03594871982932091, 0.013426882214844227, -0.0017699989257380366, -0.0826958641409874, 0.015414327383041382, 0.00468521099537611, 0.0026128790341317654, -0.010202880017459393, 0.013346118852496147, -0.030491264536976814, -0.052953071892261505, 0.016619233414530754, -0.05911984667181969, -0.021975278854370117, -0.054377712309360504, 0.014218592084944248, -0.041892267763614655, -0.04739437997341156, -0.014570214785635471, 0.06515906006097794, -0.0017989205662161112, 0.03140752390027046, 0.01653776876628399, 0.017389915883541107, -0.0010085961548611522, -0.03328860551118851, -0.07273726165294647, 0.03800009563565254, 0.024953030049800873, 0.002456894377246499, 0.041818179190158844, 0.06189389526844025, 0.023427801206707954, -0.049271028488874435, 0.005314329173415899, 0.00009639403288019821, 0.005501214414834976, 0.001881692442111671, 0.05161727964878082, -0.041936371475458145, -0.019031181931495667, 0.11748658865690231, 0.004484720062464476, -0.054002564400434494, 0.02199888974428177, 0.019966503605246544, 0.004289562348276377, 0.022848857566714287, 0.03840332105755806, -0.018071891739964485, 0.005951693747192621, -0.014193057082593441, 0.03126778081059456, -0.01708991639316082, -0.02995716594159603, 0.036804843693971634, -0.023495949804782867, -0.05355878919363022, 0.025744639337062836, 0.011918488889932632, -0.02533433772623539, -0.004320012405514717, -0.0008162970771081746, -0.06986808031797409, 0.0892539694905281, -0.005811337847262621, -0.22539542615413666, 0.035291723906993866, 0.07643990218639374, 0.03203551098704338, -0.01790844462811947, 0.06032109633088112, 0.021271608769893646, -0.04253314435482025, 0.03298524394631386, 0.00910413358360529, 0.0176314115524292, 0.00024165250943042338, 0.014674419537186623, -0.009078006260097027, 0.05651858448982239, -0.006590778008103371, 0.0773664340376854, -0.021125776693224907, 0.04110250622034073, -0.030017968267202377, 0.016120968386530876, 0.012051963247358799, 0.17831827700138092, -0.020302077755331993, 0.027049265801906586, 0.007986093871295452, 0.016059935092926025, 0.048698317259550095, 0.052085187286138535, 0.020523350685834885, 0.014103783294558525, -0.002971131354570389, 0.07062256336212158, 0.0017401357181370258, 0.017288990318775177, -0.058047372847795486, 0.0024839916732162237, -0.0018263017991557717, 0.007097509689629078, 0.014943759888410568, 0.02672697976231575, -0.010793882422149181, -0.03345010429620743, 0.03093358688056469, 0.08376006782054901, -0.001653467770665884, -0.017413122579455376, -0.019811857491731644, -0.044836387038230896, 0.008167987689375877, -0.04630846157670021, -0.07005432993173599, 0.005157386418431997, -0.0016349947545677423, 0.029813706874847412, 0.054567769169807434, 0.03491015359759331, -0.020708275958895683, -0.0283509511500597, 0.011042029596865177, 0.024756480008363724, -0.011734867468476295, 0.11463382095098495, 0.030319523066282272, 0.028293119743466377 ]
[ -0.01927209459245205, -0.003967495169490576, 0.000345338397892192, -0.016990823671221733, 0.01563210040330887, 0.017090147361159325, -0.00014562391152139753, 0.031715743243694305, -0.027364468201994896, -0.014468546025454998, -0.012518440373241901, 0.012814618647098541, 0.018265366554260254, -0.02842247113585472, 0.022208197042346, -0.016200002282857895, -0.00833008624613285, -0.006143548991531134, 0.03437592461705208, -0.013033227995038033, -0.0032534515485167503, 0.051621608436107635, -0.010645895265042782, -0.04943690448999405, 0.017308559268712997, 0.029815437272191048, 0.019496941938996315, 0.00556968804448843, 0.037467218935489655, -0.11485474556684494, -0.026133058592677116, 0.015295774675905704, 0.021659620106220245, 0.002226036274805665, 0.012722881510853767, 0.015230226330459118, 0.0022635471541434526, -0.00018154225836042315, 0.03920726478099823, -0.03952392190694809, -0.05042998865246773, 0.008438530378043652, -0.04130878299474716, 0.011337445117533207, -0.02985421195626259, -0.0203997865319252, -0.03230934590101242, -0.04713974520564079, -0.034111712127923965, -0.03681521490216255, -0.04462020471692085, -0.005177771206945181, 0.012626578100025654, -0.02780003473162651, 0.021853819489479065, -0.0018750167218968272, -0.019432375207543373, 0.022760773077607155, -0.013190080411732197, -0.03582223504781723, -0.008620821870863438, -0.05026703327894211, -0.03295110911130905, -0.011642808094620705, -0.012276398949325085, -0.0022439006716012955, -0.0005197028513066471, -0.005020188633352518, 0.0064836409874260426, -0.014204485341906548, -0.006366360001266003, 0.005517672281712294, -0.025964446365833282, -0.05151588097214699, -0.009165468625724316, 0.007858428172767162, 0.002548833843320608, -0.0051353443413972855, 0.035632796585559845, -0.007773498073220253, -0.036875978112220764, 0.014008289203047752, -0.012837358750402927, 0.015914151445031166, -0.016075199469923973, 0.0005167213384993374, 0.010872626677155495, -0.005349430255591869, 0.02963440679013729, 0.04899238795042038, -0.013193506747484207, 0.015253913588821888, 0.011019507423043251, 0.0040440806187689304, -0.08879479020833969, 0.020805228501558304, 0.006714113522320986, -0.03716317191720009, -0.007647426798939705, 0.854568362236023, -0.010689410381019115, 0.02895743027329445, 0.04729694500565529, 0.018679168075323105, 0.011534002609550953, 0.0004763893666677177, -0.037138424813747406, -0.003827038686722517, 0.01784241572022438, -0.02230464294552803, 0.0010567468125373125, -0.0005269054672680795, 0.04381834343075752, 0.005511559080332518, 0.04174107685685158, 0.035767413675785065, 0.04167209193110466, 0.00966730434447527, 0.012099267914891243, 0.01234597247093916, 0.020527517423033714, 0.020040197297930717, -0.0031448607333004475, 0.018533241003751755, -0.010009786114096642, -0.17417994141578674, -0.038013555109500885, -8.682240948107756e-33, 0.023317113518714905, 0.020915908738970757, -0.013542301021516323, 0.005240737460553646, -0.017531711608171463, -0.029424479231238365, 0.019220544025301933, 0.032689373940229416, 0.0006718148943036795, -0.027280069887638092, -0.011838947422802448, -0.020004600286483765, -0.0014206802006810904, -0.027341773733496666, 0.02729332074522972, -0.01672535017132759, -0.008335350081324577, 0.047302331775426865, -0.019158994778990746, 0.036860764026641846, 0.03157150372862816, 0.01998225972056389, 0.017319330945611, -0.015406244434416294, 0.026345819234848022, 0.010189577005803585, 0.02375434711575508, -0.022433634847402573, -0.016165247187018394, -0.03751387819647789, -0.025412045419216156, 0.005185583606362343, -0.030842933803796768, -0.00541292829439044, -0.006969109643250704, -0.040647346526384354, -0.010794405825436115, -0.005201016552746296, -0.007623763754963875, -0.024864768609404564, -0.041552383452653885, 0.037821780890226364, -0.030945610255002975, 0.007013524416834116, 0.03383057564496994, -0.0017466166755184531, 0.037320323288440704, 0.012949095107614994, 0.013580319471657276, -0.012356705963611603, -0.017336707562208176, 0.01812727004289627, 0.015096243470907211, 0.0021577582228928804, -0.025769663974642754, 0.03101104497909546, 0.002718069590628147, 0.034428663551807404, 0.01600610464811325, 0.05330847576260567, 0.023896805942058563, 0.024607805535197258, -0.019669750705361366, 0.031562868505716324, -0.009426040574908257, -0.012741927988827229, -0.0023703142069280148, 0.00750303128734231, 0.015303527936339378, 0.03863268718123436, -0.026027362793684006, -0.003964937757700682, 0.0017507328884676099, -0.017053896561264992, 0.0016513839364051819, -0.013972884975373745, 0.005630620755255222, -0.017812827602028847, -0.027127087116241455, 0.016251172870397568, 0.009213165380060673, 0.01273519080132246, 0.003386150114238262, -0.039267152547836304, -0.012132014147937298, 0.0027075179386883974, 0.036677904427051544, -0.015614546835422516, 0.008649293333292007, 0.031387075781822205, 0.046711504459381104, 0.0209342073649168, -0.003502179402858019, -0.01715165004134178, -0.01796511933207512, 8.008301384106537e-33, 0.0037986875977367163, -0.03650082275271416, -0.03158916160464287, -0.014824110083281994, 0.03169974684715271, -0.01837170496582985, -0.015269646421074867, 0.006781501695513725, -0.05927198380231857, 0.018673794344067574, -0.04006015881896019, 0.010010736994445324, -0.013990804553031921, 0.023179957643151283, 0.01874700002372265, -0.0389251634478569, 0.030615484341979027, -0.01886332966387272, 0.012480329722166061, 0.018851133063435555, 0.04621000587940216, 0.007694247644394636, 0.024014510214328766, -0.012064624577760696, 0.05739012733101845, 0.029693465679883957, -0.03599395230412483, 0.03709069639444351, -0.016123441979289055, 0.008414038456976414, 0.02110990509390831, 0.0039743720553815365, -0.007489470764994621, -0.015268294140696526, 0.015346918255090714, 0.0011544990120455623, -0.030837377533316612, -0.02144314907491207, 0.021169615909457207, 0.0046201241202652454, -0.012394977733492851, -0.014879239723086357, 0.002644438063725829, 0.04557809978723526, 0.034606046974658966, -0.005518325138837099, 0.008338933810591698, -0.008891080506145954, -0.005193011835217476, -0.016972003504633904, 0.0021215341985225677, 0.013263112865388393, -0.005855320021510124, 0.0010877117747440934, -0.01722036674618721, -0.0021465818863362074, -0.007435470819473267, 0.009816584177315235, -0.00040229412843473256, 0.05810471251606941, -0.015480592846870422, -0.02529391646385193, -0.03383675962686539, -0.023566868156194687, -0.025441069155931473, -0.03687383607029915, 0.020677585154771805, 0.002310141921043396, -0.021718326956033707, -0.02612348273396492, -0.015220158733427525, 0.01409106608480215, -0.0027198344469070435, 0.040469102561473846, 0.016189508140087128, -0.01657380908727646, -0.030343828722834587, 0.013834476470947266, -0.035418201237916946, -0.01513790525496006, 0.006113320589065552, 0.012250049971044064, -0.01092565804719925, 0.00360363838262856, 0.005227228160947561, -0.011731777340173721, -0.019142627716064453, 0.004830623045563698, -0.054879434406757355, -0.028723761439323425, -0.03247268125414848, -0.019547654315829277, -0.00011123007425339893, 0.005459989886730909, -0.03220059350132942, -1.3887855310201758e-8, 0.00632095243781805, -0.011477026157081127, -0.0007695186650380492, -0.004212986212223768, 0.0610918290913105, -0.016705503687262535, -0.032971203327178955, 0.006325975991785526, -0.010073569603264332, 0.015390129759907722, 0.0362626351416111, -0.010574975050985813, 0.0016735076205804944, 0.06404685229063034, 0.01576702482998371, -0.022869106382131577, -0.0003553011629264802, 0.005813803523778915, 0.012096618302166462, 0.013611752539873123, 0.031051786616444588, 0.052437517791986465, -0.022158170118927956, 0.014806023798882961, -0.0012517825234681368, -0.03381256386637688, 0.013073005713522434, -0.08964018523693085, 0.031436704099178314, 0.024080276489257812, -0.0022903282660990953, -0.019135013222694397, 0.017419014126062393, 0.02624092623591423, -0.029772493988275528, -0.03262454271316528, 0.01723591424524784, 0.010506045073270798, -0.02344108745455742, 0.008311804383993149, -0.0249446090310812, 0.023790298029780388, -0.01367256324738264, -0.030755452811717987, -0.02855856716632843, -0.00005253721246845089, -0.013489148579537868, -0.0033892481587827206, 0.004339324776083231, -0.030735796317458153, 0.004060299135744572, -0.00009919970761984587, 0.015245089307427406, 0.02792849950492382, 0.0411989763379097, -0.003258352866396308, -0.016310112550854683, -0.01889529451727867, -0.018839634954929352, 0.00018724173423834145, 0.02467969059944153, 0.049443405121564865, 0.005086181685328484, -0.03851841390132904 ]
essential-and-accidental-complexity
https://markhneedham.com/blog/2010/03/18/essential-and-accidental-complexity
false
2010-03-11 08:05:28
Does an organisation need to be fully committed to agile/lean/scrum?
[ "software-development" ]
[ "Software Development" ]
Alan Atlas has http://www.rallydev.com/agileblog/2010/03/taking-sides/[a recent blog post where he discusses agile, lean and scrum and suggests that you can't truly achieve agility unless your company is fully committed to it] which differs slightly from my experiences. Alan makes a valid point that we're not really following an approach just because we use all the practices: ____ Many people make the mistake of viewing Scrum and Agile and Lean as sets of practices. "`If I do kanban, I'm Lean.`" "`If I do sprints, I'm scrummy.`" ____ It's quite easy to put our work up on a story wall, http://www.scrumalliance.org/articles/140[run a daily standup] and http://thedailywtf.com/Articles/Unit-Tested.aspx[unit test our code] and not really get the full benefit that those practices are supposed to give us. As I've mentioned before though I think it is http://www.markhneedham.com/blog/2010/02/26/shu-ha-ri-harmful/[part of the learning process that we start out focusing on practices] and not principles. However, at some stage we need to start thinking for ourselves about the value those are giving and making adjustments to them if we're not seeing much value i.e. we need to look beyond the practice and to the principle or outcome that we are trying to achieve by using that practice. The part of the post which is different to my experiences is this bit: ____ So I smile to myself (I think it's to myself) when I hear management say things like "`We'll never be totally Agile in this company. There will always be waterfall projects.`" I smile because what that really means is that they'll never be Agile at all. ____ I haven't heard conversations like this before but I think it is still possible to deliver software in a team working in an 'agile' way even if the rest of the organisation which that team operates in follows a different approach. It won't be as smooth sailing as if the whole organisation buys into the lean/agile approach and there will still be some reporting and bureaucracy that you need to deal with but it's not a lost cause. My colleague Lindy Stephens and a couple of others covered some of the issues around project governance in the enterprise in a http://www.markhneedham.com/blog/2009/10/01/qtb-agile-governance-managing-the-enterprise-issues/[ThoughtWorks QTB in Sydney last year]. The http://www.slideshare.net/ThoughtWorks/agile-governance-managing-the-enterprise-issues-2195039[slides from that presentation are available on slideshare]. ____ If your company is not fully committed to agility then you won't achieve it, and your results will be a self-fulfilling prophecy of unrealized potential. ____ Even if an organisation decides that it wants to be agile I think it still takes time to get used to the approach and it always seems to take a few successful deliveries to see that some of the worries that heavy weight processes and paperwork try to protect you against are not necessarily valid. I've spent a lot of time being indignant that people didn't buy into the agile approach but the more I spend time in different organisations the more it becomes clear that even for the people with the best intentions in wanting to learn this approach it will still take time to get there. I'm coming to the conclusion that it's a good thing that people have some level of skepticism because it forces you to really understand why an agile approach is more effective and then try and persuade other people of that. It's also helpful to note that it makes sense to vary our approach depending on the context that we're operating in. For example if the team is distributed across different cities then we might have more written documentation than with a co-located team. It's very rare that an organisation or group of people will just 'get it' straight away - in many ways it's quite an iterative/incremental journey.
null
null
[ 0.034745026379823685, -0.006064064335078001, -0.009039347060024738, 0.016297686845064163, 0.0840354859828949, 0.009847437962889671, 0.036427147686481476, 0.04969276860356331, 0.019677964970469475, -0.029145991429686546, -0.014981957152485847, -0.018397070467472076, -0.0426844097673893, 0.021832454949617386, -0.051542043685913086, 0.06528501212596893, 0.06243540346622467, 0.00522630987688899, 0.01566842570900917, 0.011988149024546146, 0.03671396151185036, 0.075956791639328, 0.01751280203461647, 0.02678787149488926, 0.055259235203266144, 0.012168875895440578, 0.028543910011649132, -0.007362402509897947, -0.05850943177938461, -0.03692534565925598, 0.03998822718858719, -0.003542869118973613, 0.022688256576657295, 0.007251374889165163, 0.03285471722483635, -0.00911153107881546, 0.006052394397556782, 0.02931530773639679, 0.0009586778469383717, -0.027282213792204857, -0.06409771740436554, 0.0468064583837986, -0.02746378257870674, 0.012818082235753536, -0.024998968467116356, -0.010310567915439606, -0.028451265767216682, 0.006615211721509695, -0.003723084693774581, -0.0057641565799713135, -0.05744833126664162, 0.038393713533878326, -0.007848171517252922, -0.012373926118016243, -0.014220662415027618, 0.03384421020746231, 0.007480485364794731, -0.06441272795200348, -0.005344716366380453, -0.044893063604831696, -0.017484186217188835, -0.015179634094238281, -0.009809939190745354, 0.04174736142158508, 0.04355088248848915, -0.036208245903253555, 0.012032623402774334, 0.03245357796549797, -0.0342160128057003, 0.01102472748607397, -0.02607833407819271, 0.01723628118634224, -0.026646813377738, -0.0037957285530865192, 0.012578045949339867, -0.07417744398117065, 0.001157931750640273, 0.07772482931613922, 0.047333285212516785, 0.05315139889717102, -0.007435570936650038, 0.022966621443629265, 0.00017596929683350027, 0.019590267911553383, -0.03377022594213486, -0.03088524006307125, 0.022244397550821304, -0.02278461679816246, -0.06662897765636444, 0.07159525156021118, 0.003001000266522169, -0.0679212436079979, 0.015831882134079933, 0.04629717394709587, -0.002256024396046996, 0.01274935994297266, 0.02320573292672634, 0.022090554237365723, 0.003446331713348627, -0.03388332203030586, -0.037944402545690536, -0.020963944494724274, -0.018961768597364426, 0.016173191368579865, -0.07176360487937927, -0.011335344053804874, -0.0176673773676157, -0.008364693261682987, -0.010591522790491581, 0.003849742002785206, -0.050976332277059555, 0.007247470784932375, -0.035397719591856, 0.0034708725288510323, -0.05540239065885544, 0.06694315373897552, 0.005328632425516844, -0.038047224283218384, -0.02387237176299095, -0.022493736818432808, 0.03377145528793335, 0.012050029821693897, -0.008847217075526714, 0.06330481171607971, -0.0007379492744803429, 0.01395055279135704, -0.05355966091156006, 0.06095922365784645, 0.0010033347643911839, -0.0495450384914875, -0.015864407643675804, 0.05714977905154228, -0.04245252534747124, -0.023817073553800583, 0.0007410642574541271, -0.023515990003943443, 0.011325175873935223, 0.010842064395546913, 0.02583657205104828, 0.06077107787132263, -0.009471525438129902, -0.010430795140564442, 0.017861803993582726, 0.0335426852107048, 0.032356247305870056, -0.012144511565566063, 0.011691763065755367, -0.02957448549568653, -0.06529077142477036, -0.019983213394880295, 0.02128763683140278, 0.015788380056619644, 0.02513793483376503, -0.02567465789616108, 0.03352520987391472, 0.09214670956134796, 0.039240576326847076, -0.003825878258794546, -0.013771013356745243, 0.026219479739665985, 0.022049829363822937, 0.019633829593658447, 0.026917673647403717, 0.011663662269711494, 0.023139987140893936, -0.009194762445986271, -0.00972727406769991, 0.006151348818093538, -0.0035475492477416992, -0.009402853436768055, -0.0586354099214077, -0.04783431440591812, 0.03422003611922264, -0.04892919212579727, -0.006125779822468758, 0.03734925761818886, 0.07130199670791626, 0.06607895344495773, 0.038497742265462875, 0.01008540391921997, -0.07471797615289688, 0.034517306834459305, 0.02671881765127182, 0.017560172826051712, 0.03353339061141014, -0.01771537773311138, 0.050692442804574966, 0.03235413134098053, -0.002961882622912526, 0.056162964552640915, -0.0692979097366333, -0.10486381500959396, -0.012265907600522041, -0.028383761644363403, 0.04292924702167511, -0.058496277779340744, 0.013153346255421638, 0.05472959950566292, 0.0029936139471828938, 0.05365367606282234, 0.01735939458012581, -0.0020569751504808664, 0.009847800247371197, -0.05106332153081894, -0.021933740004897118, 0.07272497564554214, 0.048761703073978424, -0.0025680207181721926, -0.06002822518348694, 0.023494916036725044, -0.008877678774297237, -0.00905041303485632, 0.03589465469121933, -0.020148461684584618, 0.04769033566117287, -0.008015050552785397, 0.05674855411052704, -0.023701436817646027, 0.06463100016117096, -0.030851541087031364, -0.0012209140695631504, 0.002032811753451824, -0.01634746976196766, 0.020539555698633194, 0.0028898275922983885, 0.09464181214570999, 0.05896301195025444, -0.052539438009262085, -0.05384619161486626, 0.01602785475552082, 0.026576587930321693, -0.028505077585577965, -0.0053305174224078655, -0.010243581607937813, 0.01322179101407528, -0.002763321390375495, -0.055570878088474274, -0.049395255744457245, 0.012249663472175598, -0.05979539453983307, 0.013633300550282001, 0.050776463001966476, -0.016963066533207893, 0.06457798928022385, 0.0008667748770676553, -0.013642680831253529, -0.013505158014595509, 0.002048969268798828, -0.05801735073328018, 0.021795865148305893, 0.01684386096894741, -0.028706148266792297, 0.059579525142908096, -0.029170366004109383, -0.05350720137357712, -0.03673417866230011, -0.030485929921269417, 0.0018759403610602021, 0.04690719395875931, 0.07161921262741089, -0.0278055090457201, 0.04173911362886429, -0.007743308786302805, 0.034872736781835556, 0.015993231907486916, -0.035461533814668655, -0.05077572166919708, -0.04155425354838371, 0.013755145482718945, 0.017729833722114563, 0.0023663698229938745, 0.022702109068632126, 0.02460324764251709, 0.005345124751329422, -0.02671177312731743, 0.005014941096305847, 0.016024628654122353, 0.017836377024650574, 0.000557919847778976, -0.03251303732395172, -0.022177720442414284, 0.04714873060584068, -0.016658762469887733, -0.0025585952680557966, 0.004908842500299215, -0.08505990356206894, 0.04640084132552147, -0.06931683421134949, -0.03505798056721687, 0.007441309746354818, 0.009853140451014042, 0.05780631676316261, -0.0014430443989112973, 0.02137180231511593, 0.05400994047522545, 0.030800191685557365, 0.013827300630509853, 0.0009296679054386914, -0.008667677640914917, 0.04466810077428818, 0.019944388419389725, -0.026506725698709488, 0.06452170759439468, 0.001185729866847396, 0.013697633519768715, -0.06901893764734268, 0.05816321074962616, -0.05798574537038803, -0.27523139119148254, 0.024006133899092674, 0.0006096687284298241, -0.0421212799847126, 0.019028205424547195, -0.010900123976171017, -0.011680733412504196, -0.05594238266348839, -0.029592914506793022, 0.022091461345553398, -0.05887271836400032, -0.029482806101441383, -0.005231573712080717, 0.024656545370817184, 0.010079463012516499, 0.03420666232705116, 0.0490209199488163, -0.02013440616428852, 0.01889357715845108, 0.06470368802547455, -0.014012308791279793, -0.07489310950040817, 0.009068918414413929, 0.042662568390369415, 0.040719397366046906, 0.05820091813802719, -0.07283223420381546, 0.0574016310274601, -0.0467146672308445, 0.004640016704797745, 0.006690619047731161, 0.01445958111435175, -0.010304388590157032, -0.03667717054486275, -0.003015073947608471, -0.012311342172324657, 0.030037015676498413, -0.0004084045358467847, -0.006156045477837324, -0.009793245233595371, -0.009937562979757786, -0.03665763512253761, 0.02148023061454296, 0.030447859317064285, 0.06181369721889496, 0.01081344299018383, -0.0810076966881752, -0.004473926033824682, -0.024755379185080528, 0.08730498701334, -0.0301315039396286, -0.024964885786175728, -0.007641841657459736, 0.03405413776636124, -0.018262144178152084, -0.035098087042570114, 0.008091715164482594, -0.03437347710132599, -0.029988523572683334, 0.0016275299713015556, -0.012812460772693157, -0.02970763109624386, -0.02356446161866188, -0.049622684717178345, -0.009010814130306244, -0.05939781665802002, -0.0598105825483799, -0.008484621532261372, 0.05590711906552315, -0.004998477641493082, -0.03162270039319992, 0.00929869245737791, 0.005801640450954437, -0.09541771560907364, 0.0049629369750618935, 0.005701690446585417, -0.022028671577572823, 0.017171097919344902, 0.010881587862968445, 0.04893061891198158, -0.030807986855506897, -0.0656140074133873, 0.02437356673181057, 0.0017386105610057712, 0.03546786308288574, 0.004944318439811468, 0.06095091626048088, 0.043270543217659, -0.02249865047633648, 0.02030722238123417, 0.05395261570811272, 0.017008181661367416, -0.03155134245753288, -0.016928207129240036, 0.02782098576426506, -0.0036776235792785883, 0.025303570553660393, -0.015864543616771698, 0.01301244180649519, 0.015433404594659805, -0.026807818561792374, -0.050275225192308426, 0.021243512630462646, -0.0026041483506560326, -0.004611162468791008, -0.014556897804141045, -0.056835003197193146, 0.01680062524974346, 0.05146614462137222, 0.014761111699044704, 0.018251480534672737, -0.02912777289748192, 0.008487390354275703, -0.03477310389280319, -0.04717976599931717, -0.01964283175766468, -0.0026239329017698765, 0.04562389478087425, -0.011620701290667057, 0.004755583591759205, -0.06606674939393997, -0.0018511265516281128, -0.02496698684990406, -0.009378787130117416, -0.06297711282968521, -0.0018342423718422651, -0.01321374997496605, -0.020323291420936584, 0.014774484559893608, 0.022328002378344536, -0.002625476336106658, 0.01859867200255394, 0.04518904909491539, -0.04107356444001198, 0.003956811036914587, -0.03359108045697212, -0.0779716894030571, -0.01615912839770317, -0.0051634288392961025, -0.014371712692081928, -0.017329232767224312, 0.0432344414293766, 0.01787417382001877, 0.031156066805124283, 0.014171338640153408, 0.017978012561798096, 0.013722174800932407, -0.010366784408688545, 0.02489175647497177, 0.028381414711475372, 0.035562533885240555, -0.07243318110704422, 0.024368343874812126, -0.032767362892627716, -0.025320395827293396, -0.02308686263859272, 0.021448900923132896, -0.01661713235080242, -0.014212253503501415, -0.01209835521876812, -0.01918788254261017, -0.05080709978938103, -0.04978180304169655, -0.03092549555003643, 0.029757769778370857, 0.057594966143369675, -0.014966780319809914, 0.00039768137503415346, -0.027125606313347816, -0.010452917777001858, 0.006769905332475901, -0.011616774834692478, -0.03892841562628746, 0.000008744223123358097, 0.002340043196454644, -0.0029899035580456257, 0.007321537472307682, 0.0031956913881003857, 0.05638676509261131, -0.0003340240800753236, -0.00008810047438601032, -0.01473561953753233, 0.012746775522828102, 0.008319316431879997, 0.028011789545416832, 0.02063167467713356, -0.006053870543837547, -0.009639661759138107, -0.011856847442686558, -0.03637593612074852, -0.04154979810118675, 0.0010273095685988665, 0.016425805166363716, 0.013433047570288181, -0.03144038841128349, -0.05822598934173584, 0.06962336599826813, 0.024538947269320488, 0.0020371885038912296, 0.020603710785508156, -0.016545239835977554, -0.009184138849377632, -0.023756438866257668, 0.023926496505737305, 0.07527398318052292, -0.06220996007323265, -0.005719419103115797, -0.004348361864686012, -0.011649846099317074, 0.0006242008530534804, -0.022988662123680115, -0.04296916723251343, -0.0217409860342741, -0.015519440174102783, -0.0010312384692952037, -0.07136240601539612, -0.005926097277551889, -0.03692817687988281, 0.0045376489870250225, 0.01705118827521801, 0.008135110139846802, -0.03726207837462425, -0.04392746463418007, -0.009701268747448921, -0.027619553729891777, 0.016059348359704018, -0.03943463787436485, -0.0005929616163484752, 0.031747277826070786, -0.02856895513832569, -0.0074509442783892155, -0.039957765489816666, 0.007476656697690487, 0.00800054706633091, -0.02475816383957863, 0.016666794195771217, -0.033696647733449936, 0.005256843287497759, 0.004455233458429575, 0.031507160514593124, -0.022631937637925148, -0.008705979213118553, -0.037673626095056534, -0.010399194434285164, -0.041547466069459915, -0.016782483085989952, -0.03486542031168938, -0.01137051172554493, 0.023120665922760963, 0.07137376815080643, 0.033308643847703934, 0.03855529800057411, 0.003181422594934702, -0.017670676112174988, 0.04886375367641449, -0.06154956296086311, -0.042212631553411484, -0.03184535354375839, -0.0675344169139862, -0.004289607517421246, 0.03345778211951256, 0.01704677939414978, -0.041394833475351334, 0.038303811103105545, 0.015451835468411446, 0.04760249704122543, 0.02947814390063286, 0.010196970775723457, 0.014432061463594437, -0.057774629443883896, -0.013227109797298908, -0.07730254530906677, -0.02031604014337063, 0.032773103564977646, 0.0032452282030135393, -0.018415825441479683, -0.009802198968827724, -0.026167862117290497, 0.024454833939671516, -0.07194174826145172, -0.02069004625082016, 0.05293596535921097, 0.012216564267873764, -0.017164357006549835, 0.023732036352157593, -0.06461898237466812, 0.0290645994246006, 0.016546566039323807, -0.05074651539325714, -0.015130952000617981, -0.014878705143928528, 0.04111872985959053, 0.004358998499810696, 0.026604562997817993, -0.06662671267986298, -0.009855489246547222, 0.09127285331487656, -0.006046623922884464, -0.02057655341923237, 0.055925775319337845, 0.007449989672750235, 0.04700799286365509, 0.033329520374536514, 0.01236475259065628, -0.037592675536870956, 0.006141474470496178, 0.0008744093938730657, -0.07295121997594833, 0.04059673100709915, 0.011011365801095963, -0.024102970957756042, -0.020770523697137833, 0.054907191544771194, 0.02099846489727497, -0.03567252680659294, -0.05444321408867836, -0.006029252894222736, -0.058268141001462936, 0.015084147453308105, 0.0010872099082916975, 0.0005081676645204425, -0.06503230333328247, 0.032679978758096695, -0.015134898945689201, 0.027170071378350258, 0.058393169194459915, 0.010971428826451302, -0.01769217662513256, -0.008368819020688534, 0.07537207752466202, 0.06312554329633713, 0.06437291949987411, 0.013862953521311283, 0.07228206843137741, -0.02069430612027645, -0.047475285828113556, 0.020794719457626343, 0.010777602903544903, -0.00403555016964674, -0.024909740313887596, 0.024382615461945534, 0.036492496728897095, -0.009722886607050896, 0.062274541705846786, -0.014277487061917782, -0.048910729587078094, 0.002851929282769561, 0.04282984137535095, 0.000019360115402378142, 0.06261298060417175, 0.0009629215928725898, 0.01064327172935009, -0.02538813091814518, -0.033919807523489, 0.020106591284275055, -0.04699868708848953, -0.020070131868124008, 0.034338973462581635, -0.004998821299523115, 0.03698715940117836, 0.02553405985236168, 0.0169694647192955, 0.09418327361345291, -0.06344012171030045, 0.0287711750715971, -0.019795913249254227, 0.033134836703538895, -0.02299622818827629, 0.009674855507910252, -0.0014308945974335074, -0.02022690325975418, 0.004221207927912474, -0.015904810279607773, -0.027020994573831558, -0.012459059245884418, -0.022197937592864037, 0.045690517872571945, -0.018449438735842705, 0.004339602310210466, 0.02563968487083912, -0.0002279291074955836, -0.0442635715007782, -0.06223481148481369, -0.02659638039767742, -0.028522437438368797, -0.03298454359173775, -0.0009004448656924069, 0.03580431267619133, -0.018712785094976425, -0.029952920973300934, -0.002289576455950737, -0.005609584506601095, -0.035814736038446426, 0.019755106419324875, -0.044926173985004425, -0.0355912409722805, -0.003551444271579385, 0.03554162010550499, 0.03208714351058006, 0.006386850494891405, 0.05488090589642525, 0.01222240924835205, -0.009926870465278625, -0.00282188574783504, 0.030267925933003426, 0.02151639759540558, 0.002541171619668603, 0.021735072135925293, -0.0803380012512207, 0.017474321648478508, 0.03676431253552437, -0.01707104966044426, -0.0586787611246109, 0.039806656539440155, 0.00005025484642828815, -0.016369018703699112, 0.05103540048003197, -0.0060692764818668365, 0.015136665664613247, -0.038038164377212524, -0.018642842769622803, 0.0014330557314679027, 0.0027090967632830143, 0.04178792983293533, -0.027202386409044266, 0.08016502857208252, 0.028119223192334175, 0.004412615671753883, -0.059635862708091736, -0.011214231140911579, 0.0041451770812273026, -0.001416073995642364, -0.0007138429209589958, -0.04670149087905884, -0.02438422664999962, -0.08604801446199417, -0.020753854885697365, 0.016236599534749985, -0.014207390137016773, -0.013438901863992214, 0.03897663950920105, 0.02877078764140606, -0.030291160568594933, 0.005483719054609537, -0.05248241871595383, 0.04124267399311066, -0.028056206181645393, -0.01808246783912182, 0.00686465622857213, 0.0355399064719677, -0.005540068261325359, -0.0014726713998243213, 0.025802006945014, -0.05511052906513214, 0.03646919131278992, 0.022377826273441315, 0.02295447140932083, 0.042106401175260544, 0.01544260699301958, -0.011584736406803131 ]
[ -0.07269012182950974, -0.015253020450472832, -0.006002321839332581, -0.031028246507048607, 0.030275270342826843, -0.018562782555818558, -0.0053642974235117435, -0.00212565204128623, -0.013290450908243656, -0.016677962616086006, 0.013899245299398899, -0.019803127273917198, -0.008818498812615871, -0.04398388788104057, 0.0794370174407959, -0.01693938858807087, -0.0017271892866119742, -0.058163974434137344, 0.016675550490617752, 0.02341490425169468, -0.002141845179721713, -0.046445030719041824, -0.031343813985586166, 0.004299442283809185, 0.036647625267505646, 0.02142600156366825, 0.002874836791306734, -0.028853047639131546, -0.0035276664420962334, -0.16269072890281677, 0.01256075780838728, 0.023082185536623, 0.04128585755825043, -0.025895852595567703, 0.007756765931844711, 0.08401873707771301, 0.010930577293038368, 0.023167001083493233, 0.008170120418071747, 0.06519521027803421, 0.02220861427485943, 0.016566425561904907, -0.04665245860815048, -0.04015476256608963, 0.01635112427175045, 0.01700357347726822, 0.02772623300552368, -0.04221367463469505, -0.019169554114341736, 0.01016230322420597, -0.03608626499772072, -0.040213726460933685, -0.012863482348620892, -0.020734086632728577, -0.02542204223573208, 0.040062226355075836, 0.04256519675254822, 0.04924226924777031, -0.006827267352491617, 0.019191358238458633, 0.009625975973904133, -0.03872310370206833, -0.14603419601917267, 0.06778416782617569, 0.029194101691246033, 0.057457394897937775, -0.04316256567835808, 0.023477764800190926, -0.027759263291954994, 0.09332612156867981, 0.03499675542116165, -0.019330158829689026, -0.019907329231500626, 0.03512905165553093, 0.03686436638236046, 0.022690560668706894, 0.0016745672328397632, 0.025484858080744743, 0.007522656582295895, -0.04050462692975998, -0.03476746380329132, -0.010678797028958797, -0.03926950320601463, -0.010144059546291828, -0.05740457773208618, 0.016734745353460312, -0.023514550179243088, 0.042881205677986145, 0.06919344514608383, 0.03176747262477875, 0.04696407914161682, 0.020177287980914116, 0.01904776506125927, -0.007645044010132551, -0.05979743227362633, -0.027193322777748108, -0.016323501244187355, 0.009519865736365318, -0.05858746916055679, 0.43557485938072205, -0.022034429013729095, 0.006953607778996229, 0.06946999579668045, 0.029183611273765564, -0.012343237176537514, 0.0052270470187067986, 0.00801500491797924, -0.021384941413998604, 0.044129908084869385, -0.0076508778147399426, 0.0511656254529953, 0.044770125299692154, 0.033091362565755844, -0.05322222039103508, -0.005861397832632065, 0.025386808440089226, -0.013388284482061863, 0.014951931312680244, -0.0046758390963077545, 0.012856719084084034, -0.04204479604959488, 0.013129259459674358, 0.05154156684875488, 0.009125725366175175, -0.04910785332322121, -0.03209318593144417, 0.025555310770869255, 0.03505340591073036, 0.055907681584358215, -0.03454401716589928, 0.06200482323765755, -0.05468585342168808, -0.06785659492015839, -0.004137201700359583, -0.008520089089870453, -0.004654929507523775, 0.04293198511004448, -0.018729064613580704, -0.005249506793916225, 0.07130198180675507, 0.017033807933330536, 0.00334509857930243, 0.042723868042230606, -0.06963946670293808, -0.0318383164703846, 0.10521642863750458, 0.0322432704269886, -0.03775728866457939, -0.017363153398036957, -0.045167017728090286, -0.02631065808236599, 0.003981717862188816, 0.03089517168700695, -0.044036176055669785, 0.04042791575193405, -0.006574198603630066, 0.10244959592819214, -0.0010392707772552967, -0.07377425581216812, -0.011844435706734657, -0.023431207984685898, -0.018670527264475822, -0.07625509798526764, 0.056662384420633316, 0.09476687014102936, -0.1106734648346901, -0.022419482469558716, -0.02101079747080803, 0.03215214982628822, -0.05755879729986191, -0.011224780231714249, 0.0000720399766578339, -0.002334380755200982, 0.011854100041091442, 0.09128972142934799, -0.024814091622829437, -0.052375949919223785, -0.011440166272222996, 0.057006992399692535, 0.017012761905789375, 0.057106561958789825, 0.03066895343363285, 0.017785636708140373, -0.0167999230325222, -0.029981443658471107, -0.061112094670534134, -0.033477962017059326, -0.028086617588996887, -0.0234941765666008, -0.02408376894891262, -0.027268914505839348, -0.004998980090022087, -0.07454446703195572, 0.10982316732406616, -0.03475388139486313, -0.03298728168010712, 0.01037426944822073, 0.00019530330609995872, -0.051123760640621185, -0.009463237598538399, -0.11252199113368988, 0.03269202634692192, -0.02819909155368805, 0.025868088006973267, -0.0508602000772953, 0.039232537150382996, 0.04476359859108925, -0.051406100392341614, 0.09187008440494537, 0.05611088499426842, -0.040844615548849106, -0.055181607604026794, 0.03219129145145416, 0.03845753148198128, 0.012441825121641159, -0.01108168251812458, -0.007227172143757343, 0.04722019284963608, -0.03626304864883423, 0.02246510609984398, -0.03330216556787491, 0.04666204750537872, -0.026975532993674278, -0.338006854057312, -0.02788434736430645, -0.0203547365963459, 0.007007157430052757, 0.020096858963370323, -0.01406206376850605, 0.015250233002007008, -0.010106101632118225, -0.023482641205191612, -0.027256807312369347, 0.07595311850309372, -0.024666860699653625, 0.005268375389277935, -0.09317600727081299, 0.0071169170551002026, 0.003995314706116915, -0.0581013523042202, -0.049434930086135864, -0.016048811376094818, -0.005741935223340988, 0.02355080656707287, 0.005228203721344471, -0.026986541226506233, -0.033819109201431274, 0.009426525793969631, -0.05172897130250931, 0.08918602019548416, 0.008441217243671417, 0.0772075206041336, -0.00510121276602149, 0.008872072212398052, 0.011563535779714584, 0.023749956861138344, -0.10830877721309662, 0.01396150141954422, -0.01961933821439743, 0.01798558048903942, -0.0524137020111084, 0.03393690288066864, -0.036775026470422745, -0.06221623346209526, 0.028689291328191757, -0.0792524591088295, -0.04591280594468117, -0.06508612632751465, -0.0179725531488657, -0.027105391025543213, 0.0029220532160252333, -0.02183998003602028, 0.03992738947272301, 0.009348064661026001, 0.02760286070406437, 0.029265757650136948, 0.019849097356200218, 0.0069511812180280685, -0.034254662692546844, -0.09538482874631882, 0.03557998314499855, 0.013502250425517559, -0.00518752820789814, 0.007475361693650484, 0.07430907338857651, 0.05164347589015961, -0.040780361741781235, 0.008385248482227325, -0.0024237309116870165, 0.009320082142949104, 0.022767111659049988, 0.03450070694088936, -0.02650289423763752, 0.003590293461456895, 0.07443863153457642, -0.005814484320580959, -0.03624086081981659, 0.01573936827480793, 0.01648828387260437, -0.03083030693233013, 0.0018866107566282153, 0.010807588696479797, -0.017378218472003937, -0.005007061176002026, -0.04392211139202118, 0.030727166682481766, -0.012071466073393822, -0.012523210607469082, 0.021850334480404854, -0.01563606783747673, -0.06549597531557083, 0.055015694350004196, 0.01877298206090927, -0.015620678663253784, 0.01020828727632761, -0.047684915363788605, -0.03504960611462593, 0.10263203084468842, 0.008681101724505424, -0.20856183767318726, 0.01230100728571415, 0.052892982959747314, 0.055611949414014816, -0.026896929368376732, 0.05026064068078995, 0.03211727738380432, -0.07451064139604568, -0.017654744908213615, 0.04483967274427414, 0.019473847001791, 0.006012915633618832, 0.008277584798634052, -0.006097556557506323, 0.0474289245903492, -0.007754886988550425, 0.07332824170589447, -0.00676788529381156, 0.05527329817414284, -0.018860209733247757, 0.01808958314359188, 0.019357165321707726, 0.13463014364242554, -0.002492696512490511, 0.01912800222635269, 0.02952328324317932, -0.008083388209342957, 0.005681795999407768, 0.06296221911907196, 0.022117460146546364, 0.011883473955094814, -0.010727504268288612, 0.04775262251496315, 0.03665097802877426, 0.010957733727991581, -0.08564630150794983, -0.015076400712132454, 0.009519047103822231, 0.015028662048280239, -0.0003287850122433156, 0.024310018867254257, -0.015924489125609398, 0.0008760138298384845, 0.04261138290166855, 0.08148021996021271, -0.02907467819750309, -0.01141384057700634, -0.08687949925661087, -0.05864568427205086, -0.015110384672880173, -0.03792986646294594, -0.04342534765601158, 0.009831922128796577, 0.0009496242273598909, 0.029493628069758415, 0.06326855719089508, 0.03976067155599594, -0.03725652024149895, -0.0005168350762687624, -0.006290612742304802, -0.00987937767058611, -0.030314253643155098, 0.06111786141991615, 0.046139758080244064, 0.035555172711610794 ]
[ -0.004289459902793169, 0.02228369377553463, -0.029703540727496147, 0.014927288517355919, -0.003315128618851304, 0.010667664930224419, -0.03418461233377457, 0.020386172458529472, 0.022585749626159668, -0.01149164792150259, -0.0012634735321626067, 0.022590240463614464, 0.014774222858250141, -0.01132301613688469, 0.06700841337442398, -0.026323745027184486, -0.006170416250824928, -0.009011486545205116, 0.030513295903801918, 0.03632789105176926, -0.0022343145683407784, 0.0049048177897930145, -0.031532082706689835, 0.042127061635255814, -0.019621672108769417, 0.01469738781452179, -0.03509797155857086, 0.004285910632461309, 0.01694638654589653, -0.1324770748615265, -0.024279190227389336, -0.024684082716703415, 0.040857359766960144, 0.03638885170221329, 0.031946390867233276, 0.002525478135794401, 0.011660669930279255, 0.029103590175509453, -0.003629049751907587, -0.008953041397035122, -0.0013365610502660275, -0.018062841147184372, 0.010856041684746742, -0.0015224905218929052, 0.03732578456401825, 0.0010560501832515001, -0.010513183660805225, -0.017333984375, -0.018859008327126503, 0.02255936712026596, -0.05792323499917984, -0.05111590772867203, -0.010312381200492382, -0.037316933274269104, 0.017061110585927963, 0.029840616509318352, 0.03750930353999138, -0.008637091144919395, 0.043778613209724426, -0.028240486979484558, 0.015104129910469055, -0.00990330707281828, -0.04828880727291107, -0.016279753297567368, -0.025010060518980026, -0.039492167532444, -0.011167886666953564, 0.02608468197286129, -0.023851362988352776, 0.021702757105231285, 0.038964059203863144, -0.039402130991220474, 0.005163136869668961, -0.02748151682317257, -0.006038537248969078, 0.029566941782832146, 0.019460393115878105, -0.015326577238738537, -0.0017606281908228993, -0.0037795985117554665, -0.03781653568148613, 0.02226017601788044, -0.003983690869063139, -0.026075130328536034, -0.024705449119210243, -0.01429661177098751, 0.03350025415420532, -0.023555859923362732, 0.041299767792224884, -0.004013709258288145, -0.01140516810119152, 0.007911374792456627, -0.020025452598929405, 0.0059234281070530415, -0.09085867553949356, 0.010971196927130222, -0.01468489971011877, -0.021984757855534554, -0.0006015062681399286, 0.825229287147522, 0.012044528499245644, 0.01746881939470768, 0.050993334501981735, 0.008907224051654339, -0.015690840780735016, -0.012115929275751114, 0.03138085454702377, -0.01225621160119772, 0.01223177369683981, -0.02978523075580597, 0.023132149130105972, 0.02218443527817726, 0.016681533306837082, 0.017929481342434883, 0.02930399775505066, 0.012162551283836365, -0.018671885132789612, -0.036949340254068375, -0.061512332409620285, 0.024689897894859314, 0.05611157417297363, 0.03634485974907875, 0.037943679839372635, 0.017707595601677895, 0.0333116352558136, -0.1482730507850647, -0.00882458034902811, -9.532125567804177e-33, 0.02971590682864189, -0.008424864150583744, -0.006239143665879965, -0.019284704700112343, 0.021577853709459305, -0.038550686091184616, 0.0017183725722134113, 0.002978729782626033, 0.0014798756456002593, -0.005286427214741707, -0.027665797621011734, -0.011321743950247765, 0.029015788808465004, -0.0018965033814311028, 0.008512756787240505, -0.046285998076200485, -0.01161991897970438, 0.011823651380836964, -0.010106286965310574, 0.04978138953447342, 0.04842357710003853, 0.010823032818734646, -0.004068154376000166, 0.023558903485536575, 0.015531161800026894, 0.011472663842141628, 0.05397850275039673, 0.0008080099360086024, 0.0013782629976049066, -0.027889247983694077, -0.008936270140111446, 0.0008374141179956496, -0.05138365924358368, -0.028581058606505394, 0.02661997079849243, -0.045607175678014755, -0.04827886074781418, 0.006878426764160395, -0.013189607299864292, -0.018757155165076256, -0.016651904210448265, -0.010134220123291016, -0.05398472025990486, -0.027262847870588303, 0.009310508146882057, 0.024704648181796074, 0.011618336662650108, 0.039946842938661575, 0.010317221283912659, -0.049179572612047195, 0.0033342198003083467, -0.026143234223127365, 0.0050236922688782215, 0.0287469495087862, 0.026016803458333015, -0.00776810385286808, 0.012294597923755646, 0.017836008220911026, -0.004577634856104851, 0.0138658806681633, 0.003135299077257514, -0.02105177938938141, -0.03139473870396614, 0.01663363166153431, -0.04406796768307686, 0.00452837161719799, -0.013055142015218735, 0.01659807376563549, 0.026645008474588394, -0.06036355718970299, -0.03928004950284958, -0.010137500241398811, -0.006548059172928333, 0.022575795650482178, -0.004291200079023838, -0.013206705451011658, 0.01073525007814169, 0.07760597765445709, -0.041501935571432114, 0.0327826589345932, -0.021495681256055832, 0.01349615678191185, -0.021178200840950012, -0.03552990034222603, -0.0046994672156870365, -0.0015817278763279319, 0.029020104557275772, -0.027126280590891838, -0.019266679883003235, 0.0073241605423390865, 0.013004379346966743, 0.003693401115015149, -0.010895663872361183, 0.0038082890678197145, -0.00029111470212228596, 9.469293925384788e-33, -0.020345576107501984, 0.0031297814566642046, -0.0022202185355126858, 0.009311382658779621, 0.06563495099544525, -0.010229404084384441, 0.018745524808764458, 0.006804206874221563, -0.054236847907304764, 0.030505288392305374, -0.023424195125699043, -0.015898915007710457, -0.05245588347315788, 0.03353685885667801, 0.02921253629028797, -0.0016830528620630503, 0.04639899730682373, -0.03477431833744049, 0.017220716923475266, 0.0011359378695487976, 0.016320718452334404, -0.009867175482213497, 0.010261306539177895, 0.030791329219937325, 0.05696013569831848, 0.08341962844133377, -0.045082733035087585, -0.0003201618092134595, 0.01518374402076006, -0.01798170804977417, 0.017073730006814003, 0.012679319828748703, 0.002058977261185646, -0.012327730655670166, -0.032108649611473083, 0.016769645735621452, -0.02450188808143139, -0.015707172453403473, -0.00401169341057539, -0.007143574301153421, 0.02832607552409172, -0.01703008823096752, 0.012026241980493069, 0.025598928332328796, -0.011347141116857529, 0.00832777563482523, 0.04225807264447212, -0.02620992623269558, -0.02167980931699276, -0.005369646940380335, 0.023899538442492485, 0.00998174212872982, 0.022470857948064804, 0.01770361140370369, 0.01464174222201109, -0.04298507794737816, 0.027596835047006607, -0.026889091357588768, -0.027094049379229546, 0.0022743158042430878, 0.014384139329195023, -0.00017806512187235057, -0.043396443128585815, 0.0167655311524868, -0.02741203084588051, -0.005377353169023991, 0.029368402436375618, -0.0035358695313334465, -0.06385711580514908, 0.0034180053044110537, -0.030606528744101524, 0.016968904063105583, 0.014842468313872814, 0.03868117928504944, 0.0022436880972236395, -0.0025846376083791256, -0.05026102811098099, -0.01243556383997202, -0.018732883036136627, -0.017872359603643417, -0.010138561017811298, -0.021883241832256317, -0.007706033065915108, 0.014398726634681225, -0.022607389837503433, 0.027402371168136597, -0.020445719361305237, 0.027357274666428566, 0.020753109827637672, 0.013068567030131817, -0.025234242901206017, -0.05356813594698906, 0.00847016740590334, 0.024451762437820435, 0.01810671016573906, -1.4607087983620204e-8, -0.014773520641028881, 0.016958093270659447, -0.03113044612109661, 0.025619225576519966, 0.01500453520566225, 0.01302141323685646, -0.03424982354044914, 0.00974670983850956, 0.009364703670144081, 0.02085835486650467, 0.03667306900024414, -0.029733994975686073, -0.013687455095350742, 0.010987904854118824, 0.006110262591391802, -0.04528312012553215, -0.03817307576537132, -0.0014771989081054926, 0.0361190102994442, -0.0016216528601944447, 0.02526274137198925, 0.06696261465549469, -0.0551467202603817, 0.02338256500661373, 0.0026277913711965084, -0.0076820142567157745, -0.051564618945121765, -0.059836551547050476, 0.020487140864133835, -0.016886774450540543, 0.03935537487268448, 0.004527009557932615, -0.03085319884121418, 0.01912608928978443, -0.016214651986956596, -0.036249518394470215, 0.06764169037342072, 0.016115255653858185, 0.011195923201739788, 0.005659574642777443, -0.03694561868906021, 0.0028966031968593597, 0.0032827709801495075, -0.03755544498562813, -0.028000252321362495, 0.02010570466518402, -0.037371158599853516, -0.019467512145638466, 0.012841738760471344, -0.059261761605739594, -0.009543352760374546, -0.02499980852007866, 0.032403044402599335, 0.04792827367782593, 0.008842517621815205, 0.029165683314204216, 0.0003834080998785794, -0.044900160282850266, -0.03918211907148361, -0.014401116408407688, 0.01760212332010269, -0.02825627662241459, 0.026375088840723038, -0.015736447647213936 ]
does-an-organisation-need-to-be-fully-committed-to-agileleanscrum
https://markhneedham.com/blog/2010/03/11/does-an-organisation-need-to-be-fully-committed-to-agileleanscrum
false
2010-03-16 23:56:47
Parallel Pair Programming
[ "software-development", "pair-programming" ]
[ "Pair Programming" ]
I've spent a bit of time working with http://oldtinroof.com/[Les] recently and it's been quite interesting working out the best way for us to pair together as he's working as a front end developer on the team which means he's best utilised working on the CSS/JavaScript/HTML side of things. Having said that there are often features which require both front end and backend collaboration and we've been trying to drive these features from the front end through to the backend rather than working on the backend code separately and then working with Les later on to hook it all up to the frontend. As a result we've found that it seems to be most effective to prototype any backend code that we write while working together such that we just write enough code to allow us to see that everything is hooked up correctly. Once we're happy that we've got that working correctly then we split up and work side by side, effectively http://vivekvaid.blogspot.com/2008/09/death-of-paired-programming-its-2008.html[parallel pairing as Vivek Vaid describes it]. At this stage I would focus on driving out the backend code properly with a more test driven approach and Les works on tidying things up from a front end perspective and ensuring that the feature's look and feel is consistent across browsers and doing any other front end related functionality. The benefit that we've seen from doing this is that we're able to work together on the code where we get the most value from doing so and then split up to work on the other things where we wouldn't add as much value to each other in a pair programming situation. Since we're working directly together at the beginning of a story we also get the benefit of iterating/talking through the potential approaches that we can take and I've often found that I take a better approach to solving a problem when working with a pair than when working alone. The thing that we have to be careful about when doing this is ensuring that we're not treading on each other's toes because we are working around the same part of the code base and often on the same files. This means that there is a bit of merging to do but as we're also sitting next to each other it hasn't proved to be too much of a problem. I think using a source control tool like Git or Mercurial with their merging capabilities would probably make this a non issue. It seems to me that we're still getting the http://www.markhneedham.com/blog/2008/09/28/pair-programming-what-do-we-gain-from-it/[benefits of pair programming] with this approach and I'm more convinced that this might be a useful approach in other situations as well.
null
null
[ 0.018811611458659172, 0.012137611396610737, 0.010859926231205463, 0.03371280059218407, 0.08077666908502579, 0.025140812620520592, 0.020016096532344818, 0.05287406966090202, 0.02537323161959648, -0.030029991641640663, -0.023790283128619194, -0.008235490880906582, -0.06800826638936996, 0.008039422333240509, -0.03182541951537132, 0.0744781419634819, 0.06790030747652054, 0.012202175334095955, 0.02856449969112873, 0.021360836923122406, 0.028528843075037003, 0.06785982102155685, 0.00761779909953475, 0.03207716718316078, 0.02926548197865486, -0.006061369553208351, 0.016723761335015297, -0.008150607347488403, -0.07400618493556976, -0.008570817299187183, 0.03653086721897125, 0.012569326907396317, -0.014229142107069492, -0.02256598323583603, 0.003286902327090502, -0.043112773448228836, -0.020140107721090317, 0.012794850394129753, 0.006108521483838558, 0.016465386375784874, -0.05031242594122887, 0.04924216866493225, -0.004201722797006369, 0.01624949648976326, -0.04515925794839859, 0.0058982037007808685, -0.017527710646390915, 0.028453219681978226, 0.011233729310333729, -0.012023016810417175, -0.07557010650634766, 0.00863739475607872, 0.0020802512299269438, 0.008521328680217266, -0.01763002946972847, 0.04400311037898064, 0.015389611944556236, -0.056766580790281296, -0.010053942911326885, -0.04749533534049988, -0.004679206293076277, 0.006733742542564869, 0.02162376418709755, 0.04514017701148987, 0.030502554029226303, -0.01726788841187954, -0.0024694863241165876, 0.03621537238359451, -0.036538805812597275, -0.007353899069130421, 0.01757350191473961, 0.012317539192736149, -0.024167856201529503, -0.012056357227265835, 0.0073015824891626835, -0.04174318537116051, -0.004694479051977396, 0.060890283435583115, 0.017990151420235634, 0.03540157526731491, -0.01647242344915867, 0.01568414270877838, 0.010467172600328922, 0.026555951684713364, -0.008827216923236847, -0.04584052786231041, -0.010674512945115566, -0.020059755071997643, -0.05460292100906372, 0.05522574111819267, 0.030080370604991913, -0.09018495678901672, 0.03471500799059868, 0.041396670043468475, 0.02287096157670021, 0.03129749000072479, 0.013683452270925045, 0.029057994484901428, 0.0024615207221359015, -0.0039085764437913895, -0.024966800585389137, -0.010231946595013142, -0.005881008692085743, -0.020714620128273964, -0.07224155962467194, -0.01793665438890457, -0.024890556931495667, -0.005169231910258532, 0.018897317349910736, -0.009224372915923595, -0.0034059525933116674, 0.018143566325306892, -0.013392455875873566, 0.03350640460848808, -0.062348321080207825, 0.08183173090219498, -0.026922447606921196, -0.038263555616140366, -0.009019455872476101, -0.0036987103521823883, 0.04235602170228958, 0.041368480771780014, -0.015851406380534172, 0.08723738044500351, 0.031880032271146774, 0.025635138154029846, -0.027981040999293327, 0.05316919460892677, -0.02106926217675209, -0.06431526690721512, 0.01280506793409586, 0.05787745863199234, -0.03888408839702606, -0.006525239907205105, -0.006847686599940062, -0.013830416835844517, 0.006225817836821079, 0.007757608778774738, 0.03183771297335625, 0.047978270798921585, -0.028950659558176994, -0.035938914865255356, 0.014166832901537418, 0.0212774109095335, 0.02707965113222599, 0.009503573179244995, 0.005240792408585548, -0.017370961606502533, -0.041240256279706955, 0.004204896744340658, -0.0006250851438380778, 0.007504851557314396, 0.005480107851326466, -0.042047299444675446, 0.031169140711426735, 0.09529231488704681, 0.049431122839450836, 0.012308130972087383, -0.004149730317294598, 0.02352236770093441, 0.0414985828101635, 0.04099234193563461, 0.01596715673804283, 0.03005301021039486, -0.013834692537784576, 0.006093899253755808, -0.014994432218372822, 0.0483873225748539, 0.024050841107964516, 0.027665579691529274, -0.07081542164087296, -0.026442542672157288, 0.07098596543073654, -0.04639885947108269, -0.015955714508891106, 0.0604650154709816, 0.10407703369855881, 0.023233801126480103, 0.022421620786190033, -0.0017275697318837047, -0.07612411677837372, 0.021257687360048294, 0.02862362749874592, 0.021796463057398796, 0.031291548162698746, -0.008189172483980656, 0.0642252042889595, 0.03199438378214836, -0.0015367820160463452, 0.026964358985424042, -0.09115511178970337, -0.08481962978839874, -0.042729802429676056, -0.012601051479578018, 0.05968751758337021, -0.031307682394981384, -0.016427339985966682, 0.06286576390266418, 0.00979265570640564, 0.04606371745467186, 0.020592989400029182, -0.011938553303480148, 0.01423332653939724, -0.035790588706731796, -0.052544478327035904, 0.04281550273299217, 0.04967905580997467, -0.018636131659150124, -0.04367867857217789, 0.0024203297216445208, -0.011694035492837429, -0.018001258373260498, 0.03667306900024414, -0.013289760798215866, 0.04585966467857361, 0.014322317205369473, 0.05946651101112366, -0.03972014784812927, 0.037390872836112976, -0.047680336982011795, 0.040452081710100174, -0.020467346534132957, -0.007528534159064293, 0.015504589304327965, 0.008571614511311054, 0.1025189608335495, 0.06083952262997627, -0.06781856715679169, -0.02488863468170166, 0.015923412516713142, 0.00439328933134675, -0.027276868000626564, -0.006660894490778446, -0.014474180527031422, -0.012706301175057888, -0.00459634093567729, -0.052433598786592484, -0.0327034629881382, 0.02314104698598385, -0.0415291003882885, 0.008939811959862709, 0.06367626786231995, -0.03795572742819786, 0.053432002663612366, -0.011777328327298164, -0.021244529634714127, 0.00629248283803463, -0.011221818625926971, -0.05171137675642967, 0.02032799832522869, 0.021386118605732918, -0.00916547141969204, 0.030847109854221344, -0.03547871485352516, -0.017552800476551056, -0.03718124330043793, -0.021077463403344154, 0.005941297393292189, 0.03227643296122551, 0.061053112149238586, -0.023627441376447678, 0.04720515012741089, -0.001734742196276784, 0.024022025987505913, 0.017089881002902985, -0.04585312679409981, -0.05563485622406006, -0.03287721052765846, 0.014631611295044422, 0.042137932032346725, -0.006510393228381872, 0.018886029720306396, 0.0017366490792483091, -0.01267034001648426, 0.0015824992442503572, -0.000712395238224417, 0.025559864938259125, -0.019149357452988625, 0.003377098124474287, -0.049219273030757904, -0.014125592075288296, 0.04473736882209778, -0.0332728810608387, -0.041546713560819626, 0.002814564621075988, -0.06728778779506683, 0.05965844914317131, -0.0713583454489708, -0.05378708615899086, -0.014887827448546886, 0.02727358229458332, 0.030827876180410385, -0.01369130052626133, 0.021097516641020775, 0.06750927865505219, 0.004846455063670874, 0.012706615962088108, -0.0012319957604631782, 0.0021506925113499165, 0.03933229669928551, 0.01027954276651144, 0.0024410493206232786, 0.054386138916015625, -0.00817101076245308, -0.0031016964931041002, -0.04391644895076752, 0.05118563398718834, -0.031986888498067856, -0.29968538880348206, 0.021634498611092567, 0.025814281776547432, -0.04253469035029411, 0.0168962050229311, -0.023649100214242935, 0.0034646494314074516, -0.0543806254863739, -0.00007039822230581194, -0.002962235826998949, -0.04279761388897896, -0.04909289628267288, -0.026948535814881325, 0.04713796079158783, -0.0023479110095649958, 0.04051396995782852, 0.01024423073977232, -0.027656881138682365, 0.009365533478558064, 0.02783801034092903, -0.04189201071858406, -0.07778418809175491, 0.018314063549041748, 0.01967247575521469, 0.050530195236206055, 0.03560171648859978, -0.08903232961893082, 0.05329369753599167, -0.049504924565553665, -0.012374736368656158, 0.022004662081599236, 0.002988329390063882, 0.005443398375064135, -0.030737221240997314, -0.008535753935575485, -0.028087131679058075, 0.04726224020123482, 0.0027447163593024015, 0.015335011295974255, 0.006020138040184975, -0.00764654902741313, -0.012581350281834602, -0.008330341428518295, 0.010642793029546738, 0.0641411617398262, -0.02575543150305748, -0.08566555380821228, 0.0034807196352630854, -0.04022037982940674, 0.07770054787397385, -0.029178127646446228, -0.04613059014081955, -0.01349648181349039, 0.048585060983896255, -0.010433237999677658, -0.037226416170597076, -0.005053795408457518, -0.018456414341926575, -0.03462937846779823, -0.017390051856637, -0.018505072221159935, -0.045270033180713654, -0.024890251457691193, -0.054288141429424286, 0.027334386482834816, -0.06063583120703697, -0.06572587043046951, -0.027169769629836082, 0.07285486906766891, 0.012874962761998177, -0.019277121871709824, 0.009034653194248676, 0.009000656194984913, -0.10781673341989517, 0.009970877319574356, -0.01278188917785883, -0.006658607162535191, -0.0251629501581192, 0.03086051531136036, 0.03678324818611145, -0.024291716516017914, -0.06674985587596893, 0.0193028561770916, -0.009271999821066856, 0.015102045610547066, -0.014836698770523071, 0.03258953616023064, 0.025912238284945488, -0.015073655173182487, 0.015221063047647476, 0.08522120118141174, -0.02139594778418541, -0.019524922594428062, -0.02264695055782795, 0.02175348997116089, 0.01755104400217533, 0.029801636934280396, -0.0045794155448675156, -0.008860155940055847, 0.0460871160030365, 0.023049181327223778, -0.05517007037997246, 0.02205176092684269, 0.003347636666148901, 0.011026760563254356, 0.0070651136338710785, -0.040913984179496765, 0.023862842470407486, 0.050446514040231705, 0.04379107430577278, -0.02258417196571827, -0.03956776112318039, 0.00215823738835752, -0.052603691816329956, -0.020350296050310135, -0.004773336928337812, 0.012273134663701057, 0.025935085490345955, -0.019485414028167725, -0.009100676514208317, -0.038579389452934265, -0.0004790950333699584, 0.0069052730686962605, 0.013838482089340687, -0.0648951306939125, -0.027760865166783333, -0.028281621634960175, -0.01674008183181286, 0.012201273813843727, 0.011929520405828953, -0.025273552164435387, 0.030024437233805656, 0.006141023710370064, -0.0615440271794796, 0.0234837643802166, -0.015045826323330402, -0.04907873645424843, -0.027843263000249863, 0.008097503334283829, -0.00143763842061162, -0.008734561502933502, 0.022913288325071335, -0.0034238742664456367, 0.02402610331773758, 0.04224980250000954, 0.017163023352622986, 0.010667211376130581, -0.011739982292056084, 0.01365204993635416, 0.005787750240415335, -0.00825431663542986, -0.06774469465017319, 0.001262434758245945, -0.027242764830589294, -0.034265946596860886, -0.04290594533085823, 0.03113582916557789, -0.006185255479067564, -0.035202253609895706, -0.0022370675578713417, 0.009836993180215359, -0.07603602856397629, -0.028976479545235634, -0.0022338186390697956, 0.025299418717622757, 0.05399005115032196, -0.005646279081702232, 0.0039268056862056255, -0.018219199031591415, -0.005722998641431332, 0.006203090772032738, 0.036361586302518845, -0.0446222648024559, -0.022190870717167854, -0.0036735008470714092, 0.005338824819773436, -0.013623744249343872, 0.015113784931600094, 0.05350934714078903, 0.014677932485938072, -0.0032959997188299894, 0.0028834103140980005, 0.01897125318646431, 0.03292972594499588, 0.05338092893362045, 0.014641658402979374, -0.022072937339544296, 0.0032997478265315294, -0.012133728712797165, -0.009481697343289852, -0.043081507086753845, 0.012795326299965382, 0.005802538711577654, 0.0202991534024477, -0.03212437778711319, -0.09175244718790054, 0.02414960227906704, 0.02983401156961918, 0.018743127584457397, -0.00030095770489424467, -0.029034728184342384, 0.01146628800779581, -0.017298996448516846, 0.03338294103741646, 0.05797313153743744, -0.06687424331903458, 0.017765242606401443, -0.01119012851268053, 0.0021277593914419413, -0.012103269807994366, 0.0055936966091394424, -0.05936630442738533, -0.045197006314992905, -0.01306228432804346, -0.003324053483083844, -0.057721883058547974, -0.014904622919857502, -0.014455248601734638, 0.0127584058791399, -0.0007996720960363746, -0.014369722455739975, -0.026154570281505585, -0.007913436740636826, -0.014573561027646065, -0.03334445878863335, -0.0029356470331549644, -0.02234995737671852, 0.00672566145658493, 0.02136143483221531, -0.026320084929466248, 0.031359173357486725, -0.035366714000701904, 0.007392016239464283, 0.018712054938077927, -0.026745270937681198, 0.011979683302342892, -0.02623312920331955, -0.009068028070032597, 0.009375626221299171, 0.04298562556505203, -0.008343392051756382, -0.029037902131676674, -0.052835699170827866, -0.01739979162812233, -0.038062360137701035, 0.01425728015601635, -0.0467848926782608, -0.01028086431324482, -0.003492755349725485, 0.039558809250593185, -0.0016247595194727182, 0.015547127462923527, 0.005006934516131878, -0.00570624740794301, 0.038807112723588943, -0.05431501194834709, -0.04652014374732971, -0.06439488381147385, -0.06315187364816666, 0.00446751294657588, 0.005764545872807503, 0.015750261023640633, -0.04008835181593895, 0.05008672550320625, 0.03673412278294563, 0.01601845771074295, 0.021506555378437042, -0.018153635784983635, 0.041455868631601334, -0.04795064777135849, 0.008665396831929684, -0.08247922360897064, 0.014277487993240356, 0.03564810752868652, -0.011554515920579433, -0.007017574738711119, -0.005797295365482569, -0.03893376141786575, 0.05861758068203926, -0.07164617627859116, -0.02229197509586811, 0.03876981511712074, 0.0022578344214707613, -0.0010349754011258483, -0.018090786412358284, -0.0681324154138565, 0.048213228583335876, 0.03478799760341644, -0.0443003848195076, -0.014218524098396301, -0.03321918100118637, 0.0420113168656826, -0.004223237279802561, 0.042752958834171295, -0.017103981226682663, -0.01004413329064846, 0.06032966822385788, 0.008026935160160065, 0.006496542599052191, 0.05022282153367996, 0.0029331513214856386, 0.04747478663921356, 0.030100395902991295, 0.006569220218807459, -0.005542885046452284, 0.03334009274840355, 0.007255725096911192, -0.05000023543834686, 0.04439448192715645, 0.027258330956101418, -0.03552119806408882, -0.01472740899771452, 0.05847248062491417, 0.02419164404273033, -0.025592898949980736, -0.046523015946149826, 0.01910611428320408, -0.08488885313272476, 0.002487019170075655, -0.012958780862390995, -0.009230698458850384, -0.04608255252242088, 0.046856313943862915, -0.002437066752463579, -0.006877745036035776, 0.06660338491201401, 0.02256128564476967, -0.0231526680290699, -0.015868406742811203, 0.0854208692908287, 0.057909734547138214, 0.06712553650140762, -0.0012495891423895955, 0.06223595514893532, -0.018096759915351868, -0.03716200217604637, 0.010468623600900173, -0.013361640274524689, -0.028205569833517075, -0.02781902439892292, 0.02098824456334114, 0.046840861439704895, -0.0008495748043060303, 0.0782194510102272, -0.0017566069727763534, 0.007485233712941408, 0.009236138314008713, 0.035096172243356705, 0.020773977041244507, 0.08268752694129944, 0.02083464339375496, -0.000020780658815056086, -0.010698762722313404, -0.036281708627939224, 0.017508717253804207, -0.05908554792404175, -0.009747650474309921, 0.026443753391504288, 0.009408430196344852, 0.03194921091198921, 0.01059250719845295, 0.032891370356082916, 0.08292686939239502, -0.03536953404545784, -0.011458559893071651, -0.014084593392908573, 0.03944588825106621, -0.005767844617366791, 0.017768247053027153, -0.02119830623269081, -0.015715258195996284, 0.001803379156626761, -0.028482943773269653, -0.006405567284673452, -0.022014565765857697, -0.03195841982960701, 0.05105185881257057, -0.036607321351766586, -0.002781394636258483, 0.027301395311951637, 0.0037806101609021425, -0.044136445969343185, -0.05125650390982628, -0.032776642590761185, -0.06186865642666817, -0.044622909277677536, -0.03275737538933754, 0.029841426759958267, 0.0072385151870548725, -0.032276928424835205, -0.010409851558506489, -0.019376741722226143, -0.006154268980026245, 0.05502518638968468, -0.03632257506251335, -0.03159283846616745, 0.021717984229326248, 0.03693078085780144, 0.036539189517498016, 0.016346966847777367, 0.03806189075112343, 0.003724857699126005, -0.011998697184026241, -0.01578701287508011, -0.004476737231016159, 0.030002115294337273, -0.003385026939213276, 0.0026968696620315313, -0.07846921682357788, 0.033404380083084106, 0.016917383298277855, 0.0006329931202344596, -0.06788736581802368, 0.010637953877449036, 0.004257751628756523, -0.029899675399065018, 0.043379444628953934, -0.05041952803730965, 0.011686358600854874, -0.03896892070770264, -0.01446494646370411, -0.020141616463661194, 0.03361532464623451, 0.04369887709617615, -0.0016045350348576903, 0.09133082628250122, -0.00333739654161036, -0.0007232904899865389, -0.03801942989230156, 0.003957075532525778, -0.014429480768740177, -0.013674614019691944, -0.028035761788487434, -0.019718961790204048, -0.021683376282453537, -0.06655294448137283, -0.04395460709929466, 0.0009152455604635179, -0.03413243219256401, -0.04036973789334297, 0.01827155239880085, 0.033833038061857224, -0.04256715252995491, 0.025693144649267197, -0.05109386146068573, 0.037106648087501526, -0.017786746844649315, 0.011737439781427383, 0.0000855990219861269, 0.001987832598388195, 0.007449416443705559, -0.015567740425467491, 0.015828268602490425, -0.0273654256016016, -0.0014053287450224161, 0.01270264107733965, 0.03888228163123131, 0.020278990268707275, 0.012960738502442837, 0.01034167967736721 ]
[ -0.0815138965845108, -0.006946254521608353, -0.05553751066327095, -0.04201154410839081, 0.03509384021162987, -0.04787071421742439, -0.03823789954185486, 0.012693392112851143, 0.026592791080474854, -0.05703945457935333, -0.014346906915307045, -0.02000640705227852, -0.0016232894267886877, -0.0210072360932827, 0.12088533490896225, 0.0014723623171448708, -0.024564126506447792, -0.047180626541376114, -0.014970607124269009, 0.020516663789749146, -0.020857013761997223, -0.05088509991765022, -0.0448143295943737, -0.051028162240982056, -0.003796541364863515, 0.030612431466579437, 0.03977752476930618, -0.051098939031362534, 0.03082890436053276, -0.19886843860149384, 0.021825578063726425, 0.003944931551814079, 0.02983340248465538, -0.031436093151569366, -0.0016107020201161504, 0.04722033813595772, 0.048641908913850784, 0.0043836068361997604, -0.0075047616846859455, 0.0286845862865448, 0.023047294467687607, 0.01308901235461235, -0.05758959427475929, -0.04292670264840126, 0.032677292823791504, 0.015424293465912342, -0.008986675180494785, -0.039431191980838776, -0.039023902267217636, 0.027030857279896736, -0.019807923585176468, -0.06639976054430008, -0.04050515592098236, -0.024959560483694077, -0.002316018333658576, 0.08604121208190918, -0.0033283752854913473, 0.05487809702754021, -0.02138388901948929, 0.05333593115210533, 0.014833558350801468, -0.02053452841937542, -0.1271718293428421, 0.09294960647821426, 0.030586915090680122, 0.05164894834160805, -0.061873242259025574, -0.019201278686523438, -0.018841717392206192, 0.10679629445075989, 0.0087212473154068, -0.017177853733301163, -0.023905806243419647, 0.03806765750050545, 0.018305901437997818, 0.009301534853875637, 0.0003836506512016058, 0.011255036108195782, 0.042175713926553726, -0.025260059162974358, -0.02967524528503418, -0.029563255608081818, -0.0059431977570056915, 0.011828269809484482, -0.042906928807497025, 0.01878499612212181, 0.009704810567200184, 0.04540376737713814, 0.025658797472715378, 0.006246121600270271, 0.055165696889162064, -0.030792975798249245, 0.039339445531368256, -0.03596221283078194, -0.07875942438840866, -0.00760492542758584, 0.01666622795164585, 0.009379295632243156, -0.022933479398489, 0.43079257011413574, -0.07427883893251419, -0.014426181092858315, 0.11061108857393265, 0.00066505087306723, -0.01057786401361227, -0.011892575770616531, 0.018477393314242363, -0.02626338042318821, 0.04628168046474457, -0.04069633409380913, -0.0006592011777684093, -0.008731306530535221, 0.02240060456097126, -0.04063030704855919, 0.01671319082379341, 0.03332846611738205, -0.006517865229398012, 0.008490566164255142, 0.03988466039299965, -0.00915155652910471, 0.016182957217097282, 0.011657778173685074, 0.02530505508184433, 0.022236963734030724, 0.00602370360866189, 0.012016872875392437, 0.05350448936223984, 0.05014197900891304, 0.028654616326093674, 0.03742431849241257, 0.064912810921669, -0.030412381514906883, -0.015638504177331924, -0.02865857072174549, -0.04282371699810028, 0.010731118731200695, 0.03153828904032707, -0.011654995381832123, 0.0036301156505942345, 0.05277691036462784, 0.008940743282437325, -0.017333587631583214, 0.04350927472114563, -0.010879823938012123, 0.012004323303699493, 0.10900124162435532, 0.005208761431276798, -0.037254370748996735, -0.021836983039975166, -0.035111524164676666, 0.001455886522307992, 0.047245707362890244, 0.008888821117579937, -0.054595571011304855, 0.01381295919418335, 0.023411115631461143, 0.05088762566447258, -0.03928752243518829, -0.0579562671482563, 0.028167294338345528, -0.02102738618850708, -0.03409450501203537, -0.06386575847864151, 0.03760705143213272, 0.06688616424798965, -0.14390107989311218, -0.0008775288588367403, 0.014174118638038635, 0.045356519520282745, -0.06762262433767319, -0.03261065110564232, -0.001266611274331808, -0.01727455109357834, -0.02249833010137081, 0.05066874995827675, -0.02381063438951969, -0.061234284192323685, 0.018580837175250053, 0.05265660211443901, 0.009032299742102623, 0.019859302788972855, 0.028064033016562462, -0.06080901250243187, 0.00649224640801549, -0.05962591618299484, -0.08894484490156174, -0.011229053139686584, -0.014476330950856209, -0.043618373572826385, -0.002613247372210026, -0.010951624251902103, -0.01792946085333824, -0.047259505838155746, 0.07710199803113937, 0.01545745600014925, -0.004517460707575083, 0.017658060416579247, -0.05244792625308037, -0.04373551160097122, 0.003251483431085944, 0.0010642621200531721, 0.040423911064863205, -0.012420983985066414, 0.024617940187454224, -0.05457162484526634, 0.05309382081031799, 0.04388171806931496, -0.034228380769491196, 0.07270107418298721, 0.032826025038957596, -0.02994835190474987, -0.027345336973667145, 0.03542592376470566, 0.016705958172678947, 0.023303423076868057, -0.03822634741663933, -0.01813238486647606, 0.05001252889633179, -0.0076633295975625515, 0.054122500121593475, -0.010350563563406467, 0.015453406609594822, 0.0232110433280468, -0.33288219571113586, -0.022757600992918015, -0.01128507498651743, -0.010844910517334938, 0.010997921228408813, -0.044168807566165924, 0.007827726192772388, -0.007784686051309109, -0.06681182235479355, 0.019939888268709183, 0.11210783571004868, 0.005236084572970867, 0.003203081665560603, -0.08288797736167908, -0.02453487366437912, 0.03504529967904091, 0.005882713012397289, -0.022298263385891914, -0.02382505126297474, 0.01289161667227745, -0.013796143233776093, -0.0006880420260131359, -0.032075636088848114, -0.05024413391947746, 0.022127367556095123, -0.02748386189341545, 0.10768266022205353, 0.0011801618384197354, 0.0885683000087738, -0.053327526897192, 0.02432391420006752, 0.015535994432866573, 0.026401223614811897, -0.09251432865858078, 0.007683524861931801, -0.009315384551882744, 0.05493265017867088, -0.06543595343828201, 0.027592821046710014, -0.02148369885981083, -0.04869237542152405, -0.013101908378303051, -0.04111988842487335, -0.06161137670278549, -0.07182642817497253, 0.002247784985229373, -0.028522653505206108, -0.04304032772779465, -0.046932294964790344, 0.06363855302333832, -0.0002064422151306644, 0.01476928498595953, 0.0154384421184659, 0.026047635823488235, -0.026011480018496513, -0.005009798798710108, -0.06843345612287521, -0.004893132019788027, 0.011775103397667408, -0.004930668510496616, 0.03680846095085144, 0.05473095178604126, 0.03224016726016998, -0.061362069100141525, 0.019458914175629616, 0.02602960169315338, 0.025572309270501137, -0.006855969317257404, 0.0689624473452568, -0.014026344753801823, -0.027449926361441612, 0.07136458903551102, 0.010720934718847275, 0.008870227262377739, 0.009195706807076931, 0.007879815995693207, -0.029133280739188194, 0.03014545515179634, 0.03752162307500839, 0.01281018927693367, 0.04607635363936424, -0.03201017901301384, 0.010807436890900135, -0.03615451231598854, 0.0015517909778282046, 0.006403383798897266, 0.011451509781181812, -0.04100631922483444, 0.01982155628502369, 0.0033576306886970997, -0.03345470502972603, -0.006414424628019333, -0.007791018113493919, -0.05397437885403633, 0.06458896398544312, -0.005256020464003086, -0.25211402773857117, -0.007485619280487299, 0.06306253373622894, 0.038169242441654205, -0.0275340024381876, 0.03916565328836441, 0.022256242111325264, -0.05497170612215996, -0.021866219118237495, -0.013525065034627914, 0.016859397292137146, 0.02605346217751503, -0.01664661057293415, -0.0015951677924022079, 0.04910827428102493, 0.005876217503100634, 0.0460648238658905, -0.00889525655657053, 0.0030703784432262182, -0.024146098643541336, 0.02544075809419155, -0.019647007808089256, 0.1779743731021881, 0.004733719397336245, 0.03583073988556862, 0.034531302750110626, -0.02364332228899002, 0.012736308388411999, 0.07602175325155258, 0.005735527258366346, -0.016853634268045425, 0.018257619813084602, 0.03395233675837517, -0.010783020406961441, 0.009908704087138176, -0.04286278784275055, -0.044388171285390854, 0.029528316110372543, 0.03783883526921272, 0.019690554589033127, 0.012569000944495201, 0.005647828336805105, 0.006190702319145203, 0.01662616804242134, 0.04618493840098381, -0.024524971842765808, 0.012630168348550797, -0.010335749946534634, -0.055169954895973206, -0.03723209351301193, -0.049630019813776016, -0.03166123107075691, 0.027359670028090477, -0.0043015130795538425, -0.008617782965302467, 0.05487121269106865, 0.019935740157961845, -0.008068501017987728, -0.008892075158655643, 0.0319066196680069, -0.00019114543101750314, -0.0031935523729771376, 0.07716228067874908, 0.041215572506189346, 0.04674727842211723 ]
[ -0.026869485154747963, -0.017346689477562904, 0.006942822132259607, -0.0028864420019090176, 0.01974511705338955, 0.007673457730561495, -0.008476884104311466, 0.011306130327284336, 0.005092443432658911, -0.01717749796807766, -0.0434284508228302, 0.03986947238445282, 0.009651978500187397, -0.03773121535778046, 0.03171267360448837, -0.014846875332295895, -0.020029950886964798, -0.010792347602546215, 0.02989804558455944, 0.016703838482499123, -0.02188768796622753, 0.009024597704410553, 0.005956408567726612, -0.03255849704146385, -0.01467953808605671, -0.0003645873803179711, -0.022923482581973076, -0.023535121232271194, 0.0391446016728878, -0.1277553141117096, 0.0006414674571715295, -0.03406406566500664, -0.01916339062154293, 0.005768233444541693, -0.02831083908677101, 0.0016002242919057608, 0.0016367733478546143, -0.02995150536298752, -0.01716020330786705, -0.00826888345181942, -0.03600810840725899, -0.02074567601084709, 0.002775008324533701, -0.00534601928666234, -0.011374208144843578, -0.02476349100470543, -0.034511927515268326, -0.03752150386571884, -0.02942275069653988, -0.004104189109057188, -0.022826364263892174, -0.00128884706646204, -0.01072045136243105, -0.009578417986631393, -0.01723461039364338, 0.003848633263260126, 0.004258994944393635, -0.024780016392469406, 0.004160142038017511, 0.022891314700245857, 0.005385775119066238, -0.007748631294816732, -0.03415733203291893, -0.020349914208054543, -0.007159233093261719, -0.038016609847545624, 0.013283934444189072, 0.012340212240815163, -0.027462154626846313, 0.013508000411093235, -0.059346649795770645, 0.03220994025468826, -0.03904289752244949, -0.006265248171985149, 0.022182544693350792, 0.019905393943190575, -0.00703929690644145, -0.0033395118080079556, 0.013447856530547142, -0.04721572622656822, -0.027422429993748665, 0.007909522391855717, 0.010083734057843685, 0.02998647838830948, -0.007129926700145006, 0.017039760947227478, 0.02739347703754902, -0.0012545149074867368, -0.005534139461815357, -0.02301170863211155, -0.021169325336813927, 0.020387819036841393, 0.007428154349327087, 0.039118289947509766, -0.09548624604940414, -0.0020502463448792696, -0.00023945320572238415, 0.007236483972519636, -0.023328784853219986, 0.8459486961364746, -0.042061831802129745, -0.002889683935791254, 0.06144917756319046, 0.010090661235153675, 0.013790281489491463, -0.0009604680235497653, 0.00203254958614707, 0.03723377361893654, 0.038983263075351715, -0.055506378412246704, -0.0023245257325470448, 0.009464485570788383, -0.0015062785241752863, 0.010475424118340015, 0.00997247826308012, 0.012965369038283825, 0.02623686194419861, -0.020999472588300705, 0.01130293682217598, 0.0006780631374567747, 0.0431075394153595, 0.006311518140137196, 0.013689144514501095, -0.0017450007144361734, 0.02427276223897934, -0.17819508910179138, 0.051191624253988266, -7.695176872354342e-33, 0.08286542445421219, 0.010277741588652134, -0.018998824059963226, -0.007499799132347107, 0.021017108112573624, 0.032524749636650085, 0.023487897589802742, 0.019313959404826164, -0.04155302792787552, -0.024428049102425575, 0.0192817822098732, -0.010141344740986824, 0.01697687804698944, -0.02753385715186596, 0.025539709255099297, -0.04450743645429611, 0.02064574509859085, 0.039859432727098465, 0.022296961396932602, -0.00971938855946064, 0.05716720595955849, 0.04103012755513191, 0.012143470346927643, 0.012946982868015766, -0.004668984096497297, 0.01569683849811554, -0.01244825217872858, 0.05692411586642265, -0.027478959411382675, -0.04130290821194649, -0.012860937044024467, 0.024998780339956284, -0.008331882767379284, 0.007426389958709478, 0.004730393644422293, -0.020267730578780174, -0.014326640404760838, -0.008516604080796242, -0.012164602056145668, 0.010625973343849182, -0.018353264778852463, -0.002353863324970007, -0.036066800355911255, -0.0038658136036247015, -0.008666683919727802, -0.04314448684453964, -0.010614882223308086, 0.00264816009439528, 0.025700706988573074, -0.0054346006363630295, -0.00582282617688179, 0.023061497136950493, -0.004399061668664217, 0.014259264804422855, -0.03869544342160225, 0.04293566197156906, -0.01515427976846695, 0.0008137034019455314, 0.013648130930960178, 0.019613340497016907, 0.030383970588445663, -0.003318211529403925, -0.02213205024600029, 0.004096330143511295, -0.015280288644134998, -0.036709096282720566, 0.048708509653806686, 0.012086319737136364, 0.037725601345300674, -0.022572249174118042, -0.046103060245513916, 0.026866735890507698, 0.018738802522420883, 0.0017340562772005796, 0.024624379351735115, -0.0034648363944143057, -0.008822798728942871, 0.007410785648971796, 0.029007788747549057, 0.022699475288391113, 0.01014094427227974, -0.0011218913132324815, -0.015639709308743477, -0.003924315329641104, -0.009211697615683079, -0.012343930080533028, -0.009874326176941395, -0.01676754839718342, -0.0367395393550396, 0.028282450512051582, 0.03285825997591019, -0.003514000680297613, 0.023842670023441315, -0.04424894228577614, 0.010257155634462833, 7.536021549408728e-33, -0.0022232900373637676, 0.015860924497246742, -0.016282550990581512, 0.046000152826309204, 0.049146562814712524, -0.012440232560038567, 0.048996999859809875, -0.006529485806822777, -0.06294207274913788, 0.025929441675543785, 0.013836891390383244, 0.0021128584630787373, -0.009579712525010109, -0.008638286963105202, 0.03563428297638893, 0.006161474622786045, 0.013692254200577736, -0.06054594740271568, 0.03108687698841095, 0.008523247204720974, 0.0260334350168705, -0.007105898577719927, 0.006021571345627308, 0.005518523510545492, 0.030931100249290466, 0.03048950992524624, -0.014655735343694687, -0.004396257922053337, -0.01502448134124279, -0.02041657082736492, -0.012917430140078068, -0.0012126140063628554, 0.024298587813973427, -0.015591085888445377, 0.01142967026680708, 0.005147142801433802, -0.036817800253629684, -0.008770140819251537, 0.05008257180452347, -0.028727039694786072, 0.03486202657222748, -0.008950319141149521, 0.022653596475720406, 0.023015649989247322, 0.04744021221995354, 0.017586294561624527, -0.019337492063641548, -0.02417798899114132, -0.012111004441976547, 0.019162693992257118, 0.017768364399671555, 0.04104917496442795, -0.02782493457198143, -0.022619906812906265, -0.02102164924144745, -0.038478925824165344, -0.019318729639053345, 0.029253510758280754, -0.023908181115984917, 0.045340463519096375, 0.010860627517104149, 0.004191831219941378, -0.01265685260295868, 0.027761146426200867, -0.008707397617399693, 0.0033801631070673466, -0.05275082588195801, 0.005397360306233168, 0.011699902825057507, 0.0033899531699717045, 0.0002614894474390894, -0.007240772247314453, -0.003051670268177986, 0.021481191739439964, 0.024406736716628075, -0.05503060296177864, -0.02426197938621044, -0.02835199423134327, -0.009604320861399174, 0.04323890805244446, -0.011012503877282143, 0.025643058121204376, 0.014885308220982552, -0.015187478624284267, -0.014356871135532856, 0.037347253412008286, -0.02165582962334156, 0.02302032709121704, -0.0046974411234259605, -0.04722585901618004, -0.0314873605966568, -0.03842573240399361, -0.003343296004459262, -0.027366992086172104, 0.01391672808676958, -1.3188289571530731e-8, -0.030004698783159256, 0.029878882691264153, -0.029034985229372978, -0.014678197912871838, 0.024935651570558548, 0.0025279438123106956, -0.017644036561250687, 0.00222254591062665, -0.020937541499733925, -0.00046711016329936683, 0.02183995023369789, -0.008924346417188644, -0.0028301249258220196, 0.026178531348705292, 0.03713953495025635, -0.031756989657878876, 0.005606801249086857, -0.022203532978892326, 0.012537741102278233, 0.024383321404457092, 0.03204219415783882, 0.058104608207941055, 0.012100831605494022, 0.010366263799369335, 0.015668174251914024, -0.005837071221321821, 0.011526037938892841, -0.058010511100292206, -0.006912644952535629, -0.0022845130879431963, 0.0027191932313144207, -0.015809103846549988, -0.0607805997133255, 0.02475363202393055, -0.006800543516874313, -0.044333670288324356, 0.0034411128144711256, 0.02527485229074955, 0.007868596352636814, -0.006338902283459902, 0.04037921875715256, 0.014038600958883762, -0.007361066527664661, -0.018049778416752815, 0.0041994377970695496, 0.020991753786802292, -0.02257167547941208, -0.0044251056388020515, 0.009276027791202068, -0.06034201383590698, 0.0151294507086277, -0.00757121667265892, -0.004572232719510794, 0.014079267159104347, 0.032138679176568985, -0.018567251041531563, 0.006851221900433302, -0.0007715481915511191, -0.0015187537064775825, 0.010316713713109493, -0.0033558839932084084, 0.025691458955407143, -0.010488826781511307, -0.02941136248409748 ]
parallel-pair-programming
https://markhneedham.com/blog/2010/03/16/parallel-pair-programming
false
2010-03-28 20:02:10
Reading Code: underscore.js
[ "reading-code" ]
[ "Reading Code" ]
I've been spending a bit of time reading through the source code of http://documentcloud.github.com/underscore[underscore.js], a JavaScript library that provides lots of functional programming support which my colleague Dave Yeung pointed out to me after reading http://www.markhneedham.com/blog/2010/03/21/node-js-a-little-application-with-twitter-couchdb/[my post about building a small application with node.js]. I'm still getting used to the way that JavaScript libraries are written but these were some of the interesting things that I got from reading the code: * There are a couple of places in the code where the author has some *code which runs conditionally and this is achieved by including that expression on the right hand side of an '&&'*. For example on line 129 in the 'filter' function: ~~~javascript // Return all the elements that pass a truth test. // Delegates to JavaScript 1.6's native filter if available. _.filter = function(obj, iterator, context) { if (nativeFilter && obj.filter === nativeFilter) return obj.filter(iterator, context); var results = []; each(obj, function(value, index, list) { iterator.call(context, value, index, list) && results.push(value); }); return results; }; ~~~ I would probably have used an if statement to check the result from calling 'iterator' but this way is more concise and pretty neat. The same type of thing is done on line 150 in the 'every' function: ~~~javascript _.every = function(obj, iterator, context) { iterator = iterator || _.identity; if (nativeEvery && obj.every === nativeEvery) return obj.every(iterator, context); var result = true; each(obj, function(value, index, list) { if (!(result = result && iterator.call(context, value, index, list))) _.breakLoop(); }); return result; }; ~~~ The result is collected and the loop will also exit if the value of 'result' is ever false which is again a cool way to organise code. * It's also quite cool that you can *assign a value to a variable from within a conditional* - this isn't possible in any of the other languages that I've used previously as far as I'm aware. It's even more evident in the 'max' function: ~~~javascript _.max = function(obj, iterator, context) { if (!iterator && _.isArray(obj)) return Math.max.apply(Math, obj); var result = {computed : -Infinity}; each(obj, function(value, index, list) { var computed = iterator ? iterator.call(context, value, index, list) : value; computed >= result.computed && (result = {value : value, computed : computed}); }); return result.value; }; ~~~ 'result' is conditionally assigned on line 196 but only if the computed value is greater than the current computed value. Again an if statement is avoided. Another interesting thing about this function is that it specifically checks the type of the 'obj' passed in which reminded me about the http://blog.obiefernandez.com/content/2009/04/my-reasoned-response-about-scala-at-twitter.html[discussion around Twitter having those sorts of checks in their Ruby code around a year ago]. I guess that type of thing would be more prevalent in library code than in an application though. * I hadn't come across the *!! construct* which is used to turn a JavaScript expression into its boolean equivalent: ~~~javascript _.isArray = nativeIsArray || function(obj) { return !!(obj && obj.concat && obj.unshift && !obj.callee); }; ~~~ Without using '!!" the expression would return 'undefined' in the case that one of those functions on 'obj' was not set. '!!' forces the return value to be 'false'. * Another technique used in this code base is that of *dynamically adding methods to the prototype of an object*: ~~~javascript // Add all mutator Array functions to the wrapper. each(['pop', 'push', 'reverse', 'shift', 'sort', 'splice', 'unshift'], function(name) { var method = ArrayProto[name]; wrapper.prototype[name] = function() { method.apply(this._wrapped, arguments); return result(this._wrapped, this._chain); }; }); ~~~ This is quite a cool use of meta programming although it isn't initially obvious how those functions end up on the object unless you know what to look for. It does significantly reduce the code needed to add these functions to the 'wrapper' object's prototype, avoiding the 'http://www.ibm.com/developerworks/java/library/j-eaed9/index.html[same whitespace, different values]' problem that Neal Ford outlines in his article about harvesting idiomatic patterns in our code.
null
null
[ 0.002967649605125189, -0.03153587505221367, -0.012531545013189316, -0.00758330849930644, 0.05177058279514313, -0.0035085100680589676, 0.013930450193583965, 0.032334256917238235, -0.011182207614183426, -0.007004937157034874, -0.0013823971385136247, 0.01584387570619583, -0.08423135429620743, -0.012772292830049992, -0.008658229373395443, 0.048194244503974915, 0.10264690965414047, -0.01734027825295925, 0.03809930756688118, -0.01745031028985977, 0.008323772810399532, 0.08216506987810135, 0.001768839661963284, 0.0027895215898752213, 0.03453586995601654, 0.04469456523656845, 0.006050288677215576, -0.008446559309959412, -0.08495467156171799, 0.015109356492757797, 0.017092179507017136, 0.03932816907763481, -0.012427774257957935, -0.02733662538230419, -0.005908752791583538, -0.026987159624695778, 0.0064301746897399426, 0.017787685617804527, -0.024294715374708176, 0.057363081723451614, -0.04348141327500343, 0.012777728959918022, 0.02381078153848648, 0.028524765744805336, -0.04846597835421562, 0.02787798084318638, -0.035083044320344925, 0.015635911375284195, -0.01283224206417799, 0.01541223842650652, -0.03509347140789032, 0.006903787609189749, -0.01885974034667015, -0.008244357071816921, 0.020354293286800385, 0.04111333563923836, 0.00808043871074915, -0.0477156825363636, 0.006652457173913717, -0.03432011231780052, -0.008873386308550835, 0.0007326235063374043, 0.008114311844110489, 0.03011165000498295, 0.03978846222162247, 0.01554454118013382, -0.026282628998160362, 0.04270457476377487, -0.034537505358457565, -0.029521659016609192, 0.011035135947167873, 0.03212717920541763, -0.04274739697575569, 0.015087553299963474, 0.016598805785179138, -0.0308245662599802, -0.015837034210562706, 0.06078384071588516, 0.004736743867397308, 0.0520799458026886, -0.003855362767353654, 0.011249949224293232, 0.045410752296447754, 0.03465745970606804, 0.03181087598204613, -0.02442622371017933, -0.03945622965693474, -0.018831700086593628, -0.0227053165435791, 0.0317794606089592, 0.04771335422992706, -0.03925878554582596, 0.029507488012313843, 0.02686280570924282, 0.009282626211643219, 0.008138325996696949, 0.0023309115786105394, 0.009508498013019562, -0.008516406640410423, -0.009608414955437183, -0.03466353565454483, -0.03545339033007622, 0.02092849835753441, -0.04152223840355873, -0.06299126893281937, -0.006566556636244059, 0.004148508887737989, 0.009493574500083923, 0.0088981743901968, -0.013955329544842243, -0.01738007366657257, 0.037848956882953644, 0.008270546793937683, 0.00880228728055954, -0.08323009312152863, 0.06091443449258804, 0.0045865499414503574, -0.021555427461862564, -0.036984480917453766, 0.03287268057465553, 0.07964349538087845, 0.05324210971593857, 0.006172442343086004, 0.08124282956123352, -0.016994347795844078, 0.01943301036953926, 0.003093349514529109, 0.06693580001592636, 0.013176631182432175, -0.04891140013933182, -0.017609549686312675, 0.031853608787059784, -0.024694325402379036, -0.004083557520061731, -0.03293938189744949, -0.005186065100133419, -0.038850631564855576, 0.008248266763985157, 0.06373828649520874, 0.04535282775759697, -0.015330195426940918, -0.05334573984146118, 0.004848219454288483, -0.04289785027503967, 0.02362014539539814, 0.009818403981626034, -0.014957941137254238, -0.011007105931639671, 0.014966614544391632, 0.020301956683397293, 0.01198234036564827, 0.020760642364621162, 0.039401255548000336, -0.03993672505021095, 0.0025359548162668943, 0.09231216460466385, 0.0275382399559021, 0.009400568902492523, -0.01860341615974903, 0.00321216881275177, 0.03984450921416283, 0.039807483553886414, 0.010767330415546894, 0.05987962707877159, -0.018460014835000038, -0.0074388571083545685, 0.0006085179629735649, 0.08190242946147919, 0.018728766590356827, -0.03897158056497574, -0.04710250347852707, -0.054801035672426224, 0.056694794446229935, -0.030440498143434525, -0.006928461603820324, -0.011359650641679764, 0.0713549479842186, -0.018663134425878525, 0.04234076291322708, 0.007630831096321344, -0.06749839335680008, 0.037364620715379715, 0.010227326303720474, -0.006062291096895933, 0.018885362893342972, -0.0015327270375564694, 0.07093919068574905, 0.025513553991913795, -0.001293481094762683, 0.021139847114682198, -0.08294440805912018, -0.0765618085861206, -0.03993792459368706, -0.003019801340997219, 0.05355679616332054, -0.026855479925870895, -0.03885127231478691, 0.07301385700702667, 0.04481387510895729, 0.02217358723282814, 0.03086571767926216, -0.03994050621986389, 0.00957929901778698, -0.03559214249253273, -0.04676402732729912, 0.04746139422059059, 0.03448866680264473, -0.016277696937322617, -0.03313814848661423, 0.028125613927841187, -0.004088354296982288, -0.01778334751725197, 0.0458022840321064, -0.01440082024782896, 0.014919345267117023, 0.01574741303920746, 0.01913001388311386, -0.028593480587005615, 0.03479795157909393, -0.05192642658948898, 0.047978661954402924, -0.007784112822264433, -0.0019521499052643776, -0.005844248924404383, 0.016488660126924515, 0.1285405158996582, 0.03853496164083481, -0.0469302162528038, -0.06014057248830795, 0.029422609135508537, 0.0010311981895938516, -0.0564349964261055, -0.008794563822448254, -0.06052577123045921, -0.026626063510775566, 0.02480003423988819, 0.00004802725015906617, 0.018366370350122452, 0.020678384229540825, -0.018081609159708023, -0.011398064903914928, 0.057045336812734604, -0.05455422401428223, 0.05056885629892349, 0.012634309008717537, -0.023620910942554474, 0.01142682135105133, -0.031139984726905823, -0.052547648549079895, -0.007133196108043194, 0.02587597444653511, -0.018263202160596848, 0.033557575196027756, -0.019791685044765472, -0.0018939732108265162, -0.012211835943162441, -0.044020384550094604, 0.014582742936909199, 0.048662323504686356, 0.05548087880015373, -0.002432459034025669, 0.04822703078389168, -0.007490643300116062, -0.020307814702391624, -0.015083306469023228, -0.038750480860471725, -0.014362932182848454, -0.012190207839012146, 0.018848765641450882, 0.0336347259581089, 0.00234719505533576, 0.027279546484351158, 0.027513213455677032, -0.009735179133713245, -0.034177251160144806, -0.003515147604048252, 0.008439415134489536, 0.00378460343927145, -0.0427434965968132, -0.035685304552316666, -0.05760231241583824, 0.060222040861845016, -0.04646463319659233, -0.034248027950525284, -0.006273740436881781, -0.06323175132274628, 0.04700092971324921, -0.07085507363080978, -0.04321333020925522, -0.005556633695960045, 0.04241405799984932, 0.023992616683244705, -0.008879114873707294, 0.009280513040721416, 0.05441008508205414, 0.00290476786904037, 0.006333344615995884, 0.019755534827709198, -0.012064817361533642, 0.009639697149395943, -0.012274120934307575, 0.01555559877306223, 0.05557610094547272, 0.012286145240068436, -0.023299435153603554, -0.026239264756441116, 0.01781720109283924, -0.008101735264062881, -0.27053841948509216, 0.06289438158273697, -0.004386072978377342, -0.039117585867643356, 0.003510650945827365, -0.045828927308321, 0.0018544046906754375, -0.04500278830528259, 0.02678145281970501, 0.013759048655629158, -0.019308773800730705, 0.004171868786215782, -0.034013766795396805, 0.049211177974939346, -0.013270551338791847, -0.004243848845362663, -0.034898217767477036, -0.015577931888401508, -0.007517080754041672, 0.053998708724975586, -0.011157075874507427, -0.07998920232057571, 0.005216083489358425, 0.02148343250155449, 0.020653562620282173, 0.030381612479686737, -0.09240295737981796, 0.05458050221204758, -0.02613656595349312, -0.006571730598807335, 0.0044412510469555855, -0.008177662268280983, 0.029847199097275734, -0.026110628619790077, -0.01594664715230465, -0.012543575838208199, 0.03287088871002197, 0.026957537978887558, 0.020226648077368736, 0.04269309341907501, -0.04215488210320473, -0.030137524008750916, -0.003942950628697872, 0.00046420368016697466, 0.07189768552780151, -0.012903887778520584, -0.07729791849851608, -0.023933859542012215, -0.02954021282494068, 0.05483393743634224, -0.009552902542054653, -0.06753843277692795, -0.02241661213338375, 0.055584944784641266, -0.01495741680264473, -0.051858481019735336, -0.014094999060034752, -0.017107756808400154, -0.0567547045648098, -0.03279126435518265, -0.02222714200615883, -0.032329924404621124, -0.011499055661261082, -0.028856797143816948, -0.023414723575115204, -0.0490967258810997, -0.05112667381763458, -0.02326888032257557, 0.062377817928791046, 0.009955857880413532, -0.007238585036247969, 0.017663413658738136, -0.019018402323126793, -0.12036388367414474, -0.024453632533550262, -0.018046099692583084, -0.003948866855353117, -0.014310481958091259, 0.02135200798511505, 0.029374396428465843, -0.028359223157167435, -0.03898586705327034, 0.005509269889444113, 0.03277558833360672, 0.03262265771627426, -0.027274547144770622, -0.0032504629343748093, -0.0008928751922212541, -0.01918904297053814, -0.008850147016346455, 0.0861404538154602, -0.0018291217274963856, -0.029023809358477592, 0.0014344833325594664, 0.007588851265609264, 0.03972107544541359, 0.03464676812291145, -0.009525756351649761, 0.013918816111981869, 0.042023058980703354, 0.03903374820947647, -0.04570462927222252, 0.021024217829108238, -0.027570078149437904, -0.011350845918059349, 0.014987227506935596, -0.061165712773799896, 0.03465515375137329, 0.02634643204510212, 0.006905930582433939, -0.008577031083405018, -0.02109481766819954, 0.008403615094721317, -0.06562667340040207, 0.029915809631347656, -0.025271067395806313, -0.0007399626192636788, 0.0009529094095341861, 0.02975134365260601, -0.03670667111873627, -0.08683232963085175, 0.006266188342124224, 0.02081216126680374, -0.0049482425674796104, -0.060423534363508224, -0.05683434009552002, -0.018210629001259804, -0.002054827054962516, -0.00027764050173573196, 0.0030713865999132395, -0.00711106089875102, 0.0488034226000309, -0.008810651488602161, -0.0030413472559303045, 0.007282679434865713, -0.038965679705142975, -0.019229885190725327, -0.027390463277697563, -0.0007533765747211874, -0.006995203904807568, -0.009340506978332996, -0.0018411880591884255, 0.02881561778485775, 0.02252698317170143, 0.026791976764798164, 0.00645724032074213, 0.0006779182585887611, 0.03272208943963051, -0.006191931664943695, 0.00645024050027132, -0.005130188539624214, -0.056509748101234436, 0.008076089434325695, -0.019166775047779083, -0.04103725776076317, -0.03820118308067322, 0.03694752976298332, -0.025761602446436882, -0.03713127225637436, -0.04358920082449913, 0.04828740283846855, -0.040582075715065, -0.014597893692553043, -0.025271441787481308, -0.029737163335084915, 0.03775431588292122, -0.007292828056961298, 0.0493866503238678, -0.019183620810508728, -0.01670045033097267, 0.0016147064743563533, 0.014499214477837086, -0.003692271886393428, 0.01134839653968811, 0.0017687382642179728, 0.005648099351674318, -0.021432384848594666, 0.05874679610133171, -0.023474296554923058, 0.023225050419569016, 0.01907089166343212, -0.00852649100124836, 0.02252969890832901, 0.037731412798166275, 0.04487299546599388, -0.003838494187220931, -0.009628396481275558, -0.01189930085092783, -0.020103298127651215, -0.017437193542718887, -0.04002319276332855, 0.023714667186141014, -0.001353256986476481, -0.0050845216028392315, -0.04261096939444542, -0.08465426415205002, 0.020004048943519592, 0.04119009152054787, -0.010387871414422989, 0.0067758639343082905, -0.012793171219527721, 0.014367997646331787, -0.029400525614619255, -0.0048569561913609505, 0.0480705127120018, -0.061840400099754333, 0.009600185789167881, -0.01349205058068037, 0.02624659426510334, 0.04766606166958809, 0.03293399140238762, -0.09445774555206299, 0.005274843890219927, -0.026509491726756096, -0.01243814080953598, -0.006064454559236765, -0.042779676616191864, -0.0037999707274138927, 0.028439931571483612, -0.028748417273163795, -0.00020994755323044956, 0.0001197060410049744, -0.0011044442653656006, -0.024195263162255287, -0.01658780314028263, 0.011285212822258472, -0.03790590912103653, -0.004484842531383038, 0.005547525826841593, -0.057317476719617844, 0.018872328102588654, -0.0071212188340723515, 0.02802463434636593, 0.02875182032585144, -0.012302948161959648, 0.01662568189203739, -0.06060388684272766, 0.00748352101072669, -0.010285718366503716, 0.05747617036104202, -0.006532159633934498, -0.03504001349210739, -0.033412616699934006, 0.0075453706085681915, -0.044435981661081314, 0.021515710279345512, -0.03803641349077225, -0.02256002649664879, -0.006178901996463537, 0.055954333394765854, 0.010859995149075985, 0.04106135293841362, 0.0005000918754376471, -0.0033815044444054365, 0.06697991490364075, -0.06197849288582802, -0.022386103868484497, -0.033173900097608566, -0.05461696907877922, 0.008319653570652008, 0.013618091121315956, 0.03300775960087776, -0.0455755852162838, 0.044912658631801605, 0.03237877041101456, 0.02019229531288147, 0.023709744215011597, -0.011804978363215923, 0.051325615495443344, -0.014305826276540756, 0.007930926978588104, -0.11305917054414749, 0.013553865253925323, 0.022192396223545074, 0.009888458997011185, -0.02641870826482773, -0.025090210139751434, -0.011329569853842258, 0.03226618468761444, -0.06887414306402206, -0.02864694781601429, 0.032940011471509933, 0.008052455261349678, 0.013962879776954651, -0.008552007377147675, -0.054610881954431534, 0.029843023046851158, 0.04800961911678314, -0.028387095779180527, -0.02137104421854019, -0.04566178843379021, 0.036911044269800186, -0.005642844829708338, 0.00799794401973486, -0.001665754010900855, 0.00007266030297614634, 0.0797497034072876, 0.05685095489025116, 0.01601579040288925, 0.05023279786109924, -0.03777202218770981, 0.036248937249183655, 0.04247308149933815, -0.00640513701364398, 0.000189569967915304, 0.03966059163212776, 0.004895328544080257, -0.037404414266347885, -0.0004714216629508883, -0.006304893177002668, -0.06275106966495514, -0.04243064299225807, 0.06446795165538788, -0.005214529577642679, -0.026270713657140732, -0.030568180605769157, -0.013256104663014412, -0.058771926909685135, -0.009039409458637238, -0.031914666295051575, 0.006702013313770294, -0.03648743778467178, 0.05445925518870354, -0.009300833567976952, -0.0024056467227637768, 0.08282221108675003, 0.006063468754291534, 0.0022432918194681406, -0.00171552540268749, 0.0948977991938591, 0.10320436954498291, 0.04348015785217285, -0.027266336604952812, 0.05684793367981911, -0.027773849666118622, -0.04285811260342598, -0.01957128755748272, -0.05238882824778557, -0.011821660213172436, -0.026264742016792297, 0.04036732017993927, 0.10062307119369507, -0.011535489931702614, 0.0748683363199234, -0.04331386834383011, 0.01198175735771656, 0.01485578715801239, 0.03386669233441353, 0.015141062438488007, 0.07524462789297104, 0.008647948503494263, 0.026413291692733765, -0.01872415654361248, -0.020982244983315468, 0.03716527298092842, -0.024016141891479492, -0.013851412571966648, 0.007806401699781418, 0.031465254724025726, -0.0027075426187366247, 0.01708856225013733, 0.04237091913819313, 0.05968930199742317, -0.014087611809372902, -0.014963146299123764, 0.0010523179080337286, 0.03961985185742378, 0.01634323224425316, 0.0008399236830882728, -0.009889742359519005, -0.02496226876974106, 0.012075953185558319, -0.012863769195973873, -0.029840823262929916, -0.02354232221841812, -0.025289900600910187, 0.037629809230566025, -0.03151046484708786, 0.02379688248038292, -0.013417196460068226, -0.00022011036344338208, -0.006285770330578089, -0.02546539343893528, -0.03243999555706978, -0.061638083308935165, -0.076706163585186, -0.030034124851226807, 0.017626548185944557, -0.011936155147850513, -0.030295541509985924, -0.0230566319078207, 0.000214371393667534, 0.0010270043276250362, 0.0416291281580925, -0.04446245729923248, -0.011941536329686642, 0.0011764983646571636, 0.019651997834444046, 0.04538964480161667, 0.017894331365823746, 0.030717764049768448, -0.018861306831240654, -0.005018971394747496, -0.02343338541686535, 0.011855952441692352, 0.049299027770757675, 0.004891782067716122, 0.0024573199916630983, -0.07964406907558441, 0.012177489697933197, 0.014272904023528099, 0.0020547944586724043, -0.07153677195310593, -0.007228773552924395, 0.010023082606494427, -0.019628742709755898, 0.05247469246387482, -0.01902996376156807, 0.0010765492916107178, -0.03427831828594208, -0.014724064618349075, 0.03019006736576557, 0.02240064926445484, 0.03672211989760399, -0.016890836879611015, 0.09783179312944412, 0.013193130493164062, 0.01254941988736391, -0.033533573150634766, -0.0040607815608382225, -0.020470470190048218, -0.020947156473994255, -0.05512820556759834, -0.0018133027479052544, -0.03573137894272804, -0.05529501289129257, -0.017221488058567047, 0.007681211456656456, -0.02103791944682598, -0.0386238731443882, 0.010652688331902027, 0.04191301763057709, -0.05300907790660858, 0.06483237445354462, -0.030003143474459648, 0.06666949391365051, -0.004546174313873053, -0.020171256735920906, 0.03352104499936104, -0.008732282556593418, 0.0006540053873322904, 0.026597823947668076, 0.020488984882831573, -0.011271260678768158, -0.05035047233104706, -0.025890914723277092, 0.024280035868287086, 0.061476465314626694, -0.011840269900858402, 0.006922882981598377 ]
[ -0.07504875212907791, -0.020821964368224144, -0.03919682651758194, -0.031914956867694855, 0.052794646471738815, -0.06899743527173996, 0.0038720208685845137, 0.03575510159134865, -0.0030632971320301294, -0.007097176276147366, -0.026805412024259567, -0.0164509117603302, -0.03230160102248192, -0.022112494334578514, 0.07401174306869507, 0.009705055505037308, -0.01649477332830429, -0.04713577404618263, -0.0331924706697464, 0.018272744491696358, 0.037635982036590576, -0.002679466037079692, -0.04709973186254501, -0.050826702266931534, 0.012112719006836414, 0.03270893916487694, 0.028545532375574112, -0.038043539971113205, 0.03562416136264801, -0.1933506578207016, -0.009611991234123707, -0.03005668893456459, 0.04452376440167427, -0.02021811157464981, -0.009484524838626385, 0.02301672101020813, 0.037020739167928696, -0.006648751441389322, -0.012544323690235615, 0.06119540333747864, 0.00009340869291918352, 0.025343263521790504, -0.06307659298181534, -0.026812896132469177, 0.06276773661375046, -0.013688398525118828, -0.04140074923634529, -0.05358424782752991, -0.06644090265035629, 0.01029258780181408, -0.08481743931770325, -0.010559105314314365, -0.0029995625372976065, -0.050462834537029266, 0.014755954965949059, 0.04342400282621384, 0.011151301674544811, 0.09770543873310089, 0.02049010433256626, 0.04323210567235947, 0.01930709183216095, -0.023500777781009674, -0.11041833460330963, 0.10800077021121979, 0.030351879075169563, 0.06844841688871384, -0.05314076691865921, -0.03224034607410431, -0.02858898788690567, 0.08480352908372879, 0.04695483669638634, -0.00029819124029017985, 0.0048800986260175705, 0.06138300895690918, 0.004628406837582588, -0.01030020322650671, 0.01477162167429924, 0.005120772868394852, 0.04418370500206947, -0.028379371389746666, -0.028965365141630173, -0.029975073412060738, 0.012471367605030537, -0.019443931058049202, -0.00817467737942934, 0.015315232798457146, -0.039763957262039185, 0.039307478815317154, 0.015450538136065006, 0.04543391987681389, 0.014376147650182247, -0.009768548421561718, 0.04756574332714081, 0.016533097252249718, -0.09252806007862091, -0.007768511772155762, 0.018498055636882782, 0.0016937924083322287, -0.030572349205613136, 0.4424530863761902, -0.016081687062978745, 0.0052971444092690945, 0.055487215518951416, -0.0000609192720730789, -0.017886288464069366, -0.026431679725646973, -0.008700180798768997, -0.05538739264011383, 0.028468070551753044, -0.0330975279211998, -0.01987423747777939, -0.02048332616686821, 0.02472897619009018, -0.06901810318231583, 0.0012131292605772614, 0.01862325333058834, 0.03259844332933426, 0.021011825650930405, 0.026260435581207275, 0.022467659786343575, 0.008206157013773918, 0.02840171381831169, 0.0344616137444973, 0.015514721162617207, 0.030042920261621475, 0.018174419179558754, 0.027595531195402145, 0.046947285532951355, 0.03082873485982418, 0.043994877487421036, 0.05896696448326111, -0.00709611875936389, -0.07522858679294586, -0.003708468982949853, 0.013988210819661617, 0.01970883645117283, 0.015501809306442738, -0.027251575142145157, -0.0020161846186965704, 0.035014692693948746, -0.011719885282218456, -0.01777310110628605, 0.012186930514872074, 0.0001125603448599577, -0.0405469685792923, 0.08444629609584808, -0.008800195530056953, -0.0048666843213140965, -0.02256159484386444, -0.034618180245161057, 0.025662926957011223, 0.070024773478508, -0.021371586248278618, -0.04953373596072197, -0.005352089647203684, 0.0047218212857842445, 0.011370887979865074, -0.038636207580566406, -0.050526224076747894, -0.02552458457648754, -0.038859039545059204, 0.008402237668633461, -0.02214406616985798, 0.026686398312449455, 0.022061044350266457, -0.09563139826059341, -0.023597007617354393, 0.03266163170337677, 0.029655640944838524, -0.10879191756248474, -0.016157113015651703, 0.014121394604444504, -0.05267640948295593, -0.042592164129018784, 0.037133682519197464, -0.021184979006648064, -0.03209637850522995, 0.0029723886400461197, 0.051311660557985306, 0.0029707264620810747, 0.007972316816449165, -0.004409521818161011, -0.027440043166279793, 0.012258770875632763, -0.02543175220489502, -0.05706107243895531, -0.02899840660393238, -0.009574794210493565, -0.015477857552468777, 0.03119875304400921, -0.020675519481301308, -0.025807680562138557, -0.05488920211791992, 0.03629714250564575, -0.0370788611471653, -0.01529152411967516, 0.009306584484875202, -0.023705800995230675, 0.00011122624709969386, -0.004986830987036228, 0.03588011860847473, 0.021480973809957504, 0.00917084515094757, 0.05868181213736534, -0.053441427648067474, 0.04436308145523071, 0.06550311297178268, -0.046178046613931656, 0.06991343945264816, 0.029065655544400215, -0.054537221789360046, -0.008830427192151546, 0.012087876908481121, 0.013827522285282612, 0.014437242411077023, -0.0676417425274849, -0.012820935808122158, 0.023859739303588867, 0.010188546031713486, 0.022636741399765015, -0.054115697741508484, -0.031667761504650116, -0.012497050687670708, -0.3294200897216797, -0.02412843331694603, -0.002150201238691807, 0.020767606794834137, 0.019271081313490868, -0.05708054453134537, -0.00607822323217988, -0.03439066559076309, -0.03887966275215149, 0.02348279021680355, 0.09111352264881134, -0.025679897516965866, 0.01599268987774849, -0.07729369401931763, -0.014640376903116703, 0.0405779667198658, -0.00566835468634963, -0.07168640196323395, -0.0037687188014388084, 0.02285277284681797, -0.008182353340089321, -0.006953347474336624, -0.010608521290123463, -0.0778408870100975, -0.025815000757575035, -0.05759400129318237, 0.09803039580583572, 0.0010864242212846875, 0.07183525711297989, -0.04250987619161606, 0.04138551279902458, -0.02099560759961605, 0.02963707037270069, -0.06580882519483566, -0.009253673255443573, -0.01673184707760811, -0.02381223626434803, 0.00072382518555969, 0.030025752261281013, -0.01047489047050476, -0.02970144897699356, 0.021427219733595848, -0.04507995396852493, -0.024498621001839638, -0.030592268332839012, 0.007872714661061764, -0.04192206636071205, -0.02020070143043995, 0.00526172760874033, 0.04615946486592293, 0.006321093998849392, 0.005930398125201464, 0.031788170337677, 0.03004513308405876, -0.004349923226982355, -0.00891549326479435, -0.07558123022317886, -0.012280963361263275, -0.0013685546582564712, 0.01688281074166298, 0.030019300058484077, 0.03442152962088585, 0.012681128457188606, -0.03971550241112709, 0.0012362070847302675, 0.03424934297800064, 0.018550602719187737, -0.005421333480626345, 0.02884002774953842, -0.04563046991825104, -0.04641366004943848, 0.10505508631467819, 0.011123524978756905, 0.011650103144347668, 0.039542052894830704, 0.05323079228401184, 0.006070572882890701, 0.009868167340755463, 0.034391406923532486, 0.026419294998049736, 0.04286579787731171, 0.009004157967865467, 0.05457355082035065, -0.039041586220264435, -0.020450325682759285, 0.011679451912641525, -0.005830388981848955, -0.023419762030243874, 0.022909505292773247, 0.0018450472271069884, -0.04120294749736786, 0.020624766126275063, 0.005537346936762333, -0.08971308916807175, 0.04653431102633476, 0.001400493667460978, -0.2731674015522003, -0.013446224853396416, 0.06149597838521004, 0.042416077107191086, 0.006631103344261646, 0.021763870492577553, 0.02602994441986084, -0.06585656106472015, -0.008937335573136806, 0.013622674159705639, 0.002741066040471196, 0.04197822883725166, 0.006321431137621403, 0.0009908295469358563, 0.027193158864974976, -0.0005640584276989102, 0.041398677974939346, -0.005381998140364885, 0.025116179138422012, 0.0018846419407054782, 0.09351135045289993, 0.00651708897203207, 0.20793311297893524, -0.0033479994162917137, 0.022101731970906258, 0.04003463685512543, -0.007370433304458857, 0.01976441591978073, 0.09485144913196564, 0.014385414309799671, -0.008728348650038242, 0.02881850115954876, 0.05871356651186943, 0.013289209455251694, 0.014552904292941093, -0.07333297282457352, -0.030069265514612198, 0.059772126376628876, 0.017057625576853752, -0.04308493062853813, -0.015800368040800095, 0.01094896998256445, -0.033637311309576035, -0.0007240304839797318, 0.06309754401445389, -0.021838655695319176, -0.011328968219459057, -0.02988620661199093, -0.03764210641384125, 0.01357803400605917, -0.053145769983530045, -0.021319709718227386, 0.015015504322946072, -0.0330825001001358, 0.005450660362839699, 0.046730153262615204, 0.03393297269940376, -0.009968090802431107, -0.0405409075319767, -0.004661757033318281, -0.021438810974359512, -0.008081162348389626, 0.10276287794113159, 0.07242128998041153, 0.04591858759522438 ]
[ -0.016553176566958427, 0.028306784108281136, 0.0186083372682333, 0.02089344710111618, 0.031957074999809265, 0.008372188545763493, 0.012098126113414764, 0.01561370026320219, -0.013154128566384315, -0.01514329295605421, -0.05196819454431534, 0.023130793124437332, 0.0024945982731878757, -0.04275064915418625, 0.004477332346141338, 0.023282449692487717, -0.030870456248521805, -0.005530777387320995, 0.029312241822481155, -0.015012845396995544, -0.028852330520749092, 0.06112571060657501, 0.016627775505185127, -0.004728995263576508, -0.014864396303892136, 0.02074444480240345, -0.034240324050188065, -0.04896759241819382, 0.02482946775853634, -0.12605160474777222, 0.0009721384849399328, -0.04812584072351456, -0.006747191771864891, 0.035625066608190536, -0.04209328070282936, 0.03130427002906799, -0.022290075197815895, -0.01617499627172947, 0.0006284770788624883, 0.003927010111510754, -0.014297938905656338, 0.022203641012310982, -0.03813758119940758, 0.016516506671905518, 0.004486806690692902, -0.011110516265034676, -0.06133367121219635, -0.011961204931139946, -0.013105453923344612, 0.006722898688167334, -0.03890461102128029, -0.010349998250603676, -0.01458404678851366, 0.012426335364580154, 0.002856984967365861, -0.03622012957930565, -0.03645685315132141, -0.003907301463186741, 0.0072179497219622135, 0.021144786849617958, 0.02313726209104061, 0.007994936779141426, -0.02334120310842991, -0.004753008484840393, 0.03537534549832344, -0.023375850170850754, -0.007316273637115955, 0.0052604214288294315, 0.007929372601211071, 0.014340394176542759, -0.016745666041970253, 0.01891457475721836, -0.021493112668395042, -0.032401442527770996, -0.016431866213679314, -0.012734864838421345, -0.011163459159433842, -0.00099525460973382, 0.015992706641554832, 0.016844697296619415, -0.029917731881141663, -0.013109929859638214, -0.00461955601349473, 0.006419303826987743, -0.015281145460903645, 0.006499684415757656, -0.004699212498962879, 0.0015432751970365644, 0.0168729480355978, 0.0017855871701613069, -0.042772892862558365, -0.008574984036386013, 0.029030248522758484, 0.042193420231342316, -0.07945430278778076, 0.03637941554188728, 0.02069304697215557, -0.03508256375789642, -0.012449135072529316, 0.8465543389320374, -0.019317150115966797, 0.015310713090002537, 0.053631339222192764, -0.02051418088376522, -0.012402897700667381, -0.0389062836766243, -0.027292415499687195, -0.021994663402438164, -0.001808478613384068, -0.048501547425985336, 0.0032828482799232006, 0.04453981667757034, 0.03509284183382988, -0.008811543695628643, 0.010413995943963528, 0.025229550898075104, 0.053873952478170395, -0.040279705077409744, 0.05410937964916229, 0.03670884296298027, 0.027810553088784218, 0.006212739273905754, 0.02695492096245289, 0.032105736434459686, 0.03132547065615654, -0.16602018475532532, -0.01866397261619568, -7.826428898147313e-33, 0.03926308453083038, -0.044876184314489365, 0.013997022993862629, -0.001174094039015472, 0.0010605267016217113, -0.0023182923905551434, 0.014586707577109337, 0.015939582139253616, -0.0444844625890255, -0.014422770589590073, -0.004214284010231495, -0.014366775751113892, 0.020036231726408005, -0.0241539403796196, 0.031998395919799805, -0.016679123044013977, 0.019366545602679253, 0.03503428027033806, 0.013505018316209316, -0.015761513262987137, -0.002158081391826272, 0.018754148855805397, 0.020426955074071884, 0.04322606697678566, -0.01648310199379921, 0.018549229949712753, 0.030711576342582703, -0.0028174619656056166, -0.03045208379626274, -0.049047213047742844, -0.013951528817415237, 0.017073821276426315, -0.026370376348495483, -0.008223467506468296, 0.02040850557386875, -0.025950303301215172, -0.008184462785720825, 0.005015216302126646, 0.0009306141291745007, -0.005336882080882788, -0.026116440072655678, 0.004839340224862099, -0.03851446881890297, 0.007109967991709709, -0.013701537624001503, -0.0006101191393099725, -0.002557129133492708, 0.0001751831005094573, 0.02222757786512375, 0.025408077985048294, -0.008623344823718071, 0.030447503551840782, -0.018812960013747215, -0.009444682858884335, -0.027421902865171432, 0.03591794893145561, 0.02017795294523239, 0.025394199416041374, 0.004700641613453627, 0.03856242075562477, -0.020173268392682076, -0.02601749822497368, -0.01171050500124693, 0.012981755658984184, -0.03712888062000275, -0.03334501013159752, -0.006464846897870302, 0.019596679136157036, 0.0567610003054142, 0.016092853620648384, -0.04751155525445938, 0.039851926267147064, -0.0014093059580773115, -0.014533045701682568, -0.006904791574925184, -0.02934248372912407, -0.03571205213665962, -0.03864187002182007, -0.005605738610029221, 0.025819025933742523, 0.03932156786322594, -0.00855330377817154, 0.027644341811537743, -0.004823840223252773, 0.018622152507305145, 0.0038283492904156446, -0.016087191179394722, 0.010943987406790257, -0.0012561349431052804, 0.024169187992811203, 0.06807029992341995, 0.03238349407911301, 0.003126532072201371, -0.06076057255268097, -0.019468102604150772, 6.91714728358781e-33, 0.0016712708165869117, -0.042390529066324234, -0.028529196977615356, 0.026698404923081398, 0.03604058548808098, -0.027352379634976387, 0.01229450386017561, 0.03623687103390694, -0.01642727293074131, 0.0431995615363121, -0.021154148504137993, 0.018005190417170525, -0.004222864285111427, 0.02142375335097313, 0.047767654061317444, -0.008066581562161446, 0.004102629609405994, -0.023735998198390007, 0.03476347774267197, -0.004626883659511805, -0.004257310181856155, 0.001140007865615189, 0.007662296295166016, 0.013559306040406227, -0.016290048137307167, 0.04128829017281532, -0.04284965991973877, -0.0209975503385067, 0.021074606105685234, 0.004036040976643562, 0.00261628907173872, -0.006845296826213598, 0.03872163966298103, 0.012876885011792183, -0.0024299840442836285, 0.013994353823363781, -0.02789216861128807, 0.016897566616535187, 0.02914055436849594, 0.009491518139839172, 0.03127836808562279, -0.02694793790578842, -0.0007775968406349421, 0.015540620312094688, 0.014688557013869286, -0.023765815421938896, -0.016401147469878197, 0.0244394950568676, 0.006653766147792339, -0.002496148692443967, 0.005840483121573925, 0.006498762872070074, 0.0033780366647988558, 0.010624343529343605, 0.004236757289618254, -0.04349894821643829, -0.045394208282232285, -0.013947353698313236, -0.03272249549627304, 0.025271115824580193, -0.011838776059448719, -0.026285478845238686, 0.0016371043166145682, 0.0006299455417320132, -0.01754281483590603, -0.032079845666885376, -0.06206513196229935, -0.03336073085665703, -0.005988140590488911, -0.015851160511374474, -0.02848164364695549, -0.013726170174777508, -0.010618693195283413, 0.001804794417694211, 0.004995300900191069, -0.01845293492078781, -0.031270045787096024, -0.02549954131245613, 0.005895321723073721, 0.0387561172246933, 0.0027209387626498938, 0.042478494346141815, 0.015367780812084675, -0.02973156049847603, 0.029178058728575706, -0.005477522034198046, -0.019961010664701462, 0.0022095907479524612, -0.013171411119401455, -0.0158982016146183, 0.006222814787179232, 0.003768699476495385, -0.02122057043015957, -0.00996007677167654, 0.01869664154946804, -1.2926985704098115e-8, -0.04769592732191086, 0.014645833522081375, -0.02443346381187439, 0.01107429713010788, 0.04148537293076515, 0.022502217441797256, -0.011753123253583908, 0.03784926235675812, 0.0029765982180833817, 0.005042474251240492, 0.05018521472811699, -0.008145774714648724, 0.025846941396594048, 0.04479971155524254, 0.04198741912841797, -0.07181690633296967, 0.013369791209697723, 0.009875769726932049, 0.022350363433361053, 0.040769465267658234, -0.031777963042259216, 0.03366513177752495, 0.004845832474529743, -0.018843917176127434, -0.01206134632229805, -0.007296686992049217, 0.012364238500595093, -0.054748356342315674, 0.024900615215301514, -0.008502875454723835, -0.01838110201060772, -0.01410690974444151, -0.008357459679245949, -0.008917007595300674, -0.02222360484302044, -0.002024695510044694, 0.015880022197961807, -0.010388536378741264, 0.019731244072318077, 0.022081272676587105, 0.012228697538375854, 0.007610494736582041, -0.005250969436019659, -0.010068922303617, -0.011459103785455227, -0.020677456632256508, -0.006154581904411316, 0.020727232098579407, 0.04110215604305267, -0.03420521318912506, -0.009058581665158272, -0.017637142911553383, -0.005421701353043318, -0.016952216625213623, 0.04266417399048805, -0.01243097335100174, -0.009503612294793129, -0.027421459555625916, -0.02451326884329319, -0.007588894106447697, 0.02181779220700264, -0.018574286252260208, -0.02713855728507042, -0.004974160809069872 ]
reading-code-underscore-js
https://markhneedham.com/blog/2010/03/28/reading-code-underscore-js
false
2010-03-10 23:06:31
Javascript: Function scoping
[ "javascript" ]
[ "Javascript" ]
My colleague John Hume wrote http://elhumidor.blogspot.com/2010/03/actionscript-const-gotcha.html[an interesting post about his experience with the 'const' keyword in ActionScript] where he describes the problems with trying to capture a loop variable in a closure and then evaluating it later on in the code. Since ActionScript and JavaScript are both dialects of http://en.wikipedia.org/wiki/ECMAScript[ECMAscript], this is a problem in JavaScript as well, and is due to the fact that variables in JavaScript have http://www.slideshare.net/douglascrockford/crockford-on-javascript-act-iii-function-the-ultimate[function scope rather than block scope] which is the case in many other languages. This problem would tend to reveal itself in code where we try to capture a loop variable in an anonymous function and use it later on, like so: [source,javascript] ---- function getValues() { var x = new Array(); for(var i=0; i < 10; i++) { x[i] = function() { return i; } } return x; }; var values = getValues(); for(var j=0; j < values.length; j++) { console.log(values[j]()); } ---- We might expect that to print the sequence of numbers 0-9 on the screen but what we actually get is '10' printed 10 times. There are a couple of things that I initially found strange about this: . Why doesn't it print out the numbers 0-9? . Given that it doesn't do that why does it print out '10' 10 times instead of '9' 10 times? The answer to the first question is that 'i' gets assigned a new value on each iteration of the loop and we don't evaluate 'i' until we evaluate the anonymous function on line 11. The value when we do evaluate it would be the last value that it was set to by the loop which in this case that would be '10' because that's the value that 'i' has to be http://twitter.com/jason_diamond/statuses/10283944438[in order for] http://twitter.com/drunkcod/statuses/10283979588[the loop to terminate]. This is http://twitter.com/davcamer/statuses/10290979811[actually a problem in C# as well] - the following code will output '10' 10 times as well: [source,csharp] ---- [Test] public void ClosureOnTheSameValue() { var values = new List<Func<int>>(); for(int i=0; i < 10; i++) { values.Add(() => i); } foreach (var value in values) { Console.WriteLine(value()); } } ---- Again we capture 'i' inside a closure and since we only evaluate that value when it's actually used it will always refer to the last value that 'i' was set to which in this case means that it will always output a value of 10. To fix this in C# we could just create a temporary variable - something which Resharper will actually suggest to us: [source,csharp] ---- [Test] public void ClosureOnDifferentValue() { var values = new List<Func<int>>(); for(int i=0; i < 10; i++) { var idash = i; values.Add(() => idash); } foreach (var value in values) { Console.WriteLine(value()); } } ---- This works in C# because variables have block scope which means that we have a new version of 'idash' for each of the functions that we add to the 'values' collection. Sadly the same trick doesn't work in JavaScript because variables have function scope in Javascript: [source,javascript] ---- function getValues() { var x = new Array(); for(var i=0; i < 10; i++) { var idash = i; x[i] = function() { return idash; } } return x; }; var values = getValues(); for(var j=0; j < values.length; j++) { console.log(values[j]()); } ---- The 'idash' temporary variable that we created to try and solve the problem gets assigned a new value in each iteration of the loop because that variable is only declared once for the whole function. The code above could be written like this to make that clearer: [source,javascript] ---- function getValues() { var x = new Array(); var idash; for(var i=0; i < 10; i++) { idash = i; x[i] = function() { return idash; } } return x; }; var values = getValues(); for(var j=0; j < values.length; j++) { console.log(values[j]()); } ---- As John points out: ____ Here's something I either never knew or at some point forgot about JavaScript: variables are lexically scoped, but only function bodies introduce new lexical scopes. ____ In this case we actually end up printing '9' 10 times because that's the maximum value that gets assigned to 'idash'. One solution is to create a temporary variable inside an anonymous function that we execute immediately, like this: [source,javascript] ---- function getValues() { var x = new Array(); for(var i=0; i < 10; i++) { (function() { var idash = i; x[i] = function() { return idash; } })(); } return x; }; var values = getValues(); for(var j=0; j < values.length; j++) { console.log(values[j]()); } ---- Now 'idash' is scoped inside the anonymous function and we therefore end up with a new value each time like we want. http://twitter.com/raphscallion/statuses/10288673700[Raph] pointed out that we could achieve the same thing in a simpler way with the following code: [source,javascript] ---- function getValues() { var x = new Array(); for(var i=0; i < 10; i++) (function(i) { x[i] = function() { return i; }; })(i); return x; }; var values = getValues(); for(var j=0; j < values.length; j++) { console.log(values[j]()); } ---- Here we define a for loop with just a single statement so we can lose the '{}' and just call an anonymous function passing in 'i'. Of course this example is truly contrived but I wanted to pick something simple enough that I could try and follow exactly how it worked. I'm not entirely sure of the terminology around closures and scoping so if I've described anything incorrectly then please correct me!
null
null
[ -0.003498823381960392, 0.008783752098679543, -0.01631985418498516, 0.024338193237781525, 0.04584447667002678, 0.0021241921931505203, 0.03563383221626282, 0.03469182178378105, 0.0006761278491467237, 0.008225777186453342, -0.0004939996870234609, -0.005071785766631365, -0.09659086167812347, 0.01319801528006792, -0.013823328539729118, 0.0556538887321949, 0.10078831762075424, -0.021449346095323563, 0.02403172105550766, 0.02327815257012844, 0.0013018156168982387, 0.0682583674788475, -0.00362380756996572, 0.02077101357281208, 0.041194189339876175, 0.023765884339809418, 0.009516769088804722, 0.004364561289548874, -0.0668562725186348, -0.0002563328598625958, -0.005156641360372305, 0.051430024206638336, 0.0036902856081724167, -0.029230570420622826, 0.009158503264188766, -0.022752556949853897, 0.013938354328274727, 0.003553049173206091, -0.009539728052914143, 0.05755781754851341, -0.06226339191198349, -0.005201808642596006, -0.027938880026340485, -0.012702930718660355, -0.04054172709584236, -0.015207549557089806, -0.03899496793746948, 0.005697628948837519, -0.01912648044526577, 0.04306434467434883, -0.06145964935421944, 0.03182047978043556, -0.009596724063158035, -0.01159181259572506, -0.01336152944713831, 0.03671599179506302, 0.0243112500756979, -0.0742725357413292, 0.015319256111979485, -0.06764835119247437, -0.0007216550293378532, -0.0016854195855557919, 0.013791261240839958, 0.06189264357089996, 0.007951688021421432, 0.018348416313529015, 0.018565572798252106, 0.058396678417921066, -0.030513301491737366, -0.029966657981276512, -0.008753137663006783, 0.034272681921720505, -0.026887763291597366, -0.022351277992129326, -0.0063355062156915665, -0.03797199949622154, 0.0002664847706910223, 0.037512123584747314, 0.019859278574585915, 0.03930836543440819, -0.020683567970991135, 0.006291219033300877, 0.05645090714097023, 0.014351561665534973, 0.02471970207989216, -0.02761155180633068, -0.0029943150002509356, -0.00635520089417696, -0.03517195209860802, 0.02650924026966095, 0.013069837354123592, -0.0544702485203743, -0.007071067113429308, 0.02725124917924404, 0.008678611367940903, -0.025169286876916885, 0.0006208260892890394, -0.017925962805747986, -0.027744846418499947, -0.01524415984749794, -0.023432595655322075, -0.008212904445827007, 0.029157213866710663, -0.04241340607404709, -0.06400860100984573, 0.007640614174306393, -0.03171291574835777, -0.0003558883909136057, 0.01323605328798294, 0.00998513214290142, -0.04190674424171448, 0.022850319743156433, -0.015132430009543896, -0.01789981685578823, -0.07677986472845078, 0.05935053527355194, 0.01325235329568386, -0.010271922685205936, 0.0013931558933109045, 0.047308549284935, 0.05342380702495575, 0.025166895240545273, 0.0012760094832628965, 0.08082512021064758, -0.002163117518648505, 0.037168823182582855, -0.0027205271180719137, 0.05254106968641281, 0.0008119486155919731, -0.07656506448984146, -0.01443907618522644, 0.03921714052557945, -0.04392138868570328, -0.014466452412307262, -0.012782844714820385, -0.007182721979916096, -0.026573635637760162, -0.005542883183807135, 0.03876578062772751, 0.0544917955994606, -0.001668896060436964, -0.05617637187242508, 0.0074579352512955666, -0.046057406812906265, 0.03068041428923607, 0.0021450223866850138, -0.01573057658970356, -0.02204436995089054, -0.03202241286635399, 0.04079312086105347, 0.013120007701218128, 0.02308996021747589, 0.06091127544641495, -0.03310786560177803, 0.0027845473960042, 0.05729836970567703, 0.0344395712018013, 0.007476094178855419, 0.00018625776283442974, 0.0018810966284945607, 0.08790159970521927, -0.018282031640410423, 0.01407754234969616, 0.06037343665957451, 0.010466638021171093, 0.008849969133734703, 0.019997257739305496, 0.05820516496896744, 0.00012937464634887874, -0.036988262087106705, -0.054501648992300034, -0.0020521851256489754, 0.0640440285205841, -0.04799683764576912, -0.01909351721405983, 0.010247970931231976, 0.06675995141267776, -0.004325782880187035, 0.04744311422109604, -0.003601290285587311, -0.06847413629293442, 0.014819325879216194, -0.009579201228916645, 0.02283395826816559, 0.03363547846674919, -0.008166552521288395, 0.043864015489816666, 0.026634251698851585, 0.01444464735686779, 0.03812297061085701, -0.05715612322092056, -0.08021809905767441, -0.043085791170597076, 0.001783250947482884, 0.05431054159998894, -0.04892415180802345, 0.00592003483325243, 0.06837732344865799, 0.04689134657382965, 0.028036857023835182, -0.011092636734247208, -0.005364566575735807, 0.012070710770785809, 0.01055444497615099, -0.016996609047055244, 0.04043643921613693, 0.04004565253853798, 0.004357514902949333, -0.01157489325851202, 0.03573159873485565, -0.005734457168728113, 0.019841359928250313, 0.041628990322351456, -0.019224800169467926, 0.025053413584828377, 0.024922311305999756, 0.03056121990084648, -0.023987192660570145, 0.043318409472703934, -0.03712568059563637, 0.02220259979367256, 0.0139974569901824, 0.0065357014536857605, 0.007320348639041185, 0.006526247598230839, 0.13899846374988556, 0.06328926235437393, -0.026610242202878, -0.056840136647224426, 0.010491596534848213, -0.005892677698284388, -0.06608836352825165, 0.00027759073418565094, -0.021523039788007736, -0.010048473253846169, 0.01296031940728426, -0.022233635187149048, 0.018328752368688583, -0.0004882615467067808, -0.049976758658885956, 0.009441590867936611, 0.07744905352592468, -0.02754361741244793, 0.05738809332251549, -0.029561404138803482, -0.015018017031252384, 0.033555805683135986, -0.0348944216966629, -0.054658468812704086, -0.006234421394765377, 0.03891472890973091, -0.016010284423828125, 0.031874433159828186, -0.01774459332227707, -0.013552444986999035, -0.005247440654784441, -0.03733723238110542, -0.003868269734084606, 0.01596193015575409, 0.05663314834237099, -0.0005402507958933711, 0.053200580179691315, 0.021398650482296944, -0.004160775803029537, -0.024468619376420975, -0.04384254291653633, -0.03622345253825188, -0.018747910857200623, -0.022831469774246216, 0.04329100251197815, 0.015949930995702744, 0.03343234583735466, 0.003529687412083149, -0.010616295039653778, 0.004785575903952122, -0.010392783209681511, 0.005976041778922081, -0.013230886310338974, -0.022133171558380127, 0.002507664728909731, -0.030968699604272842, 0.034849513322114944, -0.024805733934044838, -0.0404508151113987, 0.010898569598793983, -0.06391316652297974, 0.036042556166648865, -0.06803066283464432, -0.04852414131164551, -0.0088128000497818, -0.00011352023284416646, 0.02845052443444729, -0.024306539446115494, 0.03579481691122055, 0.04160550236701965, -0.026048090308904648, 0.02494119480252266, 0.017336418852210045, 0.005378035828471184, 0.02713696099817753, -0.015246160328388214, -0.01910259574651718, 0.02381473034620285, -0.010733621194958687, -0.02697262540459633, -0.028618020936846733, 0.025242991745471954, -0.0011940277181565762, -0.2582859396934509, 0.047348883002996445, -0.012449774891138077, -0.023383483290672302, 0.011186301708221436, -0.03173212707042694, 0.005843530409038067, -0.0548834353685379, 0.0015586240915581584, 0.015220885165035725, -0.02000374346971512, -0.05423150584101677, -0.03586467355489731, 0.086662657558918, 0.009447517804801464, 0.004531811457127333, -0.017741834744811058, -0.020604591816663742, -0.0012819041730836034, 0.04836658388376236, -0.009316419251263142, -0.08357327431440353, -0.008723287843167782, 0.07686185836791992, 0.04816385731101036, 0.03446400910615921, -0.09714996069669724, 0.017707744613289833, -0.034368302673101425, 0.0014403288951143622, -0.02212350443005562, 0.02640434354543686, 0.024825569242239, -0.010538054630160332, -0.03130899742245674, -0.012612166814506054, 0.02631848305463791, -0.006810018792748451, -0.007568781264126301, 0.008561425842344761, -0.04926857724785805, -0.03144114464521408, -0.002882539527490735, 0.029562825337052345, 0.052432794123888016, 0.00129040889441967, -0.04545150697231293, 0.0003384169831406325, -0.05397363752126694, 0.05292209982872009, -0.023670725524425507, -0.05934429541230202, -0.02143189124763012, 0.029443230479955673, -0.010149244219064713, -0.03418850153684616, -0.02809479646384716, -0.013060093857347965, -0.0019095661118626595, -0.014344138093292713, -0.009527723304927349, -0.03545214235782623, -0.01918053813278675, -0.013467071577906609, 0.003057848196476698, -0.08607794344425201, -0.062476787716150284, 0.008101390674710274, 0.06502970308065414, 0.0004224973381496966, -0.007885794155299664, 0.0017575270030647516, -0.034190814942121506, -0.10729088634252548, -0.03354648873209953, -0.008136797696352005, -0.012547674588859081, -0.0035916934721171856, 0.009924142621457577, 0.04016976058483124, -0.053234923630952835, -0.05792459845542908, 0.04094066843390465, 0.015857350081205368, 0.020952798426151276, 0.003834101837128401, 0.025858568027615547, -0.0025263286661356688, -0.020679354667663574, 0.014983413740992546, 0.08179429173469543, -0.0015881876461207867, -0.01946517825126648, -0.028983507305383682, 0.00790858268737793, 0.0016381731256842613, 0.01008723396807909, -0.029224546626210213, 0.014011198654770851, 0.03191506490111351, 0.031081639230251312, -0.04150485247373581, 0.014852091670036316, -0.04661274701356888, -0.024770265445113182, -0.005175711587071419, -0.06162339076399803, 0.03878960385918617, 0.020340057089924812, 0.02245483361184597, 0.0014742276398465037, -0.015898365527391434, 0.033316995948553085, -0.0449465848505497, -0.033299315720796585, -0.035392988473176956, 0.01941005140542984, 0.02968509867787361, -0.0024397089146077633, -0.05956444516777992, -0.06941237300634384, 0.03136084973812103, 0.010761016979813576, 0.012776422314345837, -0.049620646983385086, -0.03868866339325905, -0.019884606823325157, -0.015535584650933743, 0.01719527691602707, 0.038589537143707275, -0.003796424949541688, 0.07312699407339096, -0.0006939069135114551, -0.03019729256629944, 0.011770007200539112, -0.03147192671895027, -0.03558710590004921, -0.02747461386024952, -0.005955255124717951, -0.0010871083941310644, 0.018762020394206047, -0.004183981567621231, 0.012507598847150803, 0.03850952535867691, 0.02036699838936329, -0.005227000452578068, 0.04887227341532707, -0.007040582597255707, -0.036730434745550156, 0.017565375193953514, 0.037915583699941635, -0.0923113077878952, 0.004796084016561508, -0.044323503971099854, -0.030378039926290512, -0.03382422775030136, 0.00179330597165972, -0.01578480377793312, -0.03325231000781059, -0.034861646592617035, 0.04551200941205025, -0.02155582793056965, -0.007322696968913078, -0.025726016610860825, -0.0106122475117445, 0.023956777527928352, 0.013699159026145935, 0.03294423222541809, -0.010023269802331924, 0.008626083843410015, -0.013384049758315086, -0.005081261973828077, -0.0020850144792348146, -0.011256125755608082, 0.007831517606973648, -0.022919684648513794, -0.018922094255685806, -0.012339988723397255, 0.003068427788093686, -0.005638580769300461, 0.028600873425602913, 0.00033493302180431783, 0.01495068334043026, 0.02447480335831642, 0.03700387850403786, -0.005184792913496494, -0.01985771395266056, -0.025222254917025566, -0.01676996983587742, -0.002401449019089341, -0.037984151393175125, -0.009511299431324005, -0.015999602153897285, 0.017123887315392494, -0.02632661536335945, -0.0703204870223999, 0.02837432362139225, 0.05178498849272728, 0.02203649841248989, 0.018726196140050888, 0.028026090934872627, -0.01219592522829771, -0.027819989249110222, 0.007220365572720766, 0.03963148593902588, -0.04598911851644516, 0.0009874383686110377, 0.006229901686310768, 0.05648845061659813, 0.033331338316202164, 0.025172268971800804, -0.05261122062802315, -0.025330252945423126, -0.03253733366727829, 0.010184497572481632, -0.020237542688846588, -0.03878704831004143, -0.03357577323913574, -0.006740500684827566, -0.027745269238948822, -0.005547846667468548, -0.014779581688344479, -0.018424032256007195, -0.027587059885263443, -0.010562555864453316, -0.0026337543968111277, -0.0463237427175045, -0.004124772269278765, 0.07176150381565094, -0.029790980741381645, 0.005571547895669937, -0.02184741199016571, 0.03879299387335777, 0.02658289484679699, -0.03715060278773308, -0.02120788022875786, -0.09070844948291779, 0.017507093027234077, -0.00888117402791977, 0.03550994023680687, -0.027263004332780838, -0.000043043779442086816, -0.021418899297714233, 0.011178012005984783, -0.04036977142095566, -0.015262437053024769, -0.03298638015985489, -0.06847257167100906, 0.03440210968255997, 0.06223706901073456, 0.047718219459056854, 0.0538015179336071, 0.01358705759048462, 0.010013360530138016, 0.06488882750272751, -0.08581805229187012, -0.004954137373715639, -0.00013972146552987397, -0.05014776065945625, 0.015674157068133354, 0.009354048408567905, 0.014187918975949287, -0.04477398842573166, 0.046420611441135406, 0.03886584937572479, 0.03195379301905632, 0.012276430614292622, -0.03868168219923973, 0.023979002609848976, -0.037556182593107224, 0.022365732118487358, -0.0887707993388176, 0.02659178525209427, 0.007880676537752151, 0.009587962180376053, -0.033172689378261566, -0.022126872092485428, -0.035747721791267395, 0.04525825381278992, -0.061277903616428375, -0.0018635950982570648, 0.043598730117082596, 0.005284242797642946, -0.02426314167678356, 0.0191511120647192, -0.06585906445980072, -0.007761345710605383, 0.029811760410666466, -0.026974184438586235, -0.025321224704384804, -0.025570033118128777, 0.04147958382964134, 0.008895092643797398, 0.020407650619745255, -0.011430650018155575, 0.004491119179874659, 0.06303781270980835, 0.02027922496199608, 0.011949469335377216, 0.05293635278940201, -0.033027343451976776, 0.02588627114892006, 0.04852387309074402, -0.01783524639904499, -0.019344864413142204, 0.020650874823331833, -0.016536159440875053, -0.04728196561336517, -0.010599266737699509, 0.025181740522384644, -0.06539525091648102, -0.047837309539318085, 0.07012000679969788, 0.02062038891017437, -0.04836678504943848, -0.04105284810066223, 0.0028031538240611553, -0.039280738681554794, -0.023537037894129753, -0.03222028538584709, -0.02293477952480316, -0.04212234541773796, 0.08338211476802826, 0.0034596805926412344, -0.0003491221577860415, 0.052094560116529465, -0.0036978379357606173, 0.017146741971373558, -0.013703161850571632, 0.07266503572463989, 0.0886094942688942, 0.04699259251356125, -0.01691298931837082, 0.05864192917943001, -0.021949147805571556, -0.0418325774371624, 0.029757145792245865, -0.0391031876206398, -0.0050572846084833145, -0.042669542133808136, 0.02115311287343502, 0.06952032446861267, 0.0007685180171392858, 0.07617750763893127, -0.04499848186969757, -0.014402798376977444, 0.024149436503648758, 0.013665991835296154, 0.005895860027521849, 0.08159054815769196, 0.046673838049173355, 0.0006824989104643464, 0.019948486238718033, -0.03328683227300644, 0.04763542860746384, -0.03202833607792854, -0.007399983704090118, 0.02932608500123024, 0.018709253519773483, 0.02325720712542534, 0.0204168651252985, 0.03499085083603859, 0.0664316713809967, -0.02439136803150177, -0.011764580383896828, 0.007700500078499317, 0.06649250537157059, 0.009853431023657322, 0.01605367846786976, 0.012925533577799797, -0.019705820828676224, 0.017034651711583138, -0.013242402113974094, -0.00684392498806119, -0.025516269728541374, -0.03832753375172615, 0.055310558527708054, -0.03913889452815056, 0.058115456253290176, 0.01473958883434534, 0.0020607979968190193, -0.011094097048044205, -0.04207076504826546, -0.05473151057958603, -0.06908943504095078, -0.06188157573342323, -0.017225872725248337, 0.04191611334681511, -0.007098882459104061, -0.04436328262090683, -0.02228498086333275, 0.02949385903775692, -0.010135166347026825, 0.05279790237545967, -0.03628910332918167, -0.035824377089738846, 0.03184272721409798, 0.008138468489050865, 0.039941005408763885, 0.0418766550719738, 0.01806952804327011, -0.01745327189564705, -0.02639293484389782, -0.019439715892076492, 0.0011159543646499515, 0.04026201739907265, 0.008538843132555485, -0.00612920057028532, -0.06430741399526596, 0.02152315340936184, 0.01170084998011589, -0.03614308685064316, -0.06472186744213104, 0.0307945404201746, 0.001051289844326675, -0.033550698310136795, 0.06795576214790344, -0.03471850976347923, -0.002055567689239979, -0.08564963936805725, -0.009307912550866604, 0.01318409014493227, 0.0000954059069044888, 0.03384212777018547, -0.01185592170804739, 0.08417284488677979, 0.023527279496192932, -0.003121651243418455, -0.02717345766723156, -0.008617889136075974, -0.021952904760837555, 0.023362932726740837, -0.028227636590600014, -0.019945155829191208, -0.05622151494026184, -0.05679142102599144, -0.03818457946181297, 0.015979038551449776, 0.007131297141313553, -0.004031649325042963, 0.0174122154712677, 0.07260528951883316, -0.06409163773059845, 0.059891074895858765, -0.008784295991063118, 0.043197233229875565, -0.0408487468957901, -0.01912079192698002, 0.022295720875263214, 0.007974973879754543, -0.020977728068828583, -0.000015528203221037984, 0.04659188538789749, -0.025488756597042084, -0.038679949939250946, -0.008838975802063942, 0.031193606555461884, 0.03395821899175644, -0.008025151677429676, 0.02863955684006214 ]
[ -0.1197156086564064, -0.03319662809371948, -0.04952176287770271, -0.03189337998628616, 0.007491310592740774, -0.027573036029934883, 0.034461695700883865, 0.02443680725991726, 0.025905920192599297, -0.023606419563293457, 0.0047410293482244015, 0.0009543290361762047, -0.014100341126322746, 0.011912171728909016, 0.052219208329916, -0.010415141470730305, -0.044105153530836105, -0.053482960909605026, -0.056975021958351135, 0.03540119156241417, 0.0603911355137825, -0.033249422907829285, -0.044136762619018555, -0.04589143022894859, 0.011174289509654045, 0.03447064384818077, 0.033500805497169495, -0.03947163000702858, 0.026479944586753845, -0.20491281151771545, -0.01274767518043518, -0.03097703494131565, 0.0142488619312644, -0.015168026089668274, -0.0030510860960930586, 0.014528834261000156, 0.0032331764232367277, 0.025507908314466476, 0.003816448152065277, 0.07686755061149597, 0.007763707544654608, 0.05575845390558243, -0.030418267473578453, -0.03907591104507446, 0.041161566972732544, -0.011418853886425495, -0.04164165258407593, -0.036329738795757294, -0.027536839246749878, 0.0322779044508934, -0.0555604062974453, -0.016788294538855553, -0.02388700097799301, -0.009140141308307648, 0.003702745772898197, 0.03313595801591873, 0.005732761695981026, 0.06727556884288788, 0.025913482531905174, 0.023725274950265884, 0.020375236868858337, -0.013540826737880707, -0.12122368067502975, 0.09585653990507126, 0.07292818278074265, 0.05751824006438255, -0.011990825645625591, -0.03198958560824394, -0.024284593760967255, 0.0661671832203865, 0.028452524915337563, -0.01183329802006483, -0.028518719598650932, 0.054696667939424515, -0.016777722164988518, -0.029768263921141624, 0.003980561625212431, 0.04413170367479324, 0.03637610375881195, -0.004298048093914986, -0.04396679252386093, -0.03538782522082329, -0.002218768699094653, -0.011970266699790955, -0.005983317270874977, -0.002449348568916321, -0.00865748431533575, 0.021775133907794952, 0.02921200916171074, 0.05245517939329147, 0.03030884638428688, -0.013559622690081596, 0.023440659046173096, 0.03403197228908539, -0.06750956177711487, 0.022871514782309532, -0.003082752926275134, 0.008752978406846523, -0.040231529623270035, 0.4151741862297058, -0.03146179020404816, -0.014140604063868523, 0.05182419717311859, 0.007370895706117153, -0.025499116629362106, 0.0028283544816076756, -0.025428568944334984, -0.0474228709936142, 0.0004023689543828368, -0.060784392058849335, -0.003910250496119261, -0.00618668831884861, 0.08334439992904663, -0.04743485525250435, -0.0017979524563997984, 0.037682000547647476, 0.031177623197436333, -0.009573815390467644, 0.03208323195576668, 0.005303220357745886, 0.049351759254932404, 0.016440875828266144, 0.014117458835244179, 0.011547980830073357, 0.0035836114548146725, -0.010573423467576504, 0.030454164370894432, 0.08282607048749924, 0.0286730844527483, 0.050038572400808334, 0.06236887723207474, -0.04454337805509567, -0.02896246314048767, -0.0007133377366699278, -0.01186318602412939, 0.01994650438427925, 0.029208078980445862, -0.004322498105466366, 0.025022676214575768, 0.01858818531036377, 0.006182357203215361, -0.02272014319896698, 0.013128908351063728, -0.003353723557665944, 0.002471944550052285, 0.10864996910095215, -0.0269163865596056, -0.03500717505812645, 0.00599247869104147, -0.0159426499158144, 0.02482536807656288, 0.041350994259119034, -0.03873669356107712, -0.0480167530477047, -0.000052657527703559026, 0.03311683237552643, 0.0386209636926651, -0.007546866778284311, -0.059046968817710876, -0.03077668510377407, -0.04673107713460922, 0.014777391217648983, -0.021760309115052223, 0.00786921102553606, 0.025452645495533943, -0.08496313542127609, -0.02102714590728283, 0.016661880537867546, 0.019140120595693588, -0.08376748114824295, -0.02330443449318409, 0.0031828368082642555, -0.05963337793946266, -0.041032738983631134, 0.056809693574905396, -0.029801808297634125, -0.045037202537059784, -0.003354682819917798, 0.06450112909078598, 0.02626708149909973, -0.021373139694333076, -0.012559200637042522, -0.042378101497888565, 0.0018138730665668845, -0.018721994012594223, -0.08030252158641815, -0.048933882266283035, -0.005358098540455103, -0.002492271363735199, 0.0163145512342453, 0.0004826734075322747, -0.053789835423231125, -0.0747830867767334, 0.08918129652738571, -0.046656832098960876, -0.05512180179357529, 0.02969101257622242, -0.026367446407675743, -0.014091212302446365, 0.010060801170766354, 0.05973408371210098, 0.008690598420798779, 0.01553258951753378, 0.03254310041666031, -0.05373498052358627, 0.06724484264850616, 0.05041052773594856, -0.03813187777996063, 0.04937388747930527, 0.04730242118239403, -0.06065582484006882, -0.012287931516766548, 0.010037231259047985, 0.017994461581110954, 0.0007671426865272224, -0.045048732310533524, -0.031145593151450157, 0.04016052559018135, 0.020160166546702385, -0.01699129305779934, -0.05390029400587082, -0.035247430205345154, -0.00024920637952163815, -0.3402387797832489, -0.051080357283353806, -0.020858250558376312, -0.017357297241687775, 0.029635146260261536, -0.07456861436367035, -0.0014510687906295061, 0.012741507031023502, -0.047136541455984116, -0.007690879981964827, 0.05960343778133392, -0.01005299761891365, -0.013317489065229893, -0.09531446546316147, -0.009614148177206516, 0.018397247418761253, -0.028661077842116356, -0.06127581745386124, -0.005373358726501465, 0.03802536800503731, -0.011080017313361168, -0.013386952690780163, -0.041647814214229584, -0.06285140663385391, -0.026308028027415276, -0.052563924342393875, 0.10579636693000793, 0.011338667012751102, 0.09086096286773682, -0.022306952625513077, 0.04116787388920784, -0.04001755639910698, 0.014362332411110401, -0.028625527396798134, 0.0031527336686849594, -0.05420590192079544, -0.04187280312180519, 0.01031454000622034, 0.05086149647831917, 0.0024705217219889164, -0.0484299398958683, -0.00042311655124649405, -0.03086167201399803, -0.0009601484052836895, -0.018204325810074806, 0.020633308216929436, -0.030624909326434135, -0.017788665369153023, -0.0031750791240483522, 0.06614557653665543, 0.042991556227207184, 0.01338309608399868, 0.005497831851243973, 0.02612851932644844, 0.018064258620142937, -0.007090588565915823, -0.020860636606812477, -0.0012109907111153007, -0.0007330809021368623, 0.013762709684669971, 0.03333184868097305, 0.03322657197713852, 0.019363725557923317, -0.04918844625353813, 0.009517604485154152, 0.04470000043511391, 0.02902267687022686, -0.019394109025597572, 0.05700947716832161, -0.02862158976495266, -0.03984843194484711, 0.13186782598495483, 0.018659401684999466, 0.015318190678954124, 0.028963927179574966, 0.04066864028573036, -0.000542175373993814, 0.017367778345942497, 0.013711719773709774, 0.010696533136069775, 0.03264763951301575, 0.023188477382063866, 0.022769736126065254, -0.028255954384803772, -0.021040545776486397, -0.0121749397367239, -0.018448418006300926, -0.002485954435542226, 0.0021197653841227293, -0.015704959630966187, -0.03795117512345314, 0.01775370165705681, -0.004280583001673222, -0.06950965523719788, 0.043922439217567444, -0.0010636545484885573, -0.2727537751197815, 0.005038753617554903, 0.06504958868026733, 0.03144582733511925, 0.005548848770558834, 0.042422372847795486, 0.026684993878006935, -0.07870282977819443, -0.00460871821269393, 0.02725965902209282, -0.002552034566178918, 0.03887701407074928, -0.008675992488861084, 0.003848862834274769, 0.03489747643470764, 0.0078027574345469475, 0.02464361861348152, -0.01281835325062275, 0.03156760707497597, -0.004582859110087156, 0.05649898201227188, 0.02182280272245407, 0.19591276347637177, -0.005415007472038269, 0.01569884456694126, 0.02840832807123661, -0.004619334824383259, 0.04099662974476814, 0.11980655044317245, 0.0035534852650016546, -0.018800819292664528, 0.0027288140263408422, 0.0507330484688282, -0.01657329872250557, 0.03731657937169075, -0.0896853357553482, -0.03322142735123634, 0.049878254532814026, 0.01786039024591446, -0.028827166184782982, -0.001464816159568727, 0.009399976581335068, -0.01161863561719656, -0.018868541345000267, 0.07282349467277527, 0.013675689697265625, -0.018990641459822655, -0.0274643711745739, -0.03155021369457245, 0.013780164532363415, -0.05994778126478195, -0.024236051365733147, 0.02533964067697525, -0.04302242398262024, -0.01032259315252304, 0.06271390616893768, 0.022923002019524574, -0.01988772489130497, -0.01818445697426796, 0.020563717931509018, -0.017265714704990387, -0.029804782941937447, 0.12004170566797256, 0.026889463886618614, 0.03538059443235397 ]
[ -0.03737784922122955, 0.003111237194389105, -0.01395962480455637, -0.015338007360696793, 0.027670754119753838, 0.04634667560458183, 0.05591798201203346, 0.038077350705862045, -0.022211911156773567, -0.029301391914486885, -0.009952782653272152, 0.05243740975856781, -0.01969543844461441, 0.0007894430891610682, 0.016364810988307, 0.009391437284648418, -0.027245739474892616, 0.015047741122543812, 0.02575276978313923, -0.01799609512090683, -0.010909495875239372, 0.012637248262763023, 0.026814281940460205, -0.014217781834304333, -0.0167088583111763, -0.012550530955195427, -0.030221663415431976, -0.02192293107509613, 0.028159333392977715, -0.11156273633241653, 0.018630411475896835, -0.061368271708488464, -0.01081620343029499, 0.0005762693472206593, -0.02701103687286377, 0.018902065232396126, -0.031911518424749374, 0.012939219363033772, -0.012228590436279774, 0.022339629009366035, -0.012994530610740185, 0.02797282487154007, 0.005414730869233608, -0.022118117660284042, 0.02022288180887699, -0.013886036351323128, -0.06441714614629745, -0.004495799075812101, -0.05111199989914894, 0.042129501700401306, -0.0006291609606705606, -0.008263424970209599, -0.019769566133618355, -0.010835071094334126, 0.020250186324119568, -0.04738134890794754, -0.037114325910806656, -0.022330081090331078, 0.004763162229210138, 0.002739956369623542, 0.018276244401931763, 0.023856738582253456, -0.04356662929058075, -0.004716183058917522, -0.011464184150099754, -0.003993408288806677, 0.007872036658227444, -0.013071965426206589, -0.008838917128741741, 0.022652899846434593, 0.016030898317694664, 0.018731657415628433, -0.006669992581009865, -0.03293674439191818, -0.05272321775555611, -0.017483508214354515, 0.012433649972081184, -0.013243742287158966, 0.007274013478308916, 0.008060125634074211, -0.0355895534157753, 0.011481649242341518, -0.008836105465888977, 0.008322215639054775, -0.019016794860363007, 0.004690417088568211, 0.0016306592151522636, 0.022675782442092896, -0.02674422413110733, 0.029458152130246162, -0.05616436526179314, -0.0015805282164365053, -0.012887813150882721, 0.05141773074865341, -0.0790013000369072, 0.028168870136141777, -0.0043565016239881516, 0.010304632596671581, -0.016269229352474213, 0.8252450227737427, 0.0029496527276933193, 0.04677946865558624, 0.044675830751657486, 0.0031594051979482174, 0.021045943722128868, -0.01254059374332428, -0.002308485098183155, -0.005077519454061985, 0.006746047176420689, -0.03972044959664345, -0.004393544048070908, 0.013525000773370266, 0.035364557057619095, 0.0016563916578888893, 0.027392711490392685, 0.0016990629956126213, 0.02118411660194397, -0.025973765179514885, 0.03096916526556015, 0.02584465779364109, 0.0566202811896801, -0.0041085900738835335, 0.013479121029376984, 0.037808891385793686, 0.020713040605187416, -0.1438429057598114, 0.00857731606811285, -8.165913870716697e-33, 0.004401316400617361, -0.037348005920648575, 0.01182982511818409, -0.007071281783282757, 0.004022612702101469, 0.01890784315764904, 0.0014677188592031598, 0.027219507843255997, -0.024649661034345627, -0.02531023882329464, 0.007371131796389818, -0.018123814836144447, 0.015486369840800762, -0.003150790696963668, 0.03024200350046158, -0.023276548832654953, 0.016566002741456032, 0.04598166048526764, 0.012339351698756218, 0.012794543989002705, 0.010929320938885212, -0.003470172407105565, 0.02434018813073635, 0.044206392019987106, -0.0007891106652095914, 0.038193829357624054, -0.0009001547587104142, 0.05794968083500862, -0.044116415083408356, -0.055084314197301865, 0.023922987282276154, 0.041800402104854584, -0.019501175731420517, -0.008572109043598175, 0.07780706882476807, -0.03564532473683357, 0.033058054745197296, 0.016606606543064117, 0.011344213038682938, -0.03652266412973404, -0.05584567412734032, -0.014460011385381222, -0.06375250965356827, 0.02142782136797905, 0.0016583583783358335, -0.05577588081359863, 0.02622475102543831, 0.0018107648938894272, 0.030269242823123932, -0.014766165055334568, -0.02365972101688385, 0.04848108068108559, 0.030402077361941338, -0.008353217504918575, 0.020276758819818497, -0.00884439516812563, 0.0020671600941568613, 0.021696213632822037, -0.022135216742753983, 0.01891307160258293, 0.058186352252960205, 0.00442423764616251, -0.004118417389690876, 0.021222716197371483, -0.04476586729288101, -0.022729890421032906, 0.016542181372642517, -0.016013121232390404, 0.06711041927337646, -0.010103878565132618, -0.04524542763829231, 0.014261689968407154, -0.0207215603441, 0.009422066621482372, 0.02647395245730877, -0.003489838447421789, 0.0033077714033424854, -0.0011820289073511958, -0.008046052418649197, 0.03413300961256027, 0.05555447190999985, -0.017096878960728645, 0.0017004839610308409, 0.018387919291853905, 0.01566714234650135, -0.01664639450609684, -0.025465069338679314, -0.010571001097559929, 0.0002769632264971733, 0.03388507664203644, 0.015309213660657406, -0.021594084799289703, -0.005330108571797609, -0.03521834686398506, -0.002067911671474576, 7.790992151573836e-33, -0.020177539438009262, -0.03249802812933922, -0.05020737648010254, 0.005876922979950905, -0.03488777577877045, 0.019143056124448776, 0.0280123483389616, 0.018424250185489655, -0.03880762681365013, 0.038422007113695145, -0.03569016233086586, 0.025238364934921265, -0.015171186998486519, 0.006658829282969236, 0.07594206184148788, -0.0190600473433733, -0.00086573651060462, 0.015662336722016335, 0.04572301730513573, -0.021768540143966675, 0.02499200589954853, 0.04607052356004715, 0.013481291010975838, -0.004843835718929768, -0.012724845670163631, 0.06331484764814377, -0.01755453273653984, -0.012261706404387951, -0.006074621342122555, -0.001500299433246255, -0.030592288821935654, -0.025531060993671417, -0.010525399819016457, -0.007397086825221777, -0.01346373651176691, -0.0017269364325329661, 0.024971362203359604, -0.01673704944550991, 0.020915495231747627, -0.03496373072266579, 0.02912934683263302, -0.03706955164670944, -0.0008853846811689436, -0.019600197672843933, 0.01322961039841175, 0.047542206943035126, 0.006347597576677799, 0.019298678264021873, -0.011808517388999462, -0.023972760885953903, -0.00432523712515831, -0.02960823103785515, -0.007761850953102112, 0.007420131005346775, -0.006569432560354471, -0.03134572505950928, -0.060320377349853516, -0.017864752560853958, -0.010448540560901165, 0.016759328544139862, 0.010999471880495548, 0.013607727363705635, -0.015349417924880981, -0.02643059939146042, -0.03256889432668686, 0.00505829369649291, -0.022124551236629486, -0.01962616853415966, -0.019823461771011353, -0.019414646551012993, -0.03204145282506943, -0.012793788686394691, 0.008848118595778942, 0.04556132107973099, -0.020170625299215317, 0.003662780160084367, -0.015378552488982677, -0.009669605642557144, 0.00003586583261494525, 0.029135925695300102, 0.05310207977890968, 0.010415902361273766, -0.00949183665215969, 0.00022789690410718322, 0.03147290274500847, 0.03825535625219345, -0.050280436873435974, 0.003006313694640994, 0.01130597572773695, -0.045770313590765, 0.012069819495081902, 0.026131780818104744, -0.024407269433140755, -0.013839649967849255, -0.009842507541179657, -1.3205331939047937e-8, -0.009094026871025562, 0.05648720636963844, 0.006592562422156334, -0.016370709985494614, 0.021476419642567635, -0.011576755903661251, 0.0015374033246189356, -0.0017443284159526229, -0.0171541515737772, 0.03860778734087944, 0.061252426356077194, -0.028164077550172806, 0.017847895622253418, 0.008660197257995605, 0.008999061770737171, -0.07755893468856812, -0.015839317813515663, 0.014275746420025826, 0.031843654811382294, 0.056016307324171066, -0.021493611857295036, 0.06688903272151947, 0.009193042293190956, -0.034009989351034164, -0.009208131581544876, -0.04064365103840828, 0.041276030242443085, -0.060867223888635635, 0.020978018641471863, -0.00045551537186838686, 0.0003021306765731424, -0.02774454653263092, -0.0247813630849123, 0.021599531173706055, -0.02187982015311718, -0.022407133132219315, -0.010140675120055676, -0.01895340532064438, 0.010212973691523075, -0.014065178111195564, -0.007850276306271553, -0.007367038633674383, 0.010515023954212666, -0.006481127813458443, -0.022654922679066658, -0.018625641241669655, -0.003782436950132251, -0.008724111132323742, 0.01188505720347166, -0.04308997839689255, 0.0003322534030303359, 0.013169576413929462, -0.024518780410289764, 0.022791510447859764, 0.006117755081504583, -0.04228433594107628, 0.033134493976831436, -0.06256258487701416, -0.03189605474472046, 0.044614799320697784, 0.003009532345458865, 0.0009186444221995771, -0.04963775724172592, -0.01998775638639927 ]
javascript-function-scoping
https://markhneedham.com/blog/2010/03/10/javascript-function-scoping
false
2010-03-19 18:06:51
TDD: Expressive test names
[ "tdd" ]
[ "Testing" ]
Towards the end of http://www.markhneedham.com/blog/2009/01/30/tdd-test-dryness/[a post I wrote just over a year ago] I suggested that I wasn't really bothered about test names anymore because I could learn what I wanted from reading the test body. Recently, however, I've come across several tests that I wrote previously which were testing the wrong thing and had such generic test names that it wasn't obvious that it was happening. The tests in question were around code which partially clones an object but doesn't copy some fields for various reasons. Instead of documenting these reasons I had written tests with names like this: [source,csharp] ---- [Test] public void ShouldCloneFooCorrectly() { } ---- [source,csharp] ---- [Test] public void ShouldSetupFooCorrectly() { } ---- When we realised that the code wasn't working correctly, which didn't happen until QA testing, these test names were really useless because they didn't express the intent of what we were trying to test at all. http://foldingair.blogspot.com/[Damian] and i spent some time writing more fine grained tests which described *why* the code was written the way it was. We also changed the name of the test fixture to be more descriptive as well: [source,csharp] ---- [TestFixture] public class WhenCloningFooTests { [Test] public void ShouldNotCloneIdBecauseWeWantANewOneAssignedInTheDatabase() { } [Test] public void ShouldNotCopyCompletedFlagBecauseWeWantTheFooCompletionJobToPickItUp() { } ---- It seems to me that these new tests names are more useful as http://blog.orfjackal.net/2010/02/three-styles-of-naming-tests.html[specifications of the system behaviour] although we didn't go as far as you can with some frameworks where you can create base classes and separate methods to describe the different parts of a test. Despite that I think naming tests in this way can be quite useful so I'm going to try and write more of my tests like this. Of course it's still possible to test the wrong thing even if you are using more expressive names but I think it will make it less likely.
null
null
[ 0.03553760424256325, -0.006167478393763304, -0.02644464001059532, 0.0379452146589756, 0.08762091398239136, -0.006100258324295282, 0.029066752642393112, 0.038068924099206924, 0.00696903420612216, -0.024583740159869194, 0.0052848029881715775, -0.006344176363199949, -0.07015632838010788, 0.0247550867497921, -0.04348152503371239, 0.07260619848966599, 0.07637768983840942, -0.005673839710652828, 0.04484500735998154, -0.0027303698007017374, 0.023789191618561745, 0.06615239381790161, -0.002389975357800722, 0.041427917778491974, 0.03458506986498833, 0.03711226209998131, 0.00939724501222372, 0.00525073055177927, -0.05694586783647537, -0.022487908601760864, 0.022221913561224937, 0.01370709016919136, 0.018895236775279045, 0.00026923714904114604, 0.011179156601428986, -0.007439018227159977, -0.017116384580731392, 0.013491026125848293, -0.000973517308011651, 0.0006604754598811269, -0.08661050349473953, 0.018100017681717873, -0.0013474838342517614, -0.0035483031533658504, -0.0508844368159771, 0.011849175207316875, -0.031820088624954224, -0.019960546866059303, -0.02039256878197193, 0.0003551867848727852, -0.050455234944820404, 0.026757337152957916, -0.04975684732198715, -0.0006122589111328125, -0.00871875137090683, 0.050437528640031815, 0.030479121953248978, -0.07752566039562225, 0.037090856581926346, -0.05242697894573212, 0.0001630585902603343, -0.0104281110689044, -0.016142504289746284, 0.06530418246984482, 0.02643972635269165, -0.018679901957511902, -0.017912238836288452, 0.0351954810321331, -0.03390481323003769, 0.0055691152811050415, 0.006729839835315943, 0.0026611536741256714, -0.00305597810074687, -0.013690455816686153, 0.035608723759651184, -0.014525000937283039, -0.008295265026390553, 0.040088068693876266, 0.03407469764351845, 0.04848167672753334, -0.023217104375362396, -0.003330366685986519, 0.047638196498155594, 0.015419543720781803, -0.021208545193076134, -0.04517945647239685, -0.016540346667170525, 0.008229460567235947, -0.015997108072042465, 0.07542697340250015, 0.012218313291668892, -0.03565695881843567, 0.01682794839143753, 0.03986932709813118, -0.013863438740372658, -0.004284806549549103, 0.015367149375379086, -0.012330441735684872, 0.00144004519097507, -0.006516085937619209, -0.03797994181513786, -0.03179723024368286, 0.023942776024341583, 0.029376642778515816, -0.07929518818855286, -0.0016771358205005527, -0.034881580621004105, -0.026209037750959396, -0.005592348054051399, 0.030778704211115837, -0.03525559976696968, 0.03119642287492752, -0.018958857282996178, -0.01081906445324421, -0.08739380538463593, 0.04775656387209892, 0.004348724614828825, -0.020596159622073174, 0.002601796295493841, 0.03341680392622948, 0.020047010853886604, 0.018470846116542816, -0.017915574833750725, 0.05827036872506142, 0.021015528589487076, 0.05477192997932434, -0.023546140640974045, 0.03871186077594757, -0.027962589636445045, -0.06628620624542236, -0.00916541088372469, 0.051254067569971085, 0.0000044525863813760225, 0.014984535053372383, -0.006255310028791428, -0.039342623203992844, -0.00016147125279530883, -0.026497777551412582, 0.04308439418673515, 0.0737474337220192, -0.033778123557567596, -0.030303720384836197, 0.011672251857817173, 0.022198017686605453, -0.007604619488120079, 0.01369552593678236, -0.02452109009027481, -0.003799816593527794, -0.027713123708963394, 0.04810995236039162, 0.006792750675231218, 0.06510130316019058, 0.029958434402942657, -0.054894108325242996, 0.01862507499754429, 0.05672382935881615, 0.0017098062671720982, 0.01671409234404564, 0.014100567437708378, 0.027119427919387817, 0.04534917324781418, 0.0413193516433239, 0.02065637707710266, 0.03801557049155235, 0.01808338239789009, 0.01370951160788536, -0.010066291317343712, 0.03978767618536949, -0.005512087140232325, -0.0003673160099424422, -0.060902900993824005, -0.05224534496665001, 0.053092408925294876, -0.04651537165045738, -0.0045276121236383915, 0.06911282241344452, 0.05927417427301407, -0.005389099940657616, 0.041984833776950836, 0.025211602449417114, -0.06818337738513947, 0.021077770739793777, 0.016204509884119034, 0.002113842172548175, -0.0011039312230423093, -0.0032058998476713896, 0.06392412632703781, 0.052164945751428604, -0.0026341520715504885, 0.034411609172821045, -0.06381276994943619, -0.07774518430233002, -0.020242037251591682, -0.003849598579108715, 0.0712885856628418, -0.03613464906811714, -0.009678174741566181, 0.10488896816968918, 0.006656174082309008, 0.052264027297496796, 0.026562897488474846, -0.013533570803701878, 0.020315010100603104, -0.04406702518463135, -0.04844821244478226, 0.057216472923755646, 0.034182582050561905, -0.02327851578593254, -0.04985307529568672, 0.007686938624829054, 0.012299031019210815, 0.012170609086751938, 0.029222361743450165, 0.0008304367074742913, 0.03474031388759613, 0.02173088677227497, 0.061041586101055145, -0.006605194881558418, 0.07285673171281815, -0.06936174631118774, -0.00030646537197753787, -0.024376295506954193, -0.015323471277952194, -0.009709936566650867, -0.007711667567491531, 0.11725174635648727, 0.040577296167612076, -0.04483160004019737, -0.04755153879523277, -0.005725095979869366, 0.020418331027030945, -0.029069922864437103, 0.0021216326858848333, -0.023932160809636116, 0.00037868149229325354, -0.014551714062690735, -0.039026908576488495, -0.03192676603794098, 0.002504702191799879, -0.033106472343206406, 0.03011072427034378, 0.07937486469745636, -0.017629334703087807, 0.046950794756412506, -0.03275918588042259, -0.034877579659223557, 0.003568136366084218, -0.016420919448137283, -0.06043975427746773, -0.009308325126767159, 0.03157234564423561, -0.013975793495774269, 0.03577204793691635, -0.026602787896990776, -0.0427427813410759, -0.010225627571344376, -0.03403490036725998, 0.02838452160358429, 0.028526263311505318, 0.07025754451751709, -0.009288903325796127, 0.055096615105867386, -0.002652127528563142, 0.01547044888138771, 0.013589118607342243, -0.04414166510105133, -0.008189153857529163, -0.004853618331253529, -0.0043803621083498, 0.03162353113293648, -0.007768125273287296, 0.019270140677690506, 0.028637204319238663, 0.011231710202991962, -0.004376887809485197, -0.01029057614505291, 0.027037877589464188, 0.025941818952560425, -0.032919034361839294, -0.01526165846735239, -0.07581355422735214, 0.01601087860763073, -0.028674019500613213, -0.025644294917583466, 0.01476361695677042, -0.0922732949256897, 0.03366975486278534, -0.06997376680374146, -0.07409073412418365, 0.004934814292937517, 0.018744653090834618, 0.036638468503952026, 0.0028595002368092537, 0.01955675147473812, 0.06412021815776825, 0.009701681323349476, 0.005033539142459631, 0.001700880704447627, -0.002622624160721898, 0.029818886891007423, -0.0038122895639389753, -0.00376444635912776, 0.014027214609086514, 0.0020699240267276764, 0.02201738953590393, -0.04351687431335449, 0.007695351727306843, -0.014231494627892971, -0.25956249237060547, 0.04170840233564377, 0.0032454137690365314, -0.028840970247983932, 0.03748437389731407, -0.014518230222165585, 0.036597687751054764, -0.06458722800016403, -0.019180862233042717, 0.05461076274514198, -0.040618378669023514, -0.02732887864112854, -0.02098259888589382, 0.04911281168460846, -0.00948368851095438, 0.011813171207904816, 0.015219567343592644, -0.04645364359021187, 0.019674163311719894, 0.04394819959998131, 0.026693500578403473, -0.05578950047492981, -0.014583287760615349, 0.046020518988370895, 0.024620136246085167, 0.07188323885202408, -0.09398099035024643, 0.06818105280399323, -0.016451166942715645, -0.005005331244319677, 0.012526179663836956, -0.00837059784680605, 0.004372921772301197, -0.02331421710550785, -0.02595117874443531, -0.009045742452144623, 0.008133161813020706, 0.003335821209475398, -0.02086436189711094, 0.03272572159767151, -0.03922464698553085, -0.05487532541155815, -0.026905007660388947, -0.0037511736154556274, 0.07219252735376358, -0.010849994607269764, -0.07214827835559845, 0.006021644454449415, -0.047505877912044525, 0.07637257128953934, -0.038177236914634705, -0.03142429515719414, -0.0046257334761321545, 0.04630778357386589, -0.031561654061079025, -0.06092188507318497, 0.029439637437462807, -0.02291303314268589, -0.03603252395987511, -0.04674571007490158, -0.03395625576376915, -0.03554007411003113, -0.011779801920056343, -0.06571996212005615, 0.0024013202637434006, -0.06506816297769547, -0.07135722041130066, 0.009226498194038868, 0.0713857039809227, 0.0138174369931221, -0.011222210712730885, -0.007342441938817501, 0.0020846626721322536, -0.12482854723930359, -0.004960545804351568, -0.04857505112886429, -0.04630649462342262, -0.05623241886496544, -0.0069851563312113285, 0.066311314702034, -0.035745784640312195, -0.03605711832642555, 0.04092022031545639, 0.016149630770087242, 0.01587836630642414, 0.029297731816768646, 0.028954967856407166, 0.02809365652501583, -0.02649189718067646, 0.011531911790370941, 0.07532617449760437, 0.0034931155387312174, -0.015550171956419945, -0.03916100785136223, 0.023473544046282768, 0.04153124988079071, 0.038940198719501495, 0.003575259353965521, 0.03079817071557045, 0.014846858568489552, 0.026764290407299995, -0.06632062792778015, 0.05669261887669563, -0.040826115757226944, 0.016892217099666595, -0.0256985891610384, -0.053366806358098984, 0.0359412282705307, 0.02952982299029827, 0.015103311277925968, -0.01943865418434143, -0.03630931302905083, 0.005827514920383692, -0.0521501749753952, -0.03996977582573891, -0.019188011065125465, 0.02778196707367897, 0.035017360001802444, -0.03578692302107811, -0.008029267191886902, -0.03624933958053589, 0.027365194633603096, -0.001918874797411263, -0.019746113568544388, -0.06641153991222382, -0.03595243766903877, 0.007731993682682514, -0.025225235149264336, 0.02424917370080948, 0.01616474986076355, -0.014440889470279217, 0.03474182263016701, -0.007598589640110731, -0.03362468257546425, 0.017148979008197784, 0.011376946233212948, -0.03712175041437149, -0.01902889274060726, -0.013803506270051003, -0.014003333635628223, -0.01367628388106823, 0.0024838692042976618, 0.021789327263832092, 0.024060934782028198, 0.057659395039081573, 0.005498332437127829, 0.03128387778997421, -0.014993474818766117, 0.021387465298175812, 0.02193104289472103, 0.03333340957760811, -0.06766139715909958, 0.014608106575906277, -0.028904501348733902, -0.025084326043725014, -0.030160686001181602, 0.031558770686388016, -0.0037033020053058863, -0.052670590579509735, -0.032741934061050415, 0.004881587345153093, -0.06159941107034683, -0.021907636895775795, -0.00939652044326067, 0.03274642676115036, 0.04666053131222725, -0.017694571986794472, 0.05104926973581314, -0.027840450406074524, -0.02742248959839344, 0.007562397979199886, 0.009402662515640259, -0.03754967451095581, 0.03434886038303375, 0.01391368918120861, 0.0008865830604918301, 0.0028190859593451023, -0.007814113050699234, 0.06114321947097778, 0.03713550046086311, -0.008530719205737114, -0.030646666884422302, 0.024333031848073006, 0.01419680006802082, 0.04287015274167061, -0.0030893641524016857, 0.004687895067036152, -0.01783975586295128, -0.015099156647920609, -0.005235747434198856, -0.012687485665082932, 0.0014720241306349635, 0.003435617545619607, 0.04539145156741142, -0.0395863838493824, -0.07165416330099106, 0.036885276436805725, -0.004687322303652763, 0.024449897930026054, 0.017282025888562202, -0.001277519972063601, -0.0044581033289432526, -0.00438820431008935, 0.02599787525832653, 0.05463799089193344, -0.05087956786155701, 0.023646144196391106, -0.002799051580950618, -0.0070989616215229034, 0.018850982189178467, 0.009982088580727577, -0.053074195981025696, -0.026364274322986603, -0.012554461136460304, -0.002629827708005905, -0.0409415103495121, -0.021722162142395973, -0.03510664403438568, 0.00860392302274704, -0.009336303919553757, -0.020686717703938484, 0.0017620963044464588, 0.0056966757401824, -0.007800545077770948, -0.016793593764305115, 0.020073503255844116, -0.013853374868631363, 0.010265769436955452, 0.020393919199705124, -0.04249089956283569, 0.010497916489839554, -0.006781246047466993, 0.02465222403407097, 0.0208293404430151, -0.03304210305213928, -0.04619326442480087, -0.028460411354899406, -0.005438537802547216, -0.00025934583391062915, 0.043628644198179245, 0.015627862885594368, -0.032724376767873764, -0.03623703122138977, -0.007820401340723038, -0.038673631846904755, 0.012313922867178917, -0.011919396929442883, -0.03600475564599037, 0.0328686386346817, 0.056523267179727554, 0.03058604709804058, 0.034721504896879196, -0.019069794565439224, 0.006309479009360075, 0.06327992677688599, -0.08052375167608261, -0.009062422439455986, -0.0480036661028862, -0.07411978393793106, 0.00935221929103136, 0.0016862050397321582, 0.021422915160655975, -0.0218880083411932, 0.03016038052737713, 0.019569937139749527, 0.016430305317044258, 0.029393240809440613, -0.005535145755857229, 0.027112914249300957, -0.07079000771045685, 0.014653355814516544, -0.07077650725841522, 0.013471555896103382, 0.035651080310344696, 0.004727622494101524, -0.009409274905920029, -0.016862118616700172, -0.038623712956905365, 0.05434358865022659, -0.052010372281074524, -0.016666589304804802, 0.02499055117368698, -0.007355243433266878, 0.011633242480456829, 0.016657179221510887, -0.05212903767824173, 0.032771505415439606, 0.030753182247281075, -0.025144772604107857, -0.06612839549779892, -0.020126985386013985, 0.043830472975969315, 0.03377361595630646, -0.020946089178323746, -0.035674355924129486, 0.01067239511758089, 0.052587442100048065, 0.027166398242115974, 0.02664870209991932, 0.03806549683213234, -0.0254521444439888, 0.027073422446846962, 0.035387612879276276, -0.013444550335407257, -0.02487606555223465, -0.004552361089736223, -0.007285356055945158, -0.05836282670497894, 0.023485450074076653, 0.02410380356013775, -0.0420973002910614, -0.05510750040411949, 0.05554738640785217, 0.007772413082420826, -0.024145441129803658, -0.05970057472586632, -0.007648600731045008, -0.05823018401861191, -0.018146159127354622, -0.023597974330186844, 0.021037664264440536, -0.027923857793211937, 0.07539617270231247, 0.02325247973203659, -0.0053658499382436275, 0.07611056417226791, -0.0035814980510622263, -0.0005182997556403279, -0.02151953987777233, 0.06514222174882889, 0.09095878154039383, 0.023707635700702667, -0.019019147381186485, 0.05139212682843208, -0.02282700687646866, -0.04884393513202667, 0.020601971074938774, -0.023711521178483963, 0.0037906684447079897, -0.007464708760380745, 0.007530468516051769, 0.04438170790672302, -0.011104261502623558, 0.06483530253171921, -0.04043921083211899, 0.0031260631512850523, -0.010732462629675865, 0.05265440419316292, 0.009778955020010471, 0.044962868094444275, -0.013258174061775208, -0.010439288802444935, 0.010438712313771248, -0.0283291544765234, 0.015720579773187637, -0.038382045924663544, -0.014786730520427227, 0.028299996629357338, -0.02194768562912941, 0.010671201162040234, -0.014249198138713837, 0.029441792517900467, 0.06093178689479828, -0.026649128645658493, 0.008481856435537338, -0.00015060526493471116, 0.022330544888973236, 0.012294597923755646, -0.009947833605110645, -0.01563335955142975, -0.023234324529767036, -0.017446935176849365, -0.010128511115908623, -0.01277900766581297, -0.025418417528271675, -0.024102719500660896, 0.045738741755485535, -0.013856814242899418, 0.009489031508564949, 0.028627164661884308, 0.015662025660276413, -0.05043213814496994, -0.07308168709278107, -0.05951068550348282, -0.03203795105218887, -0.054465778172016144, -0.020039938390254974, 0.022357290610671043, -0.00890715979039669, -0.03617839142680168, -0.016047615557909012, -0.0312032587826252, -0.012664146721363068, 0.06297801434993744, -0.030942043289542198, -0.029005050659179688, 0.019287651404738426, 0.02186242677271366, 0.028008118271827698, 0.02685576304793358, 0.04653537645936012, 0.003059654263779521, 0.007844874635338783, -0.031215300783514977, -0.04914408549666405, 0.04543107748031616, -0.003650053171440959, 0.04010066017508507, -0.07882174849510193, 0.02253955602645874, 0.002552037127315998, 0.015074169263243675, -0.052304551005363464, 0.0244908407330513, -0.012182082049548626, -0.03711777552962303, 0.02661798894405365, -0.02170964516699314, -0.009806525893509388, -0.007878177799284458, -0.020746154710650444, 0.00939764641225338, 0.016896625980734825, 0.03704908490180969, -0.021452762186527252, 0.07911286503076553, 0.024847865104675293, -0.01534129586070776, -0.04278409481048584, -0.007080272305756807, 0.005616046022623777, 0.007191292475908995, -0.031799186021089554, -0.060461681336164474, -0.042817097157239914, -0.06410591304302216, 0.0036720356438308954, 0.025392750278115273, -0.02097504399716854, -0.029567664489150047, 0.027270318940281868, 0.014829711988568306, -0.06956911832094193, 0.007436632178723812, -0.023133505135774612, 0.03391947224736214, -0.033691514283418655, -0.03419222682714462, 0.018982188776135445, 0.025455845519900322, -0.006922102067619562, 0.01811985671520233, 0.0322306752204895, -0.04883705452084541, 0.00030269523267634213, -0.009739415720105171, 0.021051062270998955, 0.040595803409814835, -0.0065507288090884686, 0.012964680790901184 ]
[ -0.10111295431852341, 0.03310537710785866, -0.020608363673090935, -0.00813981145620346, 0.03588946536183357, -0.029594717547297478, 0.04140564799308777, 0.01528954692184925, -0.021678287535905838, -0.01782427355647087, -0.007406269200146198, -0.0415983721613884, -0.015182401984930038, -0.006527652498334646, 0.0706879273056984, 0.007682206574827433, -0.017745593562722206, -0.06762176007032394, 0.02081102319061756, 0.013160747475922108, 0.007452796678990126, 0.027592843398451805, -0.009717986918985844, -0.01373266614973545, 0.02877022884786129, 0.050703927874565125, 0.05525808036327362, -0.03820451721549034, 0.002817765111103654, -0.20929887890815735, 0.020010357722640038, 0.0093197887763381, -0.0009480301523581147, -0.013725914061069489, 0.008645632304251194, 0.02973669208586216, 0.01473713107407093, 0.028508787974715233, -0.007770257070660591, 0.031061239540576935, 0.01529858261346817, 0.014800457283854485, -0.04744335636496544, -0.020107820630073547, 0.04032911732792854, 0.011421620845794678, 0.0030151735991239548, -0.03964725881814957, 0.014672163873910904, 0.045963775366544724, -0.037823501974344254, -0.04156312346458435, -0.001743695349432528, -0.02067132480442524, -0.024679675698280334, -0.009586603380739689, 0.05858154222369194, 0.0550333671271801, 0.0017827970441430807, 0.011873651295900345, 0.0030784166883677244, -0.011437497101724148, -0.13169743120670319, 0.09632844477891922, 0.046583112329244614, 0.04336666315793991, -0.012654468417167664, -0.021086016669869423, 0.007644123863428831, 0.08530206978321075, 0.02944082021713257, -0.0005550289060920477, -0.019925003871321678, 0.09287065267562866, 0.0086588179692626, 0.006015797145664692, -0.015133688226342201, 0.005549801047891378, 0.0575290322303772, -0.07675813138484955, -0.04134416580200195, -0.028591955080628395, 0.009209784679114819, -0.0346728079020977, -0.02349313534796238, 0.010569144040346146, -0.027849506586790085, 0.019869839772582054, 0.0479157492518425, 0.037663936614990234, 0.06566385179758072, -0.03842370584607124, 0.029200831428170204, 0.03472559526562691, -0.09689431637525558, -0.02781430259346962, -0.016258908435702324, 0.01850231923162937, -0.033948738127946854, 0.4407790005207062, -0.059363074600696564, -0.010709957219660282, 0.004473680164664984, 0.03241147845983505, -0.015073035843670368, -0.0019688094034790993, -0.0021207835525274277, -0.07050537317991257, 0.0020484086126089096, -0.0442715622484684, 0.047070201486349106, 0.02361242286860943, 0.05564024671912193, -0.03708275035023689, -0.027856487780809402, -0.00301178521476686, 0.04100507125258446, 0.0004686921602115035, -0.004096371587365866, 0.013412742875516415, -0.0013078300980851054, 0.002724209800362587, 0.010153340175747871, -0.026389505714178085, 0.013420429080724716, -0.029598871245980263, 0.020802510902285576, 0.05082147940993309, 0.013383924029767513, -0.01188025251030922, 0.05065356567502022, -0.06633254140615463, -0.07682080566883087, -0.0032946309074759483, 0.020789673551917076, 0.018411049619317055, 0.02949153445661068, -0.008752663619816303, 0.0006865282193757594, 0.02569480985403061, 0.010094922035932541, -0.02541281282901764, 0.018091779202222824, -0.01816117949783802, -0.06579703837633133, 0.09033679962158203, -0.0345090813934803, -0.013456868007779121, -0.015682654455304146, -0.010866085067391396, 0.02182415872812271, 0.041407566517591476, -0.00897204503417015, -0.05253724381327629, 0.01570916548371315, 0.017943015322089195, 0.06447320431470871, 0.016384489834308624, -0.029935553669929504, -0.03255034238100052, 0.011077490635216236, -0.016106868162751198, -0.040220294147729874, 0.03710733354091644, 0.045589473098516464, -0.062278863042593, -0.052069664001464844, 0.011417585425078869, 0.027889005839824677, -0.08252590149641037, 0.01985042355954647, -0.005696117412298918, -0.03966585546731949, -0.022268831729888916, -0.006322458386421204, -0.027796145528554916, -0.01531051192432642, -0.009058370254933834, 0.03695666417479515, 0.004712497815489769, 0.0365845263004303, -0.007921809330582619, -0.0505153127014637, -0.0025338975246995687, 0.004570832476019859, -0.04255635291337967, -0.06722940504550934, -0.013623693026602268, -0.005767892114818096, -0.004415865521878004, -0.012463177554309368, -0.062009792774915695, -0.09763676673173904, 0.07994665950536728, -0.04070812463760376, -0.006490941159427166, 0.04486029967665672, -0.0014352002181112766, 0.024592183530330658, -0.03202053904533386, 0.009350876323878765, 0.04020705074071884, 0.015882989391684532, 0.06022695451974869, -0.07994415611028671, 0.0700402557849884, 0.07722111791372299, -0.09175819903612137, 0.10202207416296005, 0.016098881140351295, -0.028029009699821472, -0.01212703250348568, -0.027847617864608765, 0.021942978724837303, -0.029337091371417046, -0.03177932649850845, -0.0019214005442336202, 0.011348406784236431, -0.003293437883257866, 0.027572890743613243, -0.005547310691326857, 0.001144327805377543, -0.008809054270386696, -0.3180444538593292, -0.06554185599088669, -0.02549004927277565, -0.00906415469944477, 0.012647933326661587, -0.040966834872961044, -0.017316238954663277, 0.04994808882474899, -0.00507937278598547, -0.008476028218865395, 0.07818447053432465, 0.02096964791417122, -0.017289889976382256, -0.11927659809589386, 0.003763970686122775, 0.011662636883556843, -0.014322021044790745, -0.04984373226761818, -0.003055200446397066, 0.009558526799082756, -0.01201873179525137, 0.009770582430064678, 0.011717722751200199, -0.05603586509823799, 0.0059716287069022655, -0.05091383680701256, 0.09812560677528381, -0.01617840863764286, 0.08189819753170013, -0.021747732535004616, 0.03770536929368973, -0.006759225856512785, 0.053243812173604965, -0.0861956849694252, 0.010411860421299934, -0.04645386338233948, -0.06439059227705002, 0.019210198894143105, 0.01405750960111618, -0.04491136968135834, -0.03501243144273758, -0.009855636395514011, -0.04273960739374161, -0.044720396399497986, -0.025745008140802383, 0.009269910864531994, -0.026262061670422554, 0.0029488655272871256, -0.0326189249753952, 0.07792125642299652, 0.003957868088036776, -0.0026978664100170135, 0.001357127446681261, 0.01173629704862833, 0.02778543531894684, -0.030544716864824295, -0.08496347069740295, 0.014013315550982952, 0.003987433854490519, -0.0319477915763855, 0.02317008376121521, 0.08101111650466919, 0.0349900983273983, -0.046056631952524185, -0.028299076482653618, -0.008515271358191967, -0.03232855349779129, -0.014883611351251602, 0.055102232843637466, -0.03074754774570465, -0.056798215955495834, 0.12255930155515671, -0.008549665100872517, -0.020947089418768883, 0.017445342615246773, 0.043117545545101166, -0.010519194416701794, 0.0020060609094798565, 0.03684785217046738, -0.018207700923085213, 0.015419946983456612, 0.011901273392140865, 0.05040031671524048, -0.0274384506046772, -0.01108644437044859, 0.031613126397132874, -0.012430387549102306, 0.0010391057003289461, 0.05313859507441521, -0.032488517463207245, -0.04285905882716179, 0.020310480147600174, 0.00286388979293406, -0.0526714026927948, 0.07033053040504456, -0.006211006548255682, -0.22286556661128998, 0.0333724282681942, 0.07516202330589294, 0.0442730076611042, -0.0006143969367258251, 0.02804945781826973, 0.022127069532871246, -0.07572335004806519, 0.02307899482548237, 0.023867536336183548, 0.038799624890089035, 0.031731706112623215, 0.021797215566039085, -0.03638491779565811, 0.018948638811707497, 0.0000033752373838069616, 0.0480358861386776, -0.02158363349735737, 0.009198884479701519, 0.012815002351999283, 0.01629643328487873, -0.02507568523287773, 0.1770593225955963, -0.014722570776939392, 0.029647380113601685, 0.010286541655659676, 0.03774215653538704, 0.05168167129158974, 0.07631169259548187, 0.023044586181640625, 0.0208839513361454, -0.006897733546793461, 0.044088300317525864, -0.0018787733279168606, 0.01928161457180977, -0.07721485197544098, -0.013264321722090244, 0.005056661553680897, 0.018080897629261017, 0.0003040512965526432, 0.0235541183501482, -0.022454621270298958, -0.06594933569431305, 0.0024312371388077736, 0.08971330523490906, 0.024927271530032158, 0.0032115490175783634, -0.045229967683553696, -0.05758797377347946, -0.0049993302673101425, -0.0339459590613842, -0.03925406187772751, -0.008587339892983437, -0.0166640505194664, 0.0026199526619166136, 0.03880247846245766, 0.03411804512143135, -0.030713772401213646, -0.016943465918302536, -0.009796851314604282, -0.001157040474936366, 0.0002013297489611432, 0.11780248582363129, 0.0718335509300232, 0.03728420287370682 ]
[ -0.0281500406563282, 0.006848237942904234, -0.011185111477971077, 0.02709391713142395, -0.010708432644605637, 0.004118189215660095, -0.0062441653572022915, -0.003694914048537612, 0.009324709884822369, 0.014959491789340973, -0.009377005510032177, -0.006320565473288298, 0.02330281026661396, -0.015080644749104977, 0.01920597441494465, -0.012743051163852215, 0.0030184928327798843, -0.012800837866961956, 0.02961220219731331, 0.009864948689937592, -0.02107330597937107, 0.00929572619497776, 0.011477760970592499, -0.012424199841916561, -0.0024838880635797977, 0.022463584318757057, -0.01701393909752369, -0.017796525731682777, 0.0010558099020272493, -0.12712392210960388, -0.012750056572258472, -0.0026485149282962084, -0.03552950918674469, 0.00927769672125578, 0.002270736265927553, -0.0033015203662216663, 0.0167179387062788, 0.029177283868193626, -0.004314258228987455, -0.00938495248556137, 0.012024384923279285, -0.021017150953412056, 0.01323732826858759, 0.005985787604004145, -0.006792820058763027, -0.0018999249441549182, 0.005330087151378393, -0.003953726030886173, -0.035761892795562744, -0.02160542644560337, -0.010940443724393845, -0.02889394387602806, 0.009070455096662045, 0.02586098201572895, -0.004015764687210321, -0.002827159594744444, 0.0007511544390581548, -0.011265783570706844, 0.018417518585920334, -0.00323484162800014, -0.0038545012939721346, 0.007303725928068161, -0.019775986671447754, -0.02293090894818306, 0.015269588679075241, -0.013212400488555431, -0.0028206505812704563, -0.0018999407766386867, 0.0062318299897015095, -0.003424552269279957, -0.06111497804522514, 0.02766333892941475, 0.013422094285488129, 0.011662676930427551, 0.00302418926730752, 0.0215903390198946, -0.0035550377797335386, -0.011522958986461163, 0.00546397315338254, -0.0316133126616478, -0.0349557138979435, 0.01088610291481018, 0.0014023145195096731, 0.014871673658490181, 0.02751452662050724, 0.030531927943229675, 0.03097887896001339, 0.03153316304087639, -0.013254610821604729, 0.016277730464935303, -0.03501676023006439, 0.028245767578482628, -0.000983176869340241, -0.004801537841558456, -0.0765698254108429, -0.023532576858997345, -0.01910463720560074, -0.00843444187194109, 0.005794247146695852, 0.8693706393241882, 0.015764053910970688, 0.03220777213573456, 0.03258829191327095, 0.03209980949759483, -0.00548818102106452, -0.018854884430766106, -0.012873631902039051, -0.004617268685251474, 0.053544506430625916, -0.026707394048571587, 0.004092731513082981, 0.02948930487036705, 0.016022145748138428, -0.02548731304705143, -0.012474354356527328, 0.024981163442134857, -0.02479526959359646, 0.01994212158024311, -0.018289780244231224, 0.0003667419368866831, 0.014103593304753304, -0.010705249384045601, -0.01669837161898613, -0.007958590053021908, 0.023691395297646523, -0.1703186184167862, 0.01601739600300789, -8.583195263475408e-33, 0.0773787647485733, 0.0024753978941589594, -0.005509459413588047, 0.005184140056371689, 0.031922612339258194, -0.015678897500038147, 0.06299587339162827, 0.051801085472106934, 0.015385329723358154, -0.04645572230219841, 0.032950181514024734, -0.025936147198081017, 0.013948973268270493, -0.022936267778277397, 0.011439541354775429, 0.004486124496906996, -0.03359946608543396, 0.018882406875491142, 0.02030470035970211, 0.012025171890854836, 0.027866609394550323, 0.03182002529501915, -0.01758713275194168, -0.009461426176130772, -0.0030182437039911747, 0.009931177832186222, 0.014691750518977642, 0.04329454153776169, -0.03571182116866112, -0.040562618523836136, -0.014128588140010834, 0.024670150130987167, -0.001399027300067246, 0.0002107397303916514, 0.032022830098867416, -0.04417480528354645, -0.006341130007058382, -0.0013965825783088803, -0.01045212522149086, -0.026864631101489067, -0.03196073696017265, -0.019582662731409073, -0.017806576564908028, -0.0038247068878263235, -0.0198116023093462, -0.043454237282276154, -0.011359176598489285, -0.020592477172613144, 0.01836942695081234, -0.007248951122164726, 0.03625614941120148, 0.0048572407104074955, 0.016768572852015495, -0.016734298318624496, -0.03523440659046173, 0.035398971289396286, -0.02291461080312729, 0.009767609648406506, -0.0048889764584600925, 0.05598943307995796, 0.02206234075129032, -0.004527607001364231, -0.03155266493558884, 0.013706878758966923, -0.009933729656040668, -0.01571756787598133, 0.009430130943655968, -0.011049206368625164, 0.005957996938377619, -0.0038855099119246006, -0.021042034029960632, 0.006653092335909605, -0.03281752020120621, 0.010077640414237976, 0.034820619970560074, 0.004070292692631483, -0.0041807363741099834, 0.01930971071124077, -0.006482838187366724, 0.009442003443837166, 0.009351572953164577, -0.024360038340091705, 0.014824392274022102, -0.04120921343564987, 0.004258626606315374, -0.016827527433633804, 0.01693195104598999, -0.03706980124115944, -0.028458647429943085, -0.04239071160554886, 0.03258870169520378, 0.04847260192036629, 0.005466808564960957, -0.01174982637166977, 0.005310053937137127, 8.487472554436042e-33, 0.012029143050312996, -0.006796114146709442, -0.027061624452471733, 0.009508361108601093, -0.00521594425663352, -0.020076828077435493, -0.0002969838969875127, 0.011803130619227886, -0.06292269378900528, 0.020780660212039948, 0.005268842447549105, 0.009443959221243858, -0.03831082209944725, 0.02805599942803383, 0.042046546936035156, -0.030458329245448112, 0.018141085281968117, -0.03500894457101822, -0.006280621513724327, -0.015012968331575394, 0.02605399861931801, 0.026180516928434372, 0.0180981308221817, -0.014199882745742798, -0.010798433795571327, 0.034641243517398834, -0.05071043595671654, 0.02458140440285206, 0.0033188897650688887, 0.0019522838992998004, -0.019852425903081894, 0.0199001282453537, 0.010015959851443768, -0.015145032666623592, 0.004333342891186476, 0.025422273203730583, 0.00009207362018059939, -0.01752580888569355, 0.010202226229012012, 0.016617709770798683, 0.007541841361671686, -0.0018597302259877324, -0.0014311859849840403, 0.02038206346333027, 0.004525559488683939, 0.018593614920973778, -0.016455814242362976, -0.0034094261936843395, 0.01554670836776495, 0.03434016928076744, 0.01729845441877842, 0.03097924031317234, 0.003250496694818139, 0.00941680371761322, 0.028388747945427895, -0.026767749339342117, -0.015887558460235596, -0.01541336253285408, -0.025645187124609947, 0.019236765801906586, -0.01178736798465252, 0.04603702202439308, -0.02558019757270813, 0.04065907374024391, -0.006260290276259184, -0.0021956306882202625, -0.021370630711317062, 0.011650696396827698, -0.00958727952092886, 0.0048963711597025394, -0.036709848791360855, -0.012735997326672077, -0.015032350085675716, 0.024181842803955078, 0.03703807294368744, -0.04031616076827049, -0.006911279167979956, -0.004140801727771759, -0.001432057237252593, 0.006163634825497866, 0.010886875912547112, -0.011369973421096802, 0.016313355416059494, 0.0075773997232317924, -0.019820205867290497, 0.033626340329647064, 0.008532793261110783, 0.015010715462267399, -0.015904823318123817, -0.007254236377775669, -0.008277008309960365, -0.005363320931792259, 0.01613219827413559, -0.012153001502156258, -0.005355371627956629, -1.3876945814672581e-8, -0.013291050679981709, 0.011179114691913128, -0.037961144000291824, 0.014305442571640015, -0.006132146809250116, 0.006381058134138584, -0.03160926327109337, -0.014852629974484444, 0.005473698489367962, 0.0011397057678550482, 0.0023093221243470907, -0.009898696094751358, 0.023587917909026146, 0.007681975141167641, 0.002470868406817317, -0.07981712371110916, -0.03810618817806244, -0.008088379167020321, 0.016817662864923477, 0.028861232101917267, 0.011334356851875782, 0.030810434371232986, -0.01851239614188671, 0.005199339706450701, 0.020336860790848732, 0.02326476015150547, 0.0285071711987257, -0.07278686761856079, -0.020421452820301056, 0.05210649222135544, 0.00796923041343689, -0.027082927525043488, -0.05785399675369263, -0.008453101851046085, -0.026149429380893707, 0.006881320849061012, 0.00856646429747343, 0.00818131398409605, 0.016477083787322044, 0.01767505519092083, -0.01124431099742651, -0.0216271560639143, 0.01294073648750782, -0.01466255635023117, 0.0037843070458620787, -0.01549486629664898, -0.04772120341658592, -0.008046038448810577, 0.002834012033417821, -0.04629197344183922, -0.00243563880212605, 0.019118307158350945, 0.02271345444023609, -0.005656842142343521, 0.008228582330048084, 0.02543044649064541, 0.01274923700839281, -0.0052987197414040565, -0.04062611982226372, -0.00798564963042736, 0.054898496717214584, 0.020647896453738213, -0.0033676198218017817, -0.031044699251651764 ]
tdd-expressive-test-names
https://markhneedham.com/blog/2010/03/19/tdd-expressive-test-names
false
2010-03-19 07:48:51
Functional C#: Continuation Passing Style
[ "c", "functional-programming" ]
[ ".NET" ]
Partly inspired by http://alexscordellis.blogspot.com/2010/03/lambda-passing-style-for-access-to.html?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed:+alexscordellis+(Alex+Scordellis)[my colleague Alex Scordellis' recent post about lambda passing style] I spent some time trying out a http://www.markhneedham.com/blog/2009/06/22/f-continuation-passing-style/[continuation passing style] style on some of the code in one of our controllers to see how different the code would look compared to its current top to bottom imperative style. We had code similar to the following: [source,csharp] ---- public ActionResult Submit(string id, FormCollection form) { var shoppingBasket = CreateShoppingBasketFrom(id, form); if (!validator.IsValid(shoppingBasket, ModelState)) { return RedirectToAction("index", "ShoppingBasket", new { shoppingBasket.Id }); } try { shoppingBasket.User = userService.CreateAccountOrLogIn(shoppingBasket); } catch (NoAccountException) { ModelState.AddModelError("Password", "User name/email address was incorrect - please re-enter"); return RedirectToAction("index", ""ShoppingBasket", new { Id = new Guid(id) }); } UpdateShoppingBasket(shoppingBasket); return RedirectToAction("index", "Purchase", new { Id = shoppingBasket.Id }); } ---- The user selects some products that they want to buy and then just before they click to go through to the payment page we have the option for them to login if they are an existing user. This code handles the server side validation of the shopping basket and tries to login the user. If it fails then we return to the original page with an error message. If not then we forward them to the payment page. With a continuation passing style we move away from the imperative style of programming whereby we call a function, get a result and then do something with that result to a style where we call a function and pass it a continuation/block of code which represents the rest of the program. After it has calculated the result it should call the continuation. If we apply that style to the above code we end up with the following: [source,csharp] ---- public ActionResult Submit(string id, FormCollection form) { var shoppingBasket = CreateShoppingBasketFrom(id, form); return IsValid(shoppingBasket, ModelState, () => RedirectToAction("index", "ShoppingBasket", new { shoppingBasket.Id} ), () => LoginUser(shoppingBasket, () => { ModelState.AddModelError("Password", "User name/email address was incorrect - please re-enter"); return RedirectToAction("index", ""ShoppingBasket", new { Id = new Guid(id) }); }, user => { shoppingBasket.User = user; UpdateShoppingBasket(shoppingBasket); return RedirectToAction("index", "Purchase", new { Id = shoppingBasket.Id }); })); } private RedirectToRouteResult IsValid(ShoppingBasket shoppingBasket, ModelStateDictionary modelState, Func<RedirectToRouteResult> failureFn, Func<RedirectToRouteResult> successFn) { return validator.IsValid(shoppingBasket, modelState) ? successFn() : failureFn(); } private RedirectToRouteResult LoginUser(ShoppingBasket shoppingBasket, Func<RedirectToRouteResult> failureFn, Func<User,RedirectToRouteResult> successFn) { User user = null; try { user = userService.CreateAccountOrLogIn(shoppingBasket); } catch (NoAccountException) { return failureFn(); } return successFn(user); } ---- The common theme in this code seemed to be that there we both success and failure paths for the code to follow depending on the result of a function so I passed in both success and failure continuations. I quite like the fact that the try/catch block is no longer in the main method and the different things that are happening in this code now seem grouped together more than they were before. In general though the way that I read the code doesn't seem that different. Instead of following the flow of logic in the code from top to bottom we just need to follow it from left to right instead and since that's not as natural the code is more complicated than it was before. I do understand how the code works more than I did before I started playing before this but I'm not yet convinced this is a better approach to designing code in C#.
null
null
[ 0.02254161238670349, -0.041722867637872696, 0.001465573557652533, 0.020351288840174675, 0.08717180043458939, 0.010165415704250336, 0.02486283704638481, 0.01670949161052704, 0.01824566349387169, -0.01563987322151661, -0.010015802457928658, -0.025018323212862015, -0.06645877659320831, 0.023609405383467674, -0.025587206706404686, 0.08180902153253555, 0.07490850239992142, 0.02236093394458294, 0.020636124536395073, 0.0012371876509860158, -0.01989975944161415, 0.08361327648162842, 0.010706119239330292, 0.020073745399713516, 0.042967233806848526, 0.03983772546052933, 0.004963157698512077, -0.01128328125923872, -0.06481683254241943, -0.006807748693972826, 0.037338823080062866, 0.033255286514759064, 0.006872983183711767, 0.006290837191045284, -0.0027139887679368258, -0.023633573204278946, 0.004457360133528709, -0.0027211825363337994, 0.020307939499616623, 0.03158392012119293, -0.06051487848162651, 0.03372740373015404, -0.017751410603523254, 0.017442084848880768, -0.024576669558882713, 0.011577747762203217, -0.029605522751808167, 0.011088023893535137, -0.014935968443751335, -0.04585125297307968, -0.07104562968015671, 0.034967560321092606, -0.039710693061351776, 0.014395003207027912, 0.017685651779174805, 0.0449637733399868, -0.0017566198948770761, -0.056712787598371506, 0.018496062606573105, -0.057163868099451065, 0.021496744826436043, 0.00749453017488122, 0.0035249399952590466, 0.021981164813041687, 0.021382039412856102, 0.007875602692365646, -0.02684641070663929, 0.06048734113574028, -0.04031027853488922, -0.024694222956895828, -0.002166444668546319, 0.0023916808422654867, 0.015068715438246727, 0.00008757789328228682, -0.011548874899744987, -0.022998807951807976, -0.014743437990546227, 0.06459997594356537, 0.009549793787300587, 0.017555156722664833, -0.010837125591933727, -0.017408911138772964, 0.009342039003968239, 0.02639959007501602, -0.008960401639342308, -0.025979235768318176, -0.040569376200437546, 0.0029312754049897194, 0.003934724256396294, 0.05489443987607956, -0.018838686868548393, -0.05003279075026512, 0.012613190338015556, 0.04790292680263519, -0.009837013669312, -0.020073330029845238, 0.0017062671249732375, 0.004719164688140154, 0.0074628861621022224, -0.012492900714278221, -0.038816094398498535, -0.03192425146698952, 0.02250601164996624, -0.003905389690771699, -0.0738900676369667, 0.0005957251996733248, -0.04437932372093201, -0.013416597619652748, 0.0311825443059206, 0.016243979334831238, -0.038995519280433655, 0.01625419408082962, -0.05407009273767471, -0.011707854457199574, -0.05321628227829933, 0.08375326544046402, 0.030606884509325027, -0.02427947334945202, -0.02303016558289528, 0.038863152265548706, 0.06245547905564308, 0.009791530668735504, -0.0174089428037405, 0.07480651140213013, 0.021708527579903603, 0.024029450491070747, -0.009954296983778477, 0.05009985715150833, -0.007417882792651653, -0.07137894630432129, -0.005287011153995991, 0.060612767934799194, -0.01810399256646633, -0.010686904191970825, -0.03804626688361168, -0.02914155088365078, 0.0015132646076381207, 0.02461249753832817, 0.04598308354616165, 0.033899396657943726, -0.005060654133558273, -0.019672121852636337, 0.030697103589773178, -0.018915975466370583, 0.04513081535696983, 0.0040335748344659805, 0.03337881714105606, -0.036653850227594376, -0.030256204307079315, 0.03965795785188675, 0.047709498554468155, 0.02913944609463215, 0.04847494885325432, -0.030113376677036285, 0.01686699688434601, 0.04034292697906494, 0.03173311427235603, -0.001031658612191677, 0.002718087285757065, 0.007397900335490704, 0.07187355309724808, 0.04046789929270744, 0.005305963568389416, 0.03415292501449585, 0.024784108623862267, 0.009297871962189674, -0.01756972260773182, 0.05191952362656593, -0.006076450925320387, -0.025961076840758324, -0.07816451787948608, -0.031143687665462494, 0.050835635513067245, -0.032309457659721375, -0.006922425236552954, 0.04439283534884453, 0.06812766939401627, 0.003340499009937048, 0.0525941476225853, -0.021795380860567093, -0.05289139598608017, 0.029191836714744568, 0.02196749486029148, 0.008849945850670338, 0.048841942101716995, 0.026938358321785927, 0.06393306702375412, 0.04331091418862343, -0.010437005199491978, 0.050820302218198776, -0.058251336216926575, -0.07118754088878632, -0.056828573346138, -0.013460521586239338, 0.047991737723350525, -0.015380569733679295, -0.0193230751901865, 0.11698174476623535, 0.04033859074115753, 0.03050285577774048, 0.015540869906544685, -0.02808649092912674, 0.016054553911089897, -0.03681759163737297, -0.0350700318813324, 0.02437695302069187, 0.05691758543252945, 0.006129468325525522, -0.041440077126026154, 0.05980711057782173, -0.0169510580599308, -0.02145290933549404, 0.005599122494459152, 0.003988218028098345, 0.06252006441354752, 0.030953556299209595, 0.0424267016351223, -0.02363068051636219, 0.07376689463853836, -0.047725044190883636, 0.048409029841423035, 0.006747162435203791, -0.002807480515912175, -0.004825476091355085, -0.009226271882653236, 0.10984401404857635, 0.06600916385650635, -0.023002073168754578, -0.06742974370718002, 0.020697643980383873, 0.0038408448453992605, -0.0476340651512146, 0.01049558911472559, -0.026764532551169395, -0.024013062939047813, 0.003513867734000087, -0.003648461075499654, -0.0302132461220026, 0.022436926141381264, -0.025057045742869377, 0.0074479239992797375, 0.06870350241661072, -0.0044732424430549145, 0.03883998841047287, -0.009856736287474632, -0.010127414017915726, -0.027854423969984055, -0.0046722497791051865, -0.022098224610090256, 0.007727517746388912, 0.031131744384765625, -0.005976601503789425, 0.052046433091163635, -0.06310641765594482, -0.038684405386447906, -0.015109643340110779, -0.051979076117277145, 0.004819873720407486, 0.03495429456233978, 0.0815352350473404, -0.01504718977957964, 0.06612218171358109, -0.011892050504684448, 0.006406188942492008, -0.03775471821427345, -0.046074897050857544, -0.0316452793776989, -0.013054434210062027, 0.01579900272190571, 0.05286648869514465, 0.032539743930101395, 0.008128516376018524, 0.006284100469201803, -0.014533012174069881, 0.008794496767222881, 0.009186151437461376, 0.05360855534672737, 0.01560133881866932, -0.04031530022621155, -0.045935314148664474, -0.03452365845441818, 0.033762846142053604, -0.014490649104118347, -0.046855878084897995, 0.0002915920049417764, -0.06256162375211716, 0.037748899310827255, -0.06112273409962654, -0.05059518292546272, 0.0262832660228014, 0.03741065040230751, 0.026054691523313522, -0.005578138399869204, 0.01606881059706211, 0.05613699182868004, 0.02295156754553318, -0.005678901914507151, 0.008499768562614918, 0.015000401996076107, 0.02040652185678482, 0.01994282193481922, 0.0028853928670287132, 0.027155296877026558, 0.009108409285545349, 0.024675026535987854, -0.05678479000926018, 0.015867378562688828, -0.015351303853094578, -0.2695740759372711, 0.05823935195803642, 0.01376041118055582, -0.02158956788480282, 0.018549075350165367, -0.0014738028403371572, 0.03668978810310364, -0.0054358732886612415, -0.0065928855910897255, 0.050218041986227036, -0.018962599337100983, -0.028679760172963142, -0.03798344358801842, 0.03838939592242241, -0.0341014601290226, 0.016526684165000916, -0.015236482955515385, -0.05900644138455391, -0.01375999953597784, 0.029653683304786682, -0.02785348705947399, -0.07880628854036331, -0.007231524679809809, 0.029656529426574707, 0.02622312493622303, 0.028796032071113586, -0.060068435966968536, 0.01877417415380478, -0.016760364174842834, -0.028673887252807617, 0.018295736983418465, -0.021498870104551315, -0.014726360328495502, -0.02401551604270935, -0.012387759052217007, -0.04530317336320877, -0.011337817646563053, 0.02478156052529812, 0.0022601326927542686, -0.01217266172170639, -0.02102886699140072, -0.02708493173122406, -0.010976179502904415, 0.03396105393767357, 0.08794118463993073, -0.02339145541191101, -0.05936351418495178, -0.001109963282942772, -0.048807330429553986, 0.07688926160335541, -0.026148073375225067, -0.05921930819749832, 0.0023813163861632347, 0.04619157314300537, -0.01144027803093195, -0.015545902773737907, -0.006311370059847832, -0.01840125024318695, -0.02545033022761345, -0.03405609354376793, -0.006577427498996258, -0.05428456887602806, 0.016765935346484184, -0.06270472705364227, -0.01649370603263378, -0.061206161975860596, -0.05281027778983116, 0.0038979912642389536, 0.061051566153764725, 0.046504437923431396, -0.014311022125184536, 0.031789910048246384, -0.0031730858609080315, -0.1290217489004135, 0.003767892951145768, -0.03561798483133316, -0.0037061546463519335, -0.024980342015624046, 0.012392744421958923, 0.003541999263688922, -0.017333798110485077, -0.05981265753507614, 0.025220494717359543, 0.024586966261267662, 0.02250879444181919, -0.016266051679849625, 0.027976222336292267, 0.006818351801484823, -0.05411216616630554, -0.017025349661707878, 0.0715482234954834, 0.003347060875967145, -0.03169432282447815, -0.05598776414990425, 0.01433518249541521, 0.003962190821766853, 0.028785502538084984, -0.009599137119948864, -0.020826779305934906, 0.03420743718743324, 0.04495024308562279, -0.05649085342884064, 0.020933950319886208, -0.04088631272315979, 0.01752346195280552, 0.005212920717895031, -0.061026979237794876, 0.014523815363645554, 0.0434378981590271, -0.009587637148797512, -0.019599001854658127, -0.009591597132384777, -0.003856608411297202, -0.04972240701317787, -0.04406081885099411, 0.013644570484757423, 0.013723817653954029, 0.0012273810571059585, -0.01597452349960804, -0.026890510693192482, -0.06377377361059189, 0.032093171030282974, 0.013851110823452473, 0.006374937482178211, -0.052606742829084396, -0.044410645961761475, 0.007405598647892475, -0.00439204229041934, 0.01466401107609272, -0.008586064912378788, -0.01926419325172901, 0.017346052452921867, 0.02204624004662037, -0.037847138941287994, 0.019473686814308167, -0.014529534615576267, -0.015049382112920284, -0.05181584507226944, 0.017079127952456474, -0.008936484344303608, 0.008856297470629215, 0.0017387265106663108, 0.020944323390722275, 0.03136630356311798, 0.061152081936597824, 0.00630206149071455, 0.06213461607694626, 0.019378872588276863, -0.025813234969973564, 0.03874257951974869, 0.009233846329152584, -0.054619986563920975, 0.013252774253487587, -0.03175942227244377, -0.004425534047186375, 0.01153639703989029, 0.02564178593456745, -0.028645474463701248, -0.008495081216096878, -0.046519309282302856, 0.041331831365823746, -0.03388882800936699, -0.018577786162495613, 0.006646157242357731, -0.017345834523439407, 0.05776777118444443, -0.028788942843675613, 0.04218398779630661, -0.017929207533597946, -0.01593015156686306, -0.01203775592148304, 0.023037629202008247, -0.012151448987424374, 0.023852644488215446, -0.010774282738566399, -0.004377292934805155, -0.0020730309188365936, -0.01627674698829651, -0.023618102073669434, 0.010113009251654148, -0.018822966143488884, -0.01074394304305315, 0.006192462984472513, -0.0006134813302196562, 0.04470115154981613, 0.01725461333990097, 0.0012186206877231598, 0.016562053933739662, -0.039216313511133194, -0.024131443351507187, -0.04508925974369049, 0.0002908887108787894, -0.027722809463739395, -0.0008950642659328878, -0.023389458656311035, -0.08195780217647552, 0.016331614926457405, 0.004550464451313019, 0.004012949299067259, 0.03156688064336777, 0.014358504675328732, 0.02962249517440796, -0.017634660005569458, 0.03864263743162155, 0.03357077017426491, -0.05376260355114937, 0.04485837742686272, -0.006126001477241516, 0.020641954615712166, 0.02014048956334591, -0.0016334941610693932, -0.06024295836687088, 0.0036274029407650232, -0.03231634572148323, 0.01381364744156599, -0.02760162204504013, -0.06174718961119652, -0.01742047257721424, 0.016892878338694572, 0.020487753674387932, -0.02336559072136879, -0.02218794822692871, 0.0042798821814358234, -0.03162376582622528, -0.03287217393517494, 0.025792881846427917, -0.0328047052025795, -0.0369512215256691, 0.026902830228209496, -0.025910494849085808, -0.001610773615539074, -0.03186847269535065, -0.011133085004985332, 0.008270387537777424, -0.012760378420352936, -0.028171071782708168, -0.0706309825181961, 0.012779944576323032, -0.008757133968174458, 0.0713549479842186, -0.01885099709033966, -0.025355903431773186, -0.021117689087986946, 0.002323879161849618, -0.0028812463860958815, 0.023610785603523254, -0.01087180431932211, -0.002976910909637809, 0.012518099509179592, 0.05345258116722107, 0.012589987367391586, 0.02109888568520546, 0.018519243225455284, -0.0007376563153229654, 0.06451251357793808, -0.05199267342686653, -0.030716169625520706, -0.002332888776436448, -0.047377850860357285, 0.03394515439867973, 0.008428948000073433, 0.03850043937563896, -0.03920106589794159, 0.02484196610748768, 0.02472556009888649, 0.02895612083375454, 0.060024749487638474, 0.017089562490582466, 0.031799279153347015, -0.021059246733784676, 0.020023293793201447, -0.10834863036870956, 0.03765833005309105, 0.0008341573993675411, 0.011970416642725468, -0.01904607191681862, -0.024243103340268135, -0.054791372269392014, 0.04666197672486305, -0.07495138794183731, -0.049674488604068756, 0.020624088123440742, -0.010505969636142254, 0.0015300906961783767, 0.03792580962181091, -0.04179792478680611, 0.022410765290260315, 0.017218880355358124, -0.034288350492715836, -0.024891700595617294, -0.03998303785920143, 0.053352463990449905, 0.015911132097244263, 0.02037658728659153, -0.03365172818303108, -0.018689969554543495, 0.07355578988790512, 0.010108653455972672, -0.021524734795093536, 0.0380895622074604, -0.01504442933946848, 0.029452938586473465, 0.02934403344988823, 0.0224453154951334, 0.027670498937368393, 0.02622579224407673, 0.008633165620267391, -0.061517179012298584, 0.03646642714738846, 0.036613624542951584, -0.0437195748090744, -0.06984258443117142, 0.04991726949810982, 0.004700341261923313, -0.03219953924417496, -0.04766149818897247, -0.014172106049954891, -0.04624383896589279, -0.030517419800162315, -0.027086731046438217, 0.013639631681144238, 0.002306968905031681, 0.06511174142360687, 0.021216411143541336, 0.008357568643987179, 0.056314799934625626, -0.02588636800646782, 0.00917914230376482, -0.010370906442403793, 0.054597873240709305, 0.0558035783469677, 0.048310186713933945, -0.008932447992265224, 0.054898716509342194, -0.010316469706594944, -0.03330054506659508, 0.027120431885123253, -0.08021891117095947, -0.03574083745479584, -0.033401548862457275, -0.013881362974643707, 0.07308310270309448, -0.009110862389206886, 0.04489739611744881, -0.0712856575846672, -0.004234921187162399, -0.011349676176905632, 0.07215853035449982, 0.0000401954457629472, 0.046156514436006546, 0.022004514932632446, 0.01394840981811285, -0.005370710976421833, -0.05682796612381935, 0.026383399963378906, -0.038114190101623535, -0.03172708675265312, -0.008244727738201618, -0.024967093020677567, 0.001811579568311572, -0.0058328863233327866, 0.009457380510866642, 0.07861120998859406, -0.04573021084070206, -0.011621419340372086, -0.02883380651473999, -0.002517193090170622, 0.009342653676867485, -0.00881131086498499, -0.00010969562572427094, -0.03477898985147476, -0.04395302012562752, -0.0038671211805194616, 0.005954035557806492, 0.0009806849993765354, -0.002550751669332385, 0.02536984719336033, -0.02224724367260933, -0.006042547523975372, 0.02631281688809395, 0.01976548135280609, -0.06349993497133255, -0.040746815502643585, -0.060279905796051025, -0.048129770904779434, -0.07003914564847946, -0.011703722178936005, -0.002129663247615099, -0.017599085345864296, -0.0556006021797657, -0.02977045811712742, 0.00975396204739809, 0.0007216655067168176, 0.04207633435726166, -0.009607945568859577, -0.02565798908472061, 0.0229533351957798, 0.009300047531723976, 0.0402054600417614, 0.04758921265602112, 0.01713968627154827, -0.013030251488089561, -0.008365531452000141, -0.05421791970729828, 0.000017186835975735448, 0.06877036392688751, 0.0302725862711668, 0.008736026473343372, -0.07330434769392014, 0.03241695091128349, 0.004972910974174738, 0.008380865678191185, -0.06806982308626175, 0.01218132022768259, 0.03482779487967491, -0.01879844069480896, 0.036952417343854904, -0.017355425283312798, -0.02657274715602398, -0.0610988587141037, -0.0014702801126986742, 0.008746692910790443, 0.03555331751704216, 0.043409038335084915, -0.04037131741642952, 0.08042337745428085, 0.022716885432600975, -0.020936883985996246, -0.030753321945667267, 0.0026932472828775644, -0.012838766910135746, -0.005538334138691425, -0.034005917608737946, -0.04005466401576996, -0.030679045245051384, -0.05663686618208885, 0.001194059499539435, 0.04342447966337204, -0.004685346037149429, -0.030434131622314453, 0.02140653505921364, 0.013975262641906738, -0.052463531494140625, 0.03487435355782509, -0.03261549770832062, 0.04255126789212227, -0.014064696617424488, 0.0004705312312580645, 0.004271845333278179, 0.04147464409470558, -0.010550251230597496, -0.006782802287489176, 0.013052023947238922, -0.016404051333665848, -0.030397966504096985, -0.028947409242391586, -0.018131554126739502, 0.024177609011530876, -0.03413519635796547, 0.009403817355632782 ]
[ -0.10123548656702042, -0.037488263100385666, -0.024585016071796417, -0.00727036502212286, 0.02466728910803795, -0.013671714812517166, 0.009362391196191311, 0.017471373081207275, 0.004015916492789984, -0.00857579056173563, -0.007114286534488201, -0.001994222402572632, -0.02240072190761566, -0.030917778611183167, 0.09431938827037811, -0.0005008314037695527, 0.02231663092970848, -0.04453657194972038, -0.057779353111982346, 0.037120331078767776, 0.02676238864660263, -0.0054446374997496605, -0.06289408355951309, -0.05407913401722908, 0.0010551729938015342, 0.012842917814850807, 0.06322357803583145, -0.042301375418901443, -0.0027936622500419617, -0.2045203596353531, 0.022004850208759308, -0.021306350827217102, 0.020773133262991905, -0.018463395535945892, -0.012413538992404938, 0.004431929439306259, 0.013739819638431072, 0.002860861597582698, -0.013155527412891388, 0.032915275543928146, 0.032756462693214417, 0.032287564128637314, -0.04595573619008064, -0.026742074638605118, 0.04473314434289932, -0.02002989687025547, 0.015957074239850044, 0.013002417050302029, -0.034442514181137085, 0.01900683529675007, -0.06750570237636566, -0.0019192262552678585, -0.0007634628564119339, -0.028369273990392685, 0.020537111908197403, 0.0543881393969059, 0.047572433948516846, 0.03586561232805252, 0.03074723482131958, 0.035998616367578506, 0.0023888833820819855, -0.022952178493142128, -0.13694006204605103, 0.09578611701726913, 0.002647143555805087, 0.0673329085111618, -0.042425911873579025, -0.017916211858391762, -0.014818429946899414, 0.07689578831195831, 0.033355362713336945, -0.04959730803966522, -0.05525803193449974, 0.0623004324734211, 0.031778957694768906, -0.00604619923979044, 0.03623072803020477, 0.006803962402045727, 0.04089004546403885, -0.015893345698714256, -0.047466326504945755, -0.009761338122189045, -0.014422410167753696, -0.00505560589954257, -0.033183954656124115, 0.03284155949950218, -0.001984494738280773, 0.027500847354531288, 0.019150694832205772, -0.0037864763289690018, 0.032805103808641434, -0.030113646760582924, 0.030703091993927956, -0.002655239310115576, -0.10458766669034958, -0.0017352671129629016, -0.004509571008384228, -0.0016156082274392247, -0.032728325575590134, 0.42131686210632324, -0.0166044719517231, -0.01724846661090851, 0.04800748452544212, 0.015045851469039917, 0.02379036322236061, 0.008898149244487286, 0.024675728753209114, -0.043270137161016464, 0.006396240089088678, -0.031111327931284904, -0.011138337664306164, -0.002559986663982272, 0.06368573009967804, -0.027653846889734268, -0.027443300932645798, 0.059068743139505386, 0.013149612583220005, 0.012591726146638393, 0.010255696251988411, 0.005962724331766367, -0.015307893045246601, 0.017860272899270058, 0.03433723375201225, 0.0063750725239515305, -0.028894959017634392, -0.016772117465734482, 0.049881353974342346, 0.062264878302812576, 0.01710563898086548, 0.019250033423304558, 0.0658159926533699, -0.030642276629805565, -0.05906561762094498, -0.010423297993838787, -0.0035012909211218357, 0.019446423277258873, 0.002372691873461008, -0.036481719464063644, 0.030820148065686226, 0.027594001963734627, -0.03091280907392502, 0.002760425442829728, 0.010387771762907505, -0.048151105642318726, -0.02098904177546501, 0.12268467247486115, 0.018656212836503983, -0.041286054998636246, -0.02936560846865177, -0.0037620600778609514, 0.007197510916739702, 0.060021474957466125, 0.013888957910239697, -0.06622391939163208, -0.025037657469511032, 0.033960334956645966, 0.07013031840324402, -0.00200386974029243, -0.019167711958289146, -0.0041163149289786816, -0.006275968626141548, -0.036743808537721634, -0.05538640171289444, 0.029257768765091896, 0.012917330488562584, -0.12154282629489899, 0.00018572964472696185, -0.009026150219142437, 0.007997913286089897, -0.0415504015982151, 0.0025996931362897158, 0.018138842657208443, -0.06843208521604538, 0.011729915626347065, 0.053073663264513016, -0.002879043109714985, -0.06496380269527435, -0.010263413190841675, 0.03058059699833393, 0.02934442088007927, -0.014875673688948154, -0.01451905071735382, -0.0689825788140297, -0.013430156745016575, -0.036057353019714355, -0.08418560773134232, -0.07096321880817413, -0.01034924853593111, -0.0007901400676928461, -0.0037661853712052107, -0.0364653579890728, -0.03132469579577446, -0.08823423087596893, 0.0855882316827774, -0.0200490765273571, -0.02100500836968422, -0.005799190606921911, -0.005221020430326462, -0.00817812979221344, -0.006767381448298693, 0.012700297869741917, 0.04264873266220093, -0.022229626774787903, 0.007300987374037504, -0.030632199719548225, 0.04326849803328514, 0.04083158075809479, -0.030840972438454628, 0.04742427170276642, 0.029464758932590485, -0.02815367840230465, 0.020871145650744438, 0.008144563995301723, 0.04523976519703865, 0.0024390453472733498, -0.022013412788510323, 0.014947005547583103, 0.029018424451351166, 0.019939174875617027, -0.004460430238395929, -0.02520139515399933, -0.003412049263715744, -0.016060659661889076, -0.3440859019756317, -0.012963967397809029, -0.01774594746530056, -0.020007135346531868, 0.028294384479522705, -0.08517663180828094, 0.011066052131354809, -0.011149411089718342, -0.010594695806503296, 0.010954883880913258, 0.10391472280025482, -0.008761323988437653, 0.008762490004301071, -0.045706190168857574, 0.010203092359006405, 0.049684200435876846, -0.03442803770303726, -0.01594247855246067, -0.03256216272711754, 0.03936745226383209, -0.012945299036800861, 0.011806515045464039, 0.024228300899267197, -0.08112984895706177, -0.020931944251060486, -0.036858174949884415, 0.12342602759599686, 0.0013037006137892604, 0.08335614204406738, -0.034885697066783905, 0.0549824982881546, -0.008984076790511608, -0.012552855536341667, -0.07871988415718079, 0.03235273435711861, -0.026506241410970688, -0.01363223884254694, -0.046070490032434464, 0.05336296930909157, -0.035287000238895416, -0.050445981323719025, 0.009026658721268177, -0.0356329083442688, -0.042312297970056534, -0.004851389676332474, 0.00880031380802393, -0.02084089070558548, -0.016572406515479088, -0.01872054673731327, 0.07589730620384216, 0.01300793420523405, -0.031821973621845245, 0.011958171613514423, 0.031091803684830666, -0.01461337972432375, -0.014505516737699509, -0.039394937455654144, -0.02322343736886978, -0.0030582533217966557, -0.014218018390238285, -0.0007426749216392636, 0.04766726493835449, 0.04298799857497215, -0.034366827458143234, 0.0006989843095652759, 0.016718313097953796, -0.012261140160262585, 0.0015194376464933157, 0.031664084643125534, -0.03703969717025757, -0.04059494286775589, 0.09129980206489563, 0.01323218084871769, -0.0004643176798708737, 0.042645636945962906, 0.061000265181064606, -0.02915474958717823, 0.018481101840734482, -0.028651408851146698, 0.01592567376792431, 0.024235211312770844, -0.011605692096054554, 0.04590199142694473, -0.02700200490653515, 0.0014700074680149555, 0.03861422836780548, -0.02953234873712063, -0.06769374012947083, 0.07553929835557938, -0.00825353804975748, -0.036926183849573135, 0.001195125631056726, -0.04380977898836136, -0.060700442641973495, 0.05661170557141304, -0.018815601244568825, -0.2735688388347626, 0.020013360306620598, 0.05218551680445671, 0.07704969495534897, -0.0037663313560187817, 0.05072390288114548, 0.05090451240539551, -0.08455542474985123, -0.013786965981125832, -0.025656886398792267, 0.04412649944424629, 0.04598434641957283, 0.04866062477231026, 0.00805085152387619, 0.04816573113203049, -0.027203965932130814, 0.015402215532958508, -0.008187556639313698, 0.020827243104577065, 0.020218173041939735, 0.014269337989389896, -0.006154223345220089, 0.16331660747528076, 0.02937859483063221, 0.0015007175970822573, 0.013185909949243069, -0.008326959796249866, 0.002886212896555662, 0.10411284118890762, 0.04359768331050873, 0.009011449292302132, 0.01722824014723301, 0.07517094910144806, 0.01653309166431427, 0.04110630974173546, -0.10926813632249832, -0.015597586520016193, 0.031335894018411636, 0.01740495301783085, -0.035384420305490494, -0.02737487107515335, 0.023468460887670517, -0.04007652401924133, 0.0095624178647995, 0.04349507391452789, 0.0021115154959261417, 0.0042746346443891525, -0.008174785412847996, -0.029357096180319786, 0.007523066829890013, 0.004584760870784521, -0.015753742307424545, -0.014889054000377655, 0.008560070767998695, 0.0041556889191269875, 0.08001365512609482, -0.0022238269448280334, -0.03870266303420067, -0.03360199183225632, 0.02992928773164749, 0.00046638044295832515, 0.0064554824493825436, 0.08470487594604492, -0.016997547820210457, 0.03394555300474167 ]
[ -0.00951593741774559, 0.014440292492508888, -0.023167310282588005, 0.050813935697078705, 0.0006031051743775606, 0.039233963936567307, 0.0142569774761796, -0.019953418523073196, -0.004723075777292252, -0.02099711447954178, -0.029255997389554977, 0.03391282260417938, 0.0194419976323843, -0.04070783033967018, 0.04172702506184578, -0.01722080446779728, 0.012478736229240894, -0.013269474729895592, 0.0002574309764895588, 0.027259336784482002, -0.007746099028736353, 0.03309295326471329, 0.0033150457311421633, 0.01806754060089588, -0.052850402891635895, -0.009894950315356255, 0.0048962864093482494, -0.05079541355371475, 0.019534975290298462, -0.1379348784685135, 0.011838902719318867, -0.05613395571708679, -0.0018682775553315878, 0.012539937160909176, -0.05201725661754608, -0.04623851925134659, 0.041224583983421326, -0.012706427834928036, 0.006916168611496687, -0.025298330932855606, 0.002394630340859294, -0.040779635310173035, -0.03703084960579872, 0.02648531273007393, 0.01738690212368965, -0.01933601126074791, -0.029126359149813652, 0.009458689950406551, -0.02631797082722187, 0.018493711948394775, -0.045614052563905716, -0.028102895244956017, 0.010251813568174839, 0.015054603107273579, 0.01579700969159603, -0.026194749400019646, -0.00265811407007277, 0.004054906312376261, 0.015004869550466537, -0.02119399793446064, 0.043587785214185715, -0.011482280679047108, -0.03356379643082619, -0.013369684107601643, -0.01989724114537239, -0.028313830494880676, -0.006337756756693125, -0.017006251960992813, -0.020110325887799263, -0.024765603244304657, 0.02978895977139473, -0.02448669634759426, -0.022721510380506516, -0.021664844825863838, 0.01450788788497448, -0.011186061426997185, 0.03678097948431969, -0.02105441503226757, -0.003400372574105859, -0.01896912418305874, -0.018826600164175034, 0.022277956828475, 0.0020203443709760904, 0.004887427669018507, 0.008285203948616982, -0.032872021198272705, 0.010157446376979351, -0.0087954793125391, 0.03846573457121849, 0.015398245304822922, -0.01420615054666996, 0.019302036613225937, 0.02217778190970421, -0.0010116115445271134, -0.07717064768075943, -0.01641528494656086, -0.031503450125455856, -0.0365707091987133, 0.0012225552927702665, 0.8417395949363708, -0.0345366895198822, 0.025394096970558167, 0.036161698400974274, 0.036749713122844696, 0.019222691655158997, -0.05249587818980217, 0.004752907902002335, 0.05337085202336311, 0.024768630042672157, -0.048314958810806274, 0.028391780331730843, 0.01827901229262352, 0.022936178371310234, 0.03781215846538544, 0.03157024458050728, -0.014691739343106747, -0.005118235945701599, -0.0331239178776741, 0.0044527119025588036, 0.03366581350564957, 0.031094487756490707, 0.04156235605478287, 0.011134681291878223, -0.003356673289090395, 0.03366299718618393, -0.1699000895023346, 0.018236109986901283, -7.804121688788552e-33, 0.006945430301129818, 0.0025236268993467093, 0.0023878493811935186, 0.033919062465429306, 0.03428663685917854, 0.026801524683833122, 0.03437061980366707, 0.007518300786614418, -0.009008047170937061, -0.026070240885019302, 0.013600882142782211, -0.011481977999210358, -0.021132996305823326, 0.019521987065672874, 0.024573685601353645, -0.0050413282588124275, 0.012511799111962318, 0.03325300291180611, 0.03741198033094406, -0.009067271836102009, 0.02078738622367382, 0.0156075619161129, 0.04069127142429352, -0.02069966308772564, -0.004860822577029467, 0.04256557300686836, -0.0005412835162132978, 0.03935367241501808, -0.023005034774541855, -0.03950122743844986, 0.027836425229907036, -0.04079557582736015, -0.011830829083919525, -0.00024392986961174756, -0.0350009985268116, -0.04498271271586418, -0.02605687640607357, 0.0031558657065033913, -0.012976822443306446, -0.01690848357975483, -0.04984207823872566, 0.029206223785877228, -0.030059579759836197, 0.031779345124959946, -0.04845771566033363, 0.013484547846019268, 0.0011711547849699855, 0.026960309594869614, 0.011821485124528408, 0.026919377967715263, 0.009977726265788078, 0.029578346759080887, 0.024412451311945915, 0.01081900391727686, -0.03281240910291672, -0.016386263072490692, -0.021071728318929672, 0.0024076697882264853, 0.008027284406125546, -0.03272726759314537, 0.03954829275608063, -0.04295532777905464, -0.021284380927681923, -0.0063062505796551704, -0.006897220853716135, -0.001468566944822669, -0.001964480383321643, -0.011574606411159039, 0.030244924128055573, -0.01845514588057995, -0.03642231598496437, 0.007484475150704384, 0.009477304294705391, -0.0022722415160387754, 0.00928033608943224, -0.06270523369312286, -0.040700387209653854, 0.02617555856704712, 0.027408713474869728, 0.04149599373340607, -0.004013028461486101, -0.0042112418450415134, 0.010087008588016033, 0.00930004846304655, -0.03704473376274109, 0.030189156532287598, 0.031124014407396317, 0.010724279098212719, 0.013700694777071476, 0.010958265513181686, 0.0008078840328380466, 0.048441797494888306, -0.002229743404313922, -0.022477135062217712, 0.03573126718401909, 7.276138850225121e-33, -0.021994441747665405, -0.03263067826628685, -0.02916383370757103, 0.043597254902124405, 0.007661574985831976, -0.016908887773752213, -0.031424835324287415, 0.02795378305017948, -0.028314968571066856, 0.0021125017665326595, 0.01722613535821438, 0.02838808484375477, -0.02258445881307125, 0.05447705462574959, 0.03992440551519394, -0.0025820189621299505, 0.028811387717723846, -0.020565029233694077, 0.024476345628499985, -0.02325703762471676, 0.006042090244591236, 0.005793033633381128, -0.019773656502366066, 0.008284205570816994, -0.02940252050757408, 0.04638354852795601, -0.029736235737800598, 0.016269832849502563, -0.008509904146194458, 0.0164322592318058, 0.014434490352869034, -0.004997139796614647, 0.01620396226644516, -0.015797659754753113, -0.017944440245628357, 0.027026236057281494, -0.028433291241526604, 0.005372215993702412, 0.005200980696827173, 0.025191275402903557, 0.033510271459817886, -0.040547505021095276, 0.02000768482685089, 0.029445432126522064, 0.013515666127204895, -0.01807473786175251, 0.006106875836849213, -0.006517427042126656, 0.018653247505426407, 0.0010708499467000365, 0.01094615738838911, 0.006666084285825491, -0.014943924732506275, 0.02580377832055092, -0.01623154617846012, 0.0013772750971838832, -0.011498047970235348, 0.029271475970745087, -0.008998917415738106, -0.008778799325227737, -0.026977021247148514, 0.0656546801328659, -0.01710198074579239, -0.01878431998193264, -0.008777503855526447, -0.024634992703795433, 0.008916468359529972, -0.019698889926075935, 0.03306131437420845, -0.017526274546980858, -0.004159918054938316, -0.008469471707940102, 0.006232195533812046, 0.029095543548464775, 0.000711022294126451, -0.02111024223268032, 0.012538413517177105, 0.008651797659695148, -0.008783935569226742, 0.007238897029310465, 0.01941417157649994, -0.02051929384469986, 0.03569725528359413, -0.022475721314549446, 0.005338712595403194, 0.01740613579750061, -0.03509701043367386, -0.007012276444584131, -0.023306546732783318, -0.01944088749587536, -0.02018435299396515, -0.00010707959881983697, 0.02399519272148609, 0.0015540008898824453, -0.0003451973607297987, -1.3242349439224199e-8, -0.0316254086792469, -0.004613616969436407, -0.012458691373467445, 0.020529571920633316, 0.04043767228722572, 0.03627260774374008, -0.04570503905415535, -0.04278561472892761, -0.024951647967100143, -0.004721777513623238, 0.011218415573239326, 0.026713764294981956, 0.011759386397898197, 0.0117384884506464, -0.01475305575877428, -0.06896235793828964, -0.00963197648525238, -0.02986062690615654, 0.01444148551672697, 0.0126786008477211, -0.01710476726293564, 0.030638370662927628, -0.017224712297320366, -0.0353957861661911, 0.021456710994243622, -0.0070663574151694775, 0.012059547007083893, -0.0472150519490242, 0.012661651708185673, 0.006367884576320648, 0.013813064433634281, -0.0009448089986108243, -0.03875499218702316, 0.020762383937835693, -0.00968402810394764, -0.031355127692222595, 0.02828044630587101, 0.013974428176879883, -0.0008094700169749558, -0.013336277566850185, 0.014234628528356552, -0.04279809445142746, 0.004887272138148546, -0.028455501422286034, -0.023163171485066414, -0.0023292878177016973, -0.04120233282446861, 0.013464773073792458, 0.028723835945129395, -0.006705324165523052, -0.033582378178834915, -0.01627807691693306, 0.016767943277955055, 0.02790733426809311, -0.0036172918044030666, -0.04825675114989281, 0.019904624670743942, -0.025803562253713608, 0.00622067553922534, 0.011459884233772755, 0.040379952639341354, -0.008973725140094757, -0.022704506292939186, -0.02907617762684822 ]
functional-c-continuation-passing-style
https://markhneedham.com/blog/2010/03/19/functional-c-continuation-passing-style
false
2010-03-26 01:14:15
Finding the assumptions in stories
[ "agile", "stories" ]
[ "Agile" ]
My colleague J.K. has written http://jkwerner2.wordpress.com/2010/03/23/so-that-so-what/[an interesting blog post where he describes a slightly different approach that he's been taking to writing stories] to help move the business value in a story towards the beginning of the description and avoid detailing a solution in the 'I want' section of the story. To summarise, J.K.'s current approach involves moving from the traditional story format of: [source,text] ---- As I... I want.. So that... ---- To the following: [source,text] ---- As I... I want.. By... ---- I quite like this idea and I've noticed that even without using this story format technical solutions are sometimes described as the business requirement and we need to look beyond the 'I want' section of the story card to find the real value and locate assumptions which have led to the story being written in that way. To give a recent example, a colleague and I picked up the following story: [source,text] ---- As the business I want a HTTP module to be included on the old site So that I can redirect a small percentage of traffic to the new site ---- We assumed that other options for redirecting traffic must have already been analysed and written off in order for this to be the suggested solution so we initially started looking at how to implement it. After a bit of investigation it became clear that this was going to be quite an invasive solution to the problem and would involve re-testing of the whole old site (since we would be making a change there) before it could be put into production. That would take 2 weeks. Speaking with http://www.the-arm.com/[Toni] and http://twitter.com/a5hok[Ashok] about the problem it became clear that it should be possible to control whether traffic was going to the old or new site by changing the configuration in our load balancer, http://www.citrix.com/English/ps2/products/product.asp?contentID=21679[Netscaler]. Discussing this further we found out that this had been tried previously and hadn't quite worked out as expected which was why it hadn't been considered as an option. We spent some time talking through using Netscaler with the network team and agreed to try it out on a performance environment and see whether it would balance traffic in the way that we wanted which it did. We still need to make sure that it works as expected in production but it was an interesting example of how solutions can be excluded based on prior experience even though they might still be useful to us. I'll certainly be more aware of noticing when a story details a solution and try and look for the actual requirement after this experience.
null
null
[ 0.012490125373005867, -0.005989490542560816, 0.0007689900230616331, 0.035634174942970276, 0.10692263394594193, 0.0056198518723249435, 0.0026504534762352705, 0.042494162917137146, 0.023162635043263435, -0.0014451644383370876, -0.019970448687672615, 0.020046070218086243, -0.0672939121723175, 0.01236735936254263, -0.038970671594142914, 0.06855206936597824, 0.030260799452662468, 0.0037347213365137577, 0.03696484863758087, -0.031222840771079063, 0.008813214488327503, 0.07674675434827805, 0.03230749070644379, 0.03953833505511284, 0.02241521328687668, -0.0053557478822767735, 0.0201493538916111, -0.005384082905948162, -0.05348290130496025, -0.011791359633207321, 0.04259677231311798, -0.013812581077218056, 0.005327587481588125, 0.007670328486710787, 0.019044186919927597, -0.013503138907253742, -0.00033873479696922004, 0.0240009818226099, -0.0000621899453108199, -0.0025156959891319275, -0.08511748164892197, 0.06325703114271164, -0.04021154344081879, -0.0035623617004603148, -0.02318088710308075, -0.01193851325660944, -0.009389029815793037, 0.0029789686668664217, -0.0246262289583683, -0.006658781785517931, -0.08872988075017929, 0.028620485216379166, -0.009765682741999626, 0.0007625189027749002, -0.00485233636572957, 0.05363822728395462, 0.007927696220576763, -0.05978977307677269, 0.022290892899036407, -0.02673543617129326, 0.008353812620043755, -0.009049350395798683, -0.002791318343952298, 0.041800495237112045, 0.016271870583295822, -0.032256633043289185, 0.00872809998691082, 0.030081093311309814, -0.024827895686030388, -0.003706419374793768, -0.0034645621199160814, 0.01157353725284338, -0.00590516347438097, -0.017468411475419998, -0.001110629877075553, -0.03950156643986702, 0.023451879620552063, 0.057562120258808136, -0.011050065979361534, 0.03819602355360985, -0.032966699451208115, 0.03392534330487251, -0.004965920466929674, 0.027549264952540398, -0.00016083627997431904, -0.06358475983142853, -0.01787641830742359, -0.0036440796684473753, -0.03122340328991413, 0.057813096791505814, 0.005167421419173479, -0.05743950977921486, 0.012977119535207748, 0.02433968335390091, -0.006680111866444349, 0.0054730759002268314, 0.02901540696620941, 0.024672821164131165, 0.00958565529435873, -0.003981379792094231, -0.03924492746591568, -0.0007398648303933442, -0.002948729321360588, -0.001903678523376584, -0.07063423842191696, -0.002319331280887127, -0.009519560262560844, -0.009287340566515923, 0.0034493140410631895, -0.003588413819670677, -0.013292588293552399, 0.01903364807367325, -0.007886020466685295, 0.004052476491779089, -0.06730100512504578, 0.07422126084566116, 0.002021051710471511, -0.03935492783784866, -0.01591074839234352, 0.0035214514937251806, 0.04802989214658737, 0.00979622546583414, -0.02259802632033825, 0.0829395055770874, 0.019727937877178192, 0.024720538407564163, -0.03636293113231659, 0.04621933400630951, -0.020493289455771446, -0.040514618158340454, 0.011209783144295216, 0.05003756284713745, -0.013611719943583012, 0.0004973577451892197, -0.00880889967083931, -0.012490286491811275, 0.010303240269422531, 0.014424077235162258, 0.04549412429332733, 0.026597820222377777, -0.004627972841262817, -0.016673875972628593, -0.006587936542928219, 0.02388026937842369, 0.031442057341337204, -0.020079370588064194, 0.02960546314716339, -0.03817538917064667, -0.03990165889263153, -0.006045220419764519, -0.004692653194069862, -0.00354384514503181, 0.021274210885167122, -0.04509391635656357, 0.01526488084346056, 0.06998157501220703, 0.05328984558582306, 0.009288694709539413, -0.03856931999325752, 0.03322652354836464, 0.035473063588142395, 0.05378052964806557, 0.004145826678723097, 0.020626377314329147, -0.011235452257096767, -0.009346714243292809, -0.008295868523418903, 0.044093649834394455, 0.029072916135191917, -0.0017867358401417732, -0.06934485584497452, -0.05800272151827812, 0.06999972462654114, -0.042438894510269165, -0.02558997832238674, 0.04432710260152817, 0.09116145968437195, 0.057374633848667145, 0.02521338313817978, 0.018024910241365433, -0.08022500574588776, 0.058020975440740585, 0.017397399991750717, 0.01723763346672058, 0.01925596594810486, -0.018197687342762947, 0.06465617567300797, 0.03205377608537674, -0.006659766659140587, 0.03114733099937439, -0.08151392638683319, -0.09629552066326141, -0.03401779755949974, 0.0026660002768039703, 0.038306593894958496, -0.02897074446082115, 0.02435472048819065, 0.0882941260933876, 0.010417451150715351, 0.04800049215555191, 0.02664223499596119, 0.005487754009664059, 0.030140679329633713, -0.04935302585363388, -0.05743331462144852, 0.04635326564311981, 0.025456182658672333, -0.010159952566027641, -0.0362674817442894, 0.00904353428632021, -0.026004424318671227, 0.0042967903427779675, 0.027994070202112198, -0.02158822864294052, 0.043530602008104324, 0.0019850200042128563, 0.061151035130023956, -0.03751671314239502, 0.04454445838928223, -0.04828265681862831, 0.03299390897154808, -0.012723669409751892, -0.03039468452334404, 0.011130336672067642, -0.004352330695837736, 0.12877251207828522, 0.04922837018966675, -0.032810889184474945, -0.07386820018291473, 0.026916751638054848, 0.0014056793879717588, -0.05335253104567528, -0.00020502349070739, -0.00942368432879448, -0.0063779898919165134, 0.01683337427675724, -0.0630149245262146, -0.018958287313580513, 0.011225477792322636, -0.036017704755067825, 0.03053460456430912, 0.0675303041934967, -0.006403349339962006, 0.06790933012962341, 0.007514914032071829, 0.0020232133101671934, -0.012024201452732086, -0.02448672242462635, -0.043658170849084854, 0.020382247865200043, 0.014916813001036644, -0.020004287362098694, 0.04180099442601204, -0.030909985303878784, -0.026924148201942444, -0.02545826882123947, -0.05775916576385498, 0.029355231672525406, 0.046830564737319946, 0.055313147604465485, -0.02148739993572235, 0.05424148589372635, -0.009235911071300507, 0.0347488671541214, -0.007159416098147631, -0.033286429941654205, -0.044438477605581284, -0.023280750960111618, -0.02463177777826786, 0.03601260483264923, 0.04451674595475197, -0.011997992172837257, 0.017821038141846657, 0.000013318069250090048, 0.012209049426019192, -0.022579731419682503, 0.04387381672859192, -0.013954248279333115, 0.023503629490733147, -0.017637519165873528, -0.021455807611346245, 0.052928097546100616, -0.03799821808934212, -0.02011682651937008, 0.02262965962290764, -0.08132216334342957, 0.032240431755781174, -0.04709680378437042, -0.05149700865149498, -0.008825349621474743, -0.013295089825987816, 0.03584209457039833, 0.025967586785554886, 0.013966931030154228, 0.06415462493896484, 0.014862527139484882, -0.020771799609065056, -0.0026819813065230846, 0.0008914128411561251, 0.04731118306517601, -0.004218777175992727, 0.00857746135443449, 0.032302889972925186, 0.003726909402757883, -0.005539827514439821, -0.059746213257312775, 0.049339134246110916, -0.030402302742004395, -0.30171293020248413, 0.027976317331194878, 0.015642743557691574, -0.05013534426689148, 0.023562079295516014, -0.014278833754360676, -0.002805377123877406, -0.031122028827667236, -0.025515910238027573, 0.017803344875574112, -0.04950068145990372, -0.03228141739964485, 0.002580351196229458, 0.02351050265133381, -0.004096748307347298, 0.01438923366367817, 0.0027019355911761522, -0.025609828531742096, 0.009653625078499317, 0.01008632592856884, -0.018873440101742744, -0.06944715231657028, -0.004963395185768604, 0.028718436136841774, 0.01204882562160492, 0.07792589068412781, -0.06945145130157471, 0.06193268671631813, -0.045594487339258194, -0.007542256731539965, 0.01612590067088604, -0.02180931158363819, -0.005379722453653812, -0.021340860053896904, -0.008134127594530582, -0.038506634533405304, 0.045803871005773544, 0.0004000790067948401, 0.02394910529255867, -0.014886337332427502, -0.02150472067296505, -0.024947186931967735, -0.00894941110163927, 0.015231920406222343, 0.05868334695696831, -0.0025663983542472124, -0.0949411615729332, 0.015030695125460625, -0.014505241066217422, 0.07850594073534012, -0.01327201072126627, -0.05162467435002327, -0.020890001207590103, 0.02424699068069458, -0.022379696369171143, -0.029041307047009468, -0.01277298666536808, -0.04033558815717697, -0.02753818780183792, -0.038562919944524765, -0.0036024083383381367, -0.029572665691375732, -0.010198533535003662, -0.038983553647994995, 0.003147037234157324, -0.05099456012248993, -0.06400737166404724, -0.01190075371414423, 0.08220630884170532, 0.013868722133338451, -0.03848934546113014, 0.026560034602880478, 0.010985750705003738, -0.1035245880484581, -0.01937352865934372, -0.022677263244986534, -0.03807458654046059, 0.02861453965306282, -0.003188999369740486, 0.01932232454419136, -0.03655591979622841, -0.034491345286369324, -0.001788778230547905, -0.017726343125104904, 0.017091602087020874, -0.04004175588488579, 0.05167227238416672, 0.021889610216021538, -0.028454003855586052, 0.025304418057203293, 0.0826033502817154, -0.005709036253392696, -0.03056607022881508, -0.02381083555519581, 0.016321144998073578, -0.005283595062792301, 0.013774320483207703, -0.00950588472187519, 0.010780866257846355, 0.036931488662958145, 0.017544914036989212, -0.06677449494600296, 0.017322223633527756, -0.0362369678914547, 0.0001575899077579379, -0.0018960541347041726, -0.0443977490067482, 0.009602654725313187, 0.0011655037524178624, 0.0083058662712574, 0.0024723028764128685, -0.02161482349038124, 0.012660629115998745, -0.0633242055773735, -0.02099362388253212, 0.0087095582857728, 0.008162446320056915, 0.02998460829257965, -0.006356367841362953, -0.008558476343750954, -0.042390644550323486, 0.01103389821946621, 0.027388829737901688, -0.014465484768152237, -0.055781468749046326, -0.032589755952358246, -0.011511762626469135, 0.005840615835040808, 0.029397083446383476, 0.01859373040497303, -0.017637737095355988, -0.004999483469873667, 0.015724174678325653, -0.05303366482257843, 0.0094941146671772, -0.04300586134195328, -0.057706527411937714, -0.028555244207382202, 0.011976821348071098, 0.03681310638785362, -0.017236296087503433, 0.04687174782156944, -0.00799520779401064, 0.0031604249961674213, 0.047011569142341614, -0.016478173434734344, 0.018915431573987007, -0.004364235792309046, 0.004602647386491299, -0.004394002724438906, -0.017416847869753838, -0.05296725407242775, 0.003348478814586997, -0.039842065423727036, -0.010345421731472015, -0.012581205926835537, 0.017699288204312325, -0.016985613852739334, -0.024421649053692818, -0.012059769593179226, 0.026001257821917534, -0.07525424659252167, -0.006387154571712017, 0.009312503971159458, -0.01112000085413456, 0.03754153102636337, -0.002773943357169628, 0.016205694526433945, -0.0021351268514990807, -0.000543328991625458, 0.01279488392174244, 0.028352320194244385, -0.04173446074128151, 0.011153505183756351, 0.008664852008223534, 0.0031764076557010412, 0.00987537857145071, -0.004492057953029871, 0.05865037441253662, 0.015296178869903088, -0.018895277753472328, -0.022058090195059776, 0.022990943863987923, 0.024153292179107666, 0.04114792123436928, 0.033255625516176224, -0.0007937360205687582, 0.008402448147535324, -0.013141968287527561, -0.021601326763629913, -0.026129813864827156, 0.025933755561709404, -0.009519563987851143, 0.0142428670078516, -0.014018581248819828, -0.0770859345793724, 0.05701986700296402, -0.00823177769780159, 0.014992937445640564, 0.011569944210350513, -0.0122121786698699, 0.019940294325351715, -0.03317127749323845, 0.03423658385872841, 0.04587841033935547, -0.0718175396323204, 0.014346898533403873, -0.02333211526274681, 0.0089510977268219, 0.02811414748430252, 0.00528650963678956, -0.024689944460988045, -0.03375313803553581, -0.015411166474223137, 0.03581743687391281, -0.07230931520462036, -0.03125122934579849, -0.04571763053536415, 0.017601968720555305, 0.014002586714923382, 0.020965179428458214, -0.02829897217452526, 0.0005706179654225707, -0.006421622820198536, -0.047462496906518936, 0.03615254908800125, -0.018153278157114983, -0.04659900441765785, 0.028748370707035065, -0.029262106865644455, -0.009951313957571983, -0.03398609533905983, 0.028860384598374367, 0.015895873308181763, -0.01876836083829403, 0.0011493662605062127, -0.05146760120987892, -0.0174869354814291, -0.0032256930135190487, 0.056263089179992676, -0.0006623375811614096, -0.00585509929805994, -0.03599681332707405, -0.013151582330465317, -0.03234993666410446, 0.038030143827199936, -0.015822209417819977, -0.013732747174799442, 0.022957809269428253, 0.04646984487771988, 0.02673652209341526, 0.007834823802113533, -0.002606152556836605, -0.015410315245389938, 0.05526471138000488, -0.07459496706724167, -0.028570199385285378, -0.015553644858300686, -0.052132926881313324, 0.007157785352319479, 0.021416351199150085, 0.02102426066994667, -0.05184679478406906, 0.03720300644636154, 0.03860797733068466, 0.0248663742095232, 0.04096981883049011, 0.025145631283521652, 0.024286584928631783, -0.02941839210689068, -0.012516085058450699, -0.10132485628128052, 0.007909288629889488, 0.03385119512677193, 0.016042916104197502, 0.009559191763401031, 0.02366291545331478, -0.04066920280456543, 0.05166091397404671, -0.07955155521631241, -0.023235969245433807, 0.039163801819086075, -0.015567390248179436, -0.023024195805191994, 0.02147781476378441, -0.05248887464404106, 0.04173493757843971, 0.02158675715327263, -0.046536557376384735, 0.0037507994566112757, -0.042641665786504745, 0.07683923095464706, 0.013309541158378124, 0.030655957758426666, -0.047234006226062775, -0.041420869529247284, 0.08710740506649017, 0.010190088301897049, -0.011636476032435894, 0.04681437835097313, 0.007702884264290333, 0.01477817539125681, 0.04437650367617607, -0.006353795062750578, 0.004622564651072025, 0.013888100162148476, -0.03945930674672127, -0.07402139902114868, 0.04496726021170616, -0.011778156273066998, -0.021414702758193016, -0.03161425516009331, 0.059409257024526596, 0.003237715922296047, -0.016053035855293274, -0.07884611189365387, 0.019131971523165703, -0.053054843097925186, -0.025301847606897354, -0.018803227692842484, -0.0052853780798614025, -0.03586132451891899, 0.04824553802609444, -0.014296289533376694, 0.012749523855745792, 0.07093344628810883, -0.01404411718249321, 0.01523289829492569, -0.026495005935430527, 0.07034963369369507, 0.06686615943908691, 0.06667843461036682, -0.003033089218661189, 0.07139655947685242, -0.014019148424267769, -0.04803027957677841, 0.011439274065196514, -0.013993184082210064, -0.00798998586833477, -0.003236901480704546, 0.0014749327674508095, 0.056774575263261795, -0.015735628083348274, 0.07277290523052216, -0.0005101024289615452, -0.008959965780377388, 0.01216071005910635, 0.026191266253590584, 0.013079723343253136, 0.06943613290786743, 0.028347540646791458, 0.02421516925096512, -0.017988281324505806, -0.04783458262681961, 0.02963542565703392, -0.03264438733458519, -0.02864593267440796, 0.03306378051638603, -0.0012287551071494818, 0.03401860594749451, -0.011584117077291012, 0.036062855273485184, 0.0761047825217247, -0.04094189405441284, 0.009587629698216915, -0.010902577079832554, 0.04364171624183655, 0.0027527434285730124, 0.04351852089166641, -0.012368937022984028, -0.02829677052795887, 0.0032466414850205183, -0.049994248896837234, -0.011665238067507744, -0.01919204741716385, -0.023448558524250984, 0.03966395556926727, -0.01991651952266693, -0.004700485151261091, 0.011587223038077354, 0.00846898928284645, -0.03885117545723915, -0.045337967574596405, -0.021680302917957306, -0.046301379799842834, -0.06777971982955933, -0.03782258927822113, -0.0038375728763639927, 0.006167284678667784, -0.0383327417075634, -0.029095802456140518, -0.03969921916723251, -0.04527480900287628, 0.043058641254901886, -0.03411638364195824, 0.009823549538850784, -0.00039496360113844275, 0.02240169420838356, -0.028064750134944916, 0.017776912078261375, 0.0466100350022316, 0.024485543370246887, -0.0041692182421684265, 0.0002415110939182341, 0.020468104630708694, 0.04798508435487747, 0.003634792286902666, -0.0016816030256450176, -0.07827511429786682, 0.021294187754392624, 0.04463469237089157, 0.004284802358597517, -0.0710529312491417, 0.014726035296916962, 0.024508461356163025, -0.007498826831579208, 0.04387638717889786, -0.027745431289076805, 0.017920495942234993, -0.0014910047175362706, -0.009676978923380375, -0.02335467003285885, 0.005732622928917408, 0.036706410348415375, -0.030101370066404343, 0.0843513160943985, 0.0422886498272419, -0.005455341190099716, -0.025834430009126663, 0.0006484472542069852, -0.0007275041425600648, 0.013894857838749886, -0.024624375626444817, -0.025617500767111778, -0.024759609252214432, -0.09015164524316788, -0.04782908409833908, 0.027720963582396507, -0.016092734411358833, -0.016569821164011955, 0.04173552617430687, 0.019550982862710953, -0.036724451929330826, -0.0003360378323122859, -0.038299866020679474, 0.024238672107458115, -0.01861916109919548, -0.005564115475863218, -0.02520655281841755, 0.013754274696111679, 0.018015706911683083, -0.026027871295809746, 0.008953428827226162, -0.027082443237304688, 0.014745337888598442, -0.002717580646276474, 0.01084167417138815, 0.01603059098124504, 0.0023297143634408712, -0.0014060840476304293 ]
[ -0.06282826513051987, -0.037547964602708817, -0.017119312658905983, -0.006139642093330622, 0.037190038710832596, -0.031392961740493774, -0.05708692967891693, 0.025888517498970032, 0.006166917737573385, -0.015652157366275787, 0.01966058276593685, 0.021609583869576454, -0.00448488537222147, -0.009091055952012539, 0.09204265475273132, 0.011018602177500725, 0.0003368511388543993, -0.08787883818149567, -0.007901615463197231, 0.03637479990720749, 0.004946461878716946, -0.03999673202633858, -0.008442768827080727, -0.010876601561903954, -0.006613598205149174, -0.0005498162936419249, 0.038261640816926956, -0.007946646772325039, -0.009223870933055878, -0.17057687044143677, 0.008803500793874264, -0.011497900821268559, 0.005386577919125557, 0.008466959930956364, 0.019707024097442627, 0.038686130195856094, 0.018103206530213356, 0.01241033524274826, 0.026884028688073158, 0.05359446629881859, 0.026603668928146362, 0.015038134530186653, -0.013424056582152843, -0.018648292869329453, 0.03201119229197502, 0.007716149557381868, 0.017002888023853302, -0.011514567770063877, -0.0289930310100317, -0.00028928069514222443, -0.05973218008875847, -0.018021445721387863, -0.03391151875257492, -0.02250361070036888, -0.01275411993265152, 0.02551851235330105, 0.04426954686641693, 0.061892930418252945, 0.019557634368538857, 0.043538305908441544, 0.03349915146827698, -0.02838980033993721, -0.14975190162658691, 0.09273262321949005, 0.022820014506578445, 0.055812835693359375, -0.06747793406248093, -0.001495717209763825, -0.026614874601364136, 0.09104938805103302, -0.02974257804453373, -0.012395034544169903, -0.06147942319512367, 0.036197636276483536, 0.029959917068481445, 0.007044107187539339, 0.01248310599476099, 0.05606389045715332, 0.021025391295552254, -0.04955870658159256, -0.025529565289616585, -0.002992372028529644, -0.02391548454761505, -0.014396053738892078, -0.07725629210472107, 0.008470680564641953, -0.003936399705708027, 0.04448544979095459, 0.010870727710425854, 0.0027897299733012915, 0.07295426726341248, -0.042836178094148636, 0.03279487043619156, 0.0022698508109897375, -0.08927622437477112, -0.014609761536121368, -0.019219988957047462, 0.024777373299002647, -0.009759996086359024, 0.4169601798057556, 0.017211178317666054, -0.037245992571115494, 0.07203918695449829, 0.049904074519872665, 0.007716827560216188, 0.006780246738344431, 0.009545985609292984, -0.033266354352235794, 0.02977731078863144, -0.0002550760982558131, -0.005015823058784008, 0.0049784230068326, 0.05078665539622307, -0.03712983429431915, 0.039752524346113205, 0.052482955157756805, -0.000792369362898171, 0.029188012704253197, -0.0253469068557024, -0.0006986053194850683, -0.02245253510773182, 0.010933454148471355, 0.007095446810126305, 0.023071948438882828, -0.018838142976164818, -0.011720537208020687, 0.0689411461353302, 0.049034249037504196, 0.04625514894723892, 0.01583978720009327, 0.031277406960725784, -0.039768218994140625, -0.07267598062753677, 0.03201901912689209, -0.016241129487752914, -0.0025429241359233856, 0.026409348472952843, -0.02847081609070301, -0.0010097298072651029, 0.029661381617188454, -0.0120660699903965, -0.017143603414297104, -0.0269149262458086, -0.019621338695287704, -0.03462477773427963, 0.12168792635202408, 0.03979887440800667, -0.0448298417031765, -0.012950528413057327, -0.02945837564766407, 0.0040829540230333805, 0.04126371070742607, 0.0141591876745224, -0.07078537344932556, 0.0038210919592529535, 0.022427722811698914, 0.08662701398134232, -0.005706365220248699, -0.05767407268285751, -0.004022361245006323, 0.010487707331776619, -0.03283226117491722, -0.041449692100286484, 0.02908722497522831, 0.04200747236609459, -0.14770588278770447, -0.01482169795781374, 0.014237331226468086, 0.027929995208978653, -0.06093187257647514, -0.03642288222908974, -0.009904174134135246, -0.0287039652466774, -0.01076406892389059, 0.05196407809853554, -0.008737011812627316, -0.0575508177280426, 0.028631005436182022, 0.028209161013364792, 0.009319559670984745, -0.005155791994184256, 0.014664867892861366, -0.053038835525512695, 0.020989181473851204, -0.051606617867946625, -0.10777590423822403, -0.036639243364334106, 0.0036184152122586966, -0.012971528805792332, 0.01950136199593544, -0.024399040266871452, -0.03220430389046669, -0.07180700451135635, 0.0814775824546814, 0.00608082115650177, -0.013187040574848652, 0.013407668098807335, 0.019837891682982445, -0.022759098559617996, -0.03471817448735237, -0.048171259462833405, 0.028952473774552345, -0.05364605784416199, -0.016612641513347626, -0.08280540257692337, 0.05514005571603775, 0.04851890355348587, -0.04245981201529503, 0.060930635780096054, 0.03064156137406826, -0.04030879959464073, -0.02380155585706234, -0.001045713433995843, 0.02498616836965084, 0.014843294396996498, -0.0228109210729599, -0.0027585539501160383, 0.02956889197230339, 0.01104858610779047, 0.042913325130939484, -0.045744121074676514, 0.0003065525379497558, 0.007976017892360687, -0.36222636699676514, -0.04196491464972496, -0.032895561307668686, 0.006632826756685972, 0.013021244667470455, -0.07262755185365677, 0.018285974860191345, -0.0061554210260510445, -0.019302841275930405, 0.042973633855581284, 0.09417065978050232, -0.038284946233034134, 0.02113296091556549, -0.06517632305622101, 0.0007619347888976336, -0.0004384896019473672, -0.020348547026515007, -0.014942741021513939, -0.007662704214453697, 0.010533951222896576, 0.021379921585321426, -0.02088170126080513, -0.02481364645063877, -0.07305725663900375, 0.006267339922487736, -0.04154084622859955, 0.11012556403875351, 0.023089727386832237, 0.06820245832204819, -0.06853903084993362, 0.06090971454977989, 0.006289481185376644, 0.004667631816118956, -0.10175998508930206, -0.00738317659124732, -0.007109442725777626, 0.04512488842010498, -0.014411382377147675, -0.006266289856284857, -0.02730432152748108, -0.05030684918165207, 0.030425939708948135, -0.06116966903209686, -0.03952410817146301, -0.07526759803295135, 0.027694378048181534, -0.0331462137401104, -0.027627721428871155, -0.006966825574636459, 0.07747664302587509, 0.009400286711752415, -0.016573935747146606, 0.0030252959113568068, 0.03608790785074234, -0.012252910062670708, -0.022545678541064262, -0.04038826376199722, 0.026736916974186897, -0.002705668332055211, -0.014687922783195972, 0.011521224863827229, 0.07128708064556122, 0.050204042345285416, -0.028355371206998825, 0.02497122995555401, 0.022411970421671867, 0.00619374169036746, 0.019138837233185768, 0.04717439413070679, -0.020320679992437363, -0.03621215000748634, 0.10380960255861282, 0.006234347354620695, 0.0054335524328053, 0.011707466095685959, 0.03669103607535362, -0.042581453919410706, 0.012356346473097801, 0.007858502678573132, -0.011788040399551392, 0.03066065162420273, -0.03075394220650196, 0.04273904487490654, -0.016751790419220924, -0.009824736975133419, 0.040289122611284256, -0.009865378960967064, -0.07507539540529251, 0.05319253355264664, 0.03693025931715965, -0.03560552000999451, -0.01031031459569931, -0.046570923179388046, -0.06836165487766266, 0.04650072008371353, -0.021306969225406647, -0.2632896900177002, 0.003011901630088687, 0.050114698708057404, 0.05561622977256775, 0.012134280055761337, 0.020479833707213402, 0.025689726695418358, 0.002230237005278468, 0.02328157052397728, 0.03085596300661564, 0.029708480462431908, 0.018837960436940193, -0.014900583773851395, 0.0035555397626012564, 0.0361262746155262, -0.008106790482997894, 0.03530460223555565, 0.02427172288298607, -0.006321850698441267, 0.000027492353183333762, 0.011234004981815815, -0.015609392896294594, 0.1683574765920639, 0.0343194454908371, 0.013147220015525818, 0.005707447417080402, -0.010258165188133717, 0.008314976468682289, 0.04728000983595848, -0.0016520137432962656, -0.0067831468768417835, -0.003635753644630313, 0.04244822636246681, 0.006199550349265337, 0.02576572448015213, -0.09974384307861328, -0.03125923499464989, 0.036304742097854614, 0.024594858288764954, 0.0035336522851139307, -0.012006123550236225, 0.019100986421108246, -0.013965592719614506, 0.029123958200216293, 0.04458373785018921, 0.008944237604737282, -0.001989392563700676, -0.01684093289077282, -0.06005121022462845, 0.013349003158509731, -0.031844690442085266, -0.03923313319683075, 0.02662334404885769, 0.00674468046054244, 0.02347356081008911, 0.08212149143218994, 0.009404699318110943, -0.04845605045557022, 0.018160022795200348, 0.012662763707339764, -0.029041452333331108, -0.02978019043803215, 0.0889144167304039, 0.02056083455681801, 0.030252207070589066 ]
[ 0.0024797304067760706, -0.003106912365183234, 0.012396924197673798, 0.030680183321237564, -0.006093735806643963, 0.0055309198796749115, 0.0033200369216501713, 0.010318553075194359, 0.01676730439066887, 0.0003973273851443082, -0.024236023426055908, 0.0420798622071743, 0.0021361070685088634, -0.01158541813492775, 0.035021841526031494, -0.01287752017378807, 0.025276269763708115, 0.008660937659442425, 0.022188585251569748, 0.013187726028263569, 0.00897871982306242, 0.02117709070444107, -0.004308487754315138, -0.032832249999046326, 0.004170920699834824, -0.006512828171253204, -0.017986373975872993, -0.021179819479584694, 0.019091269001364708, -0.154307559132576, -0.014187644235789776, -0.006105746142566204, -0.028237810358405113, 0.00918047409504652, -0.01563125289976597, -0.027264099568128586, 0.003426123410463333, 0.021370505914092064, 0.021611995995044708, 0.0066320630721747875, 0.02448989264667034, -0.019849739968776703, -0.011021310463547707, 0.023373102769255638, 0.022337988018989563, -0.010116788558661938, -0.04084886237978935, 0.010854915715754032, -0.03212232515215874, -0.002198777860030532, -0.028349068015813828, -0.0055215624161064625, 0.002276846207678318, -0.0018907904159277678, -0.011270133778452873, -0.01625244878232479, 0.017283793538808823, 0.00024299800861626863, 0.036010075360536575, -0.02800912968814373, 0.0000440233270637691, -0.010599372908473015, -0.03545362502336502, -0.027268042787909508, -0.00491376593708992, -0.03889619559049606, 0.005324990022927523, 0.023927530273795128, -0.02005225606262684, 0.006799602881073952, -0.02113322541117668, 0.04268627613782883, -0.039904069155454636, -0.0256167221814394, 0.007910864427685738, -0.0068442560732364655, 0.011687821708619595, -0.00001233695638802601, -0.009906478226184845, -0.022982412949204445, -0.00655238376930356, 0.014356948435306549, 0.00618707062676549, 0.02686568908393383, -0.011772309429943562, -0.01175962295383215, -0.006284611765295267, 0.009338359348475933, 0.03059982694685459, 0.0073706782422959805, -0.020978936925530434, 0.002085246378555894, 0.013935696333646774, 0.009503750130534172, -0.11184987425804138, -0.021891092881560326, -0.03492312878370285, -0.010350685566663742, -0.01908288151025772, 0.8556031584739685, 0.008818872272968292, 0.022666919976472855, 0.05001286789774895, 0.03154434636235237, 0.01182169746607542, -0.021070126444101334, -0.0007544884574599564, 0.03464123606681824, 0.028282731771469116, -0.030093863606452942, 0.019052641466259956, 0.018916036933660507, 0.016120335087180138, 0.001185081317089498, 0.03174761310219765, 0.02084987610578537, 0.018974971026182175, -0.02147076465189457, -0.02565624751150608, 0.01054987870156765, 0.03510450944304466, 0.016635514795780182, -0.01422839518636465, 0.014008712023496628, 0.02252628654241562, -0.16420023143291473, 0.04350028559565544, -7.666995129977347e-33, 0.019974390044808388, 0.016812440007925034, -0.01578228548169136, 0.009554969146847725, 0.015124594792723656, 0.012933270074427128, -0.000984396319836378, 0.02287549525499344, -0.020479271188378334, -0.028302690014243126, -0.0002489451435394585, -0.008293510414659977, -0.014585722237825394, -0.020521171391010284, 0.016251569613814354, -0.00913447979837656, -0.019887590780854225, 0.036967694759368896, 0.059370867908000946, 0.013884772546589375, 0.065768763422966, 0.013035004958510399, 0.0042621367610991, 0.024700645357370377, -0.014730509370565414, 0.037443965673446655, 0.021181553602218628, 0.00137170753441751, -0.016385702416300774, -0.05121834576129913, 0.011095741763710976, 0.011338865384459496, -0.0020090718753635883, -0.01272933091968298, 0.002058955142274499, -0.04951747879385948, -0.03821225091814995, -0.015983643010258675, -0.01102086715400219, -0.012276723049581051, -0.07339577376842499, 0.008341718465089798, -0.03369874507188797, -0.012098039500415325, -0.020689861848950386, -0.005970216356217861, -0.005178497172892094, 0.024509694427251816, 0.001927943085320294, -0.0032352027483284473, -0.004339813254773617, 0.015323793515563011, 0.0029565440490841866, 0.027871113270521164, 0.0003496484423521906, 0.009183645248413086, -0.007108880206942558, -0.010749079287052155, 0.026323586702346802, 0.012791458517313004, 0.05479758232831955, -0.0019288859330117702, -0.031245948746800423, 0.039586178958415985, -0.0060117002576589584, 0.017854567617177963, 0.03287674859166145, 0.020711762830615044, 0.015587586909532547, -0.002729258965700865, -0.0343453586101532, -0.0036756417248398066, 0.01738841086626053, 0.016735434532165527, -0.0013115911278873682, -0.0026708038058131933, -0.04337180033326149, 0.04295790195465088, 0.0010952065931633115, 0.05577125400304794, 0.00525223184376955, -0.01207828801125288, -0.01616041734814644, -0.019954869523644447, -0.019010063260793686, -0.01279999129474163, 0.04373487830162048, -0.04327484965324402, -0.013347674161195755, 0.004259724635630846, 0.02884305827319622, 0.009318887256085873, -0.016369493678212166, -0.0014499216340482235, 0.00875793769955635, 8.386308041236337e-33, -0.00888208020478487, 0.0020020180381834507, -0.01629088632762432, 0.017560333013534546, 0.008881584741175175, -0.039315901696681976, 0.017878735437989235, 0.03168878331780434, -0.034325964748859406, 0.02086796425282955, -0.02449030429124832, 0.01678718626499176, -0.02889004722237587, 0.016463186591863632, 0.0272968802601099, -0.010482837446033955, 0.03411634638905525, -0.029846733435988426, 0.0020613926462829113, 0.010000116191804409, 0.0072954618372023106, 0.007648112718015909, -0.006792984437197447, 0.026156533509492874, 0.03747491538524628, 0.04017205908894539, -0.0056357611902058125, 0.00957642961293459, -0.025126293301582336, -0.018420232459902763, -0.012409918941557407, -0.0037318903487175703, 0.03092234954237938, -0.03060770593583584, -0.032882530242204666, 0.02451982907950878, 0.0016662143170833588, 0.010670662857592106, 0.03311295434832573, -0.0030114620458334684, 0.04053017869591713, 0.009775797836482525, 0.007017872296273708, 0.015517431311309338, -0.0014436485944315791, 0.015545617789030075, 0.002794850617647171, -0.021736713126301765, 0.022361688315868378, 0.00004798327063326724, -0.0036999541334807873, 0.01485011912882328, 0.01227216050028801, 0.003623367054387927, 0.006703696213662624, -0.019655592739582062, -0.014524414204061031, 0.01883052848279476, 0.00446688337251544, 0.024916872382164, 0.013643969781696796, 0.038563407957553864, -0.02613682486116886, 0.009524588473141193, -0.026559701189398766, -0.027033546939492226, 0.013039609417319298, 0.012140977196395397, -0.005047238897532225, -0.02594660222530365, -0.021646207198500633, -0.0144056910648942, 0.02485034614801407, 0.04417027533054352, 0.03860623016953468, -0.031697921454906464, -0.006949731148779392, -0.006051479838788509, -0.025621948763728142, 0.008863119408488274, -0.0008919804240576923, 0.0028091231361031532, 0.014218785800039768, -0.0010595994535833597, 0.006705925799906254, 0.008183637633919716, -0.053886089473962784, 0.029349487274885178, 0.018682118505239487, -0.030723921954631805, -0.030978355556726456, -0.035375405102968216, 0.004733613692224026, 0.024874554947018623, -0.017626803368330002, -1.3479017013651173e-8, -0.03524908795952797, -0.02321135438978672, -0.003009948879480362, -0.003304236102849245, 0.020729633048176765, 0.015593514777719975, -0.009779459796845913, -0.005235245451331139, -0.031542349606752396, 0.005582405254244804, 0.02151324413716793, -0.009734407998621464, -0.02327573671936989, 0.02538463845849037, 0.007020807359367609, -0.07141376286745071, 0.0014542179415002465, -0.0298090111464262, 0.021178321912884712, -0.015590791590511799, 0.05553984269499779, 0.05009666457772255, 0.002510464983060956, -0.015468000434339046, 0.03199039399623871, -0.013371715322136879, -0.02096848003566265, -0.09579861909151077, 0.0027435447555035353, 0.0002679755270946771, -0.016504328697919846, -0.01700369454920292, -0.046783965080976486, 0.018750136718153954, -0.014317584224045277, -0.010077291168272495, -0.008462167344987392, 0.03732139244675636, 0.005637595430016518, -0.008566404692828655, -0.001073514111340046, 0.008414366282522678, 0.006687204819172621, -0.017874613404273987, -0.015640806406736374, -0.009009107016026974, -0.05390124022960663, -0.02118120901286602, 0.04475315287709236, -0.04971003904938698, 0.0015070430235937238, -0.016531238332390785, 0.030027009546756744, 0.03515126556158066, 0.013592386618256569, -0.03426741808652878, 0.008899479173123837, -0.009619529359042645, -0.0196409672498703, -0.008828641846776009, 0.02912820875644684, 0.008209077641367912, -0.004060348030179739, -0.0358414389193058 ]
finding-the-assumptions-in-stories
https://markhneedham.com/blog/2010/03/26/finding-the-assumptions-in-stories
false
2010-03-21 22:13:27
node.js: A little application with Twitter & CouchDB
[ "javascript", "node-js" ]
[ "Javascript" ]
I've been continuing to play around with http://nodejs.org/api.html[node.js] and I thought it would be interesting to write a little application to poll Twitter every minute and save any new Tweets into a http://wiki.apache.org/couchdb/[CouchDB] database. I first played around with CouchDB in May last year and initially spent a lot of time trying to work out how to install it before coming across http://janl.github.com/couchdbx/[CouchDBX] which gives you one click installation for Mac OS X. I'm using sixtus' http://github.com/sixtus/node-couch[node-couch] library to communicate with CouchDB and I've written a little bit of code that allows me to call the Twitter API. == What did I learn? * I've been reading through Brian Guthrie's slides from his 'http://www.slideshare.net/btguthrie/advanced-ruby-idioms-so-clean-you-can-eat-off-of-them[Advanced Ruby Idioms So Clean You Can Eat Off Of Them]' talk from http://rubyconfindia.org/[RubyConfIndia] and one of the suggestions he makes is that in Ruby there are only 6 acceptable types of signatures for functions: ** 0 parameters ** 1 parameter ** 2 parameters ** A hash ** 1 parameter and a hash ** A variable number of arguments passed in as an array + It seems to me that the same guidelines would be applicable in JavaScript as well except *instead of a Hash we can pass in an object with properties and values to serve the same purpose*. A lot of the jQuery libraries I've used actually do this anyway so it's an idiom that's in both languages. I originally wrote my twitter function it so that it would take in several of the arguments individually: ~~~javascript export.query = function(username, password, method) { \... } ~~~ After reading Brian's slides I realised that this was quickly going to become a mess so I've changed the signature to only take in the most important parameter ('method') on its own with the other parameters passed in an 'options' object: ~~~javascript export.query = function(method, options) { \... } ~~~ I've not written functions that take in parameters like this before but I really like it so far. It *really helps simplify signatures* while allowing you to pass in extra values if necessary. * *I find myself porting higher order functions from C#/F# into JavaScript* whenever I can't find a function to do what I want - it's fun writing them but I'm not sure how idiomatic the code I'm writing is. For example I wanted to write a function to take query parameters out of an options object and create a query string out of them. I adapted the code from node-couch and ended up with the following: ~~~javascript Object.prototype.filter = function(fn) { var result = {}; for (var name in this) { if (this.hasOwnProperty(name)) { if (fn.call(this[name], name, this[name])) { result[name] = this[name]; } } } return result; }; Object.prototype.into = function(theArray, fn) { for (var name in this) { if (this.hasOwnProperty(name)) { theArray.push(fn.call(this[name], name, this[name])); } } return theArray; }; function encodeOptions(options) { var parameters = []; if (typeof(options) === "object" && options !== null) { parameters = options .filter(function(name) { return !(name === "username" || name === "password" || name === "callback");}) .into([], function(name, value) { return encodeURIComponent(name) + "=" + encodeURIComponent(value); }); } return parameters.length ? ("?" + parameters.join("&")) : ""; } ~~~ I'm not sure how wise it is adding these functions to the object prototype - I haven't had any problems so far but I guess if other libraries I'm using changed the prototype of these built in types in the same way as I am then I might get unexpected behaviour. Would the typical way to defend against this be to check if a function is defined before trying to define one and throwing an exception if so? Or is adding to the prototype just a dangerous thing to do altogether? Either way I'm not altogether convinced that the code with these higher order functions actually reads better than it would without them. * I'm finding it quite interesting that a lot of the code I write around node.js depends on callbacks which means that if you have 3 operations that depend on each other then you end up with nested callbacks which almost reads like code written in a http://www.markhneedham.com/blog/2010/03/19/functional-c-continuation-passing-style/[continuation passing style]. For example I have some code which needs to do the following: ** Query CouchDB to get the ID of the most recently saved tweet ** Query Twitter with that ID to get any tweets since that one ** Save those tweets to CouchDB + ~~~javascript var server = http.createServer(function (req, res) { couchDB.view("application/sort-by-id", { descending : true, success : function(response) { twitter.query("friends_timeline", { \... since_id : response.rows[0].value.id, callback : function(tweets) { tweets.each(function(tweet) { couchDB.saveDoc(tweet, { success : function(doc) { sys.log("Document " + doc._id + " successfully saved") }, error : function() { sys.log("Document failed to save"); } }); }); } }); }, error : function() { sys.log("Failed to retrieve documents"); } }); \... }); ~~~ There's a 'success' callback for calling 'couchDB.view' and then a 'callback' callback for calling 'twitter.query' and finally a 'success' callback from calling 'couchDB.saveDoc'. To me it's not that obvious what the code is doing at first glance - perhaps because I'm not that used to this style of programming - but I'm intrigued if there's a way to write the code to make it more readable. * I haven't yet worked out a good way to test drive code in a node.js module. As I understand it all the functions we define except for ones added to the 'exports' object are private to the module so there's no way to test against that code directly unless you pull it out into another module. At the moment I'm just changing the code and then restarting the server and checking if it's working or not. It's probably not the most effective feedback cycle but it's working reasonably well so far. </ul> I've put the code that I've written so far as gists on github: ** http://gist.github.com/339579[twitter-server.js] ** http://gist.github.com/339583[twitter.js] ** http://gist.github.com/339591[encoding.js] + That can be run with the following command from the terminal: ~~~text node twitter-server.js ~~~
null
null
[ 0.004908115603029728, -0.0026724045164883137, -0.013909678906202316, 0.006765382830053568, 0.06187273561954498, 0.01793070323765278, 0.023311974480748177, 0.02373955212533474, 0.0008276782464236021, -0.007176524959504604, -0.016155211254954338, 0.009235421195626259, -0.07182589173316956, 0.010936652310192585, -0.016165291890501976, 0.044404078274965286, 0.07832466810941696, -0.011555216275155544, 0.03540797159075737, -0.0061263456009328365, 0.022959450259804726, 0.07526964694261551, 0.01302689965814352, 0.011479715816676617, 0.03261064365506172, 0.013184814713895321, 0.0004251325153745711, 0.013790126889944077, -0.048792459070682526, -0.038362760096788406, 0.015707360580563545, 0.011093446053564548, 0.0022945087403059006, -0.012038706801831722, 0.02678261324763298, 0.010277213528752327, -0.005885891616344452, 0.030840525403618813, 0.011485960334539413, 0.039185840636491776, -0.07240919023752213, 0.05593890696763992, 0.000046265726268757135, 0.043240975588560104, -0.014901396818459034, 0.024490466341376305, -0.04014226421713829, 0.004351732786744833, -0.011587727814912796, 0.016885066404938698, -0.05954616516828537, 0.03126045688986778, -0.021183202043175697, 0.0009859515121206641, 0.017809415236115456, 0.03194611519575119, -0.007792213931679726, -0.06983187794685364, 0.04069167748093605, -0.012804843485355377, -0.003338173497468233, -0.0012652783188968897, 0.009236585348844528, 0.01571662351489067, 0.017512109130620956, -0.02451064996421337, -0.01538552064448595, 0.05948039889335632, -0.04777951166033745, -0.00904459785670042, 0.015562730841338634, 0.007529235444962978, -0.04218887537717819, -0.013492108322679996, 0.012856789864599705, -0.05695055425167084, 0.009981676936149597, 0.048721227794885635, 0.008767927996814251, 0.057179585099220276, -0.034771744161844254, 0.040716834366321564, 0.031162014231085777, 0.04215844348073006, 0.017698366194963455, -0.02980736456811428, -0.057395681738853455, 0.020619850605726242, -0.050539854913949966, 0.028405994176864624, 0.04701045900583267, -0.056916896253824234, 0.013949266634881496, 0.009563788771629333, -0.024120347574353218, 0.01993398554623127, -0.0024121650494635105, 0.011686430312693119, -0.010468174703419209, -0.020343611016869545, -0.05084184184670448, -0.0036003480199724436, 0.00363884842954576, -0.025249848142266273, -0.06564994156360626, -0.001796876429580152, -0.006237331312149763, -0.01258703414350748, 0.013149670325219631, -0.004375663585960865, -0.02874414063990116, 0.005875300616025925, -0.020671969279646873, 0.007421739399433136, -0.058830294758081436, 0.059441808611154556, 0.016086986288428307, -0.03894728422164917, -0.03661881759762764, 0.021358290687203407, 0.047788940370082855, 0.04625564068555832, -0.004073143005371094, 0.05999211221933365, -0.011022462509572506, -0.0025464529171586037, -0.008917423896491528, 0.05002793297171593, -0.010270372033119202, -0.035452794283628464, -0.024269362911581993, 0.05071800947189331, -0.00973440520465374, 0.008610117249190807, -0.029580190777778625, -0.002188628539443016, -0.003582149278372526, 0.0019946738611906767, 0.05770786106586456, 0.029158934950828552, -0.0034897085279226303, -0.05823853239417076, -0.022901007905602455, -0.008196392096579075, 0.029104528948664665, 0.0030848062597215176, -0.011936794966459274, -0.022463371977210045, -0.03590797260403633, 0.03275226429104805, -0.005034233909100294, -0.007453685626387596, 0.05158814415335655, -0.035383764654397964, 0.010767876170575619, 0.09201932698488235, 0.03599200397729874, 0.005790672264993191, -0.006305883172899485, 0.0017393503803759813, 0.03868936374783516, 0.028354762122035027, 0.003669274738058448, 0.033508624881505966, 0.0034667879808694124, -0.018906716257333755, 0.018674219027161598, 0.0843663141131401, 0.013252580538392067, -0.019224470481276512, -0.04585275799036026, -0.0359102264046669, 0.06836027652025223, -0.009834055788815022, -0.024073751643300056, 0.035482753068208694, 0.07279215008020401, -0.0053350310772657394, 0.017557417973876, 0.02122446708381176, -0.08090819418430328, 0.05478185415267944, 0.03686969727277756, 0.039076339453458786, 0.03964320942759514, -0.024405861273407936, 0.06647832691669464, 0.015479960478842258, 0.024831367656588554, 0.017943337559700012, -0.07324205338954926, -0.08126438409090042, -0.026944873854517937, 0.014217269606888294, 0.07045608758926392, -0.05663353577256203, 0.010918324813246727, 0.06017857417464256, 0.04805339127779007, 0.025008609518408775, 0.00009443484304938465, -0.04388133063912392, 0.029257748275995255, -0.04454069957137108, -0.03289152309298515, 0.051120027899742126, 0.030304711312055588, -0.04840957745909691, -0.02469232864677906, 0.011526349000632763, -0.00639521237462759, -0.003896525828167796, 0.03761404752731323, -0.029243068769574165, 0.016973508521914482, 0.017735933884978294, 0.04283653199672699, -0.018249129876494408, 0.03860193490982056, -0.04218613728880882, 0.036867521703243256, 0.00702724140137434, -0.00486769201233983, -0.005153358448296785, -0.000979487202130258, 0.12709645926952362, 0.05027562379837036, -0.03528066724538803, -0.031945616006851196, 0.01373682077974081, -0.0012264413526281714, -0.03656516224145889, -0.0018062872113659978, -0.022511256858706474, -0.0067494940012693405, 0.01781252585351467, -0.027456127107143402, -0.019364070147275925, -0.0033930735662579536, -0.049635306000709534, -0.014857853762805462, 0.07319667935371399, -0.03181653097271919, 0.040956538170576096, 0.014267383143305779, -0.028391122817993164, 0.0024460589047521353, -0.03431721031665802, -0.052628468722105026, 0.026299914345145226, 0.020462242886424065, -0.0048777880147099495, 0.041474491357803345, -0.04130968824028969, 0.008388569578528404, -0.011220882646739483, -0.04192635416984558, 0.02996668964624405, 0.032827600836753845, 0.06420023739337921, -0.01966206729412079, 0.049935635179281235, -0.0372677780687809, 0.0376846082508564, -0.018786625936627388, -0.036061350256204605, -0.04226411506533623, -0.013968266546726227, -0.0005392483435571194, 0.02370286174118519, 0.03706757724285126, 0.00514415604993701, 0.010709339752793312, -0.004640170373022556, -0.014506848528981209, -0.012658628635108471, 0.02250073291361332, -0.014564703218638897, -0.03213930502533913, -0.05532084032893181, -0.03852875158190727, 0.06123174726963043, -0.0461122989654541, -0.042006246745586395, -0.0075895399786531925, -0.07253317534923553, 0.03902336210012436, -0.061967071145772934, -0.034856826066970825, -0.009082959033548832, 0.04276548698544502, 0.057130564004182816, 0.01849319413304329, 0.021261129528284073, 0.06481924653053284, 0.010973857715725899, 0.026903599500656128, 0.00041705972398631275, -0.013377723284065723, 0.03766454756259918, -0.03559506684541702, 0.01109222136437893, 0.04564887285232544, -0.008697145618498325, -0.0033020959235727787, -0.05199054256081581, -0.0021319000516086817, -0.017234113067388535, -0.28538092970848083, 0.0689699798822403, -0.031553249806165695, -0.03383921459317207, 0.03322994336485863, -0.030772380530834198, 0.007940213195979595, -0.04953650012612343, 0.0025276795495301485, 0.005143478512763977, -0.0036507542245090008, -0.0019238635431975126, -0.032263949513435364, 0.02894684113562107, 0.006636057514697313, -0.015609688125550747, -0.047148916870355606, -0.03308454528450966, -0.0021506582852452993, 0.0328061580657959, -0.023416243493556976, -0.054421547800302505, 0.01757820136845112, 0.018779555335640907, 0.028517169877886772, 0.033806659281253815, -0.0920347273349762, 0.05969025567173958, -0.014703872613608837, -0.0053809331730008125, 0.01931222341954708, -0.025409499183297157, 0.006121122743934393, 0.005831447895616293, -0.006908297538757324, -0.00010958295752061531, 0.04245714098215103, -0.013426548801362514, 0.04550879821181297, 0.010899778455495834, -0.029660021886229515, -0.03303375095129013, -0.02783508412539959, -0.005685133393853903, 0.07884825766086578, -0.02361319586634636, -0.07993551343679428, 0.0021095923148095608, -0.04652739316225052, 0.06339116394519806, -0.02371750771999359, -0.0744207501411438, -0.052718594670295715, 0.03741580992937088, 0.010844100266695023, -0.042402483522892, -0.0180565994232893, -0.010787567123770714, -0.03213454782962799, -0.035508207976818085, -0.008657078258693218, -0.03813888877630234, -0.012470027431845665, -0.030230728909373283, -0.02190948650240898, -0.06187949329614639, -0.05070558562874794, -0.008852940984070301, 0.07805484533309937, 0.02524152211844921, 0.0045652249827980995, 0.010218413546681404, -0.014615892432630062, -0.10803227126598358, -0.02933073788881302, -0.021180525422096252, -0.01838749088346958, 0.012840843759477139, 0.0006810003542341292, 0.04918591305613518, -0.032219298183918, -0.04292319715023041, -0.0024217404425144196, -0.022344594821333885, 0.0076372623443603516, -0.04730546846985817, 0.03366696834564209, -0.01803005300462246, -0.0010096258483827114, -0.0007889742846600711, 0.06491036713123322, -0.055760886520147324, -0.04144252464175224, 0.009556932374835014, 0.002825911855325103, 0.041531484574079514, 0.012939929030835629, 0.009089415892958641, -0.0007862971979193389, 0.048557620495557785, 0.050490446388721466, -0.06269802153110504, -0.01043157372623682, -0.040555525571107864, -0.015198113396763802, -0.0016831847606226802, -0.057399507611989975, 0.03515801578760147, 0.021044937893748283, 0.02589058130979538, -0.044357411563396454, -0.0052106948569417, 0.011204401031136513, -0.07291166484355927, -0.004035261459648609, -0.024538222700357437, -0.004425690975040197, 0.009680441580712795, 0.04249350354075432, -0.04415455088019371, -0.06144338846206665, -0.0017831982113420963, 0.05944809317588806, -0.022236783057451248, -0.05124272406101227, -0.032778047025203705, -0.0059738317504525185, -0.03833842650055885, 0.05195609852671623, 0.0017352667637169361, 0.008080041036009789, 0.00919346883893013, -0.0061439089477062225, -0.01068859826773405, 0.017927588894963264, -0.03931932896375656, -0.0378623902797699, -0.0405617319047451, 0.006128963548690081, -0.02395929954946041, -0.0035611370112746954, -0.022136226296424866, -0.020973868668079376, 0.018514182418584824, 0.035085685551166534, 0.029275275766849518, -0.018740689381957054, 0.022272981703281403, 0.013395496644079685, -0.006506879348307848, 0.01657767966389656, -0.05246175825595856, -0.005707219243049622, -0.024222027510404587, -0.035334113985300064, -0.03726643696427345, 0.052220720797777176, -0.015157169662415981, -0.010651739314198494, -0.050885867327451706, 0.020336225628852844, -0.03048907406628132, -0.027090266346931458, 0.006984575651586056, -0.02530725859105587, 0.007131573278456926, -0.014515019953250885, 0.04276647791266441, -0.03045707382261753, -0.03286098316311836, -0.015406093560159206, 0.005480888765305281, 0.005236846394836903, -0.011483212932944298, 0.0016643786802887917, -0.022000757977366447, -0.03642933815717697, 0.05897195264697075, 0.025063680484890938, 0.02130023203790188, 0.03244610130786896, -0.016918322071433067, 0.024045292288064957, 0.025767583400011063, 0.06795408576726913, 0.030284516513347626, -0.019351186230778694, -0.003336898284032941, -0.025057829916477203, 0.024091793224215508, -0.03918130695819855, 0.007670724764466286, -0.004478152375668287, 0.018430253490805626, -0.008097521960735321, -0.08108922839164734, 0.05047955736517906, 0.035835787653923035, -0.010002109222114086, 0.012080365791916847, -0.00030457854154519737, 0.028961051255464554, -0.026957986876368523, 0.04226425662636757, 0.055196404457092285, -0.057045381516218185, -0.00794187281280756, -0.017092538997530937, 0.02115238644182682, -0.01012362539768219, 0.031744252890348434, -0.05222830921411514, -0.00564969889819622, -0.0230754055082798, 0.004397273994982243, 0.0034167275298386812, -0.0328952893614769, -0.0069902981631457806, 0.009496543556451797, -0.00014410773292183876, 0.018307330086827278, -0.016376959159970284, 0.0049480265006423, 0.0012561642797663808, -0.01506314892321825, 0.021580180153250694, -0.05220213532447815, -0.0016779087018221617, 0.02278854139149189, -0.018687428906559944, 0.03779572248458862, -0.026969071477651596, 0.034733884036540985, 0.032196901738643646, -0.018863333389163017, 0.016954023391008377, -0.054207347333431244, 0.026580629870295525, -0.0414896085858345, 0.07070693373680115, -0.01876324974000454, -0.018414022400975227, -0.026710959151387215, -0.0038130558095872402, -0.04855766147375107, -0.01585582084953785, -0.04188363254070282, 0.010097174905240536, 0.016419902443885803, 0.026917612180113792, 0.010405431501567364, 0.03864744305610657, -0.020478900521993637, -0.009247539564967155, 0.04295692220330238, -0.052441492676734924, -0.003979515749961138, -0.0409928597509861, -0.050880588591098785, 0.013241496868431568, 0.011459040455520153, 0.012587938457727432, -0.04107065126299858, 0.0775945857167244, 0.02391842007637024, 0.0014096875675022602, 0.04231404513120651, -0.01857852190732956, 0.020921653136610985, -0.02430761232972145, -0.024994442239403725, -0.09050070494413376, 0.009531132876873016, 0.027495676651597023, -0.018779786303639412, -0.01624138467013836, 0.013248780742287636, -0.03676200285553932, 0.018291717395186424, -0.056380804628133774, -0.00813241209834814, 0.038874175399541855, -0.017572591081261635, -0.0011602462036535144, 0.005541108548641205, -0.07334746420383453, 0.03649725392460823, 0.05499747768044472, -0.021566424518823624, -0.024769727140665054, -0.02561086416244507, 0.054247867316007614, 0.010991984978318214, 0.05017203837633133, -0.02787203900516033, -0.02199539728462696, 0.08783415704965591, 0.020213276147842407, 0.0288276094943285, 0.08440156280994415, -0.012951277196407318, 0.04603290557861328, 0.03759679198265076, 0.010516340844333172, 0.03882792219519615, 0.012298984453082085, -0.02203034795820713, -0.04857509955763817, 0.025879498571157455, 0.01232652273029089, -0.0468607135117054, -0.031467776745557785, 0.06203100457787514, 0.018310021609067917, -0.04148413613438606, -0.05019080266356468, 0.04223734140396118, -0.047653235495090485, -0.019352231174707413, -0.057604365050792694, 0.005528785288333893, -0.012154498137533665, 0.04913507029414177, -0.029229579493403435, 0.010109296068549156, 0.07310488075017929, 0.0009264051914215088, 0.0011732187122106552, -0.014758512377738953, 0.07880022376775742, 0.09624182432889938, 0.06689056009054184, 0.007014443166553974, 0.04121201112866402, -0.007064672186970711, -0.03921791538596153, -0.018243970349431038, -0.016222627833485603, -0.019401954486966133, 0.008606799878180027, -0.006408880464732647, 0.09867789596319199, -0.0454886294901371, 0.06069650873541832, -0.02674156054854393, 0.004094355273991823, -0.0169473085552454, 0.002717086346819997, 0.0027249129489064217, 0.03619955852627754, 0.004117289092391729, 0.03748227655887604, -0.015598517842590809, -0.03131760656833649, 0.053500931710004807, -0.022563885897397995, -0.020527644082903862, 0.02364690601825714, -0.025383837521076202, 0.02263331040740013, 0.04053235426545143, 0.04006563499569893, 0.06576712429523468, -0.023333687335252762, -0.00617951201274991, 0.02215764671564102, 0.026976024731993675, -0.016165442764759064, 0.024995725601911545, 0.008923126384615898, -0.0030115521512925625, -0.007274040952324867, -0.027395475655794144, 0.017909971997141838, 0.004184951074421406, -0.053797647356987, 0.05838160961866379, -0.030243249610066414, 0.010499195195734501, 0.007334365975111723, -0.014069347642362118, -0.03225750848650932, -0.0472397617995739, -0.04749114066362381, -0.06639684736728668, -0.06595797091722488, -0.022444019094109535, 0.033481866121292114, -0.001004572375677526, -0.0610724538564682, -0.023777922615408897, -0.007398080546408892, 0.04009176790714264, 0.03052605874836445, -0.026967860758304596, -0.028826454654335976, 0.005094943568110466, 0.01682247966527939, 0.03643033280968666, 0.021789871156215668, 0.030073342844843864, -0.0016755311517044902, 0.0023349598050117493, -0.040664900094270706, 0.00949106179177761, 0.05167922005057335, 0.01903460919857025, 0.01509733684360981, -0.06162905693054199, 0.009607072919607162, 0.009732972830533981, 0.021690733730793, -0.06045370548963547, -0.017477385699748993, 0.035883579403162, 0.013550669886171818, 0.059652578085660934, -0.012517092749476433, -0.006745249032974243, -0.055762555450201035, -0.002156330505385995, 0.0014269356615841389, -0.0022897033486515284, 0.009373164735734463, -0.02055371180176735, 0.10065052658319473, 0.022039173170924187, -0.02963937632739544, -0.024555355310440063, -0.013207677751779556, 0.004195893183350563, 0.010399557650089264, -0.02226237952709198, -0.027508780360221863, -0.03428246080875397, -0.06664148718118668, -0.051558125764131546, 0.02871706150472164, -0.026237519457936287, -0.03381100296974182, 0.03312073275446892, 0.044464316219091415, -0.031176546588540077, 0.03831537067890167, -0.04833042249083519, 0.036638882011175156, 0.006584253162145615, -0.010831101797521114, -0.014686358161270618, -0.008172398433089256, -0.011359551921486855, -0.014684377238154411, 0.025442704558372498, -0.027321575209498405, -0.03441104292869568, -0.015719635412096977, 0.007589735556393862, 0.023598836734890938, -0.023591702803969383, 0.019386673346161842 ]
[ -0.064246766269207, -0.04155173897743225, -0.06740548461675644, -0.03724690154194832, 0.0625520646572113, -0.06973857432603836, -0.009683077223598957, 0.02107623778283596, 0.0018069614889100194, 0.004029571544378996, -0.018951721489429474, -0.040678106248378754, -0.01745365373790264, -0.03086944855749607, 0.10088897496461868, 0.028676753863692284, 0.007809298112988472, -0.08804845809936523, -0.05078388750553131, 0.032673899084329605, -0.007897788658738136, -0.002177112502977252, -0.01974591799080372, -0.04424932971596718, -0.002146916463971138, 0.018687861040234566, 0.026982681825757027, -0.04573176056146622, 0.0001430620177416131, -0.1761464625597, 0.03670376166701317, -0.017363421618938446, 0.018482109531760216, -0.03132186084985733, 0.005265179555863142, 0.03515574708580971, 0.059841495007276535, -0.039488159120082855, -0.01353432610630989, 0.07880508154630661, 0.0011484406422823668, 0.003907991573214531, -0.05291822552680969, -0.010358892381191254, 0.07528454810380936, -0.013518868945538998, -0.03647579625248909, -0.02076740190386772, -0.0325695164501667, 0.006710057146847248, -0.07193148136138916, 0.003012143773958087, -0.01576097682118416, -0.05602794513106346, 0.02501474693417549, 0.04953290522098541, 0.044685736298561096, 0.09665492922067642, 0.01720016822218895, 0.03541874140501022, 0.05126650258898735, -0.021358733996748924, -0.11920908838510513, 0.10845798254013062, 0.03409278392791748, 0.0627565011382103, -0.04382430762052536, -0.021517334505915642, -0.013770935125648975, 0.07429284602403641, 0.020078152418136597, -0.007761831860989332, -0.025386754423379898, 0.06947516649961472, 0.008977808989584446, -0.0005934601649641991, 0.007981817238032818, 0.014949306845664978, 0.03232967108488083, -0.0535149984061718, -0.052880074828863144, -0.013419310562312603, -0.004694151692092419, -0.010398062877357006, -0.020782914012670517, -0.01888432539999485, -0.04748855531215668, 0.05324869230389595, -0.006643583532422781, 0.06524882465600967, 0.01071960385888815, -0.016225479543209076, 0.055354367941617966, 0.016927435994148254, -0.11076764762401581, -0.028516221791505814, 0.021998455747961998, 0.003330122446641326, -0.03249209001660347, 0.4044104814529419, -0.006714272778481245, -0.008436480537056923, 0.046069394797086716, 0.014263256452977657, 0.0008913323981687427, -0.022662777453660965, 0.008328418247401714, -0.09178558737039566, 0.0232589952647686, -0.014944878406822681, -0.01784566044807434, -0.021457426249980927, 0.04145623371005058, -0.07241735607385635, 0.009216174483299255, 0.01105530746281147, 0.014280971139669418, 0.052932243794202805, -0.00271851965226233, 0.017010735347867012, -0.010933144949376583, 0.037827663123607635, 0.04840356111526489, 0.020348284393548965, 0.040818046778440475, 0.014948983676731586, 0.03598300740122795, 0.055131927132606506, 0.04048789665102959, 0.045166272670030594, 0.028476940467953682, 0.011311892420053482, -0.07752861082553864, -0.010546193458139896, -0.0013892602873966098, 0.03668832778930664, 0.0030895427335053682, -0.012654302641749382, 0.00853906199336052, 0.03823019936680794, -0.010910787619650364, -0.028599698096513748, 0.030104951933026314, 0.004818974994122982, -0.030249817296862602, 0.07801344990730286, 0.0051028430461883545, -0.006007485557347536, -0.017316073179244995, -0.03274351358413696, 0.025122012943029404, 0.04439982399344444, -0.025969071313738823, -0.05646828934550285, -0.006205752957612276, -0.003266909858211875, 0.035962048918008804, -0.020488986745476723, -0.05218120664358139, 0.0063249776139855385, -0.03688831999897957, -0.02318405732512474, 0.023969119414687157, 0.017220664769411087, 0.013864602893590927, -0.14845560491085052, -0.02384127303957939, 0.015553862787783146, 0.021559707820415497, -0.11090648919343948, -0.0017610035138204694, 0.02484523318707943, -0.06307849287986755, -0.030510397627949715, 0.05046899989247322, -0.027080586180090904, -0.0045311166904866695, -0.007312975358217955, 0.04196799919009209, 0.004368502181023359, -0.011413893662393093, -0.030527174472808838, -0.03733085095882416, 0.011369693093001842, -0.05563666671514511, -0.04027704522013664, -0.0425126850605011, -0.018362674862146378, 0.010144227184355259, -0.004330381751060486, -0.006112863775342703, -0.021136926487088203, -0.07099542021751404, 0.03792205825448036, -0.005291921552270651, -0.03346485644578934, -0.004777488764375448, -0.0038047078996896744, 0.02850017510354519, -0.007021548226475716, 0.005110177211463451, 0.013307853601872921, -0.028356650844216347, 0.03397075831890106, -0.05339454114437103, 0.03043477050960064, 0.05833850055932999, -0.027311047539114952, 0.0823553055524826, 0.014076262712478638, -0.017174318432807922, 0.003995267208665609, -0.019355405122041702, 0.03169918432831764, -0.02638634480535984, -0.02786897122859955, 0.011729103513062, -0.02606016770005226, 0.024912120774388313, 0.04612388089299202, -0.04603828117251396, -0.03283935785293579, -0.02045993134379387, -0.3421062231063843, -0.04549688473343849, -0.01682094670832157, 0.009272691793739796, 0.00746578024700284, -0.061838533729314804, -0.009459522552788258, -0.027298010885715485, -0.01366534922271967, 0.04013609141111374, 0.1119174063205719, -0.03289477154612541, 0.014066747389733791, -0.09759724885225296, -0.024387570098042488, 0.024138735607266426, -0.03219173103570938, -0.05525089427828789, -0.010683664120733738, 0.010723202489316463, -0.028256341814994812, -0.02448934316635132, -0.03347878158092499, -0.06504931300878525, 0.01985429786145687, -0.03932235389947891, 0.11100628972053528, 0.01776064559817314, 0.05901646614074707, -0.0439692847430706, 0.04143157973885536, -0.011412163265049458, 0.01790100336074829, -0.10136612504720688, -0.0050129275768995285, 0.0009012590744532645, 0.0013865567743778229, 0.010382030159235, 0.022314701229333878, -0.01379276905208826, -0.05623529106378555, 0.05527827888727188, -0.034759651869535446, -0.07217220216989517, -0.03109424002468586, 0.017659015953540802, -0.05667959898710251, -0.029424898326396942, 0.021670572459697723, 0.06861589848995209, 0.0184249859303236, 0.02911759726703167, 0.03610645607113838, 0.014317109249532223, -0.003477503312751651, -0.01982801966369152, -0.06846240907907486, -0.011777383275330067, 0.003911346197128296, 0.0198551993817091, 0.007021777331829071, 0.02824120782315731, 0.019349154084920883, -0.05358031019568443, 0.00497495848685503, 0.008838712237775326, -0.015328465029597282, 0.007438068278133869, 0.024046098813414574, -0.03539501130580902, -0.02407004125416279, 0.10264251381158829, 0.011687463149428368, 0.042298197746276855, 0.06839678436517715, 0.02005831152200699, 0.003858409356325865, 0.016409141942858696, 0.04095359146595001, 0.008875458501279354, 0.03362969309091568, -0.03008953295648098, 0.07331208884716034, -0.03456760570406914, -0.035401809960603714, 0.05603080615401268, -0.006651995237916708, -0.004878920037299395, 0.029696978628635406, 0.018102334812283516, -0.01732419990003109, -0.006313140969723463, -0.014224784448742867, -0.06917641311883926, 0.03918154910206795, 0.0010491253342479467, -0.2381482571363449, 0.022515960037708282, 0.03752046823501587, 0.048657629638910294, 0.008208805695176125, 0.030135925859212875, 0.03843396529555321, -0.05931662768125534, -0.0032004916574805975, -0.010338366031646729, 0.03899472951889038, 0.07543223351240158, 0.0014847014099359512, -0.004716055002063513, 0.01989939622581005, -0.00272669387049973, 0.03521456941962242, 0.01642465591430664, -0.019887546077370644, 0.0040807356126606464, 0.04595011845231056, -0.02031133882701397, 0.18529032170772552, 0.02441285364329815, -0.0023193215020000935, 0.05823466554284096, -0.02159814164042473, 0.03675587475299835, 0.10462719202041626, 0.017868630588054657, -0.014794065617024899, 0.013626163825392723, 0.023421164602041245, 0.016457760706543922, 0.015720795840024948, -0.08465822041034698, -0.012838690541684628, 0.026939284056425095, 0.003202688181772828, -0.03972483426332474, -0.027680031955242157, 0.03256669640541077, -0.02517273835837841, 0.022534238174557686, 0.05091845989227295, -0.031798020005226135, -0.02214876376092434, -0.007350537460297346, -0.03814689442515373, 0.017411507666110992, -0.024646542966365814, -0.03542780131101608, -0.006325589958578348, 0.011027147993445396, 0.03765180706977844, 0.07869357615709305, 0.05606348067522049, 0.015181920491158962, -0.016039561480283737, 0.004337480757385492, -0.02745393104851246, -0.009570768103003502, 0.09479179978370667, 0.040297869592905045, 0.057866938412189484 ]
[ 0.021182956174016, 0.020371442660689354, 0.0004906663671135902, 0.0044823260977864265, 0.030441826209425926, 0.02238982543349266, -0.019930236041545868, 0.001717773382551968, 0.0042524272575974464, 0.016186947003006935, -0.04253993183374405, 0.04706571251153946, 0.07701350748538971, -0.05809397995471954, -0.0003000855795107782, 0.011853767558932304, -0.022033359855413437, -0.023591414093971252, 0.04020032659173012, 0.016362149268388748, -0.03737505525350571, 0.006657126825302839, 0.0039134556427598, 0.015296369791030884, 0.0007542365347035229, -0.04690377786755562, -0.0161310862749815, 0.0017087538726627827, 0.014157699421048164, -0.06657485663890839, -0.001155462465249002, -0.021662157028913498, -0.01655542477965355, 0.007078306749463081, -0.03393237665295601, 0.026562809944152832, 0.0069434321485459805, -0.05135774984955788, -0.024413198232650757, 0.040575817227363586, -0.00553797697648406, -0.05940627679228783, -0.04696314036846161, 0.019983511418104172, -0.023897768929600716, -0.011592932045459747, -0.03590207174420357, -0.0006905564805492759, -0.03492489084601402, 0.003703384893015027, -0.03668633848428726, -0.03886707127094269, 0.0034054177813231945, -0.002217027358710766, -0.004872416146099567, -0.010253993794322014, 0.008197559975087643, 0.04607469215989113, 0.012855097651481628, 0.028961636126041412, 0.021103130653500557, -0.014408976770937443, 0.014354192651808262, -0.006555991247296333, -0.01408808957785368, 0.00015146919758990407, -0.0778372585773468, 0.017411833629012108, 0.016531705856323242, 0.022682273760437965, -0.009365754202008247, 0.026720618829131126, -0.016759751364588737, -0.048728395253419876, -0.03652307018637657, -0.03773488849401474, -0.0017239449080079794, -0.03502779081463814, -0.006928637158125639, 0.06646312773227692, -0.06059899553656578, -0.01710023544728756, -0.026166319847106934, 0.033556919544935226, -0.02494054101407528, 0.015487849712371826, -0.013925515115261078, -0.015903331339359283, -0.04460914805531502, 0.023436103016138077, 0.010622097179293633, 0.005131382495164871, 0.031165752559900284, 0.013061855919659138, -0.11632633954286575, 0.023179680109024048, -0.004761801566928625, -0.028742918744683266, -0.004951776005327702, 0.7735773324966431, -0.03809626027941704, 0.007516143377870321, 0.011886397376656532, -0.01794387213885784, 0.01237267442047596, -0.03812030330300331, -0.023774469271302223, 0.006619694177061319, 0.007782350294291973, -0.004229858983308077, -0.006683537736535072, 0.02921891398727894, 0.009478310123085976, 0.03220164030790329, 0.026244139298796654, 0.05505305901169777, 0.04139036312699318, -0.027312027290463448, 0.06037550047039986, 0.0000909929076442495, 0.053157955408096313, 0.05204566940665245, 0.04993779584765434, 0.030519163236021996, 0.03226018324494362, -0.15422378480434418, 0.03711967542767525, -7.35129848964876e-33, 0.02590022049844265, -0.034120868891477585, 0.02409229800105095, 0.01898461952805519, 0.02521805837750435, 0.006174580194056034, 0.0049053062684834, 0.04270254075527191, -0.054796263575553894, -0.017326761037111282, -0.004034008365124464, -0.021308239549398422, 0.028682537376880646, -0.06167910248041153, 0.028322482481598854, -0.014439254067838192, -0.010468341410160065, 0.05476795509457588, 0.00993492640554905, 0.050880830734968185, 0.0374942310154438, 0.054113928228616714, 0.0346338152885437, 0.05881867557764053, -0.028696918860077858, 0.022595642134547234, 0.03277985751628876, -0.04487152397632599, -0.04410728067159653, -0.04467925801873207, -0.029659150168299675, 0.009812695905566216, -0.04579155892133713, -0.036717720329761505, 0.05005702003836632, -0.05678706616163254, -0.013235577382147312, 0.03125112131237984, -0.07460778951644897, -0.029780102893710136, -0.023538894951343536, 0.03237307071685791, -0.02297450415790081, -0.04181210324168205, -0.0045443372800946236, 0.0342019759118557, 0.031046411022543907, -0.003987274132668972, 0.0011174684623256326, 0.0013455096632242203, -0.008472167886793613, -0.000192631792742759, 0.00909069087356329, 0.009744889102876186, -0.01104160025715828, 0.008657674305140972, 0.01436825655400753, -0.007545153610408306, 0.05047065392136574, -0.012915384955704212, 0.05582651495933533, -0.04499133676290512, 0.016036435961723328, -0.020345820114016533, 0.0038168795872479677, -0.03562694042921066, 0.0035937384236603975, 0.03448476269841194, 0.02981903776526451, 0.03354055434465408, -0.019984344020485878, 0.04664967209100723, -0.010066146031022072, -0.010308326222002506, 0.0069893114268779755, -0.0373198464512825, -0.022842777892947197, -0.030862687155604362, -0.005391761194914579, 0.008045453578233719, 0.04923663288354874, -0.021998975425958633, 0.002166912192478776, -0.00040143728256225586, -0.016710462048649788, 0.005723383277654648, 0.018775103613734245, 0.030074188485741615, -0.0351635105907917, 0.06429608166217804, 0.046571359038352966, 0.04959620162844658, -0.046740856021642685, -0.07766123116016388, -0.05870532989501953, 7.23069570799027e-33, -0.005734722130000591, -0.04725803807377815, -0.037643563002347946, 0.005037681665271521, 0.048216406255960464, 0.00492624007165432, 0.023188747465610504, -0.002585254842415452, -0.03132805600762367, 0.04386122524738312, 0.00032566842855885625, -0.028057750314474106, -0.03711523115634918, 0.004241997841745615, 0.032420381903648376, -0.03417292609810829, 0.011314690113067627, -0.07040728628635406, -0.00023940873506944627, -0.032718490809202194, -0.035208750516176224, -0.026775404810905457, 0.000095573348517064, 0.011177283711731434, 0.007147729396820068, 0.027322914451360703, -0.022157499566674232, 0.0006180289201438427, 0.0028167576529085636, 0.011296005919575691, -0.02963670901954174, -0.017416002228856087, 0.038171134889125824, 0.049904923886060715, -0.011105210520327091, 0.03764449805021286, -0.012313837185502052, 0.006941859610378742, 0.024258289486169815, -0.025983281433582306, 0.07383356988430023, -0.033292192965745926, -0.010283749550580978, 0.014938467182219028, -0.0028044776991009712, -0.0020984248258173466, -0.059523098170757294, 0.03488355875015259, -0.04173116385936737, 0.03305377438664436, 0.0218440480530262, -0.007895423099398613, 0.009927108883857727, 0.0006394449155777693, 0.013135174289345741, -0.03470462188124657, -0.009806872345507145, -0.005637189839035273, 0.013669169507920742, 0.03730013966560364, 0.006253496278077364, 0.013829507865011692, -0.04113752394914627, 0.03792758658528328, -0.04078362509608269, -0.06446528434753418, -0.04458848759531975, 0.01256849616765976, -0.024311931803822517, -0.0010259273694828153, -0.0005454446072690189, 0.03398063778877258, -0.0017540653934702277, 0.021458175033330917, 0.04649810120463371, -0.04662812128663063, -0.02067425474524498, -0.009425809606909752, -0.01603691279888153, 0.0279633030295372, -0.02374897710978985, 0.059997860342264175, 0.035643383860588074, -0.02165416069328785, 0.022370969876646996, -0.022298306226730347, -0.0037757609970867634, 0.020150724798440933, 0.012162256985902786, 0.026061557233333588, 0.010552938096225262, 0.03382185474038124, -0.05525371804833412, -0.03279627859592438, -0.002399569610133767, -1.2643363689335274e-8, -0.08641121536493301, -0.024145012721419334, -0.012281293049454689, -0.00015830012853257358, 0.038420937955379486, 0.03126496076583862, -0.018601655960083008, 0.0439949557185173, 0.010854028165340424, 0.039356451481580734, 0.05061865970492363, -0.030012110248208046, -0.0015057340497151017, 0.02415868639945984, 0.016224902123212814, -0.05065913498401642, -0.034242674708366394, -0.05000448226928711, 0.02359773777425289, 0.029418734833598137, -0.02925814315676689, 0.03759128227829933, -0.03597041964530945, -0.04273888096213341, 0.028138652443885803, 0.005403202027082443, -0.027094382792711258, -0.029802529141306877, 0.015239858068525791, -0.02240016497671604, -0.024360183626413345, -0.029232416301965714, -0.04074135422706604, -0.01513904519379139, -0.025335773825645447, 0.03490838035941124, 0.005931380670517683, 0.005973226856440306, -0.00995099451392889, -0.002899161074310541, -0.015506601892411709, -0.006331463344395161, -0.01958691142499447, -0.04020613059401512, -0.027308469638228416, 0.019805094227194786, -0.0015554847195744514, 0.03976963832974434, 0.04389840364456177, 0.002581622451543808, 0.01915658265352249, -0.02627515234053135, 0.05510495603084564, 0.017502563074231148, 0.00955997034907341, 0.005943861324340105, 0.02861962839961052, -0.06956958025693893, 0.021822303533554077, -0.02512120082974434, 0.06082615256309509, 0.013687663711607456, 0.007288794498890638, 0.0054881456308066845 ]
node-js-a-little-application-with-twitter-couchdb
https://markhneedham.com/blog/2010/03/21/node-js-a-little-application-with-twitter-couchdb
false
2010-03-09 23:04:29
Pair Programming: Some thoughts
[ "pair-programming" ]
[ "Pair Programming" ]
Mark Wilden pointed me to http://mwilden.blogspot.com/2009/11/why-i-dont-like-pair-programming-and.html[a post he's written about his experience pair programming at Pivotal Labs] where he makes some interesting although not uncommon observations. ____ When you pair program, you're effectively joined at the hip with your pair. You can't pair if only one of you is there. ____ I've http://www.markhneedham.com/blog/2009/05/03/pair-programming-when-your-pair-steps-away/[previously written wondering what we should do if our pair isn't around] where I was leaning more towards the opinion that we should try to continue along the same path that we were on when working with our pair if they're gone for a short amount of time and to find a new pair or work alone if they're gone for longer. On the projects I've worked on we'll still have times working alone when there's an odd number of people around or if someone just feels like working on their own and I think that's fine as well. I don't think we need to pair 100% of the time. ____ You have to be able to think out loud - 8 hours a day. Then you have to type in code while someone is watching you. They'll catch your typos (hopefully after giving you a chance to spot them yourself) and they'll see when you're floundering for how to do something. ____ I find that this is quite a useful practice for explaining things to yourself although I can see how it would initially exhausting. Even now there are times when I just want to write some code instead of having to explain what I want to do to someone else. Sadly almost every time I explain something it turns out that my pair has a better idea of how to do it than me so I'm always glad pairing encourages this conversation. ____ Pair programming doesn't encourage quiet reflection and exploration. You can't just sit back and read some code. You can't just sit and think. I mean, you can, but then your pair is just sitting there. ____ This is a bit of a double edged sword - pair programming does encourage us to get things done but it's also true that sometimes we need to get the whiteboard out. Often just sketching out the problem on a piece of paper to check your understanding is enough to trigger a conversation which might result in a better solution. It does tend to need one person to drive this process though. I haven't seen it just happen organically. We rarely pair 100% of the time so there are often times when you get a bit of time to play around a bit with the code and see whether specific approaches would work out and I often use this time for reflection and exploration. One thing which a couple of the commenters on the original blog suggested is that perhaps more rotation was needed to help overcome some of the problems and from my experience it's vital that we do rotate otherwise the pair will end up hating each other! I recently worked on a story with 3 other people across its life and each person pointed out something that I hadn't previously considered and which led to an eventual output that was much better than it would have been otherwise. I think http://www.markhneedham.com/blog/2008/11/04/pair-programming-benefits-of-the-pair-switch-mid-story/[rotating different people onto a story] can help lead to more innovative design as long as we have people working together who are relatively flexible and open to trying out new ideas. Mark's post is certainly interesting though and helps identify some of the things we need to be aware of when pair programming - we don't just want to follow the practice blindly.
null
null
[ 0.03608354553580284, 0.015201668255031109, 0.0019484551157802343, 0.025531869381666183, 0.0767815038561821, 0.0352623388171196, 0.04358857870101929, 0.04277839884161949, 0.02082592062652111, -0.03665086627006531, -0.022754192352294922, 0.004561612382531166, -0.06528148800134659, -0.004225391428917646, -0.0598570890724659, 0.06816063076257706, 0.07389385998249054, -0.014989915303885937, 0.009542965330183506, 0.014735452830791473, 0.04158683493733406, 0.07193146646022797, 0.012497251853346825, 0.034013062715530396, 0.021546050906181335, 0.011501969769597054, -0.0015962303150445223, -0.005998747888952494, -0.06048642843961716, -0.019022248685359955, 0.04958901181817055, -0.004228230100125074, 0.019280772656202316, -0.006767233368009329, 0.008709767833352089, -0.007112874649465084, -0.009827925823628902, 0.022881148383021355, 0.017307719215750694, 0.021224962547421455, -0.05034177750349045, 0.036124084144830704, -0.0050612157210707664, -0.002862632041797042, -0.033999525010585785, 0.006733363028615713, -0.04290536791086197, 0.002510085003450513, 0.0029245035257190466, 0.001174848061054945, -0.07130216807126999, 0.03296847641468048, 0.022432515397667885, 0.01117524690926075, -0.021399343386292458, 0.048771101981401443, 0.03204510360956192, -0.06518113613128662, 0.002310330979526043, -0.041999418288469315, 0.004245131276547909, -0.0016381458844989538, 0.01684807427227497, 0.03896165266633034, 0.024877270683646202, -0.0240640789270401, 0.018392393365502357, 0.030831461772322655, -0.03540443256497383, 0.0172924492508173, -0.00982044730335474, 0.009621941484510899, -0.028430799022316933, -0.040217332541942596, 0.0163295678794384, -0.03672542795538902, -0.0010423687053844333, 0.0610998310148716, 0.04197904095053673, 0.04189591109752655, -0.01090272143483162, 0.040450166910886765, -0.008974207565188408, 0.029224945232272148, -0.0173991397023201, -0.035532817244529724, 0.00524132139980793, -0.033112943172454834, -0.07482500374317169, 0.04754512012004852, 0.010051357559859753, -0.06740210205316544, 0.024037428200244904, 0.044380199164152145, 0.0036492119543254375, 0.016319515183568, 0.02815892919898033, 0.004520703572779894, -0.009601598605513573, -0.01379273273050785, -0.018023520708084106, -0.032878026366233826, 0.0046205404214560986, -0.002234863117337227, -0.07570748776197433, -0.0120560172945261, -0.01565556973218918, -0.01396804116666317, -0.00032497933716513216, 0.009604819118976593, -0.034724947065114975, 0.020540785044431686, -0.008599997498095036, 0.008647696115076542, -0.07582954317331314, 0.07266347110271454, -0.00531522324308753, -0.044258929789066315, -0.024263830855488777, -0.00950442161411047, 0.035133302211761475, 0.04391017183661461, 0.004493788816034794, 0.08450926095247269, 0.01112878043204546, 0.018104976043105125, -0.014006496407091618, 0.05692824348807335, -0.01989630050957203, -0.051053743809461594, -0.025019312277436256, 0.04955393821001053, -0.029756983742117882, -0.020971177145838737, 0.0038362527266144753, -0.03182762488722801, -0.008152150548994541, 0.019321009516716003, 0.0033293929882347584, 0.061708420515060425, -0.010293186642229557, -0.02115929126739502, 0.038740094751119614, 0.015773260965943336, 0.013702397234737873, -0.0040399967692792416, -0.009629332460463047, -0.008545233868062496, -0.038592856377363205, 0.0009837658144533634, -0.008074277080595493, 0.028164085000753403, 0.0042729550041258335, -0.050708405673503876, 0.028599610552191734, 0.07062811404466629, 0.03813963010907173, 0.03158072382211685, -0.013522732071578503, 0.03991105780005455, 0.02887600287795067, 0.019358480349183083, -0.005045489873737097, 0.028541358187794685, 0.012812336906790733, -0.000436359056038782, 0.006326561328023672, 0.025819990783929825, -0.0018560088938102126, 0.03073069080710411, -0.05535043030977249, -0.018522880971431732, 0.04758596792817116, -0.05070178955793381, -0.0496322400867939, 0.02776518650352955, 0.07408104836940765, 0.014378739520907402, 0.028877031058073044, 0.006393518298864365, -0.08800061792135239, 0.01340253185480833, 0.018092405050992966, 0.01788214035332203, 0.01856091618537903, -0.01976824924349785, 0.05129639059305191, 0.028647152706980705, -0.015491804108023643, 0.03771211579442024, -0.06268833577632904, -0.07947420328855515, -0.003984353970736265, -0.02793820947408676, 0.06786881387233734, -0.04314837232232094, -0.004854538943618536, 0.056362953037023544, 0.0008165232720784843, 0.047975972294807434, 0.022801503539085388, 0.003955130465328693, 0.00874269288033247, -0.029304346069693565, -0.047286227345466614, 0.06039479374885559, 0.0464647151529789, -0.010593662038445473, -0.0565318800508976, 0.011822112835943699, -0.00605359161272645, -0.02206084318459034, 0.04436687380075455, -0.031365033239126205, 0.047508303076028824, 0.008792939595878124, 0.03426499292254448, -0.024866918101906776, 0.04784248396754265, -0.04216589406132698, -0.02126930095255375, 0.00685901427641511, -0.020443126559257507, 0.017910707741975784, 0.010386111214756966, 0.10162975639104843, 0.07373230159282684, -0.07528260350227356, -0.027734583243727684, 0.014779246412217617, 0.020936032757163048, -0.03782414644956589, 0.0015237282495945692, -0.002816032851114869, -0.003439398016780615, 0.0015161106130108237, -0.061742138117551804, -0.04557576775550842, 0.017602911219000816, -0.04526935890316963, -0.00007411172555293888, 0.07084959745407104, -0.041485562920570374, 0.06551840901374817, -0.0181808453053236, -0.01139634009450674, 0.008306458592414856, -0.010646304115653038, -0.04080555588006973, 0.007558676414191723, 0.003670420264825225, -0.009170157834887505, 0.04722694307565689, -0.01993829384446144, -0.021010085940361023, -0.05099721997976303, -0.021829817444086075, -0.003295117523521185, 0.05795114487409592, 0.05588240176439285, -0.0041503761895000935, 0.06203176826238632, -0.003198969643563032, 0.014254181645810604, -0.006447359919548035, -0.05067341402173042, -0.038960766047239304, -0.01829238049685955, 0.017502689734101295, 0.02647782675921917, -0.009756921790540218, 0.023857541382312775, 0.007357499096542597, 0.011532778851687908, -0.0014387628762051463, -0.008916017599403858, 0.03278866037726402, 0.001647976110689342, -0.0022214334458112717, -0.03785345330834389, -0.013586449436843395, 0.04488733410835266, -0.047650501132011414, -0.028469732031226158, -0.0035598771646618843, -0.07165390253067017, 0.048598673194646835, -0.06919492036104202, -0.05567721277475357, -0.010468174703419209, 0.026900213211774826, 0.05190818011760712, -0.017936285585165024, 0.01590890996158123, 0.07245947420597076, 0.012205535545945168, 0.017952634021639824, 0.00036686507519334555, -0.006488102953881025, 0.03628316521644592, 0.02481790818274021, -0.004237149376422167, 0.029236001893877983, 0.0022968987468630075, -0.023981884121894836, -0.041052430868148804, 0.061896439641714096, -0.03708962723612785, -0.29611635208129883, 0.0322657935321331, -0.0070450021885335445, -0.042539216578006744, 0.007407201919704676, -0.02273412048816681, 0.022030090913176537, -0.040645960718393326, -0.02344764769077301, 0.030376583337783813, -0.049212291836738586, -0.04795265197753906, -0.03380526602268219, 0.03438917547464371, 0.001353078056126833, 0.014960801228880882, 0.017644096165895462, -0.033549703657627106, 0.0001569220912642777, 0.05444333702325821, -0.007851384580135345, -0.06042783707380295, 0.010156759060919285, 0.03753203526139259, 0.03811059892177582, 0.04490189999341965, -0.08660944551229477, 0.03282429277896881, -0.06604313850402832, 0.005922956857830286, -0.0011625462211668491, 0.021326495334506035, 0.005385363474488258, -0.03834036737680435, -0.007117056287825108, -0.0159147959202528, 0.039379384368658066, -0.0026299194432795048, -0.016330352053046227, 0.029840359464287758, -0.01428968831896782, -0.0317838191986084, -0.008274273946881294, 0.033741243183612823, 0.06404463201761246, 0.004536252934485674, -0.07933635264635086, -0.0023866910487413406, -0.0034407952334731817, 0.07172349095344543, -0.05196459963917732, -0.027795683592557907, 0.007104054559022188, 0.03642576187849045, -0.008720693178474903, -0.0499945692718029, 0.0008341075154021382, -0.007846896536648273, -0.022141970694065094, -0.016821758821606636, -0.023684684187173843, -0.03165407478809357, 0.0028065016958862543, -0.05031372979283333, 0.021385962143540382, -0.05642852187156677, -0.06810693442821503, -0.026768650859594345, 0.07686726003885269, 0.030018655583262444, -0.03889590874314308, 0.0076803285628557205, -0.0005248550442047417, -0.10496345162391663, -0.00014227756764739752, 0.02338738925755024, -0.022400520741939545, -0.013949050568044186, 0.009472458623349667, 0.061620526015758514, -0.028566716238856316, -0.0699780285358429, 0.027561355382204056, 0.017338640987873077, 0.04601515829563141, -0.02565780282020569, 0.013281675055623055, 0.0054311081767082214, -0.013649782165884972, 0.006745858583599329, 0.05678937956690788, 0.001355506363324821, -0.03773363307118416, -0.031751684844493866, 0.05035766586661339, -0.004335448145866394, 0.04373117536306381, -0.017519565299153328, 0.006133550778031349, 0.03552355617284775, -0.01461836602538824, -0.05645298957824707, 0.034861329942941666, -0.02427317202091217, -0.00037274285568855703, -0.011375408619642258, -0.05823468044400215, 0.01747632399201393, 0.04355823993682861, 0.03890959173440933, -0.008716177195310593, -0.023640157654881477, -0.006083297543227673, -0.034757789224386215, -0.03711540251970291, -0.02588709071278572, 0.0068433089181780815, 0.041057128459215164, -0.023204009979963303, -0.010370722971856594, -0.0655633956193924, -0.0014176956610754132, 0.005689152516424656, 0.011493944562971592, -0.07140924036502838, -0.015719881281256676, -0.022855021059513092, -0.03803955763578415, 0.0119102094322443, 0.021452441811561584, -0.016045182943344116, 0.053124796599149704, 0.0149535546079278, -0.0483970083296299, 0.012712518684566021, -0.01247507892549038, -0.06275156885385513, -0.006338566076010466, -0.01201383862644434, -0.014929362572729588, 0.016188105568289757, 0.028394639492034912, 0.002081898506730795, 0.030744921416044235, 0.02825302444398403, 0.024493807926774025, 0.01746794581413269, -0.03745146468281746, 0.025143567472696304, 0.012272375635802746, 0.008284525014460087, -0.08197543770074844, 0.01735123060643673, -0.03557902202010155, -0.03084506094455719, -0.02620672807097435, 0.029847150668501854, -0.011083953082561493, -0.04326469451189041, 0.005648331250995398, -0.004614902660250664, -0.03740132600069046, -0.039816439151763916, -0.03423717990517616, 0.04860614612698555, 0.06011837720870972, -0.02800908125936985, 0.020439278334379196, -0.029226472601294518, -0.015796195715665817, -0.004837647546082735, 0.028353067114949226, -0.046075526624917984, -0.0048659611493349075, 0.01608184538781643, -0.0025596439372748137, -0.01465876866132021, -0.01439179852604866, 0.048666369169950485, 0.008937504142522812, 0.013112710788846016, -0.009431078098714352, 0.004369412548840046, 0.018482957035303116, 0.05402801185846329, 0.0018162676133215427, 0.008370661176741123, -0.028492193669080734, -0.008181292563676834, -0.009004250168800354, -0.0399717353284359, -0.022169094532728195, 0.018715281039476395, 0.04217484965920448, -0.036990582942962646, -0.06741181015968323, 0.0403701514005661, 0.0553092435002327, 0.001037759822793305, 0.01977778784930706, -0.02385508082807064, 0.008831847459077835, -0.028518840670585632, 0.026959551498293877, 0.09298045933246613, -0.06347184628248215, 0.017899034544825554, -0.0022556425537914038, -0.0035379526671022177, -0.0018111343961209059, -0.015553072094917297, -0.037871528416872025, -0.019229529425501823, -0.032086048275232315, 0.003010915592312813, -0.05528951436281204, -0.018827790394425392, -0.003032645443454385, 0.013360911048948765, -0.0020840719807893038, -0.018505223095417023, -0.007339495234191418, -0.00804345402866602, -0.025333844125270844, -0.03628478944301605, 0.008231163956224918, -0.05346466973423958, 0.028195403516292572, 0.030185570940375328, -0.03964260593056679, 0.01745747961103916, -0.028847767040133476, 0.018756072968244553, 0.022664988413453102, -0.012933511286973953, -0.01937543973326683, -0.036949872970581055, 0.003352800151333213, -0.007088206708431244, 0.037985339760780334, -0.0034362375736236572, -0.036949411034584045, -0.047195155173540115, -0.01419123075902462, -0.05248037725687027, 0.006529041100293398, -0.036901332437992096, -0.00748947961255908, 0.020799551159143448, 0.04923577606678009, 0.02845442295074463, 0.01469047274440527, -0.009025020524859428, -0.0100800059735775, 0.037356894463300705, -0.04779983311891556, -0.03346208855509758, -0.039552439004182816, -0.04553195834159851, -0.002261177869513631, 0.0008033115300349891, 0.026997191831469536, -0.030019547790288925, 0.027708206325769424, 0.026266800239682198, 0.04854479059576988, 0.012593051418662071, -0.00871515553444624, 0.02986881136894226, -0.05478997528553009, 0.012342642992734909, -0.09133871644735336, -0.0037526742089539766, 0.03097524121403694, 0.012241891585290432, -0.015726706013083458, 0.006083234678953886, -0.023417139425873756, 0.028679344803094864, -0.07684177905321121, -0.007523604668676853, 0.04088512808084488, 0.01416670810431242, -0.009506474249064922, 0.015694962814450264, -0.07699807733297348, 0.017903685569763184, 0.010855037719011307, -0.04768599197268486, -0.024574274197220802, -0.011775230057537556, 0.04611971601843834, 0.01230998057872057, 0.03975076973438263, -0.03127312660217285, -0.008218059316277504, 0.07482518255710602, 0.01212185900658369, -0.002275636186823249, 0.05872496962547302, -0.005249681416898966, 0.043745122849941254, 0.04554962366819382, 0.017435699701309204, -0.009334227070212364, 0.00866623967885971, 0.005427706986665726, -0.07600264251232147, 0.004969167523086071, 0.01983955129981041, -0.03794405981898308, -0.020696723833680153, 0.05718652158975601, 0.029400356113910675, -0.04148193448781967, -0.03285199776291847, 0.005633522290736437, -0.06685535609722137, 0.010902149602770805, -0.008852505125105381, -0.008851831778883934, -0.0610152892768383, 0.04531978815793991, -0.004335837904363871, -0.010762258432805538, 0.06380660831928253, 0.030874283984303474, -0.03356378152966499, -0.006345676723867655, 0.1038169339299202, 0.08078532665967941, 0.05392236262559891, 0.016097484156489372, 0.06812972575426102, -0.030199013650417328, -0.0308011993765831, 0.019833555445075035, 0.004007140640169382, -0.04013635218143463, -0.03013679012656212, 0.02597450278699398, 0.06456772238016129, -0.009016702882945538, 0.07771919667720795, -0.02213461324572563, -0.01408708468079567, 0.008037538267672062, 0.0338069386780262, 0.016010787338018417, 0.06895696371793747, 0.012088082730770111, 0.015689976513385773, -0.018316226080060005, -0.04968792945146561, 0.027836814522743225, -0.03979398310184479, -0.0019101828802376986, 0.013324419967830181, 0.005574981216341257, 0.02165418677031994, 0.0335872657597065, 0.026655377820134163, 0.07760884612798691, -0.04425304755568504, 0.004515354055911303, -0.006967348046600819, 0.0350419320166111, -0.0159708634018898, 0.014764422550797462, -0.021707715466618538, -0.0163919348269701, 0.012317034415900707, -0.016176827251911163, -0.02455444075167179, -0.027742251753807068, -0.008445460349321365, 0.0540698766708374, -0.022304970771074295, -0.01719493418931961, 0.023148871958255768, 0.019601229578256607, -0.03100537694990635, -0.07435553520917892, -0.03892529010772705, -0.03792649880051613, -0.03290793299674988, -0.027742672711610794, -0.004518578760325909, -0.0019063501385971904, -0.03504149243235588, 0.0067353323101997375, -0.02461181953549385, -0.02394653856754303, 0.03021220676600933, -0.06536191701889038, -0.03461642190814018, 0.02469356544315815, 0.021323014050722122, 0.04356194660067558, 0.03141697123646736, 0.037444863468408585, -0.019461993128061295, -0.0016729311319068074, -0.012188996188342571, 0.013217601925134659, 0.021405497565865517, 0.008812601678073406, -0.0065370965749025345, -0.08252150565385818, 0.018885387107729912, 0.03500764071941376, -0.0015856596874073148, -0.06445355713367462, 0.033016737550497055, 0.008982113562524319, 0.018041707575321198, 0.043057721108198166, -0.02149331569671631, 0.009954147972166538, -0.040045566856861115, 0.0036547775380313396, -0.023974891752004623, 0.012060701847076416, 0.06435267627239227, -0.024794427677989006, 0.0855635330080986, -0.0014680702006444335, -0.014499237760901451, -0.032737456262111664, -0.02932409569621086, 0.012827794067561626, -0.006416138727217913, -0.011136213317513466, -0.04000568017363548, -0.011232031509280205, -0.07518407702445984, -0.018046004697680473, 0.012034463696181774, -0.019882837310433388, -0.03262631967663765, 0.04007268697023392, 0.03789346665143967, -0.024812258780002594, 0.036384060978889465, -0.04987112805247307, 0.034948598593473434, -0.015244447626173496, -0.013909568078815937, 0.003356978064402938, 0.004945335444062948, -0.025402409955859184, -0.0016787969507277012, 0.009338991716504097, -0.045284200459718704, -0.0017234614351764321, 0.023572741076350212, 0.04762515798211098, 0.025174733251333237, 0.0010957166086882353, 0.007601519115269184 ]
[ -0.10032650828361511, -0.007709430530667305, -0.03390664607286453, -0.02696390263736248, 0.002510486403480172, -0.03267814964056015, -0.0013597263023257256, 0.004356846213340759, 0.009356054477393627, -0.05880825221538544, -0.005834412761032581, -0.003169613890349865, 0.044939182698726654, -0.008642054162919521, 0.09658926725387573, 0.01161549799144268, -0.018018104135990143, -0.06283120065927505, -0.012470217421650887, 0.027624428272247314, 0.0014891631435602903, -0.06526752561330795, -0.05523507669568062, -0.04521222785115242, 0.0016842003678902984, 0.038505107164382935, 0.022268742322921753, -0.05562373995780945, 0.025459837168455124, -0.17181496322155, 0.010289649479091167, 0.049285273998975754, 0.05468438193202019, -0.02050451934337616, 0.0004252383660059422, 0.067282535135746, 0.021984107792377472, -0.007990890182554722, -0.02392438054084778, 0.02332981675863266, 0.013593257404863834, 0.000970773515291512, -0.03259161859750748, -0.04202824831008911, 0.02665417641401291, 0.013003290630877018, 0.005916569847613573, -0.05613928288221359, -0.023604637011885643, 0.01589827798306942, -0.05594144016504288, -0.048678208142519, -0.021032938733696938, -0.023954415693879128, 0.00039173534605652094, 0.06370535492897034, 0.0436207577586174, 0.04671772941946983, -0.03467776998877525, 0.03082745149731636, 0.007946602068841457, -0.015499872155487537, -0.097139872610569, 0.07066487520933151, 0.04974276199936867, 0.04136144742369652, -0.044321201741695404, -0.030299412086606026, -0.011676354333758354, 0.10329875349998474, 0.02989070862531662, -0.008870973251760006, -0.03305848315358162, 0.03159737214446068, 0.017853837460279465, -0.00581548223271966, 0.0007684993906877935, 0.019615892320871353, 0.047353386878967285, -0.03135588765144348, -0.03788768872618675, -0.013332167640328407, -0.00006150487024569884, -0.002678962191566825, -0.0281202532351017, 0.028987662866711617, -0.008517713285982609, 0.02731807343661785, 0.006457245443016291, -0.0007046848186291754, 0.024325324222445488, -0.010946841910481453, 0.027209294959902763, -0.015001707710325718, -0.06687198579311371, 0.00001553114088892471, 0.023423319682478905, 0.014717042446136475, -0.047005459666252136, 0.4426548182964325, -0.053255897015333176, -0.007202489767223597, 0.1014910414814949, 0.032047681510448456, -0.017098821699619293, -0.004758852533996105, -0.0006496126879937947, -0.039521437138319016, 0.029874073341488838, -0.03686075285077095, 0.012476650066673756, 0.004629278089851141, 0.06303559243679047, -0.031042812392115593, 0.016143137589097023, 0.06505703181028366, 0.04066961258649826, 0.03552490845322609, 0.050416089594364166, -0.019077086821198463, -0.019414013251662254, 0.021743202582001686, 0.00899958610534668, 0.012031595222651958, -0.021048327907919884, -0.07033315300941467, 0.015979256480932236, 0.051908742636442184, 0.0317644439637661, 0.004442987032234669, 0.08971486985683441, -0.04381873086094856, -0.02485336735844612, 0.013361244462430477, -0.03827393800020218, -0.0006348112947307527, 0.016021402552723885, -0.028164297342300415, 0.006162112113088369, 0.04560794308781624, 0.04290761798620224, -0.03462681174278259, 0.02684098482131958, -0.013465333729982376, 0.0043831453658640385, 0.13063228130340576, 0.007487752009183168, -0.02731253020465374, -0.007828086614608765, -0.021108493208885193, -0.014569743536412716, 0.021574480459094048, -0.012945933267474174, -0.06683561205863953, 0.03691050410270691, 0.0014114705845713615, 0.11213364452123642, -0.035725727677345276, -0.060708075761795044, 0.025969797745347023, -0.02628972940146923, -0.011142383329570293, -0.07581218332052231, 0.010119575075805187, 0.1038721427321434, -0.10988188534975052, -0.011166100390255451, 0.0003081824688706547, 0.021748308092355728, -0.06359010934829712, 0.004333828575909138, -0.0028750754427164793, -0.009211928583681583, -0.00010155632480746135, 0.025928841903805733, -0.03614489361643791, -0.05763881653547287, 0.007188404444605112, 0.051507141441106796, 0.026098055765032768, -0.006240020040422678, 0.002494054613634944, -0.025943132117390633, -0.0036043846048414707, -0.042136337608098984, -0.08197937160730362, -0.027259232476353645, -0.006146429572254419, -0.02831989713013172, 0.00036156215355731547, -0.009271187707781792, -0.048212941735982895, -0.06679224222898483, 0.08921760320663452, -0.03260736167430878, -0.03372829779982567, 0.030921122059226036, -0.014531136490404606, -0.07027837634086609, -0.011464175768196583, -0.05389663204550743, 0.024663221091032028, -0.02722262777388096, 0.022636620327830315, -0.05481504648923874, 0.052099134773015976, 0.04607338085770607, -0.04065971076488495, 0.09964478760957718, 0.05749702826142311, -0.00958987232297659, -0.054084405303001404, -0.00020205449254717678, 0.027118491008877754, -0.014355172403156757, -0.042138855904340744, -0.008521431125700474, 0.04262355715036392, 0.006730946246534586, 0.04018527269363403, -0.03262970224022865, 0.003526322776451707, 0.0069762468338012695, -0.339346706867218, -0.009387646801769733, -0.00463130883872509, 0.005293531809002161, 0.004046248737722635, -0.07289426028728485, 0.012911112047731876, -0.015372325666248798, -0.04832428693771362, 0.02122928947210312, 0.09023383259773254, -0.026828685775399208, 0.0008824208634905517, -0.08480693399906158, -0.007131561636924744, 0.04082291200757027, -0.025036146864295006, 0.0028537095058709383, -0.02355065569281578, 0.003528085071593523, -0.004068633075803518, 0.018006065860390663, -0.012336484156548977, -0.04959748685359955, 0.006650723051279783, -0.053653061389923096, 0.09243594855070114, -0.00017994700465351343, 0.08151250332593918, -0.018740670755505562, 0.025793449953198433, -0.004594968631863594, 0.01756887696683407, -0.1255325973033905, 0.01014519203454256, 0.004944171756505966, 0.019153939560055733, -0.06579966098070145, 0.04816339910030365, -0.03886920586228371, -0.08415359258651733, -0.0018180332845076919, -0.03765016049146652, -0.03202584758400917, -0.0772310197353363, 0.001959589309990406, -0.02558881789445877, -0.03627666085958481, -0.027225611731410027, 0.06520522385835648, 0.01316183339804411, -0.00020212891104165465, 0.014831367880105972, -0.01547450851649046, -0.03473291173577309, -0.03790898248553276, -0.0815422460436821, 0.01766331121325493, 0.005254965275526047, -0.004846988245844841, 0.024215981364250183, 0.06571187824010849, 0.014534084126353264, -0.05209467187523842, 0.014251885004341602, 0.006575847510248423, 0.003335086163133383, 0.0191314946860075, 0.04587753862142563, 0.017344797030091286, -0.004457243252545595, 0.0755951851606369, 0.0024876731913536787, 0.006027200259268284, -0.0009164715302176774, 0.0013125294353812933, -0.02711135894060135, 0.01969047449529171, 0.010925805196166039, -0.03048316389322281, 0.020787468180060387, -0.04694685339927673, 0.02270338498055935, -0.020495597273111343, 0.0038542491383850574, 0.00020727272203657776, 0.024404611438512802, -0.012185054831206799, 0.06716801226139069, 0.027819985523819923, -0.03393488749861717, -0.0024009153712540865, 0.009732278995215893, -0.06204131245613098, 0.0957956463098526, -0.003056021174415946, -0.2433498352766037, 0.006513988133519888, 0.049140624701976776, 0.05414407327771187, -0.03306953236460686, 0.05796515941619873, 0.03291568160057068, -0.039840102195739746, -0.00523699214681983, -0.02791907824575901, 0.02508424036204815, 0.01153947040438652, 0.013675304129719734, 0.010214067064225674, 0.04121215268969536, 0.014339971356093884, 0.05780855193734169, -0.0007491246797144413, -0.0010210644686594605, -0.004349770490080118, 0.020062047988176346, -0.01286458782851696, 0.15102319419384003, 0.0033213291317224503, 0.05300207808613777, 0.014856521971523762, -0.0007267688633874059, 0.02796730026602745, 0.06081575155258179, -0.003386048600077629, -0.0045638494193553925, 0.017014848068356514, 0.01889621466398239, -0.018872138112783432, 0.020078960806131363, -0.039530590176582336, -0.021492237225174904, 0.021333709359169006, 0.04852253943681717, 0.016745099797844887, 0.007219930179417133, -0.011296059004962444, -0.014208825305104256, 0.007294396869838238, 0.08444849401712418, 0.020202115178108215, 0.007713682483881712, -0.013233394362032413, -0.061548903584480286, -0.012678578495979309, -0.041753705590963364, -0.02860208787024021, 0.015602550469338894, 0.015249688178300858, 0.01164768636226654, 0.06476268917322159, 0.00123894854914397, -0.02131308615207672, -0.010514173656702042, 0.02429286763072014, -0.006998751778155565, -0.01194818876683712, 0.09669782966375351, 0.05031237378716469, 0.019484620541334152 ]
[ -0.0560443140566349, 0.014585372991859913, 0.010505895130336285, 0.006087943911552429, -0.01912153698503971, 0.030642244964838028, -0.011898262426257133, 0.010352867655456066, -0.006863568909466267, -0.012401365675032139, -0.04288146272301674, 0.04207713156938553, 0.016352079808712006, -0.011432066559791565, 0.02551054209470749, 0.00026855317992158234, -0.00949251651763916, -0.028513165190815926, 0.036022085696458817, 0.04960557818412781, -0.039590876549482346, -0.02202681452035904, -0.00868429895490408, -0.02130141854286194, 0.012353874742984772, -0.01679573766887188, 0.022945314645767212, -0.03386147320270538, 0.03115294873714447, -0.1036333292722702, -0.043239396065473557, -0.004029425326734781, 0.004591877572238445, 0.024579742923378944, -0.010900260880589485, 0.0031184256076812744, 0.05526116490364075, 0.021690724417567253, 0.0014747314853593707, -0.01785385236144066, -0.015602988190948963, -0.04155226796865463, 0.0003817973774857819, -0.009738573804497719, 0.013943367637693882, 0.003854957642033696, 0.017789572477340698, -0.03908493369817734, -0.011096945032477379, -0.013668674044311047, -0.050993237644433975, 0.01621183380484581, -0.01768616773188114, -0.011670361272990704, 0.033539049327373505, 0.030986160039901733, 0.010287257842719555, -0.03126518800854683, -0.0125365499407053, 0.006183669902384281, -0.016968458890914917, 0.0005184573819860816, -0.06431258469820023, -0.013906539417803288, -0.029931358993053436, -0.015539496205747128, -0.01196274347603321, 0.02816201187670231, -0.0045788283459842205, 0.01831163838505745, -0.02192402444779873, 0.016264142468571663, -0.03305552899837494, -0.03189201280474663, 0.016329869627952576, 0.012606517411768436, -0.0008299332112073898, -0.06983386725187302, 0.01804523728787899, -0.032385073602199554, -0.06920915842056274, -0.00830056518316269, 0.031478401273489, 0.02218571864068508, 0.04394204542040825, -0.018902340903878212, 0.017383567988872528, 0.012290844693779945, 0.004424527753144503, -0.02787250280380249, -0.04062306880950928, 0.0419183187186718, -0.004399521742016077, 0.0029068742878735065, -0.07422276586294174, 0.02667662687599659, -0.014895299449563026, 0.028001505881547928, -0.00877020787447691, 0.8161992430686951, -0.010957100428640842, 0.019452422857284546, 0.057674799114465714, -0.015009003691375256, -0.0048710354603827, 0.024751970544457436, 0.040043655782938004, 0.0005861004465259612, 0.045791465789079666, -0.03346529230475426, 0.02274501696228981, -0.04339202120900154, 0.010357345454394817, 0.0018070501973852515, 0.022803593426942825, 0.021565113216638565, -0.003597413655370474, 0.05275029316544533, -0.0020290790125727654, -0.010905501432716846, -0.025465868413448334, -0.0005532116047106683, 0.04013562202453613, -0.010776802897453308, -0.013921773992478848, -0.1874943971633911, 0.013040168210864067, -7.727415539609613e-33, 0.03694811463356018, 0.008738544769585133, -0.007562885992228985, -0.02867443487048149, 0.007814593613147736, 0.00404390087351203, -0.004280696157366037, -0.008063027635216713, -0.03779778629541397, -0.016317281872034073, 0.03269580751657486, -0.015821920707821846, 0.05312332510948181, 0.0044662258587777615, -0.0009792816126719117, -0.056539155542850494, 0.04930230230093002, 0.021526092663407326, -0.03860045224428177, 0.030218683183193207, 0.05686607584357262, 0.04317212104797363, -0.0049649858847260475, 0.008962125517427921, 0.0010336413979530334, -0.003563914680853486, -0.0012059877626597881, 0.027925264090299606, 0.005473077297210693, -0.03296956419944763, -0.02989046834409237, 0.04089067503809929, -0.0031177126802504063, -0.028430290520191193, -0.0014326905366033316, -0.029499134048819542, -0.0017416427144780755, 0.000398362084524706, -0.026348475366830826, -0.04212908819317818, -0.009913020767271519, 0.017953064292669296, -0.0007295375689864159, -0.05738930031657219, 0.01362531166523695, -0.005391058512032032, 0.011684481985867023, 0.04384472221136093, -0.0012663272209465504, -0.035479165613651276, -0.03913247585296631, 0.062459323555231094, -0.0234892088919878, 0.04800601676106453, -0.026731910184025764, 0.007512873038649559, 0.017392441630363464, 0.0020462917163968086, 0.0010584433330222964, 0.02447941154241562, 0.016548074781894684, 0.009333128109574318, -0.009829956106841564, -0.0065021878108382225, -0.015025758184492588, -0.003171703079715371, 0.004467472434043884, -0.014442041516304016, 0.027612969279289246, -0.0011486364528536797, -0.05639568343758583, 0.007009861059486866, 0.00465733977034688, -0.01880229450762272, -0.013129565864801407, -0.014647228643298149, 0.010385910049080849, -0.023342853412032127, 0.0009716954082250595, 0.023403743281960487, -0.0047547644935548306, -0.007330744061619043, 0.016008920967578888, -0.020924437791109085, -0.017194736748933792, -0.016632823273539543, 0.007138020824640989, -0.02719147503376007, -0.05338897928595543, 0.05118616670370102, 0.02033967524766922, 0.016864724457263947, -0.02708888240158558, -0.04507865756750107, 0.01723267138004303, 7.131769776844913e-33, 0.0029831614810973406, 0.006213301792740822, 0.00020222975581418723, -0.00011565941531443968, 0.06051933392882347, 0.0008360781357623637, 0.047316741198301315, -0.04281823709607124, -0.04220105707645416, 0.048196569085121155, 0.010070683434605598, -0.04030699282884598, 0.0032031480222940445, 0.007318936754018068, 0.05213001370429993, -0.0163006242364645, 0.018311481922864914, 0.014467507600784302, 0.04290877655148506, 0.0014551135245710611, 0.016767118126153946, -0.008971543051302433, 0.03194093331694603, 0.005005252547562122, 0.052222251892089844, 0.0401737242937088, 0.004674145020544529, 0.007662756834179163, -0.01981065794825554, 0.004866147413849831, 0.0026306717190891504, 0.006630994379520416, -0.011537616141140461, -0.019124578684568405, 0.03932040557265282, 0.028334230184555054, -0.05148754641413689, -0.042177870869636536, -0.018504563719034195, -0.021521246060729027, 0.03325966000556946, 0.003105251118540764, -0.022507473826408386, 0.030258946120738983, 0.03669004514813423, -0.0017711141845211387, -0.006987370550632477, -0.0029901720117777586, -0.05982097610831261, -0.0180299561470747, 0.033609602600336075, 0.04901701956987381, -0.03902001678943634, -0.0662807896733284, -0.026934931054711342, -0.05772300064563751, 0.018992774188518524, 0.023376334458589554, -0.0012305283453315496, 0.016744481399655342, 0.03232107684016228, -0.013617310672998428, -0.027327852323651314, 0.031324729323387146, -0.014543118886649609, 0.00555397430434823, -0.017271924763917923, 0.03231605887413025, -0.025600075721740723, 0.018520785495638847, -0.00888863392174244, 0.004446650855243206, 0.013772571459412575, 0.044683583080768585, -0.03383224084973335, -0.017067531123757362, -0.05622167885303497, -0.02469143271446228, 0.015607205219566822, 0.007354897912591696, 0.011559909209609032, 0.015204454772174358, 0.04938912391662598, 0.016850246116518974, -0.01724459044635296, 0.053129930049180984, 0.007898866198956966, 0.06146889179944992, -0.03849940747022629, -0.010355107486248016, -0.00889847707003355, -0.016174567863345146, 0.016413817182183266, 0.00985795445740223, -0.030266163870692253, -1.328289567226193e-8, -0.03810818865895271, -0.003468745620921254, -0.018363695591688156, -0.0032188936602324247, -0.003088580444455147, -0.0036212587729096413, -0.005428217817097902, -0.007546352222561836, -0.013325662352144718, 0.017895562574267387, 0.01340484619140625, -0.05276232585310936, -0.0037172394804656506, 0.03786518797278404, 0.07098418474197388, -0.02272913046181202, 0.004971417598426342, -0.011129098944365978, -0.000021620140614686534, -0.01877976767718792, 0.027987144887447357, 0.03997313976287842, -0.024660220369696617, 0.0715247243642807, -0.02767312154173851, 0.03999054431915283, 0.0319255068898201, -0.051435232162475586, 0.011718625202775002, 0.002820921828970313, 0.021896935999393463, -0.026822926476597786, -0.03908030316233635, 0.029827330261468887, -0.0023245380725711584, -0.032539546489715576, -0.005895794369280338, 0.029085995629429817, 0.011340070515871048, 0.0034524211660027504, -0.05318966507911682, -0.011707311496138573, -0.0019131633453071117, -0.008890103548765182, 0.00990945752710104, 0.006793000735342503, -0.014508683234453201, -0.00980787817388773, -0.03550001233816147, -0.03707839921116829, 0.016213905066251755, -0.004203238058835268, 0.02501414343714714, -0.021019594743847847, 0.0005074964719824493, 0.012109288945794106, -0.04607279598712921, -0.024063514545559883, -0.0014816666953265667, -0.004167225211858749, -0.002554526785388589, 0.0035167040769010782, -0.03292635828256607, -0.0343351848423481 ]
pair-programming-some-thoughts
https://markhneedham.com/blog/2010/03/09/pair-programming-some-thoughts
false
2010-03-30 06:57:43
Saved from an episode of bear shaving
[ "software-development" ]
[ "Software Development" ]
As part of our continuous integration build we have a step in the build which tears down a Windows service, uninstalls it and then reinstalls it later on from the latest files checked into the repository. One problem we've been having recently is that despite the fact it should already have been uninstalled a lock has been kept on the log4net dll in our build directory, a directory that we tear down as one of the next steps. It was a bit of a sporadic failure and whenever we went on the build machine and checked for file handles with http://technet.microsoft.com/en-us/sysinternals/bb896653.aspx[Process Explorer] the log4net dll never showed up on the list. I wrongly assumed that it couldn't be getting locked by the Windows service because the Windows service would already be gone by that stage. We therefore started on a http://www.markhneedham.com/blog/2009/08/06/bear-shaving/[bear shaving] expedition which involved trying to make use of http://www.emptyloop.com/unlocker/[Unlocker] and http://download.cnet.com/FileAssassin/3000-2094_4-10639988.html[File Assassin] to release the file handle so that we'd be able to delete the directory. We weren't able to get either of those tools to do the job from the command line and luckily at this stage another colleague had the idea to check whether or not the Windows service was actually immediately removed in Task Manager when we tore it down. After realising that it wasn't we were able to address this problem and put a step in the build to look for that process and kill it as part of the build. I guess the real solution to this problem would be for the uninstall to block until it was properly uninstalled but this seems to be the closest we can get to addressing the cause rather than the effect.
null
null
[ 0.01714940555393696, -0.020614610984921455, 0.013090770691633224, 0.057145845144987106, 0.10596014559268951, 0.010852674953639507, 0.03618129342794418, 0.024409934878349304, 0.007913494482636452, -0.009026709012687206, -0.03990628942847252, 0.0009537379955872893, -0.07081104069948196, 0.011499833315610886, -0.014443679712712765, 0.056738145649433136, 0.08832123875617981, -0.010741478763520718, 0.033593978732824326, 0.0002486641169525683, 0.040736109018325806, 0.060438353568315506, 0.020595071837306023, 0.034053072333335876, 0.000277949235169217, 0.02302684634923935, 0.006931495852768421, -0.028657857328653336, -0.06142975389957428, -0.020153876394033432, 0.028355073183774948, 0.008061162196099758, 0.006958331912755966, -0.030655425041913986, 0.03835216537117958, 0.004026438109576702, -0.058024268597364426, 0.027199789881706238, -0.0008806079276837409, 0.006278321612626314, -0.08029681444168091, 0.0404200553894043, -0.019270772114396095, -0.014446407556533813, -0.017407698556780815, 0.03242950886487961, -0.006060516461730003, -0.013582734391093254, -0.002294904785230756, -0.05764180049300194, -0.07123477011919022, 0.024407293647527695, -0.02740127593278885, -0.007391711231321096, 0.01697659119963646, 0.032547276467084885, 0.004417970310896635, -0.052939072251319885, 0.028680918738245964, -0.04288958013057709, -0.000488812627736479, -0.048732977360486984, -0.01642230711877346, 0.0381283313035965, 0.03235514461994171, -0.01827085390686989, 0.03929406777024269, 0.04986732453107834, -0.019961562007665634, -0.006691094487905502, 0.0021072293166071177, -0.021503208205103874, -0.018718264997005463, -0.007952094078063965, 0.0101543003693223, -0.045146644115448, 0.0141639718785882, 0.022805029526352882, 0.0268433578312397, 0.05627865716814995, -0.023378103971481323, 0.027788901701569557, 0.01759822852909565, 0.018379688262939453, -0.039736490696668625, -0.013487077318131924, -0.013834813609719276, -0.0032072875183075666, -0.05587947368621826, 0.053768087178468704, 0.01777968741953373, -0.027250755578279495, 0.020834865048527718, 0.035371169447898865, 0.0008541339193470776, 0.006150928791612387, 0.01132383942604065, 0.023763122037053108, 0.030892111361026764, 0.005953506100922823, -0.01117689535021782, 0.02363516204059124, -0.004521003924310207, 0.03208613023161888, -0.06936860829591751, -0.02748788520693779, -0.010144155472517014, 0.0068939002230763435, -0.0019938477780669928, -0.012826855294406414, -0.007682512514293194, 0.03968224674463272, -0.003226214786991477, -0.003200123319402337, -0.10906408727169037, 0.0647033154964447, 0.015381461009383202, -0.04243670031428337, 0.024100445210933685, 0.02836574800312519, 0.01947765052318573, 0.027281910181045532, -0.05219489336013794, 0.06285353004932404, 0.0164329893887043, 0.011552635580301285, 0.0064494120888412, 0.029350994154810905, -0.010795103386044502, -0.08924927562475204, -0.004488769453018904, 0.059148818254470825, -0.023509863764047623, -0.002963548293337226, 0.0038637786637991667, -0.0135539211332798, 0.020202014595270157, -0.011342803947627544, 0.025793572887778282, 0.02518838830292225, -0.017416486516594887, -0.03998799994587898, 0.009988628327846527, 0.011631757952272892, 0.015582812018692493, 0.016082515940070152, -0.018326539546251297, -0.03485790267586708, -0.03730369731783867, 0.045363325625658035, 0.02539091929793358, 0.03688773885369301, 0.03971477970480919, -0.06164636090397835, 0.0017415238544344902, 0.09152224659919739, 0.024988947436213493, 0.0002709342516027391, -0.05306509882211685, 0.02757854014635086, 0.03809080645442009, 0.026769135147333145, 0.016515640541911125, 0.0347609706223011, 0.02942161075770855, -0.023452837020158768, 0.009405160322785378, 0.015102604404091835, 0.026698557659983635, 0.017103280872106552, -0.06301598250865936, -0.07577677071094513, 0.0458546057343483, -0.040300652384757996, -0.015511412173509598, 0.05192173272371292, 0.10233165323734283, 0.03990604355931282, 0.04859817773103714, 0.009325483813881874, -0.06535691767930984, 0.02500206045806408, -0.0026442925445735455, 0.018119992688298225, 0.016030970960855484, 0.004324423614889383, 0.04756191745400429, 0.018247408792376518, 0.002299684565514326, 0.031891439110040665, -0.062473099678754807, -0.09582991153001785, -0.007331353612244129, -0.021252481266856194, 0.02980654686689377, -0.005553185474127531, -0.021188104525208473, 0.04202324524521828, 0.00994251947849989, 0.06283754110336304, 0.005014738067984581, -0.002975469222292304, 0.00520678935572505, -0.06956885010004044, -0.0820898786187172, 0.05033206194639206, 0.0249177198857069, 0.007240853738039732, -0.04176519811153412, 0.00648343563079834, -0.0226883701980114, -0.0047654383815824986, 0.05242936685681343, -0.047646503895521164, 0.08171345293521881, -0.00469373119994998, 0.031267084181308746, -0.04649128019809723, 0.07267555594444275, -0.0484711118042469, -0.020632870495319366, -0.02344612590968609, -0.022453168407082558, 0.008985059335827827, 0.028737695887684822, 0.0957261472940445, 0.04613248631358147, -0.04226501286029816, -0.033811382949352264, -0.0005171023076400161, 0.03702264651656151, -0.061729516834020615, -0.04459883272647858, 0.007484878413379192, 0.011653275229036808, 0.0282297246158123, -0.05164368450641632, -0.033475764095783234, 0.00004404527135193348, -0.04807400330901146, 0.0024504379834979773, 0.057341329753398895, 0.022957682609558105, 0.04521188512444496, 0.027696143835783005, -0.015372308902442455, 0.014391636475920677, -0.039366014301776886, -0.045757390558719635, -0.0118164774030447, 0.04426988586783409, 0.002270215656608343, 0.028451619669795036, -0.04378136619925499, -0.025656310841441154, -0.026307743042707443, -0.04464801400899887, 0.010752699337899685, -0.006658406928181648, 0.06324855983257294, -0.011689902283251286, 0.05164896324276924, -0.04090254381299019, 0.022869428619742393, -0.011455955915153027, -0.032663993537425995, -0.0037852153182029724, 0.007830802351236343, 0.009135241620242596, 0.02219673991203308, -0.02932136133313179, 0.00980432704091072, 0.006326707545667887, 0.004744516219943762, 0.022663285955786705, -0.012206530198454857, 0.05086131766438484, 0.018103141337633133, -0.019264649599790573, -0.035375773906707764, -0.0058157132007181644, 0.026125889271497726, -0.054967138916254044, -0.0002878977102227509, 0.013976780697703362, -0.08473768085241318, 0.0499047189950943, -0.08409847319126129, -0.062392812222242355, 0.00022833906405139714, 0.011561759747564793, -0.01808958873152733, 0.014215474016964436, 0.02681935764849186, 0.0481313057243824, 0.0222090445458889, -0.013214776292443275, 0.02669570781290531, 0.014873459935188293, 0.01035788282752037, 0.01308530569076538, 0.02149501070380211, 0.02843344584107399, -0.012389438226819038, 0.019339343532919884, -0.06402411311864853, 0.025867920368909836, -0.05077512934803963, -0.29155415296554565, 0.04245053231716156, 0.021884121000766754, -0.061764493584632874, 0.05484526976943016, -0.008148509077727795, 0.020325293764472008, -0.0493130087852478, -0.0456879697740078, 0.041145965456962585, -0.007572077680379152, -0.05949755758047104, 0.04156560078263283, 0.014832284301519394, 0.005004188045859337, 0.011135898530483246, 0.04724476858973503, -0.04062926024198532, 0.019368335604667664, 0.012485593557357788, -0.014140303246676922, -0.06291089206933975, 0.02706836722791195, 0.015594004653394222, 0.03536858409643173, 0.06891411542892456, -0.027622930705547333, 0.06259293109178543, -0.03973346948623657, -0.013939974829554558, -0.0031965160742402077, -0.022555343806743622, -0.011183851398527622, -0.012274655513465405, -0.04136829078197479, -0.016937915235757828, 0.02496493048965931, 0.012763443402945995, -0.013145368546247482, 0.005211920943111181, 0.00789571925997734, -0.04112665355205536, 0.022601895034313202, 0.014714515767991543, 0.06745286285877228, 0.005440234672278166, -0.06883884221315384, -0.02446886897087097, -0.05076497420668602, 0.07030979543924332, -0.018836425617337227, -0.00511890510097146, -0.0270262248814106, 0.04857582598924637, 0.0009767332812771201, 0.0012091934913769364, -0.00460774265229702, -0.0012979598250240088, -0.04967152327299118, -0.011244023218750954, -0.01559289451688528, -0.016420744359493256, -0.013599312864243984, -0.04038234427571297, 0.008885122835636139, -0.04509912431240082, -0.03587595000863075, -0.03819224238395691, 0.07350821793079376, 0.007471458055078983, -0.04313802719116211, 0.02494501695036888, 0.018642742186784744, -0.10666836053133011, 0.01702463999390602, -0.005745029076933861, -0.06315156072378159, -0.0012646131217479706, -0.0023892135359346867, 0.03972344845533371, -0.02705366723239422, -0.034363240003585815, 0.037288956344127655, 0.020923180505633354, -0.0018232095753774047, -0.01277540810406208, 0.03951636329293251, 0.02868381328880787, -0.04772140830755234, -0.0018437488470226526, 0.06302069127559662, 0.010436244308948517, -0.009783302433788776, -0.04215550795197487, 0.004269781988114119, 0.004572738893330097, -0.021428436040878296, 0.011457319371402264, 0.014050187543034554, 0.007104587275534868, 0.04718673974275589, -0.04087350517511368, 0.028931014239788055, -0.03454627841711044, 0.0031567434780299664, -0.01084462646394968, -0.040228620171546936, -0.013596811331808567, 0.049049850553274155, 0.048724185675382614, -0.007161824963986874, -0.025510627776384354, 0.03066360205411911, -0.03973832726478577, -0.02588720992207527, -0.007824620231986046, 0.004594963043928146, 0.030619192868471146, 0.011589815840125084, -0.02976738102734089, -0.06321834772825241, 0.033152177929878235, 0.02551374025642872, 0.01664126105606556, -0.05516016110777855, -0.03188920393586159, -0.009729827754199505, 0.014782121405005455, 0.009164014831185341, 0.022960275411605835, -0.010785265825688839, 0.033562351018190384, 0.030296824872493744, -0.05148172378540039, 0.015126501210033894, -0.009207842871546745, -0.03288790211081505, -0.06483422964811325, -0.0023962308187037706, 0.014972751960158348, -0.04346412420272827, 0.02423793449997902, 0.024500194936990738, 0.00017591053619980812, 0.050039418041706085, 0.032416220754384995, 0.05557093024253845, -0.018063396215438843, 0.04229773208498955, 0.014648491516709328, -0.017254101112484932, -0.08216797560453415, 0.036693863570690155, -0.049751028418540955, -0.003659931942820549, -0.018255187198519707, 0.04549562931060791, -0.015765206888318062, -0.052590642124414444, -0.01814195141196251, 0.0129894083365798, -0.0325436033308506, -0.017900951206684113, -0.012508712708950043, -0.00014625750191044062, 0.04723295569419861, -0.029112892225384712, -0.0006723214755766094, -0.009483586065471172, 0.008805206045508385, 0.012526155449450016, 0.03314381465315819, -0.04856749251484871, 0.030232148244976997, 0.012476140633225441, 0.016561731696128845, -0.002986334031447768, -0.01382052805274725, 0.019607646390795708, 0.004277440253645182, 0.011468522250652313, -0.02701852098107338, 0.002410558983683586, -0.027060240507125854, 0.03964830935001373, 0.011274839751422405, -0.005749472416937351, 0.012692638672888279, -0.03080412745475769, -0.007908479310572147, -0.04097208008170128, -0.014823704957962036, -0.017771877348423004, 0.020465053617954254, -0.015953710302710533, -0.08928986638784409, 0.04242267459630966, 0.00645624240860343, 0.02152479626238346, 0.00624851742759347, 0.008231095038354397, -0.0025487972889095545, -0.016497183591127396, 0.05095243826508522, 0.05930624157190323, -0.04808293655514717, 0.02358575537800789, 0.008161972276866436, 0.023543890565633774, 0.03376486897468567, 0.01212901622056961, -0.016225142404437065, -0.042872894555330276, -0.024250298738479614, 0.04190492630004883, -0.07850371301174164, -0.013566750101745129, -0.037460945546627045, 0.0016888128593564034, 0.004840590059757233, -0.0137185575440526, 0.006242346949875355, 0.01999082788825035, 0.007614448666572571, -0.033189862966537476, 0.012600534595549107, -0.013745266944169998, -0.0058789486065506935, 0.029113655909895897, -0.029657194390892982, -0.00023657173733226955, -0.04569420590996742, 0.01728549785912037, 0.016138246282935143, -0.0450848825275898, -0.022157423198223114, -0.03828459233045578, -0.03320477530360222, -0.019345058128237724, 0.017194105312228203, -0.009880434721708298, 0.010413276962935925, -0.01764713227748871, -0.017981460317969322, -0.011714478023350239, -0.0009757138323038816, 0.0020310580730438232, 0.001253939582966268, 0.024262364953756332, 0.06394439190626144, -0.022286362946033478, 0.028242258355021477, -0.014887123368680477, -0.02483954466879368, 0.06311626732349396, -0.09805227071046829, -0.02119135670363903, -0.027925901114940643, -0.048237573355436325, -0.0036320050712674856, -0.005083462689071894, -0.025232745334506035, -0.04906857758760452, 0.04069158807396889, 0.03963228315114975, -0.008002975955605507, 0.017945345491170883, 0.033125605434179306, 0.010689753107726574, -0.05180896073579788, -0.016728630289435387, -0.047569260001182556, 0.021229397505521774, 0.0395108126103878, -0.008596478030085564, 0.003979960922151804, 0.00831686146557331, -0.00891782995313406, 0.03621044009923935, -0.05815068259835243, -0.06165528669953346, 0.024030769243836403, -0.020004482939839363, -0.02146979421377182, 0.0036476836539804935, -0.05163636803627014, 0.024010242894291878, -0.0016674651997163892, -0.031163565814495087, -0.020612796768546104, -0.04872066527605057, 0.06027926504611969, 0.0047751786187291145, 0.004382715560495853, -0.0426858514547348, -0.03357565030455589, 0.040641866624355316, 0.00018025861936621368, 0.023204399272799492, 0.02652120217680931, -0.028619950637221336, 0.013253427110612392, 0.016643691807985306, -0.013710529543459415, -0.019070765003561974, 0.004072417039424181, 0.007730019278824329, -0.05629746988415718, 0.014016645960509777, -0.0032239952124655247, 0.020323382690548897, -0.009169603697955608, 0.05848725885152817, 0.016057061031460762, -0.03169197589159012, -0.031458668410778046, 0.029823485761880875, -0.047783538699150085, -0.027181608602404594, -0.03223274275660515, 0.002947041532024741, -0.02438565529882908, 0.07391415536403656, 0.021418238058686256, 0.007606904953718185, 0.07660910487174988, 0.0013201344991102815, 0.019212322309613228, -0.010909157805144787, 0.09076036512851715, 0.08319617807865143, 0.015170905739068985, 0.02274988777935505, 0.055403515696525574, -0.023174310103058815, -0.05703427642583847, 0.04011218249797821, -0.030686601996421814, -0.027935810387134552, -0.0317373089492321, 0.04498087987303734, 0.06275242567062378, -0.02612379565834999, 0.05540001764893532, -0.01439321506768465, 0.02179839089512825, -0.011038441210985184, 0.026336198672652245, 0.007415051106363535, 0.034024644643068314, -0.02063053660094738, 0.016059860587120056, 0.007549604866653681, -0.03793394938111305, 0.03199724107980728, -0.021231599152088165, -0.010203136131167412, 0.02527066506445408, 0.0009406859171576798, -0.01721986010670662, 0.007746266201138496, -0.003975208383053541, 0.08090723305940628, -0.02039596438407898, 0.0026382592041045427, -0.011972404085099697, 0.030400564894080162, 0.030598212033510208, 0.012229670770466328, -0.0294809527695179, -0.006502877920866013, 0.005084003787487745, -0.021080277860164642, -0.04482909291982651, -0.013605938293039799, -0.01845148764550686, 0.029383735731244087, -0.019461410120129585, 0.02418210729956627, -0.004837197717279196, 0.007078445516526699, -0.020314814522862434, -0.04161672294139862, -0.08909838646650314, -0.025732986629009247, -0.029996167868375778, -0.006730163935571909, 0.02505793608725071, 0.02553243562579155, -0.033083606511354446, -0.022359652444720268, -0.011207216419279575, -0.03395054116845131, 0.04190049320459366, -0.0671892985701561, -0.05625924840569496, 0.02449980564415455, 0.010892988182604313, 0.025911396369338036, 0.02479991316795349, 0.07538231462240219, 0.013549928553402424, -0.0397353395819664, -0.023699946701526642, 0.015721239149570465, 0.00843956507742405, -0.01160051766782999, 0.02029852196574211, -0.06760837882757187, 0.052663493901491165, 0.024614645168185234, -0.0026880220975726843, -0.06876074522733688, 0.003735325997695327, 0.05057638883590698, -0.0341443307697773, 0.05949798971414566, -0.023991374298930168, -0.0002676363510545343, -0.041492726653814316, 0.013984045945107937, -0.017147107049822807, 0.017441401258111, 0.03102625161409378, -0.009248824790120125, 0.07134676724672318, 0.04996013641357422, -0.0163623858243227, -0.049782246351242065, -0.004329095594584942, -0.01018467452377081, 0.01022416539490223, -0.02583795040845871, -0.017608148977160454, -0.030452637001872063, -0.09082000702619553, -0.011832054704427719, 0.010145480744540691, 0.0008906399016268551, -0.03913373872637749, 0.03699664771556854, -0.008694327436387539, -0.0603792741894722, 0.008169199340045452, -0.03273016959428787, -0.029522957280278206, -0.02880570851266384, -0.004874648060649633, 0.019062059000134468, 0.044030241668224335, 0.02613569051027298, -0.0029044528491795063, 0.01703992672264576, -0.0209941528737545, 0.00004584469206747599, -0.0062636821530759335, 0.009425682947039604, 0.0468183271586895, 0.007034530397504568, 0.010443078354001045 ]
[ -0.10544463247060776, -0.0071416315622627735, -0.01280917041003704, -0.0413040965795517, 0.04180765524506569, -0.049103979021310806, -0.025554396212100983, -0.002703122328966856, -0.00781925953924656, -0.03737315163016319, 0.03234236314892769, -0.02091396227478981, -0.014803080819547176, -0.02242335118353367, 0.07801371067762375, 0.029922327026724815, 0.0008192023960873485, -0.0407484769821167, -0.01816636696457863, 0.026876701042056084, -0.010225565172731876, -0.05965056270360947, -0.05016842111945152, -0.03408428654074669, -0.0011656584683805704, 0.008787233382463455, 0.024270985275506973, -0.027714310213923454, -0.028680840507149696, -0.19311702251434326, -0.01249689981341362, -0.019569529220461845, 0.0022991360165178776, -0.0164836086332798, 0.06498514115810394, 0.023333102464675903, 0.011552819982171059, 0.032228775322437286, 0.0003435904218349606, 0.022108186036348343, 0.034013308584690094, 0.04511410742998123, -0.06004272401332855, -0.012490840628743172, 0.03997526690363884, -0.01879231072962284, -0.005298146046698093, -0.025286000221967697, 0.04187583178281784, 0.009723103605210781, -0.02093755453824997, 0.015122057870030403, -0.009408955462276936, -0.00641850009560585, -0.04095243290066719, 0.002437949413433671, 0.022188637405633926, 0.053077179938554764, 0.03187974542379379, 0.0100483363494277, 0.027372419834136963, -0.03167293220758438, -0.13556624948978424, 0.09857548028230667, 0.05439596250653267, 0.04519198462367058, -0.005060908850282431, -0.0756530910730362, -0.0019834961276501417, 0.09019794315099716, -0.018646851181983948, -0.04060985893011093, -0.051662515848875046, 0.04260615259408951, 0.02111642062664032, 0.0037426985800266266, 0.018688177689909935, 0.03614920377731323, 0.013942902907729149, -0.03712103143334389, -0.049659986048936844, -0.01602860353887081, -0.002864112611860037, -0.014668269082903862, -0.09059219807386398, 0.018366660922765732, -0.0037371485959738493, 0.05745304003357887, 0.035205721855163574, 0.03938687592744827, 0.034770816564559937, -0.014677419327199459, 0.06802672892808914, -0.0008971492643468082, -0.08639208227396011, -0.017126770690083504, -0.023940060287714005, 0.0034470749087631702, -0.06000233441591263, 0.44038116931915283, -0.026153193786740303, -0.03277548402547836, 0.056909382343292236, 0.02525896020233631, 0.012709973379969597, 0.030013788491487503, 0.00395657354965806, -0.0019739095587283373, -0.015901679173111916, -0.019835103303194046, 0.05060408636927605, 0.033563848584890366, 0.07679951936006546, -0.03108777292072773, 0.04064615070819855, 0.010485753417015076, -0.004866991192102432, 0.0029147572349756956, -0.03864749148488045, 0.013715529814362526, -0.021162088960409164, -0.018976127728819847, 0.058137211948633194, -0.0011685722274705768, 0.022493142634630203, -0.025079797953367233, 0.02031128667294979, 0.05714354291558266, 0.03383062407374382, -0.026719069108366966, -0.004555373452603817, -0.07453056424856186, -0.019686950370669365, 0.0020166735630482435, 0.011285924352705479, -0.002192740561440587, 0.020152300596237183, -0.03679903596639633, -0.024239229038357735, -0.0007040986674837768, -0.013798345811665058, -0.0015782054979354143, 0.04059810936450958, -0.018575355410575867, -0.0013898041797801852, 0.09604708850383759, 0.025890067219734192, -0.035554975271224976, -0.022072896361351013, -0.03261994197964668, -0.006044221576303244, 0.025867749005556107, -0.01236796472221613, -0.03918936476111412, 0.014939787797629833, 0.02521056868135929, 0.0816541314125061, 0.001184424851089716, -0.05138690769672394, 0.010226788930594921, -0.007093990221619606, -0.06352046132087708, -0.05191042646765709, 0.04336923360824585, 0.03593442961573601, -0.08857788890600204, -0.028758181259036064, 0.01683550700545311, 0.02389642782509327, -0.03183784335851669, -0.032976627349853516, 0.022693507373332977, -0.0015100928721949458, -0.03713091462850571, 0.01676441729068756, -0.04599437862634659, -0.030925167724490166, 0.016205552965402603, 0.017840072512626648, 0.017830202355980873, -0.03399314731359482, 0.0028447825461626053, -0.04264022782444954, -0.01157805509865284, -0.0002632943505886942, -0.0884784385561943, -0.021662799641489983, 0.004771296866238117, -0.01812969148159027, -0.020725497975945473, -0.05514877662062645, -0.029328161850571632, -0.055341411381959915, 0.03863082081079483, 0.0010277183027938008, -0.0035293411929160357, 0.001483421423472464, -0.0061082481406629086, 0.0008939161780290306, -0.02961105853319168, 0.03791534900665283, 0.020426828414201736, -0.034414149820804596, 0.018715012818574905, -0.0732702761888504, 0.07973114401102066, 0.025699131190776825, -0.038312919437885284, 0.07154572755098343, 0.04138791561126709, -0.004504180513322353, -0.01795058697462082, 0.0061012450605630875, 0.011346590705215931, -0.0003860573924612254, -0.03042544797062874, -0.012857452966272831, 0.01620333455502987, 0.01371697336435318, 0.019523415714502335, -0.02672809734940529, 0.00842150766402483, -0.03472667559981346, -0.3250950276851654, -0.043932072818279266, -0.05047653615474701, 0.007748043164610863, 0.0157516747713089, -0.08517234772443771, 0.011763401329517365, -0.007973105646669865, -0.02816041372716427, -0.009870730340480804, 0.10469646751880646, 0.012949011288583279, 0.03406687453389168, -0.07285133749246597, 0.032534584403038025, 0.024058843031525612, -0.01262445654720068, -0.01690123975276947, -0.04926660284399986, 0.022258106619119644, 0.018689824268221855, -0.0039576212875545025, -0.04511708766222, -0.047181274741888046, -0.013745198026299477, -0.028441019356250763, 0.09647299349308014, -0.018385469913482666, 0.1542734056711197, -0.033008091151714325, 0.0450001023709774, 0.04006939008831978, 0.03230989724397659, -0.08547909557819366, -0.0029385595116764307, 0.012147489935159683, -0.001069680554792285, 0.0074173640459775925, 0.03223567456007004, -0.02011343650519848, -0.07212146371603012, 0.012585259974002838, -0.07500134408473969, -0.05886276438832283, -0.016787098720669746, 0.0050697484984993935, -0.02821529656648636, 0.031793419271707535, -0.04138147085905075, 0.08669637143611908, 0.009097655303776264, -0.0006924289627932012, -0.013174346648156643, 0.05402864143252373, 0.024508366361260414, -0.02813810668885708, -0.03654448315501213, 0.004466236103326082, 0.021300680935382843, -0.02357424795627594, 0.05839194357395172, 0.06011340394616127, 0.0443153902888298, -0.05322461947798729, 0.013253607787191868, 0.02643475867807865, -0.029305893927812576, 0.013095520436763763, 0.04366086423397064, -0.05853145569562912, -0.02858833409845829, 0.08559086918830872, -0.02834453247487545, -0.00402081198990345, 0.00617107842117548, 0.050331976264715195, -0.02553984709084034, 0.016174275428056717, -0.020779963582754135, -0.058959901332855225, 0.015205600298941135, -0.04653112217783928, 0.042169876396656036, -0.06218472868204117, 0.02202901430428028, 0.05023961141705513, -0.05787187069654465, 0.010642975568771362, 0.05755176022648811, 0.0009612968424335122, -0.013533363118767738, 0.007389279548078775, 0.001560158096253872, -0.09639580547809601, 0.10247670859098434, -0.010234170593321323, -0.21701550483703613, 0.002185397781431675, 0.11201079934835434, 0.04174051433801651, -0.023255877196788788, 0.015565447509288788, 0.02892397902905941, -0.011727865785360336, 0.02454727329313755, 0.0016459353500977159, 0.008586165495216846, 0.034764453768730164, -0.03391362726688385, -0.011394950561225414, 0.028951141983270645, -0.045617181807756424, 0.04505401849746704, 0.01611032709479332, 0.007188337855041027, 0.04168318584561348, -0.022287530824542046, -0.027593359351158142, 0.14378130435943604, 0.037451811134815216, 0.02992815338075161, 0.014343650080263615, 0.011716194450855255, 0.046994294971227646, 0.06035690754652023, 0.02439938858151436, 0.010645300149917603, -0.007983292452991009, 0.0010478943586349487, 0.0011040120152756572, 0.05080597102642059, -0.08349660038948059, 0.014367401599884033, 0.06244184821844101, 0.04423877224326134, 0.0035869211424142122, -0.015275676734745502, 0.01312173344194889, -0.0004001194320153445, 0.0029799381736665964, 0.07393527030944824, -0.01663687638938427, 0.02945590950548649, -0.03471220284700394, -0.03220532462000847, 0.014936002902686596, -0.03003004565834999, -0.05999258533120155, 0.031067777425050735, 0.00199072971008718, 0.0019703798461705446, 0.0681932345032692, 0.006458865478634834, -0.04575766623020172, 0.011708913370966911, 0.012120322324335575, 0.01947808638215065, -0.03702377527952194, 0.1228998452425003, -0.016897354274988174, 0.034273695200681686 ]
[ 0.0014286169316619635, 0.003698865184560418, -0.01305382326245308, 0.05538918450474739, -0.02603977359831333, 0.0028328890912234783, 0.038561511784791946, -0.020825384184718132, -0.008669381029903889, 0.03735918551683426, 0.01865302212536335, 0.032089799642562866, 0.028515620157122612, 0.03365970775485039, -0.006477837450802326, 0.010197964496910572, 0.021087870001792908, -0.005271387752145529, -0.03447068855166435, -0.02099635638296604, -0.013964295387268066, 0.02985827997326851, 0.013379324227571487, 0.0041077034547924995, -0.007584896869957447, -0.032671116292476654, -0.017005179077386856, -0.022737225517630577, 0.011499310843646526, -0.14813794195652008, -0.0014959238469600677, -0.028180113062262535, -0.012085516937077045, -0.002946946071460843, 0.03991523012518883, -0.013521893881261349, 0.06979167461395264, 0.05306592211127281, -0.010192496702075005, -0.006613968405872583, 0.002957861637696624, 0.020662330090999603, -0.0016706633614376187, 0.010099905543029308, -0.013937275856733322, -0.01800357922911644, -0.03376251831650734, -0.050072405487298965, 0.010038303211331367, 0.0018574665300548077, -0.013757861219346523, -0.0004977661883458495, 0.021121103316545486, -0.015123116783797741, -0.008500303141772747, -0.029728226363658905, 0.0143312718719244, 0.010253732092678547, 0.010144386440515518, -0.016255870461463928, 0.01908302679657936, -0.014427116140723228, -0.0628916472196579, -0.032282691448926926, 0.032786738127470016, 0.021688370034098625, -0.009112738072872162, -0.024792984127998352, 0.003185745794326067, -0.016892798244953156, -0.049601808190345764, 0.0259670652449131, -0.05888177454471588, -0.014924504794180393, -0.005190350580960512, 0.04500771686434746, 0.05473022162914276, 0.022174419835209846, -0.00038289616350084543, -0.012450250796973705, -0.007534062024205923, 0.0406368151307106, 0.028219595551490784, 0.005969207268208265, -0.001464798697270453, 0.013493487611413002, -0.04753595590591431, -0.015560348518192768, 0.04723396897315979, 0.021190449595451355, -0.03783309459686279, 0.02721446566283703, -0.030144881457090378, -0.014122768305242062, -0.02989545650780201, -0.02003047987818718, -0.022483566775918007, -0.021444281563162804, -0.007000324781984091, 0.8064209818840027, 0.004152694717049599, -0.007109060417860746, 0.008053740486502647, -0.00028461150941438973, -0.00895727053284645, -0.00815738644450903, 0.008458019234240055, 0.005982083734124899, -0.004141419194638729, -0.058334365487098694, 0.026977721601724625, 0.02661284990608692, 0.012949352152645588, 0.051852595061063766, 0.029711831361055374, -0.008374890312552452, -0.000583341286983341, 0.0035037004854530096, -0.03232497349381447, 0.027572544291615486, -0.005919443443417549, 0.0134684843942523, -0.016997329890727997, -0.015125920996069908, 0.011116945184767246, -0.1404670625925064, 0.027161387726664543, -8.591640455702097e-33, 0.023421933874487877, -0.0026607729960232973, 0.03166060149669647, 0.0533309169113636, 0.05735599249601364, -0.03181789070367813, 0.004527496173977852, -0.011833342723548412, 0.010075194761157036, -0.02035657875239849, -0.04996100440621376, -0.019702084362506866, 0.028277568519115448, -0.039420370012521744, 0.05311238020658493, -0.019577840343117714, 0.012726318091154099, 0.04958236962556839, -0.01322463620454073, 0.008910981006920338, -0.011725366115570068, 0.03697638213634491, -0.0005012542242184281, -0.003455657511949539, 0.057244714349508286, -0.01559574343264103, 0.00856859888881445, 0.02540227584540844, 0.02916640415787697, -0.04700559750199318, -0.029950188472867012, 0.03318297863006592, -0.022834336385130882, -0.002423913450911641, -0.016584420576691628, -0.04299144446849823, -0.030807115137577057, 0.001962536247447133, -0.0013848190428689122, -0.03005264513194561, -0.027290046215057373, -0.025895722210407257, -0.012616370804607868, 0.016033392399549484, -0.022232409566640854, -0.03404545038938522, -0.04339401051402092, 0.01780594326555729, 0.01825081743299961, -0.006045566871762276, 0.06286489963531494, 0.038884520530700684, 0.0088331438601017, -0.00569290341809392, -0.037929803133010864, 0.0022470923140645027, 0.03166334703564644, -0.007305971346795559, 0.0030839613173156977, 0.014644445851445198, 0.060653068125247955, 0.00936935469508171, -0.03631322458386421, 0.013672483153641224, 0.012072728015482426, -0.04574936255812645, 0.05996864661574364, 0.014759575948119164, -0.01660679094493389, -0.0002727270475588739, -0.02509208209812641, -0.030044175684452057, -0.011681829579174519, -0.027040008455514908, 0.015124855563044548, 0.015065677464008331, -0.000768636935390532, 0.005452002864331007, -0.021633168682456017, 0.04800741374492645, -0.016305692493915558, -0.018689211457967758, -0.036139797419309616, -0.04488959163427353, -0.016819259151816368, -0.04697854071855545, -0.014291718602180481, -0.017022747546434402, 0.05023939162492752, -0.03183066099882126, 0.01837673783302307, -0.001454464509151876, -0.019537081941962242, 0.014558115042746067, -0.028963211923837662, 8.520205664002627e-33, 0.0032068213913589716, -0.01019076257944107, 0.019877789542078972, -0.004217338748276234, -0.02017204649746418, 0.051914967596530914, -0.010832478292286396, -0.03253824636340141, -0.04408159852027893, 0.025081271305680275, 0.033534396439790726, 0.03637479245662689, -0.020590001717209816, 0.07595103979110718, 0.051125455647706985, -0.004701297730207443, 0.02529064193367958, 0.004029358737170696, 0.037078578025102615, 0.025902142748236656, 0.03772924467921257, 0.014420097693800926, -0.011150349862873554, 0.0015301540261134505, 0.018599681556224823, 0.04802108556032181, -0.007677809335291386, 0.017281657084822655, 0.02961016446352005, 0.006351669784635305, 0.017338108271360397, -0.026467714458703995, 0.020374799147248268, -0.06143416464328766, -0.02529016323387623, 0.013255788013339043, 0.027297817170619965, -0.017342619597911835, -0.009298832155764103, -0.015018600970506668, 0.003569720545783639, 0.00033109859214164317, -0.001730697462335229, 0.03717746213078499, 0.02130906656384468, -0.006120142061263323, 0.02198719047009945, -0.03069623000919819, -0.008594092912971973, 0.07949493080377579, -0.003134054597467184, 0.012214159592986107, 0.040114179253578186, 0.03418828547000885, -0.021153569221496582, -0.0008222703472711146, -0.041993118822574615, -0.01213586051017046, -0.043917104601860046, -0.0027831518091261387, -0.0026641585864126682, -0.010644257068634033, -0.02812596596777439, 0.025953814387321472, -0.038001593202352524, 0.029352368786931038, 0.005150263663381338, -0.0035097780637443066, -0.03996322304010391, -0.07543829828500748, -0.0059256479144096375, 0.016201119869947433, -0.027939708903431892, 0.0636647567152977, 0.01047457940876484, -0.04544645547866821, 0.03582135960459709, -0.030359316617250443, -0.05508571118116379, 0.02519318088889122, -0.009220474399626255, -0.01699676550924778, -0.03716278448700905, -0.009300723671913147, -0.011532198637723923, -0.03161032125353813, -0.022010426968336105, 0.00032433363958261907, 0.007081503048539162, -0.03675607964396477, -0.028279855847358704, -0.00582406809553504, 0.012564929202198982, 0.03870302066206932, 0.03175861015915871, -1.326977283611086e-8, -0.02932029590010643, 0.030032843351364136, -0.011209249496459961, 0.024697570130228996, -0.008364292792975903, 0.02282232604920864, -0.05865583196282387, 0.007376742083579302, -0.05819741263985634, 0.02422390878200531, -0.02532167173922062, -0.03597768023610115, -0.018833264708518982, -0.019599085673689842, -0.0004980743397027254, -0.016807589679956436, -0.04218238964676857, -0.05148740112781525, 0.06684955209493637, -0.01736047863960266, 0.040160562843084335, 0.04872521385550499, 0.009406417608261108, 0.014358595944941044, -0.0024472700897604227, 0.006576616317033768, 0.04138631373643875, -0.08232215791940689, -0.00548910815268755, 0.03984371945261955, 0.013520090840756893, -0.01040731556713581, -0.004966906271874905, 0.007111018523573875, -0.0388517789542675, -0.02569481171667576, -0.004195454064756632, 0.02687995322048664, 0.06794393807649612, 0.019899409264326096, -0.007602869998663664, 0.028325241059064865, -0.021988816559314728, -0.011300421319901943, -0.00785041879862547, 0.002327079651877284, -0.026280397549271584, 0.02552812546491623, -0.0009741114336065948, -0.047766637057065964, -0.0009535885183140635, 0.030166976153850555, 0.017005156725645065, 0.05778234079480171, 0.015559893101453781, 0.01882781833410263, 0.024359364062547684, -0.03253621608018875, 0.019362956285476685, 0.05512338876724243, 0.01690209098160267, -0.004899430088698864, -0.028291068971157074, -0.03773347660899162 ]
saved-from-an-episode-of-bear-shaving
https://markhneedham.com/blog/2010/03/30/saved-from-an-episode-of-bear-shaving
false
2010-03-08 21:56:58
Getting real: Book review
[ "software-development", "books", "book-review" ]
[ "Software Development", "Books" ]
I recently came across 37 Signals 'http://gettingreal.37signals.com[Getting Real]' book where they go through their approach to building web applications and there have certainly been some good reminders and ideas on the best way to do this. These are some of my favourite parts: * *Ship it!* + ____ If there are minor bugs, ship it as soon you have the core scenarios nailed and ship the bug fixes to web gradually after that. The faster you get the user feedback the better. ____ + Often on projects I've worked on we've taken the approach that bugs get worked on before new stories which makes sense in a way because it means that we are fixing problems quickly and keeping the quality of the application high. In reality what often happens is that low priority bugs just end up not getting looked at but I like the fact that we can choose to make that an explicit approach rather than just allowing it to happen to us. + ____ Prioritize your bugs (and even ignore some of them) Just because you discover a bug in your product, doesn't mean it's time to panic. All software has bugs -- it's just a fact of life. ____ + I find it interesting that there might be more value in getting something out the door and then getting feedback on it rather than spending extra time perfecting it up front. * *Fix Time and Budget, Flex Scope* + ____ You have to figure out what's really important. What's going to make it into this initial release? This forces a constraint on you which will push you to make tough decisions instead of hemming and hawing. ____ + From my experience a lot of times we end up implementing features just because that's what was agreed in the initial release plan and there is often a reluctance to change that even if a feature isn't really that useful anymore. It becomes even more problematic if we get to the stage where it's not possible to deliver all the features promised in the remaining time so it certainly makes sense to me that in that situation we would look to focus on getting the absolutely essential things in first. * *Choose any enemy* + ____ Sometimes the best way to know what your app should be is to know what it shouldn't be. Figure out your app's enemy and you'll shine a light on where you need to go. ____ + This seems to be a much better idea than just copying the ideas of your competitor which might seem the obvious thing to do if you're working in the same area. The problem with that approach of course is that when you do copy you have no actual vision of what you're doing with your application anyway so you'll always be playing catch up. * *Don't overcomplicate the application* There are a few parts of the book where the authors talk about keeping the application simple and then letting the users play with it: + ____ The harder we tighten things down, the less room there is for a creative, emergent solution. Whether it's locking down requirements before they are well understood or prematurely optimizing code, or inventing complex navigation and workflow scenarios before letting end users play with the system, the result is the same: an overly complicated, stupid system instead of a clean, elegant system that harnesses emergence. Keep it small. Keep it simple. Let it happen. ____ + Andrew Hunt, The Pragmatic Programmers The users can then decide for us where we need to fill in more details: + ____ Details reveal themselves as you use what you're building. You'll see what needs more attention. You'll feel what's missing. You'll know which potholes to pave over because you'll keep hitting them. That's when you need to pay attention, not sooner. ____ + In particular they suggest that focusing on very specific details about the page layout/colour/wording can be left until later because it will only serve to hinder forward progress if we concentrate on it too early. * *Scaling an application* + ____ You don't have a scaling problem yet "`Will my app scale when millions of people start using it?`" Ya know what? Wait until that actually happens. ____ + On several projects that I've worked on there often seems to be a desire to focus on performance and scaling an application very early on which seems wasteful when we could be focusing on actually building something that has so many users that we need to scale it later on. I think this advice is spot on. * *Write less software* A common theme throughout the book is that of writing less software to achieve our goals: + ____ The best designers and the best programmers\...are the ones that can determine what just doesn't matter. That's where the real gains are made. Most of the time you spend is wasted on things that just don't matter. If you can cut out the work and thinking that just don't matter, you'll achieve productivity you've never imagined. ____ + ____ Innovation is not about saying yes to everything. It's about saying NO to all but the most crucial features. Throw away customer feature requests - if they're really important then they'll come back anyway Don't worry about tracking and saving each request that comes in. Let your customers be your memory. If it's really worth remembering, they'll remind you until you can't forget. ____ + The authors ideas around preferences were particularly interesting to me: + ____ Preferences are also evil because they create more software. More options require more code. And there's all the extra testing and designing you need to do too. ____ + I hadn't appreciated until recently quite how much complexity we can add to an application by allowing users to play around with the display of information on a screen. It seems like a nice feature to have but it would be interesting to see statistics that could tell us what percentage of users actually that type of thing when it's not the core idea of the application. I also quite liked the following and I think it's something that we need to do more often on teams: + ____ Encourage programmers to make counteroffers.You want to hear: "`The way you suggested will take 12 hours. But there's a way I can do it that will only take one hour. It won't do x but it will do y.`" Let the software push back. Tell programmers to fight for what they think is the best way. ____ * *Decisions are temporary so make the call and move on* + ____ So don't do the "`paralysis through analysis`" thing. That only slows progress and saps morale. Instead, value the importance of moving on and moving forward. Get in the rhythm of making decisions. Make a quick, simple call and then go back and change that decision if it doesn't work out. ____ + I think a big part of this is getting the mentality that it's fine to make changes after we've 'finished' something. Any other approach doesn't work from my experience. * *Reduce meetings* + ____ Meetings usually arise when a concept isn't clear enough. Instead of resorting to a meeting, try to simplify the concept so you can discuss it quickly via email or im or Campfire. ____ + I find it interesting that they prefer communicating by email because I've often found that it's not the best communication mechanism since it's really easy to misinterpret what people mean. Having said that if we can make concepts clearer and the need for a meeting is an indicator that we need to do that then perhaps we can still meet in person and just make the meeting much shorter. * *Design the interface before you start programming* + ____ Too many apps start with a program-first mentality. That's a bad idea. Programming is the heaviest component of building an app, meaning it's the most expensive and hardest to change. Instead, start by designing first. ____ + I've certainly fallen into this trap a lot but I've been trying to follow the http://www.infoq.com/presentations/bdd-dan-north[outside in approach] more strictly recently and so far I'm finding that it reduces the feedback cycle quite substantially which is only a good thing. * +++<strong>+++Design for regular, blank, and error states +++</strong>+++ + ____ For each screen, you need to consider three possible states: Regular The screen people see when everything's working fine and your app is flush with data. Blank The screen people see when using the app for the first time, before data is entered. Error The screen people see when something goes wrong. ____ + I'd never even though of this at all and I'm certainly guilty of only ever considering applications when all the data is filled in so this is certainly something else to consider. * +++<strong>+++Tear down the walls between support and development +++</strong>+++ + ____ In the restaurant business, there's a world of difference between those working in the kitchen and those out front who deal with customers. It's important for both sides to understand and empathize with the other. That's why cooking schools and restaurants will often have chefs work out front as waiters so the kitchen staff can interact with customers and see what it's actually like on the front lines. ____ + My colleague Chris Read and some others seem to be trying to close this gap with the http://www.devopsdays.org/[devops] movement which also has http://qconlondon.com/london-2010/tracks/show_track.jsp?trackOID=331[a track at QCon London] this week. The idea of working in support to see what an application is like from that perspective is something that more experienced colleagues often recommend although I've not done it as yet. Overall I found this book a really interesting and quick read and although many of the ideas suggested seem like common sense it's strange that we often don't do all of them. The 37 Signals guys also have a new book coming out in the UK tomorrow titled 'http://www.amazon.co.uk/Rework-Meetings-One-Down-Competition-Greatness/dp/0091929784/ref=sr_1_1?ie=UTF8&s=books&qid=1268085360&sr=8-1[Rework]' which sounds like it could be quite a good read as well.
null
null
[ 0.018672263249754906, 0.018301524221897125, 0.009664257988333702, 0.034334540367126465, 0.10290420800447464, 0.035680271685123444, 0.024843446910381317, 0.04301010072231293, 0.022417830303311348, -0.036618661135435104, -0.022691722959280014, 0.0005152688827365637, -0.07470002770423889, 0.021157976239919662, -0.045880988240242004, 0.07921662926673889, 0.06556495279073715, 0.015497969463467598, 0.030775338411331177, 0.010408864356577396, 0.013133560307323933, 0.07008018344640732, -0.004688665270805359, 0.03531627357006073, 0.03151921182870865, 0.006895213853567839, 0.00839932169765234, 0.002929301466792822, -0.06681865453720093, -0.01703781820833683, 0.04015376418828964, -0.008102771826088428, -0.021786553785204887, -0.02379116229712963, -0.00041223561856895685, -0.00825804565101862, -0.02902168221771717, 0.03789423033595085, -0.01315099187195301, -0.0003953272826038301, -0.061617545783519745, 0.040759067982435226, -0.02258213423192501, -0.005306635983288288, -0.027310986071825027, 0.006360935978591442, -0.043143536895513535, -0.0006009832723066211, 0.011984388343989849, -0.018684182316064835, -0.06460201740264893, 0.06143806129693985, -0.012996128760278225, -0.005690489895641804, -0.00817486084997654, 0.047125592827796936, 0.004433316644281149, -0.061637066304683685, 0.0021755460184067488, -0.03955112397670746, 0.0002024083078140393, -0.004870542790740728, 0.006382144056260586, 0.04646933451294899, 0.022811485454440117, -0.025547057390213013, 0.0069581628777086735, 0.05177663639187813, -0.014138434082269669, 0.003189997049048543, -0.018061261624097824, 0.002454192377626896, -0.019078761339187622, -0.00890348106622696, 0.008132921531796455, -0.040448885411024094, 0.002090341644361615, 0.08184485137462616, 0.020380882546305656, 0.04601448029279709, -0.027153749018907547, 0.016481658443808556, 0.021797511726617813, 0.01259868498891592, -0.010643268004059792, -0.031259357929229736, 0.0034790360368788242, -0.010003885254263878, -0.07055693864822388, 0.05329964682459831, 0.04600264132022858, -0.07448279112577438, 0.044726815074682236, 0.04670904204249382, 0.00901955645531416, 0.000747832003980875, 0.021361911669373512, 0.01141197420656681, -0.01794414222240448, -0.01761932298541069, -0.01619788631796837, -0.008614984340965748, 0.0018770132446661592, -0.000625644635874778, -0.08117027580738068, -0.026293078437447548, -0.017646731808781624, -0.02163826860487461, -0.01996038481593132, 0.007862054742872715, -0.026911018416285515, 0.022872939705848694, -0.023373275995254517, 0.01979779452085495, -0.0695021003484726, 0.08007334917783737, -0.01667984388768673, -0.04313547536730766, -0.004505035933107138, -0.010719768702983856, 0.0392916314303875, 0.04236004874110222, -0.009431677870452404, 0.08391644060611725, -0.0026185226161032915, 0.020447036251425743, -0.02970801666378975, 0.03455926477909088, -0.02027866244316101, -0.04765558987855911, -0.016637204214930534, 0.06067527085542679, -0.029631759971380234, -0.02505754865705967, 0.003606687532737851, -0.0026001331862062216, 0.0005039930692873895, -0.002528306096792221, 0.021257951855659485, 0.035745587199926376, -0.029174817726016045, -0.029891200363636017, 0.020232485607266426, 0.024758124724030495, 0.013587048277258873, 0.012090807780623436, 0.016178255900740623, -0.022485122084617615, -0.06195344775915146, 0.008816691115498543, -0.010501602664589882, -0.0013421509647741914, 0.0011920459801331162, -0.0219974797219038, 0.009219431318342686, 0.07816208899021149, 0.04213535040616989, 0.024673009291291237, -0.008777759037911892, 0.01840933971107006, 0.04585599899291992, 0.032439760863780975, 0.021705474704504013, 0.007631792686879635, 0.004124825354665518, -0.00256382767111063, 0.006904453970491886, 0.043551843613386154, 0.006288985721766949, 0.004253212828189135, -0.06849011778831482, -0.043722182512283325, 0.053600434213876724, -0.03715783357620239, -0.0016332109225913882, 0.0506310909986496, 0.0756489709019661, 0.021425560116767883, 0.004412670619785786, 0.0037788983900099993, -0.07044823467731476, 0.028067057952284813, 0.025419488549232483, 0.02679472789168358, 0.017709016799926758, -0.030402375385165215, 0.06245490163564682, 0.01267723087221384, -0.004953064024448395, 0.019473208114504814, -0.07997219264507294, -0.09127766638994217, -0.01142102014273405, -0.023808347061276436, 0.053725022822618484, -0.036707840859889984, 0.0036946057807654142, 0.08272451162338257, 0.015931932255625725, 0.05030520632863045, 0.029141003265976906, 0.016244087368249893, -0.0036047452595084906, -0.05010613054037094, -0.0507909320294857, 0.044140905141830444, 0.03666583076119423, -0.008668622002005577, -0.04822736978530884, 0.009941174648702145, -0.01432876754552126, -0.03411918133497238, 0.05053000897169113, -0.026277681812644005, 0.05317869037389755, 0.002832365222275257, 0.060315486043691635, -0.0369245707988739, 0.03685317561030388, -0.046005357056856155, 0.009706801734864712, -0.009883640334010124, -0.009579713456332684, 0.011793345212936401, 0.016204899176955223, 0.08672957867383957, 0.0532958023250103, -0.05023707449436188, -0.03774644806981087, 0.015514682047069073, 0.02440498024225235, -0.03870698809623718, -0.0006336661172099411, -0.016036642715334892, 0.005976607091724873, -0.008269487880170345, -0.05420241504907608, -0.03613486513495445, 0.013444134034216404, -0.06001042574644089, 0.011078129522502422, 0.05566776916384697, -0.03563294932246208, 0.06239522621035576, -0.0023081358522176743, -0.02527940273284912, -0.007625823840498924, -0.030499668791890144, -0.07362533360719681, 0.01725746877491474, 0.017936328426003456, -0.018409548327326775, 0.0448877289891243, -0.010949535295367241, -0.04234391450881958, -0.038044705986976624, -0.04143724963068962, 0.01839747093617916, 0.04502801224589348, 0.07957213371992111, -0.01060149073600769, 0.04605846107006073, 0.00899001769721508, 0.04098694771528244, -0.0002957347605843097, -0.03694368526339531, -0.04021123796701431, -0.030540773645043373, -0.011175527237355709, 0.057171937078237534, 0.012258433736860752, 0.01572905108332634, 0.03130394220352173, 0.00511076720431447, -0.0018935083644464612, -0.022586597129702568, 0.041003741323947906, -0.002526725409552455, 0.0033068701159209013, -0.023807788267731667, -0.01681060902774334, 0.052429333329200745, -0.04504692181944847, -0.023596929386258125, 0.03152783587574959, -0.09091228991746902, 0.0677984356880188, -0.05706926807761192, -0.038929082453250885, 0.007520842831581831, 0.003838595002889633, 0.04451845586299896, 0.01903250440955162, 0.04743243753910065, 0.07304118573665619, 0.009016752243041992, 0.0016360690351575613, 0.0029386761598289013, 0.010350874625146389, 0.030872464179992676, 0.026425287127494812, -0.03800579905509949, 0.045828819274902344, -0.007287335582077503, -0.003337945556268096, -0.06052222102880478, 0.056601352989673615, -0.0463947169482708, -0.2874116599559784, 0.028822535648941994, 0.028903603553771973, -0.060142289847135544, 0.010457810945808887, -0.021816538646817207, 0.010442797094583511, -0.04515529423952103, -0.005832773167639971, 0.04408281296491623, -0.033080484718084335, -0.04958939924836159, -0.023746414110064507, 0.011577515862882137, 0.0020002545788884163, 0.014272729866206646, 0.0338536836206913, -0.03600802272558212, 0.0026794830337166786, 0.04951946809887886, -0.02317303977906704, -0.07405190914869308, 0.03863614797592163, 0.03543943166732788, 0.0391610711812973, 0.05367647483944893, -0.08364205062389374, 0.05534287169575691, -0.039667028933763504, 0.011117490008473396, 0.021471571177244186, -0.020560340955853462, -0.008824015036225319, -0.026633217930793762, -0.016483180224895477, -0.02737721987068653, 0.02897643856704235, 0.0032116672955453396, 0.006623130291700363, 0.003304974175989628, -0.007846720516681671, -0.006015921477228403, -0.008060753345489502, 0.022311627864837646, 0.06188919395208359, -0.00006803910946473479, -0.0818726047873497, -0.013550999574363232, -0.03169641271233559, 0.08323188871145248, -0.02493693307042122, -0.03235584497451782, -0.017459744587540627, 0.030014248564839363, -0.007861117832362652, -0.012518264353275299, -0.0098416768014431, -0.021313190460205078, -0.04892902076244354, -0.02026262879371643, -0.0064143287017941475, -0.020306123420596123, -0.020011892542243004, -0.010088032111525536, 0.020057182759046555, -0.06233413890004158, -0.05307028442621231, -0.015318823046982288, 0.08038464188575745, 0.008368450216948986, -0.011649400927126408, 0.007829616777598858, 0.006421067751944065, -0.10301872342824936, 0.00040332009666599333, -0.020433900877833366, -0.024733159691095352, 0.012223223224282265, 0.010437767021358013, 0.03341352567076683, -0.037466663867235184, -0.035888198763132095, 0.031894244253635406, 0.007624715566635132, 0.024978388100862503, -0.00585844274610281, 0.024814756587147713, 0.017872076481580734, -0.023207474499940872, 0.017476320266723633, 0.06920336186885834, -0.02472052350640297, -0.020713305100798607, -0.024778353050351143, 0.027324512600898743, 0.002806240925565362, 0.01191206555813551, -0.029097404330968857, 0.005238433834165335, 0.034367822110652924, 0.0009203997324220836, -0.06385339796543121, 0.04102977365255356, -0.012103987857699394, 0.013510163873434067, -0.02013515681028366, -0.05032586678862572, 0.01766490563750267, 0.05440763384103775, 0.023948803544044495, -0.004429581109434366, -0.020780466496944427, -0.004370575305074453, -0.04958857223391533, -0.05087874457240105, -0.03170391544699669, 0.026176655665040016, 0.05260029062628746, -0.035754524171352386, -0.014517565257847309, -0.057204440236091614, -0.0001476252218708396, 0.0021969471126794815, 0.02160155586898327, -0.059036314487457275, -0.038326311856508255, -0.024002118036150932, -0.009274390526115894, 0.007288707885891199, 0.016306668519973755, -0.014254479669034481, 0.03410734981298447, 0.029558075591921806, -0.03936760127544403, -0.005219785030931234, -0.030480865389108658, -0.047523584216833115, -0.04346444457769394, -0.0020030259620398283, -0.011980169452726841, -0.014423243701457977, 0.041943907737731934, -0.003108704462647438, 0.020401643589138985, 0.04679517447948456, 0.0025310867931693792, 0.03379279747605324, -0.01072822604328394, 0.01541321910917759, -0.0005545871099457145, -0.0018377575324848294, -0.0808192789554596, 0.022349851205945015, -0.03864467516541481, -0.04744825139641762, -0.02792632021009922, 0.035652488470077515, -0.02353029139339924, -0.039932310581207275, -0.003660736372694373, 0.003365844953805208, -0.062380511313676834, -0.04867756739258766, -0.020146379247307777, 0.030760135501623154, 0.06819146126508713, -0.006255351472645998, 0.0009663527016527951, -0.027908053249120712, -0.018703464418649673, 0.005610786844044924, -0.002175314584746957, -0.05905340984463692, -0.014844773337244987, -0.014958749525249004, -0.0005081138806417584, -0.023691833019256592, -0.02411741204559803, 0.05724833160638809, 0.013973843306303024, -0.009767165407538414, -0.02208944782614708, 0.005605107638984919, 0.02092975564301014, 0.020020226016640663, 0.009849976748228073, -0.002306262031197548, -0.01289357803761959, -0.02200400084257126, -0.030683284625411034, -0.03418328985571861, -0.006406308151781559, 0.0025356695987284184, 0.009761231951415539, -0.028409229591488838, -0.06373117119073868, 0.03395528346300125, 0.018352871760725975, 0.020389677956700325, 0.012757421471178532, -0.016290290281176567, 0.008028045296669006, -0.042765211313962936, 0.0423051156103611, 0.06571992486715317, -0.06465981155633926, 0.009104209020733833, 0.014133219607174397, 0.017000915482640266, 0.010070933029055595, -0.00745942909270525, -0.059827253222465515, -0.020812034606933594, -0.012209266424179077, 0.005103530362248421, -0.0749785378575325, -0.02268971875309944, -0.025095956400036812, -0.007946212776005268, -0.006943991873413324, -0.016223516315221786, -0.028827233240008354, -0.022482821717858315, -0.027751661837100983, -0.028571084141731262, 0.007408374920487404, -0.02433036081492901, 0.006730788387358189, 0.034901492297649384, -0.028859546408057213, 0.01145327091217041, -0.029328223317861557, 0.03917011618614197, 0.02548375353217125, -0.01804272271692753, -0.00004489246930461377, -0.07201047241687775, -0.0033019466791301966, 0.013152826577425003, 0.0463150329887867, -0.038335174322128296, -0.010193639434874058, -0.03943035751581192, -0.013860034756362438, -0.01666140742599964, 0.0028142351657152176, -0.018368694931268692, -0.004845002666115761, 0.01415260974317789, 0.0673082023859024, 0.013975007459521294, 0.04113248363137245, -0.00188347976654768, 0.00471139419823885, 0.046849414706230164, -0.05879094451665878, -0.012645683251321316, -0.022954273968935013, -0.0666433647274971, 0.011060117743909359, 0.0045654126442968845, 0.03536549583077431, -0.037497784942388535, 0.031554292887449265, 0.0266354251652956, 0.04522154852747917, 0.03576742485165596, -0.00712177250534296, 0.03032592125236988, -0.04865841567516327, 0.014740119688212872, -0.07987284660339355, 0.037078890949487686, 0.032166849821805954, -0.013326120562851429, 0.014017509296536446, 0.007321765646338463, -0.027188781648874283, 0.05320735648274422, -0.06686200946569443, -0.012442214414477348, 0.03135238215327263, -0.0011836779303848743, -0.02208871766924858, 0.033183030784130096, -0.08136468380689621, 0.023393303155899048, 0.03535760939121246, -0.04028884693980217, 0.004576575476676226, -0.009607487358152866, 0.059666331857442856, 0.002508674981072545, 0.02891005575656891, -0.024337364360690117, -0.005026443395763636, 0.07235999405384064, 0.015768256038427353, 0.011829478666186333, 0.049083441495895386, -0.007190616335719824, 0.03751213848590851, 0.05154712498188019, 0.008647270500659943, -0.034266602247953415, 0.025832997635006905, -0.00868612714111805, -0.05774068459868431, 0.03474360331892967, -0.0026978396344929934, -0.04030303284525871, -0.039347853511571884, 0.048354726284742355, 0.026475204154849052, -0.023570047691464424, -0.038353417068719864, 0.0067014750093221664, -0.05063985288143158, 0.00313251162879169, -0.0059799146838486195, -0.014330592006444931, -0.043632522225379944, 0.052138552069664, -0.0028569912537932396, 0.0044015441089868546, 0.0787496343255043, -0.0008546017925255001, 0.008727547712624073, -0.036262065172195435, 0.09150340408086777, 0.06694269925355911, 0.06648619472980499, 0.011534539982676506, 0.06838341057300568, -0.010345066897571087, -0.0298567283898592, 0.031990498304367065, -0.0077931834384799, -0.04194352775812149, -0.03473256900906563, 0.017465129494667053, 0.0406050831079483, 0.0036370863672345877, 0.0642649382352829, -0.01564224436879158, -0.00404786691069603, 0.01315414160490036, 0.05220543593168259, 0.013132233172655106, 0.07139566540718079, 0.007986025884747505, 0.022234423086047173, 0.00011337713658576831, -0.03491651639342308, 0.011291489005088806, -0.05603712797164917, -0.029891671612858772, 0.04633903503417969, -0.012612382881343365, 0.028264932334423065, -0.001268666354008019, 0.024060824885964394, 0.07575861364603043, -0.03009149245917797, 0.01003324892371893, -0.006224407814443111, 0.05416781082749367, -0.018349677324295044, 0.027759792283177376, -0.021545929834246635, -0.02220960706472397, -0.006703823804855347, -0.018454864621162415, -0.00936981663107872, -0.017247138544917107, -0.015561094507575035, 0.054595332592725754, -0.024709604680538177, 0.010371497832238674, 0.027895012870430946, -0.004059201572090387, -0.03544037416577339, -0.04721154645085335, -0.039431650191545486, -0.031108619645237923, -0.050323255360126495, -0.04260080307722092, 0.00846080668270588, -0.005757091101258993, -0.03567168489098549, -0.0028463604394346476, -0.026494640856981277, -0.0323999747633934, 0.035409022122621536, -0.045409224927425385, -0.019562117755413055, 0.029165994375944138, 0.035614266991615295, 0.01914949342608452, 0.010133474133908749, 0.027003098279237747, 0.001348974066786468, -0.011286811903119087, -0.02891533449292183, 0.02748638205230236, 0.03411540389060974, -0.00014753788127563894, 0.03190276399254799, -0.07459355890750885, 0.013380060903728008, 0.014698530547320843, 0.0023134856019169092, -0.05248202383518219, 0.005772873759269714, 0.0026379588525742292, -0.011235203593969345, 0.07288563251495361, -0.0348125658929348, 0.010153955779969692, -0.04787155240774155, -0.010589015670120716, -0.013517577201128006, 0.023186100646853447, 0.048741042613983154, -0.015056068077683449, 0.0885685384273529, -0.0033176273573189974, -0.00665002828463912, -0.05352049693465233, 0.014264347031712532, 0.017298880964517593, -0.008545961230993271, -0.007726851385086775, -0.027589265257120132, -0.025284087285399437, -0.07337646186351776, -0.018223607912659645, 0.028177782893180847, -0.011628449894487858, -0.029203535988926888, 0.028406081721186638, 0.02063104882836342, -0.020011525601148605, 0.01959002949297428, -0.04520706087350845, 0.027582861483097076, -0.01865566149353981, -0.01804838888347149, -0.024845091626048088, 0.026642274111509323, -0.011205464601516724, -0.02414529398083687, 0.02509244531393051, -0.03783359006047249, -0.006667538080364466, 0.007019317243248224, 0.033555302768945694, 0.02451472356915474, -0.004156438633799553, -0.011923613026738167 ]
[ -0.10095017403364182, -0.03036191686987877, -0.002447371371090412, -0.05095568299293518, 0.02199866808950901, -0.026793302968144417, -0.0436776801943779, 0.026436736807227135, -0.01645430363714695, -0.01247566007077694, 0.012020178139209747, 0.0153226088732481, 0.006792702246457338, 0.005411325488239527, 0.09294480830430984, 0.02007688581943512, 0.011227995157241821, -0.07673347741365433, 0.004323053173720837, 0.02952691726386547, 0.017259445041418076, -0.01622229814529419, -0.012493486516177654, -0.030533121898770332, 0.00295124645344913, 0.022001681849360466, 0.017180657014250755, -0.02514711767435074, 0.010789629071950912, -0.1855708509683609, -0.007461294531822205, 0.007732674479484558, 0.03668130189180374, -0.030261879786849022, 0.001305876299738884, 0.044358186423778534, 0.0186334066092968, 0.008245034143328667, -0.009523971006274223, 0.02213321626186371, 0.02896035835146904, 0.04476642236113548, -0.056605808436870575, -0.040088001638650894, 0.011805227026343346, -0.025961842387914658, 0.006182163022458553, -0.026541823521256447, -0.01369252149015665, 0.008160126395523548, -0.04903323948383331, -0.02347859926521778, -0.019045112654566765, -0.024398304522037506, -0.00894028041511774, 0.01947135664522648, 0.02142394706606865, 0.09480971097946167, -0.0010843061609193683, 0.04307043179869652, 0.036180198192596436, -0.04553154855966568, -0.11068486422300339, 0.10736028105020523, 0.06754259020090103, 0.045827656984329224, -0.05483724921941757, -0.0201778132468462, -0.02157525159418583, 0.10650545358657837, -0.002957819262519479, -0.01793918013572693, -0.02102470025420189, 0.061913780868053436, 0.024323664605617523, 0.01426704227924347, 0.02984541654586792, 0.018024098128080368, 0.03816087171435356, -0.05352828651666641, -0.027014149352908134, -0.01203449722379446, -0.00861409492790699, 0.010723601095378399, -0.03517947345972061, 0.018175158649683, 0.02187025547027588, 0.06841370463371277, 0.04684340953826904, 0.04029369354248047, 0.060036949813365936, -0.02407352440059185, 0.048346225172281265, -0.01669069565832615, -0.08797992765903473, -0.004669115412980318, -0.02469264529645443, -0.015597209334373474, -0.06896427273750305, 0.4597010910511017, -0.012586175464093685, -0.029797514900565147, 0.08255568891763687, 0.03217484429478645, -0.0027108248323202133, -0.00362917548045516, 0.023359231650829315, -0.031990259885787964, 0.019946029409766197, -0.010965698398649693, 0.009387134574353695, 0.03261905163526535, 0.054158929735422134, -0.05392083898186684, 0.010118256323039532, 0.031838301569223404, -0.01199819054454565, 0.01921282894909382, 0.014479008503258228, -0.03501051291823387, 0.015869928523898125, 0.019067805260419846, 0.05562121048569679, 0.007521655410528183, 0.0035156377125531435, -0.020145108923316002, 0.047571439296007156, 0.03580385819077492, -0.004735467955470085, 0.02060486003756523, 0.04439694806933403, -0.05104866623878479, -0.05197824910283089, 0.009808996692299843, 0.015708256512880325, 0.0035685477778315544, 0.009586181491613388, -0.008743254467844963, -0.017131799831986427, 0.05422985553741455, -0.0067724259570240974, 0.02042545937001705, 0.033430855721235275, -0.04172619432210922, -0.042539045214653015, 0.0885678082704544, 0.052511852234601974, -0.01700153946876526, -0.04010389372706413, -0.06847593188285828, 0.002440163167193532, 0.025492999702692032, 0.037933822721242905, -0.06079954653978348, 0.029026737436652184, 0.007149145472794771, 0.05924440547823906, -0.0221101101487875, -0.0743485540151596, -0.007280315272510052, -0.017361601814627647, 0.006343651097267866, -0.049411844462156296, 0.04258229210972786, 0.040841735899448395, -0.12465451657772064, 0.0022874583955854177, 0.002022949978709221, 0.023351695388555527, -0.04533199220895767, -0.026276754215359688, 0.01992849074304104, -0.011106233112514019, -0.0316600501537323, 0.045113418251276016, -0.03925140202045441, -0.06489534676074982, -0.002573632635176182, 0.043844543397426605, 0.017034178599715233, 0.01841909997165203, 0.007412838749587536, -0.03461829945445061, -0.003595357993617654, -0.043449945747852325, -0.1083347350358963, -0.03770360350608826, 0.005655182991176844, -0.022269532084465027, -0.036869727075099945, -0.04362504184246063, -0.03844548016786575, -0.05221640691161156, 0.08172143995761871, -0.023349380120635033, -0.03804352506995201, 0.0007331466767936945, -0.03284870460629463, -0.02213687263429165, -0.03636954724788666, 0.00610164413228631, -0.001870097010396421, -0.035129204392433167, 0.005117108579725027, -0.04737307131290436, 0.08553223311901093, 0.03922886401414871, -0.06666938960552216, 0.09287554770708084, 0.04275844618678093, -0.0485323891043663, -0.0019679798278957605, 0.03517269343137741, 0.01680840365588665, -0.010014556348323822, -0.005844209808856249, 0.008164293132722378, 0.04696949943900108, 0.011661066673696041, 0.05428028851747513, -0.025923781096935272, 0.028148744255304337, -0.006145751103758812, -0.32345640659332275, -0.04549964889883995, -0.0239101629704237, -0.0011384084355086088, -0.011293925344944, -0.056362610310316086, 0.023883478716015816, -0.022885369136929512, 0.01319895964115858, 0.010120486840605736, 0.09568125754594803, -0.039226334542036057, 0.019926659762859344, -0.07293766736984253, -0.0010946086840704083, -0.0008825328550301492, -0.032457903027534485, -0.01817730814218521, -0.027685662731528282, 0.017504479736089706, -0.02582872286438942, -0.021032210439443588, 0.0014525330625474453, -0.08309720456600189, -0.019400058314204216, -0.03525972738862038, 0.08879762142896652, 0.011151178739964962, 0.07148120552301407, -0.06230736896395683, 0.04446973651647568, -0.007689286023378372, 0.014044949784874916, -0.09016238898038864, -0.0016126929549500346, 0.005216343328356743, 0.020590364933013916, -0.03666860982775688, -0.004151428118348122, -0.02893662266433239, -0.04549959674477577, 0.02388645149767399, -0.03931545466184616, -0.04941844940185547, -0.07085197418928146, 0.00011365117825334892, -0.036796364933252335, -0.027038676664233208, -0.006200125440955162, 0.04928785189986229, -0.003494666190817952, 0.022659501060843468, 0.014336688444018364, 0.020170846953988075, -0.0022504364605993032, -0.04392054304480553, -0.0460345633327961, 0.03543270006775856, 0.02944367565214634, 0.0020179226994514465, 0.039204519242048264, 0.04760363698005676, 0.009549501352012157, -0.04642700031399727, 0.015195216983556747, -0.0033256320748478174, 0.029147488996386528, -0.0034309786278754473, 0.052038129419088364, -0.02535431645810604, -0.03176479786634445, 0.08639869838953018, -0.004965059459209442, 0.0000472253595944494, 0.02789846621453762, 0.002591292606666684, -0.0012632623547688127, 0.011647199280560017, 0.00321767246350646, -0.02345382608473301, 0.0033815023489296436, -0.015314004383981228, 0.0413663312792778, -0.02331528067588806, -0.029036682099103928, 0.03531482443213463, -0.008559058420360088, -0.08550739288330078, 0.028401672840118408, 0.013844593428075314, -0.017610767856240273, 0.014630809426307678, -0.014661862514913082, -0.057520028203725815, 0.06770133972167969, -0.008717217482626438, -0.22974978387355804, -0.014247294515371323, 0.07127224653959274, 0.05452665314078331, -0.0225896704941988, 0.029157446697354317, 0.0487983413040638, -0.04039262235164642, -0.004619175102561712, 0.016260966658592224, -0.007293068803846836, 0.016115903854370117, 0.003266572952270508, -0.029005970805883408, 0.06963688880205154, 0.009711870923638344, 0.056607551872730255, -0.011718573048710823, 0.01375348400324583, -0.031173819676041603, 0.021313153207302094, -0.011060971766710281, 0.1627189815044403, 0.021101204678416252, 0.010437853634357452, 0.039399098604917526, -0.003928299527615309, 0.028402358293533325, 0.062227264046669006, 0.00945669412612915, -0.013239733874797821, -0.004402277059853077, 0.024944119155406952, 0.026149531826376915, 0.01001534704118967, -0.07661592960357666, -0.023899100720882416, 0.021434903144836426, 0.0017145456513389945, 0.004204083234071732, 0.01956661231815815, 0.007192700635641813, 0.008868526667356491, 0.05892113223671913, 0.053790945559740067, -0.008247045800089836, -0.03310783952474594, -0.009941832162439823, -0.06509962677955627, -0.001778878620825708, -0.05124356970191002, -0.07089723646640778, 0.0050176167860627174, -0.028600122779607773, 0.017419012263417244, 0.08994521200656891, 0.04371983930468559, -0.01511881873011589, -0.026307325810194016, 0.018686112016439438, 0.011287241242825985, -0.014567520469427109, 0.11264874786138535, 0.03964759036898613, 0.040026597678661346 ]
[ 0.008577068336308002, 0.00496271625161171, 0.02533038519322872, 0.01327318511903286, 0.01822843961417675, -0.005272866226732731, 0.0078101507388055325, 0.02545846812427044, -0.04362300783395767, 0.029642408713698387, -0.0049874610267579556, -0.0058945706114172935, 0.009217575192451477, -0.012415538541972637, 0.036306414753198624, 0.01879892125725746, 0.010648950934410095, -0.0196281298995018, 0.023876657709479332, 0.014528553001582623, -0.009971668012440205, 0.027085384353995323, -0.0019134045578539371, 0.0017386708641424775, -0.009871616959571838, 0.0264967679977417, -0.01701400987803936, 0.01146270427852869, 0.03458327427506447, -0.16078902781009674, -0.03290364146232605, -0.01535822730511427, 0.001628770143724978, -0.008695455268025398, 0.0003995025181211531, -0.0015200624475255609, -0.011525007896125317, -0.01636848971247673, 0.0006441610748879611, -0.0054874783381819725, -0.0062889214605093, -0.0011891542235389352, -0.0184218380600214, 0.01377840619534254, -0.01580442674458027, -0.029077161103487015, -0.00325290416367352, -0.012515823356807232, -0.006690680515021086, -0.022102367132902145, -0.012712191790342331, -0.010988646186888218, -0.02341754175722599, -0.0013422818155959249, 0.014829535968601704, 0.01317836157977581, 0.019514845684170723, -0.005935002584010363, 0.024254117161035538, 0.0048262872733175755, 0.006634712219238281, -0.010312043130397797, -0.032039765268564224, -0.025051318109035492, -0.00008100902050500736, 0.0013819526648148894, -0.005034583620727062, 0.005292713642120361, -0.03241244703531265, 0.0015895628603175282, -0.024347418919205666, 0.008502624928951263, -0.011302107945084572, -0.026291821151971817, -0.0025662186089903116, -0.01427412498742342, -0.010161013342440128, 0.010693315416574478, 0.017374927178025246, 0.011896937154233456, -0.02739742211997509, 0.021452024579048157, 0.026868171989917755, 0.010191740468144417, 0.017972052097320557, 0.0020944273564964533, 0.025005247443914413, 0.009145723655819893, 0.05029296875, 0.01969328336417675, -0.021158181130886078, 0.006032451055943966, 0.011270097456872463, 0.021890295669436455, -0.09738899767398834, -0.011302788741886616, 0.005097553133964539, -0.0019240629626438022, -0.0314919576048851, 0.8652966618537903, 0.019023235887289047, -0.01880989409983158, 0.030122272670269012, 0.026212209835648537, -0.0005029000458307564, -0.010281163267791271, 0.007836977019906044, 0.012937168590724468, 0.0048854839988052845, -0.034675661474466324, 0.004232650622725487, 0.025040457025170326, 0.01644771173596382, -0.004319894593209028, 0.019515806809067726, 0.015096412971615791, -0.006538097281008959, 0.0025760051794350147, 0.006554245017468929, 0.018635287880897522, 0.053910788148641586, 0.01862526871263981, 0.029180048033595085, 0.015797892585396767, 0.03136483207345009, -0.1937410533428192, -0.00017633032985031605, -8.12855151745978e-33, 0.03121776320040226, 0.0056150080636143684, -0.030452700331807137, -0.029507415369153023, -0.0009063496836461127, -0.030089421197772026, 0.023613447323441505, 0.04129497706890106, -0.021213887259364128, -0.029951296746730804, -0.010746819898486137, -0.01409171149134636, 0.006590384524315596, -0.007546552456915379, 0.03755735233426094, -0.011692535132169724, 0.0026801300700753927, 0.04385332763195038, 0.011001195758581161, 0.030700085684657097, 0.011510570533573627, -0.007791655603796244, -0.018741348758339882, -0.014277844689786434, 0.0314057357609272, 0.019901933148503304, 0.016599757596850395, 0.030608845874667168, -0.011918210424482822, -0.03512916341423988, -0.014482763595879078, 0.029461216181516647, 0.005643772892653942, -0.011753280647099018, -0.0002586509217508137, -0.0440751314163208, -0.0484762117266655, -0.004456231836229563, -0.03191768750548363, -0.013448109850287437, -0.04217434674501419, 0.015366844832897186, -0.07114575058221817, -0.003706499934196472, 0.018750455230474472, -0.0010707214241847396, 0.004260593559592962, 0.0034481158945709467, 0.00510499207302928, -0.023617686703801155, -0.01893548108637333, 0.01593823730945587, 0.007882763631641865, 0.01122412271797657, -0.0038163517601788044, 0.005622412543743849, -0.004852552432566881, -0.026892468333244324, -0.011863051913678646, 0.01841937005519867, 0.0041479370556771755, -0.009787045419216156, -0.022476769983768463, 0.026933658868074417, -0.026168212294578552, -0.0060784039087593555, 0.010447032749652863, 0.005250730086117983, 0.0053229425102472305, -0.02045082300901413, -0.05543219670653343, -0.023816240951418877, 0.0032275968696922064, -0.003180174855515361, -0.012104762718081474, -0.00014206510968506336, 0.00432379636913538, 0.03078595921397209, -0.03145894408226013, 0.018612053245306015, -0.011748738586902618, -0.008455557748675346, 0.00782312173396349, -0.025402264669537544, -0.003587804501876235, -0.007243180647492409, 0.026481863111257553, -0.0025029161479324102, -0.028665810823440552, 0.01515373308211565, 0.028646040707826614, 0.0023718534503132105, 0.013332773000001907, -0.01743057183921337, -0.015502559021115303, 8.833976697647774e-33, -0.010377089492976665, -0.00620949687436223, -0.019074635580182076, 0.008052350021898746, 0.009283381514251232, -0.0077527426183223724, 0.022773323580622673, -0.014667912386357784, -0.04914151132106781, 0.03546126186847687, -0.017427941784262657, 0.014161712490022182, -0.04933073744177818, -0.004154639784246683, 0.019413210451602936, -0.019801171496510506, 0.04332339018583298, -0.03661661595106125, 0.040422916412353516, 0.02219383232295513, 0.04468996822834015, 0.0005457992083393037, -0.004721422679722309, -0.032986801117658615, 0.02280401811003685, 0.05377617105841637, 0.0042321993969380856, 0.009957295842468739, 0.005589627660810947, -0.009870846755802631, 0.010486800223588943, -0.011846868321299553, 0.013864049687981606, -0.008963102474808693, -0.024400830268859863, 0.014858663082122803, -0.022793050855398178, -0.01526549644768238, 0.017231440171599388, 0.0014051211765035987, 0.029687540605664253, 0.014761916361749172, 0.015824582427740097, 0.014842149801552296, 0.0010135462507605553, 0.020543409511446953, -0.0020088593009859324, -0.012037482112646103, -0.008165780454874039, -0.01813136786222458, 0.014109116978943348, 0.01023591123521328, 0.01355498842895031, 0.004249537363648415, -0.03434054180979729, -0.02711872011423111, -0.02548796497285366, -0.009464384987950325, -0.008555546402931213, 0.018377428874373436, -0.0028872224502265453, 0.016288181766867638, -0.005129605066031218, -0.013016662560403347, -0.026119621470570564, -0.01660233363509178, -0.004170575644820929, 0.008723449893295765, -0.022855397313833237, 0.005066129378974438, -0.030914586037397385, 0.009291304275393486, -0.011068901978433132, 0.047097839415073395, -0.009268444031476974, -0.01526980847120285, -0.02124093472957611, -0.010463474318385124, -0.031703878194093704, 0.01866450533270836, 0.004100631456822157, 0.0256863534450531, -0.0003877936687786132, -0.008683472871780396, -0.015877515077590942, 0.04794662445783615, -0.004894686862826347, 0.02280811034142971, 0.011493267491459846, -0.02919633314013481, -0.009675788693130016, 0.010164798237383366, -0.005113773513585329, 0.00036304377135820687, -0.02419164963066578, -1.3796159770151917e-8, 0.012777113355696201, 0.009741000831127167, -0.024281363934278488, 0.006945696193724871, 0.03431466966867447, 0.01200148370116949, -0.016949297860264778, 0.002621754538267851, -0.005504574626684189, 0.01969745196402073, 0.022143464535474777, -0.01873166672885418, -0.015048147179186344, 0.027458837255835533, 0.03164840489625931, -0.046830128878355026, -0.012002203613519669, 0.01950288750231266, 0.022404978051781654, -0.0048512062057852745, 0.046909354627132416, 0.07335910946130753, -0.006945434492081404, 0.01409256923943758, 0.0330331027507782, -0.0156923346221447, 0.007985781878232956, -0.07890079915523529, 0.018079791218042374, 0.043281495571136475, 0.008331676945090294, -0.021831834688782692, -0.004896008875221014, 0.03337177261710167, -0.009317916817963123, -0.034013424068689346, 0.030405791476368904, -0.011798925697803497, 0.011174678802490234, -0.00244167260825634, -0.008403114974498749, 0.020258424803614616, 0.022481827065348625, -0.020668603479862213, -0.027796801179647446, 0.00480648735538125, -0.025988932698965073, -0.02528132125735283, 0.044251322746276855, -0.034810591489076614, 0.027139844372868538, -0.00785896833986044, -0.011542321182787418, 0.035099390894174576, 0.0246390663087368, 0.019960695877671242, 0.014824537560343742, -0.04650891199707985, -0.04539918154478073, 0.007980656810104847, 0.02715008333325386, -0.009537280537188053, -0.013921339996159077, -0.009622124955058098 ]
getting-real-book-review
https://markhneedham.com/blog/2010/03/08/getting-real-book-review
false
2010-03-01 23:12:01
A reminder about context switching
[ "agile", "context-switching" ]
[ "Agile" ]
I've spent most of my time working on agile software development teams over the last few years so for the most part each pair is only working on one story, keeping the work in progress low and allowing them to focus on that piece of work until it's completed. My pair and I ended up in a therefore somewhat unusual situation last week where we were attempting to work on three things at the same time and weren't doing a particularly great job on any of them. It wasn't immediately obvious to me that we were doing this since the two extra tasks that we were working on were related to deployment issues on different environments. However we eventually started making mistakes and in rushing to rectify those made even more mistakes since we were still trying to concentrate on three different things. It became much more obvious at this point that we needed to just pick one of the items and focus on that until we were done which also served as a reminder that it's good to use the story board as an indicator of what everyone is working on. In this case two of the tasks we were working on weren't on the story board otherwise it would have been more obvious to the rest of the team that we shouldn't have been working on two of them. I've never really noticed the problems of context switching before so it was interesting to get such a stark example to remind me of its dangers.
null
null
[ 0.017855113372206688, 0.002810964360833168, -0.025821425020694733, 0.03347025066614151, 0.09338167309761047, 0.0044635566882789135, 0.010208223015069962, 0.03863586485385895, 0.006444556638598442, -0.008805165998637676, -0.04510214552283287, 0.01746523194015026, -0.05925239995121956, 0.0209815613925457, -0.05151614174246788, 0.07407957315444946, 0.05726419389247894, -0.002537189284339547, 0.014453521929681301, -0.008947208523750305, 0.02783512882888317, 0.06690088659524918, 0.019784310832619667, 0.03992250934243202, 0.037684421986341476, -0.00450054882094264, 0.013745544478297234, -0.018468108028173447, -0.05519482493400574, -0.0021019731648266315, 0.03139614686369896, -0.011505638249218464, 0.0005857293726876378, 0.0011649630032479763, 0.00817203614860773, -0.020437680184841156, -0.012006263248622417, 0.036630380898714066, -0.01437503844499588, -0.026113606989383698, -0.0642489492893219, 0.0405578687787056, -0.04134560748934746, -0.014332498423755169, -0.012538326904177666, 0.02208762988448143, -0.027452850714325905, -0.014855386689305305, -0.0016519922064617276, -0.005744186695665121, -0.0782427117228508, 0.02129790373146534, 0.006569295190274715, -0.02732721157371998, -0.023317907005548477, 0.04578558728098869, 0.010264960117638111, -0.05660796910524368, 0.0013065774692222476, -0.035045139491558075, -0.03455306217074394, -0.02302606962621212, 0.0016400242457166314, 0.04545575752854347, 0.03932299092411995, -0.03655721992254257, 0.012396734207868576, 0.0296101626008749, -0.01042395830154419, 0.022615179419517517, -0.025913555175065994, 0.003564956597983837, -0.03557481989264488, -0.01587563194334507, -0.00598876504227519, -0.054072633385658264, 0.024612491950392723, 0.05277340114116669, 0.01628703996539116, 0.05973554402589798, -0.018624233081936836, 0.034371018409729004, -0.0006312204641290009, 0.013126476667821407, -0.004674574825912714, -0.047929517924785614, 0.009683012031018734, -0.026609864085912704, -0.058318447321653366, 0.05741891264915466, 0.028382111340761185, -0.08065345883369446, 0.017945867031812668, 0.05005655065178871, 0.0010352575918659568, 0.010207618586719036, 0.019284121692180634, 0.029885025694966316, 0.004047058988362551, -0.00602317787706852, -0.02196277678012848, 0.0066037713550031185, -0.01497132983058691, 0.023113403469324112, -0.08770450949668884, 0.002841179957613349, -0.012446645647287369, -0.017016980797052383, -0.026933487504720688, 0.007586909923702478, -0.016986586153507233, 0.010333547368645668, -0.02562265656888485, 0.022771859541535378, -0.0745694637298584, 0.07502980530261993, 0.007985888980329037, -0.03386290743947029, -0.009832493029534817, -0.022278012707829475, 0.042788971215486526, 0.020473582670092583, -0.015241841785609722, 0.0821007564663887, -0.016036462038755417, 0.012616094201803207, -0.05166889354586601, 0.051003143191337585, -0.009778809733688831, -0.05153569579124451, -0.026566317304968834, 0.05572154000401497, -0.04117663577198982, -0.011170761659741402, 0.004108994267880917, -0.013351904228329659, 0.00444668298587203, 0.01843857951462269, 0.0031039267778396606, 0.04250243678689003, -0.012665750458836555, -0.007300156634300947, 0.002632877789437771, 0.026468047872185707, 0.024047935381531715, 0.004282677546143532, -0.004868298768997192, -0.030863584950566292, -0.044052060693502426, -0.013077547773718834, 0.01627948135137558, -0.010737061500549316, 0.023928677663207054, -0.03465951234102249, 0.027286449447274208, 0.08595886826515198, 0.0206688791513443, -0.006480662152171135, -0.020678414031863213, 0.027595218271017075, 0.03386398032307625, 0.01808815822005272, -0.0026198779232800007, 0.019508011639118195, 0.001931050093844533, -0.006950003560632467, -0.006250979844480753, 0.008487108163535595, 0.01207953691482544, 0.013145350851118565, -0.07702159881591797, -0.040634121745824814, 0.04484780877828598, -0.045433636754751205, -0.03044014237821102, 0.05318102613091469, 0.08027596771717072, 0.06261873245239258, 0.00961010530591011, 0.03126515448093414, -0.0730060264468193, 0.038688767701387405, 0.004041209351271391, 0.012673551216721535, 0.043799906969070435, -0.006944871973246336, 0.041187286376953125, 0.022619185969233513, -0.009642308577895164, 0.02701324038207531, -0.09542068094015121, -0.09614162892103195, -0.0024103601463139057, -0.006173180416226387, 0.03633918985724449, -0.05455001816153526, 0.010312414728105068, 0.07254873961210251, 0.011019625701010227, 0.05805862322449684, 0.022422797977924347, 0.014353640377521515, 0.002673602430149913, -0.03923850506544113, -0.038603346794843674, 0.0767032653093338, 0.04276939481496811, 0.008600389584898949, -0.049669016152620316, 0.022080520167946815, -0.01786818914115429, 0.013167217373847961, 0.04360496997833252, 0.003283808706328273, 0.05636225640773773, -0.005465635564178228, 0.05265885218977928, -0.04265280067920685, 0.04352380707859993, -0.06954702734947205, 0.00949572492390871, -0.002468694234266877, -0.015358690172433853, 0.01305978000164032, -0.01457813661545515, 0.0890510082244873, 0.04993452504277229, -0.05369793623685837, -0.026621662080287933, 0.02587016113102436, 0.014245009049773216, -0.03614963963627815, 0.0007597329095005989, -0.009341428056359291, 0.015854278579354286, 0.008687383495271206, -0.06281188875436783, -0.04905138537287712, 0.01719459518790245, -0.05475592613220215, 0.014117949642241001, 0.04967319592833519, -0.010461759753525257, 0.09153002500534058, 0.015449408441781998, -0.011934805661439896, 0.0005200915620662272, 0.005782656837254763, -0.051614146679639816, 0.010289144702255726, 0.01421169750392437, -0.03274933993816376, 0.052945952862501144, -0.016293207183480263, -0.05690542235970497, -0.04393040016293526, -0.02326725237071514, -0.004586893133819103, 0.0492178313434124, 0.06269051879644394, -0.006200913805514574, 0.060639336705207825, -0.003787235589697957, 0.023786773905158043, 0.006093405187129974, -0.03142845258116722, -0.03994191810488701, -0.02342960052192211, -0.004362085368484259, 0.009547650814056396, 0.014971227385103703, 0.004282399546355009, 0.038988109678030014, 0.006771106272935867, -0.004697775933891535, -0.02014853060245514, 0.043738096952438354, -0.0020382709335535765, -0.002285146852955222, -0.02228645607829094, -0.01630525104701519, 0.04103412479162216, -0.026487059891223907, -0.01597491279244423, 0.02826325222849846, -0.0753527581691742, 0.052708446979522705, -0.05491338297724724, -0.057155270129442215, -0.01089551206678152, 0.013812718912959099, 0.046517256647348404, 0.01698116399347782, 0.01565578766167164, 0.05294093117117882, 0.018463801592588425, 0.016214290633797646, 0.01502777636051178, 0.006809938699007034, 0.03604449704289436, 0.02170153148472309, -0.01855190470814705, 0.051859207451343536, -0.01797672174870968, 0.004037761595100164, -0.05971458926796913, 0.04632392153143883, -0.04430656135082245, -0.2930571734905243, 0.01643338054418564, 0.016471795737743378, -0.03594669699668884, 0.016848912462592125, -0.018554700538516045, 0.021427899599075317, -0.0502847358584404, -0.018597079440951347, 0.013925442472100258, -0.045053839683532715, -0.029272906482219696, 0.002451037522405386, 0.03972320631146431, 0.0175978634506464, 0.024433178827166557, 0.050709620118141174, -0.026474040001630783, 0.024890819564461708, 0.05505123361945152, -0.02879016101360321, -0.07173437625169754, -0.00786646082997322, 0.008165820501744747, 0.0552348829805851, 0.054169703274965286, -0.07533726096153259, 0.05753238871693611, -0.05293922871351242, -0.01893525756895542, 0.019910110160708427, -0.005838075187057257, 0.007717206608504057, -0.03368799388408661, 0.00043142432696186006, -0.028395960107445717, 0.0416298508644104, -0.0009310954483225942, 0.004476521629840136, -0.011581545695662498, -0.004509445279836655, -0.050587959587574005, 0.012124141678214073, 0.027721591293811798, 0.05363834649324417, 0.0008397229248657823, -0.0747532844543457, -0.013327316381037235, -0.020672542974352837, 0.08347222208976746, -0.015863100066781044, -0.016386445611715317, 0.004696420859545469, 0.029076244682073593, -0.002165829762816429, -0.03170115500688553, 0.011367734521627426, -0.03283130005002022, -0.03487018868327141, -0.02336188778281212, -0.02068842574954033, -0.042477384209632874, -0.012976459227502346, -0.052817460149526596, 0.02007421664893627, -0.05252465233206749, -0.04956799000501633, -0.013263760134577751, 0.049735479056835175, -0.03443225845694542, -0.03258877992630005, -0.004772195592522621, 0.016086427494883537, -0.09944155812263489, 0.0027733847964555025, -0.012340348213911057, -0.038858093321323395, -0.0052912477403879166, 0.002594844438135624, 0.022295741364359856, -0.031166283413767815, -0.06568458676338196, 0.01391542050987482, 0.001849571941420436, 0.02671503648161888, -0.008522465825080872, 0.06573048233985901, 0.03190745413303375, -0.04557478800415993, 0.026809917762875557, 0.048781830817461014, 0.00966570246964693, -0.026301808655261993, 0.0023830896243453026, 0.03573774918913841, 0.005082629155367613, -0.0013193270424380898, -0.015897896140813828, 0.00848942156881094, 0.023963280022144318, -0.019463440403342247, -0.06234709918498993, 0.01436180341988802, -0.01755092851817608, 0.007998883724212646, 0.0005109092453494668, -0.056694578379392624, 0.015149302780628204, 0.04650342836976051, 0.02913905493915081, 0.019112620502710342, -0.00923555251210928, 0.018565990030765533, -0.05249956622719765, -0.023871339857578278, -0.01187782734632492, 0.017471931874752045, 0.04373553767800331, -0.015590012073516846, 0.010235858149826527, -0.07500980794429779, 0.004499716218560934, -0.004534224513918161, 0.009950121864676476, -0.06540042906999588, -0.015972888097167015, -0.027238234877586365, -0.022977104410529137, 0.0246796403080225, 0.017300819978117943, -0.01191218663007021, 0.020211337134242058, 0.024244144558906555, -0.05090505629777908, 0.008526953868567944, -0.03286426514387131, -0.0667729526758194, -0.026005815714597702, -0.0034656368661671877, -0.009791893884539604, -0.02312738448381424, 0.0472598560154438, 0.0018956090789288282, 0.00040472549153491855, 0.025591492652893066, -0.005299835465848446, 0.0008754500304348767, -0.02612902969121933, 0.019863178953528404, 0.019161181524395943, 0.0019898524042218924, -0.06217910349369049, 0.02189180999994278, -0.03803648054599762, -0.016945255920290947, -0.02158629335463047, 0.03294043615460396, -0.03078213520348072, -0.02825714647769928, -0.0027790337335318327, -0.008464754559099674, -0.05832504853606224, -0.035247888416051865, -0.021140949800610542, 0.021917706355452538, 0.052021678537130356, -0.014729893766343594, -0.0016164652770385146, -0.012235907837748528, -0.011285957880318165, -0.0017597178230062127, 0.004578527063131332, -0.05425037443637848, 0.005820047575980425, 0.0008172784000635147, 0.018125195056200027, 0.013804404996335506, -0.013869605027139187, 0.043595217168331146, 0.011942113749682903, 0.0021390377078205347, -0.012961845844984055, 0.011248334310948849, 0.022643717005848885, 0.02907678484916687, 0.022526727989315987, -0.002855229889973998, 0.01173950731754303, -0.021269002929329872, -0.029664864763617516, -0.030069416388869286, 0.0071878996677696705, -0.005728706251829863, 0.019127802923321724, -0.02845400758087635, -0.07179635018110275, 0.057182591408491135, 0.026679866015911102, 0.021003784611821175, -0.01106267236173153, -0.034477561712265015, 0.011118118651211262, -0.022136233747005463, 0.02510550618171692, 0.07381940633058548, -0.07102973014116287, 0.00636111618950963, -0.00837629847228527, 0.001616733381524682, 0.0024147345684468746, -0.02202986553311348, -0.0258012767881155, -0.0383760891854763, -0.016993146389722824, 0.026740552857518196, -0.08643544465303421, -0.019196104258298874, -0.027239570394158363, 0.021629400551319122, -0.0005198942380957305, -0.017564019188284874, -0.032659903168678284, -0.010226290673017502, -0.029124615713953972, -0.029591603204607964, 0.006591542158275843, -0.03607495129108429, -0.006193993147462606, 0.011287338100373745, -0.014785636216402054, -0.015774013474583626, -0.03191583976149559, 0.02801613137125969, 0.009809927083551884, -0.027142783626914024, -0.003280850825831294, -0.03679284080862999, -0.011310522444546223, 0.018439684063196182, 0.02651810459792614, -0.014944307506084442, -0.018828092142939568, -0.01577366702258587, -0.028823133558034897, -0.03658917546272278, -0.000995590933598578, -0.025946712121367455, -0.005941429175436497, 0.016125600785017014, 0.0652267187833786, 0.027272356674075127, 0.04563146457076073, 0.006486362777650356, -0.013623388484120369, 0.055010903626680374, -0.056909892708063126, -0.030834373086690903, -0.033960673958063126, -0.06622540205717087, -0.003978257533162832, 0.036946337670087814, 0.011962135322391987, -0.054698776453733444, 0.03911471739411354, 0.02298823930323124, 0.04233449324965477, 0.03327123075723648, 0.005392943974584341, 0.02444962039589882, -0.045017924159765244, -0.006825675722211599, -0.07542289048433304, -0.0013858703896403313, 0.02749188244342804, -0.018064748495817184, 0.002273281803354621, 0.003865880658850074, -0.023235859349370003, 0.03803617134690285, -0.0640483945608139, -0.01709798350930214, 0.04631058871746063, 0.0011522670974954963, 0.0007714523235335946, 0.02327013947069645, -0.0653010904788971, 0.055204641073942184, 0.023264873772859573, -0.051776789128780365, -0.017800932750105858, -0.0018740084487944841, 0.05821894481778145, 0.006201134994626045, 0.03099605068564415, -0.03779648244380951, -0.02073661983013153, 0.0913299173116684, 0.014776247553527355, -0.001871395157650113, 0.06690564751625061, -0.015879273414611816, 0.0387473925948143, 0.03318570926785469, 0.007821859791874886, -0.028629720211029053, 0.026084065437316895, -0.006934656295925379, -0.05654666945338249, 0.01783604733645916, 0.009979869239032269, -0.01998145878314972, -0.03110101819038391, 0.05726395174860954, 0.016023412346839905, -0.018234675750136375, -0.05840917304158211, 0.009372451342642307, -0.06790965050458908, 0.013140387833118439, -0.017212532460689545, -0.0054415022023022175, -0.07681082934141159, 0.052019279450178146, -0.006063017528504133, 0.012661531567573547, 0.06891748309135437, 0.0022673362400382757, 0.0013751612277701497, -0.02297353558242321, 0.07955177128314972, 0.06454586237668991, 0.08185340464115143, 0.012965964153409004, 0.06372829526662827, -0.026334581896662712, -0.03946609050035477, 0.04150696471333504, -0.0016602801624685526, -0.004801484756171703, -0.017197102308273315, 0.028234463185071945, 0.04363872855901718, 0.009508274495601654, 0.06571032851934433, 0.011432739906013012, -0.015596738085150719, 0.017575504258275032, 0.03938758373260498, 0.02011757530272007, 0.06948745995759964, 0.008429393172264099, 0.026220448315143585, 0.010139166377484798, -0.0243837833404541, 0.013433055020868778, -0.048257891088724136, -0.014611693099141121, 0.041551195085048676, -0.002939589088782668, 0.03448912128806114, 0.023066386580467224, 0.0009727122960612178, 0.08697916567325592, -0.028672678396105766, 0.0105820894241333, -0.03743816539645195, 0.05193743109703064, -0.011796997860074043, 0.03486233949661255, -0.00705184368416667, -0.02124900557100773, 0.000020833080270676874, -0.037332721054553986, -0.035285044461488724, -0.015911150723695755, -0.014283276163041592, 0.06245132163167, -0.03241628035902977, 0.02797599323093891, 0.03937026113271713, 0.013500986620783806, -0.033591128885746, -0.06878333538770676, -0.03692440688610077, -0.030849255621433258, -0.0315328985452652, 0.0024449496995657682, 0.03837256878614426, 0.00813952274620533, -0.024750517681241035, 0.003428378142416477, -0.027287404984235764, -0.04380158707499504, 0.025967298075556755, -0.04346137121319771, -0.018196064978837967, 0.0035213015507906675, 0.029112016782164574, 0.02853940799832344, 0.014499041251838207, 0.044565096497535706, -0.014309506863355637, -0.011550646275281906, -0.010677821934223175, 0.024553081020712852, 0.023966431617736816, -0.0025943999644368887, 0.0028306858148425817, -0.07943219691514969, 0.0184155385941267, 0.04240452125668526, -0.01371544599533081, -0.06479936838150024, 0.033291056752204895, 0.009807299822568893, -0.04494519531726837, 0.0607931949198246, -0.023544074967503548, 0.011308543384075165, -0.058580752462148666, -0.005335194990038872, -0.016325514763593674, 0.02669772319495678, 0.03890364617109299, -0.04729462042450905, 0.08157386630773544, 0.03724626451730728, 0.0004463265649974346, -0.03875601291656494, 0.0077436016872525215, 0.011823710054159164, -0.012516404502093792, 0.0004527632554527372, -0.042181435972452164, -0.03089454583823681, -0.07594983279705048, -0.029282769188284874, 0.01714615523815155, -0.013052497059106827, -0.03041577897965908, 0.026134932413697243, 0.00922230165451765, -0.05108584091067314, 0.02013450488448143, -0.04691486433148384, 0.05037655681371689, -0.03650006279349327, -0.015809953212738037, 0.005703277885913849, -0.0013657730305567384, -0.0006974656716920435, -0.0031895486172288656, 0.01833941787481308, -0.04221700504422188, 0.036589108407497406, 0.011605990119278431, 0.016349799931049347, 0.048679374158382416, 0.01956241950392723, 0.01167676504701376 ]
[ -0.07860419899225235, 0.0021267456468194723, -0.003533707931637764, -0.03971684351563454, 0.031236562877893448, -0.043432850390672684, 0.00523081561550498, 0.019009200856089592, 0.008958779275417328, -0.028019975870847702, 0.011339498683810234, -0.012743071652948856, 0.006866725627332926, -0.01765109971165657, 0.08903160691261292, 0.015940692275762558, -0.015101530589163303, -0.06434766948223114, 0.009981952607631683, 0.020593605935573578, 0.0005258660530671477, -0.0364268459379673, -0.03277409449219704, -0.006066571455448866, 0.012663991190493107, 0.04465823620557785, 0.0076407999731600285, -0.04031722992658615, -0.00958265084773302, -0.19168248772621155, 0.0031533048022538424, 0.023037036880850792, 0.03936078026890755, -0.017118239775300026, 0.03144575655460358, 0.08632460236549377, -0.01282434817403555, 0.040313396602869034, -0.0027304692193865776, 0.04448680207133293, 0.02544705756008625, 0.029063154011964798, -0.05781989172101021, -0.0679742619395256, -0.0003211359726265073, -0.022556094452738762, -0.0016419444000348449, -0.025042027235031128, -0.023826653137803078, 0.002491462742909789, -0.0553864911198616, -0.041816022247076035, -0.017384251579642296, -0.008488106541335583, -0.013937188312411308, 0.04535547271370888, 0.03839219734072685, 0.05126006156206131, -0.0017851912416517735, 0.040657807141542435, 0.02176860347390175, -0.04227949678897858, -0.1331823170185089, 0.05974169448018074, 0.047798626124858856, 0.06971229612827301, -0.06324861198663712, -0.014342715963721275, -0.013444052077829838, 0.10584495216608047, -0.006320497952401638, -0.030866021290421486, -0.01675097830593586, 0.050004974007606506, 0.03952129930257797, 0.024300603196024895, -0.012684187851846218, 0.02145942486822605, 0.015226045623421669, -0.0428127758204937, -0.03891368955373764, -0.021105483174324036, -0.022560186684131622, 0.006012975703924894, -0.043254368007183075, 0.012470301240682602, -0.00630470085889101, 0.058781757950782776, 0.047460053116083145, 0.01827518828213215, 0.07037536054849625, 0.005720455199480057, 0.044309552758932114, -0.0045411777682602406, -0.08186034113168716, -0.025618677958846092, -0.007270388770848513, 0.01915535144507885, -0.06086002290248871, 0.4652765691280365, -0.01772209256887436, -0.03861590474843979, 0.08111656457185745, 0.0443313829600811, -0.0026083432603627443, 0.017297234386205673, 0.02953454665839672, -0.05103803053498268, 0.01651318371295929, -0.010424522683024406, 0.02918328158557415, 0.008609780110418797, 0.051608845591545105, -0.056093908846378326, 0.014684229157865047, 0.0514034703373909, 0.005811359267681837, 0.019945427775382996, -0.01847570762038231, -0.006375649478286505, -0.008417938835918903, 0.00816899724304676, 0.01306957844644785, 0.013466360978782177, -0.02775426208972931, -0.0346578024327755, 0.03758364915847778, 0.04824143275618553, 0.01588914729654789, -0.04270073026418686, 0.04805457964539528, -0.05121247097849846, -0.05769488587975502, -0.0016546162078157067, -0.002902844687923789, 0.007644935045391321, 0.030028091743588448, -0.031165199354290962, -0.009112740866839886, 0.039448775351047516, 0.018231187015771866, 0.005067751742899418, 0.019554398953914642, -0.03203071653842926, -0.038847535848617554, 0.13124164938926697, 0.010967524722218513, -0.037128373980522156, -0.000201282455236651, -0.03016144037246704, -0.03262099623680115, 0.016514159739017487, 0.017127124592661858, -0.037897881120443344, 0.04775328189134598, -0.0036479863338172436, 0.09032885730266571, -0.003140217624604702, -0.05894244834780693, 0.008308548480272293, -0.0050893244333565235, -0.029263485223054886, -0.048423293977975845, 0.03302088752388954, 0.0820075124502182, -0.0909101739525795, 0.0009647806291468441, -0.002778112655505538, 0.030702006071805954, -0.049531128257513046, -0.01922883465886116, 0.0133695462718606, 0.0036600923631340265, -0.014745261520147324, 0.050344813615083694, -0.029598573222756386, -0.04972609505057335, 0.017450524494051933, 0.04891218617558479, 0.01834692806005478, 0.0372607596218586, 0.032701604068279266, -0.014501679688692093, 0.006465659011155367, -0.027830416336655617, -0.08876273781061172, -0.02449694089591503, -0.009957531467080116, -0.02641889452934265, -0.016374772414565086, -0.017633233219385147, -0.03421713784337044, -0.04943833127617836, 0.0991872176527977, -0.03520456328988075, -0.024450864642858505, 0.03600483015179634, -0.022032272070646286, -0.0488213486969471, -0.017427949234843254, -0.05846605449914932, 0.03087339550256729, -0.01654188707470894, 0.01803106628358364, -0.05873860791325569, 0.04038861766457558, 0.02066079154610634, -0.04590916261076927, 0.08731842041015625, 0.04387102648615837, -0.03602217137813568, -0.03311567008495331, 0.017897797748446465, 0.030289340764284134, 0.012312883511185646, -0.016079293563961983, -0.014271966181695461, 0.035765789449214935, 0.004464775323867798, 0.02662268653512001, -0.03173341974616051, 0.04544666036963463, 0.0010958986822515726, -0.3250694274902344, -0.03981417417526245, -0.03317755460739136, 0.0008511404739692807, -0.007743604015558958, -0.012545032426714897, 0.02168702334165573, -0.015709739178419113, -0.02911725640296936, -0.026444165036082268, 0.07281697541475296, -0.028590213507413864, -0.005311260931193829, -0.09478278458118439, 0.0025705730076879263, -0.007412484381347895, -0.06711207330226898, -0.013012012466788292, -0.022607963532209396, 0.010007679462432861, 0.037425871938467026, -0.027380889281630516, -0.015635261312127113, -0.05739317834377289, -0.0030877774115651846, -0.027328846976161003, 0.11568006873130798, 0.014874801971018314, 0.0788741409778595, -0.02338501438498497, 0.021119296550750732, -0.002093668095767498, 0.03357661888003349, -0.10364577174186707, 0.014635547064244747, -0.01123250275850296, 0.023904142901301384, -0.05555713549256325, 0.02446810156106949, -0.026538575068116188, -0.05794024467468262, 0.015514176338911057, -0.07243631035089493, -0.04455932602286339, -0.06135451793670654, -0.003860635682940483, -0.03896383196115494, -0.028583429753780365, -0.02334127388894558, 0.08090124279260635, -0.006418525706976652, -0.013738783076405525, 0.012336702086031437, -0.0012288126163184643, -0.00045038084499537945, -0.033531613647937775, -0.0941280722618103, 0.043172091245651245, 0.014668772928416729, -0.02372768335044384, 0.02265794761478901, 0.07847253233194351, 0.03729935362935066, -0.036488600075244904, 0.015323945321142673, 0.02225189469754696, 0.0017325966618955135, 0.003214110853150487, 0.02306331880390644, -0.03478562459349632, -0.0071275257505476475, 0.07949121296405792, 0.014200389385223389, -0.04715985432267189, 0.013067187741398811, 0.022648537531495094, -0.012280573137104511, 0.010630089789628983, 0.0005484526627697051, -0.02967832237482071, 0.02081172540783882, -0.03803979605436325, 0.022827908396720886, -0.03188139945268631, 0.0034116338938474655, 0.024568190798163414, -0.002109907567501068, -0.05017121881246567, 0.08391150832176208, 0.01573246158659458, -0.021179258823394775, 0.00015663643716834486, -0.035503216087818146, -0.031074069440364838, 0.08958809077739716, -0.011768401600420475, -0.24201765656471252, 0.01631416566669941, 0.06514489650726318, 0.030017618089914322, -0.01737692393362522, 0.051630329340696335, 0.005470197647809982, -0.040277738124132156, 0.012508510611951351, 0.016124431043863297, 0.007995453663170338, 0.005968958605080843, -0.004147333092987537, -0.02249378338456154, 0.03417215868830681, 0.022191306576132774, 0.0471363365650177, -0.00013295162352733314, 0.042434245347976685, -0.015743134543299675, 0.009738150052726269, 0.011590813286602497, 0.15740922093391418, 0.001732171862386167, 0.04074925184249878, 0.011985882185399532, -0.0011989203048869967, 0.000031364055757876486, 0.049873631447553635, 0.010869409888982773, 0.016531921923160553, -0.014727408066391945, 0.04183559864759445, 0.02274981327354908, 0.007520135026425123, -0.07999428361654282, 0.009392425417900085, 0.029872847720980644, 0.02459467574954033, 0.021820560097694397, 0.023476360365748405, 0.00196442985907197, -0.00008964919106801972, 0.00860133022069931, 0.06143873929977417, -0.004860859829932451, 0.005531442817300558, -0.052525416016578674, -0.05581113323569298, -0.015121950767934322, -0.03572515398263931, -0.06118708848953247, 0.007106745149940252, -0.00012042062007822096, 0.023299016058444977, 0.07263793051242828, 0.02693476527929306, -0.017261534929275513, 0.0003643987001851201, -0.006449673790484667, -0.0037963599897921085, -0.02209622785449028, 0.09765097498893738, -0.012249683029949665, 0.029975300654768944 ]
[ 0.02155723236501217, -0.036568764597177505, 0.01262381300330162, 0.027376290410757065, 0.0043725911527872086, 0.014234833419322968, -0.001647746772505343, -0.00994263868778944, 0.027566565200686455, -0.00042266820673830807, -0.015295623801648617, 0.015139508061110973, -0.002705708146095276, 0.021821528673171997, 0.042856354266405106, -0.013686337508261204, 0.012056826613843441, -0.008414773270487785, 0.04528149217367172, 0.020287683233618736, 0.005560641176998615, 0.018498549237847328, -0.02223474718630314, -0.03299438953399658, -0.0074540977366268635, 0.0007195665966719389, -0.04386403411626816, -0.011936216615140438, 0.020884083583950996, -0.13142739236354828, -0.0003387649776414037, -0.015282967127859592, 0.008276884444057941, 0.00463802320882678, 0.049742452800273895, -0.01476895622909069, 0.0070205871015787125, 0.03418819233775139, 0.005676319357007742, -0.005256532225757837, -0.016243696212768555, 0.016188068315386772, 0.0046891262754797935, 0.0173513013869524, -0.04345942661166191, 0.024272628128528595, -0.012669567950069904, -0.03512531891465187, -0.021265778690576553, -0.012444970197975636, -0.028834955766797066, -0.004408602137118578, -0.025601651519536972, -0.030191868543624878, 0.0003863557940348983, 0.0027007535099983215, 0.03658389300107956, 0.003915231209248304, 0.037985194474458694, -0.03461755812168121, -0.008189807645976543, 0.0027143454644829035, -0.03395765647292137, -0.02697164937853813, 0.012777097523212433, -0.02216237410902977, -0.0355653241276741, -0.00773215014487505, -0.05023820325732231, 0.004960197024047375, -0.0036612232215702534, 0.002550288802012801, 0.005916168447583914, -0.0382421538233757, 0.005644341465085745, 0.011463831178843975, 0.02938108704984188, -0.02325289323925972, 0.017276128754019737, -0.029337802901864052, -0.031963594257831573, 0.013159464113414288, -0.017742987722158432, 0.004986837971955538, 0.007622608449310064, -0.016532201319932938, -0.029409533366560936, -0.018971191719174385, 0.01742820255458355, 0.015722356736660004, -0.010128147900104523, -0.0029184753075242043, 0.03258667513728142, 0.034381456673145294, -0.08792547881603241, 0.0013538148486986756, -0.046962346881628036, 0.0027309395372867584, -0.028115810826420784, 0.8519340753555298, -0.015899773687124252, 0.0001412739948136732, 0.04274316504597664, 0.016673648729920387, 0.019815882667899132, 0.0011852583847939968, 0.0016595409251749516, -0.01599634625017643, -0.01529176440089941, -0.02135281078517437, 0.021422164514660835, 0.03492358326911926, 0.012496915645897388, 0.016870839521288872, 0.02549521066248417, 0.013240975327789783, 0.03211381286382675, -0.017674753442406654, -0.02121773734688759, 0.012805011123418808, 0.04457817226648331, 0.009223992936313152, 0.03799690306186676, 0.001497961115092039, 0.01556413434445858, -0.15734565258026123, 0.04335545003414154, -8.143694088750279e-33, 0.036431021988391876, -0.015312177129089832, -0.023315077647566795, -0.0020865444093942642, 0.00995618849992752, -0.0017120018601417542, -0.005850864574313164, -0.014102418906986713, 0.007410726509988308, -0.005435843952000141, -0.011994320899248123, 0.011676518246531487, 0.002238907851278782, -0.009709706529974937, 0.03235134109854698, -0.026465807110071182, -0.02693152241408825, 0.045256078243255615, 0.00415272219106555, 0.059141580015420914, 0.03925742581486702, -0.00628438126295805, -0.00204901653341949, 0.011264441534876823, 0.01803288236260414, -0.005301572382450104, 0.01927444338798523, 0.003199697006493807, 0.022305067628622055, -0.041531555354595184, -0.01887924037873745, 0.018229350447654724, -0.029734060168266296, -0.012759089469909668, -0.011313487775623798, -0.03785982355475426, -0.02742050029337406, -0.00021897850092500448, -0.01696891337633133, -0.010259110480546951, -0.0544467456638813, -0.0136864073574543, -0.030196422711014748, -0.0020856857299804688, 0.03457742556929588, 0.0012744987616315484, 0.027437370270490646, 0.05319497734308243, -0.018167288973927498, -0.061466533690690994, 0.01600733771920204, 0.0036228960379958153, -0.00003025841033377219, 0.006533708423376083, 0.0051337722688913345, -0.0006189517443999648, 0.01226702518761158, 0.010236034169793129, 0.039660729467868805, 0.010771292261779308, 0.016386160627007484, -0.008372021839022636, -0.03393750265240669, 0.038462620228528976, -0.0019836416468024254, 0.01774933561682701, 0.025606537237763405, 0.02737591229379177, 0.014116249047219753, -0.03531034663319588, -0.04991628974676132, -0.018063919618725777, 0.02556779235601425, -0.006340733263641596, -0.005462451372295618, -0.007379068993031979, -0.00977935642004013, 0.017890971153974533, -0.041082270443439484, 0.021188827231526375, -0.01366651151329279, 0.006412280723452568, -0.02698402851819992, -0.022169338539242744, 0.0130396019667387, -0.008877081796526909, -0.011780803091824055, -0.018647480756044388, -0.046471007168293, 0.006032570730894804, 0.01683296449482441, 0.019390879198908806, 0.012627019546926022, 0.01505039632320404, -0.0029803297948092222, 8.857083977849063e-33, -0.011891691014170647, -0.006981609854847193, -0.012411748059093952, 0.0014983025612309575, 0.03728654980659485, -0.03942204639315605, 0.022060733288526535, -0.0116786053404212, -0.06669928133487701, 0.0021007987670600414, -0.017147524282336235, -0.012620457448065281, -0.03203104808926582, 0.01179351843893528, 0.016752606257796288, 0.02343638241291046, 0.05923951044678688, 0.00753890722990036, -0.004045374691486359, -0.03492172807455063, 0.03540049120783806, -0.005835250020027161, -0.0002663392515387386, 0.014315431006252766, 0.04216662049293518, 0.06110287085175514, -0.002579476684331894, -0.0022019241005182266, 0.02366088517010212, -0.014174294658005238, -0.002772087696939707, 0.012081797234714031, 0.05331546068191528, -0.006522254552692175, -0.013843399472534657, 0.016704417765140533, -0.022593392059206963, -0.01895074173808098, 0.005541646853089333, -0.010744083672761917, 0.01633024401962757, 0.03350643068552017, 0.0001584274141350761, 0.033016227185726166, -0.027299312874674797, 0.03296196833252907, 0.003991832956671715, -0.0002667746157385409, -0.0033307047560811043, -0.015934111550450325, -0.030240964144468307, -0.00946186576038599, -0.0016176473582163453, 0.008826080709695816, 0.0003582595963962376, -0.02185726910829544, -0.01191815733909607, -0.007873955182731152, 0.014699002727866173, 0.00840871874243021, 0.0257469043135643, 0.02947954833507538, -0.0048966920003294945, -0.004455402959138155, -0.0067589464597404, 0.010117834433913231, -0.0027406555600464344, -0.006641838699579239, -0.02641555666923523, 0.03400301933288574, -0.026689626276493073, 0.017666470259428024, -0.0030366801656782627, 0.010449961759150028, 0.0166726503521204, 0.0015758192166686058, -0.039061538875103, -0.03272141516208649, -0.022165944799780846, 0.018820639699697495, -0.0035243711899966, -0.008032994344830513, 0.0004833695129491389, 0.012860432267189026, -0.0018349982565268874, 0.03577675670385361, -0.019742270931601524, 0.06457842141389847, 0.007465432398021221, -0.02373356744647026, -0.03787882998585701, -0.019690783694386482, 0.03708774223923683, 0.023221679031848907, 0.00421600416302681, -1.3819255073599379e-8, -0.001638856716454029, 0.010551424697041512, -0.011208091862499714, -0.01426337193697691, -0.005212992429733276, 0.015346808359026909, -0.020937161520123482, 0.021654177457094193, -0.01950317993760109, 0.021204985678195953, 0.002787062432616949, -0.030811669304966927, -0.036730214953422546, 0.02927343174815178, 0.05851572006940842, -0.0316103994846344, 0.008433702401816845, -0.02091939188539982, 0.030210554599761963, -0.013512038625776768, 0.0574098601937294, 0.0636642798781395, -0.012092606164515018, 0.03473805636167526, -0.01569761522114277, 0.009104197844862938, -0.055270981043577194, -0.09999141097068787, 0.029449332505464554, 0.022917576134204865, 0.029547393321990967, -0.014895210973918438, -0.010733219794929028, 0.0016760878497734666, -0.03744163736701012, -0.022155867889523506, 0.008856736123561859, 0.01360971201211214, 0.011246603913605213, 0.0072634355165064335, -0.026092499494552612, 0.018290426582098007, -0.008733382448554039, -0.02324739098548889, -0.020944876596331596, 0.022242357954382896, -0.05024534463882446, -0.011921876110136509, -0.02974518947303295, -0.04304010421037674, 0.011655592359602451, -0.03174968063831329, -0.0036092959344387054, 0.056982189416885376, 0.0010834854329004884, 0.029843853786587715, -0.020987536758184433, -0.0006789895705878735, 0.013142702169716358, -0.018327947705984116, 0.0008944236324168742, 0.00973272230476141, -0.019625728949904442, -0.024191798642277718 ]
a-reminder-about-context-switching
https://markhneedham.com/blog/2010/03/01/a-reminder-about-context-switching
false
2010-03-06 15:16:02
Javascript: The 'new' keyword
[ "javascript" ]
[ "Javascript" ]
I came across an http://ejohn.org/blog/simple-class-instantiation/[interesting post by John Resig where he describes a 'makeClass' function] that he uses in his code to create functions which can instantiate objects regardless of whether the user calls that function with or without the new keyword. The main reason that the new keyword seems to be considered harmful is because we might make assumptions in our function that it will be called with the new keyword which changes the meaning of 'this' inside that function. For example in my http://gist.github.com/317106[Bowling Game example] I assume that the 'BowlingGame' function will be called with the new keyword. I wanted to see if I could refactor that code to use the http://yuiblog.com/blog/2007/06/12/module-pattern/[module pattern] instead so as a first step I changed the instantiation of the 'bowlingGame' variable in the http://gist.github.com/317533[tests] to not call the function with 'new' to see if it would make any noticeable difference: [source,javascript] ---- Screw.Unit(function() { describe("bowling game scorecard", function() { var bowlingGame; before(function() { bowlingGame = BowlingGame(); }); ---- There is no noticeable difference in the way any of the tests work but in fact http://stackoverflow.com/questions/383402/is-javascript-s-new-keyword-considered-harmful[all of the functions I defined have been added to the global object] (in this case window) instead of onto 'BowlingGame'. I changed one of the tests to check that this was the case... [source,javascript] ---- ... it("should score a single throw", function() { console.log(window.roll); bowlingGame.roll(5); (19).times(function() { gutterBall(); }); expect(bowlingGame.score()).to(equal, 5); }); ... ---- ...which logs 'undefined' to Firebug if the new keyword is used to instantiate 'bowlingGame' and 'function()' if it wasn't. The danger here is that you could change the meaning of the 'roll' function outside of the 'BowlingGame' if you wanted to. To give a contrived example perhaps we could change 'roll' so that it actually called the original function twice instead of once: [source,javascript] ---- ... it("should score a single throw", function() { var originalRoll = window.roll; window.roll = function() { originalRoll.apply(this, arguments); originalRoll.apply(this, arguments); console.log("roll isn't what you'd expect anymore") }; bowlingGame.roll(5); (19).times(function() { gutterBall(); }); expect(bowlingGame.score()).to(equal, 5); }); ... ---- In this case you would probably never do that because it's just a small bit of code but you wouldn't want to add random functions to the global object in any reasonably sized javascript application. http://stackoverflow.com/questions/383402/is-javascript-s-new-keyword-considered-harmful#383503[Shog9 points to a bit of code which allows us to stop users from calling constructor functions without the new keyword]: [source,javascript] ---- BowlingGame = function() { if ( !(this instanceof arguments.callee) ) throw Error("Constructor called as a function"); ... ---- When 'BowlingGame' is called without the new keyword then 'this' will refer to 'window' which means that it won't be an instance of 'arguments.callee' which in this case is the 'BowlingGame' function.
null
null
[ -0.02205541916191578, -0.0009010520880110562, -0.009309195913374424, 0.012485028244554996, 0.030542800202965736, -0.009426504373550415, 0.041412271559238434, 0.020659370347857475, -0.0016834319103509188, -0.007570226211100817, -0.014827636070549488, 0.02360394597053528, -0.07317360490560532, 0.028950637206435204, 0.012014839798212051, 0.06648024916648865, 0.0942855253815651, -0.03320084884762764, -0.0005114414379931986, 0.013108693063259125, -0.015204086899757385, 0.08160576969385147, -0.02149592898786068, 0.046874746680259705, 0.02015882171690464, 0.005180492997169495, -0.003970015794038773, 0.012202373705804348, -0.06255491822957993, -0.017122836783528328, 0.018840355798602104, 0.028089255094528198, 0.004435355309396982, -0.018152572214603424, 0.0009973462438210845, -0.01860075630247593, -0.018363123759627342, 0.0010009828256443143, 0.02224220521748066, 0.05600260570645332, -0.061474695801734924, 0.021918322890996933, -0.013927347026765347, -0.022600015625357628, -0.07694431394338608, -0.010042762383818626, -0.04110096022486687, 0.007265328895300627, -0.03216475620865822, -0.0052850376814603806, -0.057201240211725235, 0.02629556879401207, -0.011377057060599327, -0.017885101959109306, -0.013760337606072426, 0.04415593296289444, 0.04071345925331116, -0.07309114933013916, 0.015788570046424866, -0.06604094058275223, 0.01968175359070301, 0.019376490265130997, 0.0001665267627686262, 0.0354217104613781, -0.004685970954596996, 0.011894297786056995, -0.0034632880706340075, 0.04303274303674698, -0.04827434942126274, -0.027100468054413795, -0.02324194274842739, -0.0111033720895648, -0.02279799059033394, -0.011887704953551292, -0.027042189612984657, -0.040922798216342926, -0.017766328528523445, 0.057004231959581375, -0.023459743708372116, 0.04543628916144371, 0.006797958631068468, 0.02510283701121807, 0.04986773803830147, 0.004249092657119036, 0.00791877880692482, -0.045392170548439026, -0.06939756870269775, 0.027278054505586624, -0.030235055834054947, 0.07603505998849869, 0.005501038860529661, -0.06075895577669144, 0.02267499826848507, -0.004375617019832134, 0.007622451055794954, 0.02256009913980961, 0.012707930989563465, -0.01417870819568634, -0.009325792081654072, -0.027091028168797493, -0.036467134952545166, -0.020233413204550743, 0.01870712637901306, 0.007975403219461441, -0.06231633201241493, 0.016701364889740944, 0.01787031814455986, -0.043154891580343246, -0.01967950165271759, 0.00686044292524457, -0.016413897275924683, 0.024327000603079796, -0.006585617549717426, 0.0018148531671613455, -0.0768314003944397, 0.06774234771728516, 0.0022914407309144735, -0.015493664890527725, -0.01652354933321476, 0.05218677967786789, 0.036504633724689484, -0.007327382452785969, -0.011263055726885796, 0.09075962007045746, 0.04608171060681343, 0.037232108414173126, -0.011186502873897552, 0.07281535118818283, 0.01941150613129139, -0.05882565677165985, 0.005879905074834824, 0.038056135177612305, -0.004373219329863787, 0.008639554493129253, 0.004771096166223288, -0.013796314597129822, -0.03258432447910309, -0.019965965300798416, 0.02980966679751873, 0.046758975833654404, 0.009286829270422459, -0.06221357733011246, 0.01085743773728609, -0.023116331547498703, 0.009389914572238922, 0.005462493281811476, -0.004063818603754044, -0.004467744380235672, 0.0011151039507240057, 0.031633246690034866, 0.015677278861403465, 0.05907358229160309, 0.07736200094223022, -0.022088009864091873, 0.015104481019079685, 0.09704212099313736, 0.009857811965048313, -0.015025961212813854, -0.02365916222333908, 0.05549198016524315, 0.04520533233880997, 0.005930476821959019, -0.00093877810286358, 0.019392406567931175, 0.010329234413802624, 0.002272416837513447, 0.024065017700195312, 0.07567079365253448, -0.003666355274617672, -0.008155757561326027, -0.040863484144210815, -0.04670718312263489, 0.06955474615097046, -0.01986621879041195, -0.013895426876842976, 0.017703622579574585, 0.05995609983801842, -0.03514167293906212, 0.06803075969219208, 0.007438582833856344, -0.06840360909700394, 0.008106653578579426, -0.005075334571301937, 0.02646568976342678, 0.01885231025516987, -0.025388281792402267, 0.061376675963401794, -0.016716279089450836, -0.01045150589197874, 0.02479507587850094, -0.05634637922048569, -0.06371356546878815, -0.029494618996977806, 0.013177980668842793, 0.07178313285112381, -0.04383920133113861, -0.025480542331933975, 0.08784791082143784, 0.04212675243616104, 0.019930077716708183, -0.012302576564252377, -0.01682688668370247, 0.002391038928180933, -0.023339495062828064, -0.04084547609090805, 0.032540805637836456, 0.019008250907063484, -0.0403917171061039, -0.023759767413139343, 0.02485981211066246, -0.021005956456065178, 0.008580735884606838, 0.05081377550959587, -0.013026900589466095, 0.029318150132894516, 0.021574538201093674, 0.04600466042757034, -0.030170729383826256, 0.031044654548168182, -0.05779983103275299, 0.006407515611499548, -0.010595873929560184, 0.02223026566207409, -0.0260601993650198, 0.00784492027014494, 0.14158880710601807, 0.06655459851026535, -0.017721591517329216, -0.0444214902818203, 0.011995410546660423, -0.006197675596922636, -0.03917379677295685, 0.024317020550370216, -0.005271397065371275, -0.01286755409091711, -0.0068033733405172825, -0.014433336444199085, 0.011396496556699276, -0.0006055618287064135, -0.062138691544532776, 0.01965058408677578, 0.08955060690641403, -0.022592101246118546, 0.05745522677898407, -0.012006607837975025, -0.01552909892052412, 0.042628705501556396, -0.04202379286289215, -0.026562675833702087, 0.0020780330523848534, 0.024489594623446465, -0.00910418201237917, 0.055342819541692734, -0.03241678327322006, -0.04496373236179352, -0.002874939236789942, -0.06304943561553955, 0.011125301010906696, 0.03440764546394348, 0.04686736688017845, 0.014636881649494171, 0.07219591736793518, 0.0016057975590229034, -0.008951214142143726, -0.022818073630332947, -0.06262647360563278, -0.008015531115233898, -0.006775130983442068, -0.013047289103269577, 0.04695478081703186, 0.003842615522444248, 0.012517725117504597, -0.005537793971598148, -0.00033674572478048503, -0.044066350907087326, 0.009915558621287346, 0.0035652625374495983, -0.02033529430627823, -0.0527130626142025, -0.031657688319683075, -0.02445639856159687, 0.04492941498756409, -0.04698586091399193, -0.04627175256609917, 0.007640944793820381, -0.056136276572942734, 0.023556483909487724, -0.06777438521385193, -0.04549727216362953, 0.00722472695633769, 0.03914739936590195, 0.06545770168304443, -0.02950412407517433, 0.02746344543993473, 0.07354115694761276, -0.00637188833206892, -0.005936611443758011, 0.01277013961225748, 0.010732871480286121, 0.03143987059593201, 0.007859393954277039, 0.027505895122885704, 0.025237925350666046, -0.014385326765477657, -0.02757095918059349, -0.018139008432626724, 0.006021490786224604, 0.007598719093948603, -0.2607221305370331, 0.02709886059165001, 0.011682857759296894, -0.002984828082844615, 0.011063193902373314, -0.00851019099354744, 0.01652175560593605, -0.0320725254714489, -0.02746758982539177, 0.02725728414952755, -0.026694683358073235, -0.05142099782824516, -0.02139119617640972, 0.06473124027252197, -0.005212563090026379, -0.0031875749118626118, -0.00888792984187603, -0.03355783969163895, -0.02693657949566841, 0.07151950150728226, -0.02326153591275215, -0.07566752284765244, -0.015016532503068447, 0.047802288085222244, 0.03271375596523285, 0.0219333004206419, -0.06268424540758133, 0.01521658431738615, -0.05444469675421715, -0.003929543308913708, -0.003567617852240801, -0.010806546546518803, -0.011450930498540401, 0.0011121381539851427, -0.008004831150174141, 0.017692193388938904, 0.01339938398450613, -0.0010451938724145293, -0.012995106168091297, 0.01838805340230465, -0.06020579859614372, -0.030185379087924957, -0.026929566636681557, 0.02229546196758747, 0.08553919196128845, -0.0067105223424732685, -0.03264099732041359, -0.004687162581831217, -0.06843141466379166, 0.06373497098684311, -0.023449692875146866, -0.055848632007837296, -0.030670978128910065, 0.045309700071811676, -0.018520181998610497, -0.009689775295555592, -0.006520780734717846, -0.02261662296950817, -0.023924116045236588, -0.042633332312107086, 0.005430485121905804, -0.012656684964895248, -0.0359274297952652, 0.012784095481038094, -0.005925637669861317, -0.07871654629707336, -0.07143635302782059, -0.006071246694773436, 0.05747642740607262, 0.028421808034181595, -0.011416302993893623, -0.008319612592458725, 0.012664299458265305, -0.10291294008493423, -0.020991388708353043, -0.021001288667321205, -0.0013072945876047015, -0.021153438836336136, 0.014393950812518597, 0.04119853302836418, -0.03484884276986122, -0.054396241903305054, 0.033925533294677734, -0.0065314313396811485, 0.01071260403841734, -0.007839038036763668, 0.027576366439461708, 0.0010256503010168672, -0.0067425379529595375, -0.005630738567560911, 0.06387362629175186, 0.0037353099323809147, -0.008844112977385521, -0.02623097598552704, 0.0006591298151761293, 0.05840212479233742, 0.01321122795343399, -0.03235041722655296, -0.010455306619405746, 0.03928428888320923, 0.02605319209396839, -0.04863501712679863, -0.007828817702829838, -0.0031444814521819353, -0.0023120634723454714, 0.01761995442211628, -0.047946587204933167, 0.03384721279144287, 0.055369146168231964, -0.009186775423586369, 0.008582528680562973, -0.02978859655559063, -0.0019213755149394274, -0.03109000250697136, -0.0204556155949831, -0.058549609035253525, 0.0026014933828264475, -0.0009821810526773334, -0.015808161348104477, -0.0336105115711689, -0.06022997573018074, 0.02724381908774376, 0.00523272342979908, -0.020356083288788795, -0.0492311529815197, -0.05500780791044235, -0.015996431931853294, 0.004649953451007605, 0.038823213428258896, 0.022668756544589996, -0.006778855342417955, 0.0463699996471405, 0.01289734523743391, -0.017028378322720528, 0.022270342335104942, -0.025082644075155258, -0.0417080819606781, -0.012529483065009117, -0.04103894159197807, -0.014630414545536041, 0.00599202886223793, 0.0006472905515693128, 0.005895069334656, 0.003906491678208113, 0.043108612298965454, -0.004645396955311298, 0.012467801570892334, 0.025990528985857964, -0.024806756526231766, 0.015508548356592655, 0.026780059561133385, -0.08268249779939651, 0.0452866367995739, -0.04248117282986641, -0.0381496362388134, -0.02503330074250698, 0.004104955587536097, -0.0009380627307109535, -0.02960859052836895, -0.03406965360045433, 0.022933194413781166, -0.026200322434306145, -0.031817398965358734, -0.03662071004509926, 0.003299224656075239, 0.061526671051979065, 0.016894742846488953, 0.033353179693222046, -0.013420840725302696, -0.00821312703192234, 0.016281330958008766, 0.009080909192562103, -0.05182158201932907, -0.006043524947017431, -0.00845226552337408, 0.0006115574506111443, -0.0037223671097308397, -0.0014424037653952837, -0.010700827464461327, -0.010373209603130817, 0.004856316838413477, 0.012688810005784035, 0.02204555831849575, 0.021227052435278893, 0.05040143057703972, 0.0193548072129488, 0.013551704585552216, 0.008700482547283173, -0.027039242908358574, -0.021646352484822273, -0.049713537096977234, -0.01877797767519951, -0.005498263984918594, 0.042862650007009506, -0.04729904606938362, -0.06728246808052063, 0.0024803453125059605, 0.04246656969189644, -0.011297405697405338, -0.01645026169717312, 0.01564652845263481, 0.022832274436950684, -0.014546839520335197, 0.006256639491766691, 0.04065800830721855, -0.05479372292757034, 0.022261537611484528, -0.012872669845819473, 0.024476347491145134, 0.010090389288961887, 0.026029085740447044, -0.032744232565164566, -0.02127365581691265, -0.05437537655234337, -0.008582341484725475, -0.03227967023849487, -0.023887110874056816, -0.02837216481566429, 0.003984293434768915, 0.013740010559558868, -0.028138594701886177, -0.00838520098477602, 0.014397400431334972, -0.019640937447547913, -0.034113895148038864, 0.023796774446964264, -0.030739108100533485, 0.006941639818251133, 0.07229458540678024, -0.05124591290950775, 0.06159216910600662, -0.022750798612833023, 0.036713581532239914, -0.004400128964334726, -0.0199130792170763, -0.02662293240427971, -0.07571293413639069, 0.03624182567000389, -0.006527685560286045, 0.03486746549606323, 0.0021037471015006304, -0.003146175295114517, -0.022099848836660385, 0.004795094486325979, -0.0666705071926117, -0.0286239106208086, -0.0231106448918581, -0.03830929100513458, 0.030921289697289467, 0.08295177668333054, 0.013553906232118607, 0.039909426122903824, -0.002013810910284519, -0.009328615851700306, 0.03911292552947998, -0.08018063008785248, -0.01492990367114544, -0.006257081404328346, -0.03808318078517914, 0.02116805873811245, 0.002055415650829673, 0.022545117884874344, -0.09556356072425842, 0.04469439759850502, 0.004011601209640503, 0.05392041057348251, 0.03935953229665756, -0.020557228475809097, 0.0020432823803275824, -0.02627055160701275, -0.011601800099015236, -0.10735690593719482, 0.011756137944757938, 0.04418634623289108, 0.02113422006368637, -0.011514212004840374, -0.024421028792858124, -0.02472248673439026, 0.043981749564409256, -0.053181443363428116, -0.003062563482671976, 0.04790656268596649, 0.007694292347878218, -0.02105732262134552, 0.0024479555431753397, -0.051650941371917725, 0.0202168021351099, 0.020321568474173546, -0.017072556540369987, -0.015467201359570026, -0.036155927926301956, 0.05727457255125046, 0.018759835511446, 0.026921292766928673, -0.0021077636629343033, 0.011136665940284729, 0.06668789684772491, 0.011513273231685162, 0.05408914387226105, 0.039619095623493195, -0.006563951261341572, 0.03269651159644127, 0.048750631511211395, 0.020402241498231888, -0.02002161368727684, 0.024506229907274246, 0.004168530460447073, -0.05902587249875069, 0.03869382292032242, -0.003586449194699526, -0.04740528389811516, -0.041829343885183334, 0.06424220651388168, -0.011658831499516964, -0.04682997986674309, -0.0365605466067791, 0.0098863635212183, -0.04420945793390274, -0.008101705461740494, -0.028365859761834145, -0.030757687985897064, -0.015238432213664055, 0.07628821581602097, -0.0010932054137811065, -0.022321216762065887, 0.05477368086576462, -0.01929953508079052, -0.010736389085650444, -0.004657540004700422, 0.059117432683706284, 0.08788082748651505, 0.027884937822818756, 0.011810711584985256, 0.04174378886818886, -0.008266434073448181, -0.05056936293840408, 0.01347091980278492, -0.06130204349756241, -0.02418229728937149, -0.008165217004716396, 0.03632040694355965, 0.05868706479668617, -0.01866276189684868, 0.06286986917257309, -0.04880755767226219, 0.009053836576640606, 0.019096527248620987, 0.016536356881260872, -0.021960532292723656, 0.06832623481750488, 0.037021052092313766, 0.0192682184278965, 0.0010084804380312562, -0.030486812815070152, 0.031262341886758804, -0.046165112406015396, -0.01718718186020851, 0.025687627494335175, -0.02404409646987915, 0.026632167398929596, 0.02822912111878395, 0.003302838886156678, 0.07470192760229111, -0.03259323909878731, -0.017498379573225975, 0.016573797911405563, 0.04942487180233002, 0.05942779779434204, 0.006494526285678148, 0.005722067318856716, -0.006554830819368362, -0.011380128562450409, -0.019784122705459595, -0.021743815392255783, -0.03157161548733711, -0.028575047850608826, 0.04592994973063469, -0.013459911569952965, 0.02233165316283703, 0.015376832336187363, -0.002670966787263751, -0.003812476759776473, -0.04672744497656822, -0.04732246324419975, -0.048839449882507324, -0.06582765281200409, -0.036096639931201935, 0.035943225026130676, -0.028048960492014885, -0.037693511694669724, -0.020479939877986908, 0.029226182028651237, 0.019495202228426933, 0.03658463805913925, -0.019591620191931725, -0.024944579228758812, 0.04755399748682976, 0.004598909988999367, 0.03569396957755089, 0.02516418695449829, 0.025226499885320663, -0.00037402810994535685, -0.01929459534585476, -0.02021646313369274, -0.015065858140587807, 0.030996141955256462, -0.002372159156948328, 0.02653357945382595, -0.04936117306351662, 0.007601303048431873, 0.02342166192829609, -0.005216624122112989, -0.08075235784053802, 0.011104811914265156, 0.01661253534257412, 0.015827897936105728, 0.08124151825904846, -0.001692446181550622, -0.021470043808221817, -0.05567656457424164, -0.018335925415158272, 0.029071390628814697, 0.0065865484066307545, 0.04642883688211441, -0.024361969903111458, 0.07255272567272186, 0.01999601349234581, -0.05115848779678345, 0.02774503454566002, -0.018651997670531273, -0.028136620298027992, -0.01264218706637621, -0.053155649453401566, -0.03184180706739426, -0.021423188969492912, -0.07758869975805283, 0.0022232551127672195, 0.04352704808115959, -0.0067316764034330845, -0.01006325427442789, -0.016149047762155533, 0.04828587546944618, -0.016012558713555336, 0.02607262134552002, -0.018856897950172424, 0.054270558059215546, -0.025021372362971306, 0.014653975144028664, 0.014826438389718533, 0.04557827487587929, -0.001994027988985181, 0.014584577642381191, 0.03993051126599312, -0.011177921667695045, -0.018897823989391327, -0.023330774158239365, 0.006279658526182175, 0.02442534826695919, -0.02605493552982807, 0.031117599457502365 ]
[ -0.09552159160375595, -0.02858174592256546, -0.031245430931448936, -0.059663571417331696, 0.047708187252283096, -0.045353859663009644, 0.021307330578565598, 0.029048603028059006, 0.012980933301150799, -0.0069440314546227455, -0.007344868965446949, -0.025942957028746605, -0.0046322401612997055, -0.006758175324648619, 0.03515845164656639, -0.03791838884353638, -0.021745340898633003, -0.061680231243371964, -0.0526132769882679, -0.01418228168040514, 0.05000140145421028, 0.008842998184263706, -0.01857314258813858, -0.033084943890571594, 0.02572123147547245, 0.05370587483048439, 0.008522052317857742, -0.0050727385096251965, 0.010032681748270988, -0.20160986483097076, 0.02013879269361496, -0.01119861751794815, -0.02771463245153427, 0.023409811779856682, -0.030972234904766083, -0.002598284278064966, 0.030448444187641144, 0.01699119061231613, -0.0009982899064198136, 0.056876104325056076, 0.0006975604337640107, 0.055718593299388885, -0.030180305242538452, -0.005100591108202934, 0.03930199518799782, 0.01843508519232273, -0.05066455155611038, -0.03315369039773941, -0.025657780468463898, 0.0039548976346850395, -0.011528665199875832, -0.015367791056632996, -0.010164597071707249, -0.01976783573627472, 0.03685624524950981, 0.03377246484160423, 0.05549018457531929, 0.06256908178329468, 0.032056353986263275, 0.051884185522794724, 0.038596924394369125, -0.03193417564034462, -0.1290637105703354, 0.09820903837680817, -0.020301923155784607, 0.06936918944120407, -0.02442290633916855, -0.02158517949283123, -0.013334454968571663, 0.0847938284277916, 0.017337452620267868, 0.016094714403152466, 0.009258231148123741, 0.0648036003112793, -0.007611619774252176, -0.01179713848978281, -0.01342039555311203, -0.017750248312950134, 0.04342975094914436, -0.0068003106862306595, -0.04331526160240173, -0.027836821973323822, -0.0027526484336704016, -0.0254224743694067, -0.0239457618445158, -0.008709263056516647, -0.03703339770436287, 0.018787212669849396, 0.05374913290143013, 0.02962641790509224, 0.03589656949043274, -0.03507251292467117, 0.02697211503982544, 0.01832672208547592, -0.06565526872873306, 0.02287508174777031, -0.028826911002397537, -0.009741440415382385, -0.09335178881883621, 0.3838888704776764, -0.050636161118745804, -0.014638748951256275, 0.024026287719607353, 0.023758480325341225, -0.005601214244961739, -0.013633032329380512, -0.003241300582885742, -0.0790868028998375, -0.008638196624815464, -0.04027887061238289, 0.02283649519085884, -0.01617678999900818, 0.016617996618151665, -0.007352371234446764, -0.027409879490733147, 0.01628609374165535, 0.023030446842312813, -0.01746879145503044, 0.022460050880908966, 0.05915820226073265, 0.009517299942672253, 0.013151485472917557, -0.0004624711873475462, 0.013598134741187096, 0.00991189107298851, -0.007869308814406395, 0.001589789753779769, 0.07455381006002426, 0.02751333825290203, -0.011557484045624733, 0.0542808398604393, -0.05875817686319351, -0.0651690736413002, 0.020036261528730392, 0.016221653670072556, 0.022757811471819878, 0.013660951517522335, 0.028317766264081, 0.0367206446826458, 0.020614387467503548, 0.017351465299725533, -0.014874007552862167, 0.014371051453053951, -0.03368255868554115, -0.03474315628409386, 0.09068591147661209, -0.014999611303210258, -0.030082035809755325, 0.02081347070634365, 0.006649014540016651, 0.015036210417747498, 0.0046604834496974945, -0.009081097319722176, -0.03699935972690582, -0.019308138638734818, -0.0003573535359464586, 0.032550737261772156, 0.0022643418051302433, -0.04742809385061264, -0.050065573304891586, -0.06708730757236481, -0.0060943616554141045, -0.01548672467470169, 0.001953914063051343, 0.03241828456521034, -0.06115814670920372, -0.03493792191147804, -0.005210130475461483, -0.002247820608317852, -0.10762002319097519, -0.04282017797231674, 0.00852221343666315, -0.06707318127155304, -0.007909051142632961, 0.028851602226495743, -0.0024954474065452814, -0.0035657971166074276, -0.0016956622712314129, 0.07386308908462524, 0.036863941699266434, 0.0291183739900589, -0.018126562237739563, -0.04241843894124031, -0.02124110795557499, -0.01564112678170204, -0.05494671314954758, -0.0599563829600811, -0.019174357876181602, 0.007897255010902882, -0.0005739664193242788, -0.04756734520196915, 0.004566874820739031, -0.08946844935417175, 0.06571375578641891, -0.05275904759764671, -0.021191833540797234, 0.04432658478617668, -0.05821014195680618, 0.021912019699811935, -0.021452993154525757, -0.04407299682497978, 0.0667954534292221, 0.029480867087841034, 0.027443043887615204, -0.030797665938735008, 0.07829426229000092, 0.0893491879105568, -0.07504193484783173, 0.06936227530241013, 0.019565900787711143, -0.09261558204889297, -0.03330761194229126, -0.051632724702358246, 0.022345829755067825, 0.00022692089260090142, -0.01127365231513977, -0.01668791100382805, 0.027618123218417168, -0.023775415495038033, 0.009333823807537556, -0.07622169703245163, 0.013077222742140293, 0.01351114921271801, -0.35330620408058167, -0.04386741667985916, -0.018958805128932, -0.032729677855968475, 0.020277870818972588, -0.008941610343754292, -0.0034067747183144093, -0.028472546488046646, -0.02698102593421936, -0.004370636772364378, 0.08226288110017776, 0.00041706362389959395, -0.007314005400985479, -0.06099117174744606, 0.00843812245875597, 0.00859400350600481, -0.06375152617692947, -0.07959645986557007, -0.029112156480550766, 0.02398836612701416, 0.008837754838168621, 0.0035538615193217993, 0.024869035929441452, -0.05940641462802887, -0.026204265654087067, -0.06678330898284912, 0.11353468149900436, 0.019449561834335327, 0.07444213330745697, -0.047687895596027374, 0.04557789862155914, -0.007301578763872385, 0.00776579650118947, -0.053914010524749756, 0.014680604450404644, -0.020684219896793365, -0.022488679736852646, 0.0238049179315567, -0.012127627618610859, -0.025964748114347458, -0.021569544449448586, 0.015425239689648151, -0.03922493755817413, -0.06785018742084503, -0.008638634346425533, 0.018324945122003555, -0.022496948018670082, -0.0027979330625385046, -0.029424365609884262, 0.08765538781881332, 0.022271733731031418, 0.03228641301393509, 0.06015099957585335, 0.033529747277498245, 0.0032698651775717735, -0.034001365303993225, -0.038186971098184586, 0.031774356961250305, -0.030744342133402824, 0.025380175560712814, 0.03775286301970482, 0.06524274498224258, 0.01748376153409481, -0.06539789587259293, 0.034343499690294266, 0.019472194835543633, 0.03357471898198128, -0.04566750302910805, 0.03323400393128395, -0.015955569222569466, -0.02979559265077114, 0.11807439476251602, 0.04152479022741318, -0.016813455149531364, 0.039323609322309494, 0.041899241507053375, 0.026959415525197983, 0.017788048833608627, -0.003982988651841879, 0.007943144999444485, 0.005667352583259344, 0.0031888580415397882, 0.04726561903953552, -0.0017831327859312296, -0.025278925895690918, -0.004636411089450121, -0.016895851120352745, 0.04059368371963501, 0.031694792211055756, -0.02933451347053051, -0.020005781203508377, 0.025107821449637413, -0.02389976754784584, -0.016558388248085976, 0.04124473035335541, -0.03126981481909752, -0.27343329787254333, 0.01730257272720337, 0.10050106793642044, 0.0450560636818409, 0.03225468471646309, 0.03337967023253441, 0.0390402190387249, -0.023656193166971207, -0.011121843941509724, 0.014627758413553238, 0.009020942263305187, 0.014787206426262856, 0.01633918471634388, 0.00007295909017557278, 0.01386877428740263, -0.020912544801831245, 0.054766517132520676, -0.008264646865427494, 0.026518430560827255, -0.006203015800565481, 0.057259976863861084, -0.015341833233833313, 0.21057899296283722, -0.01540315616875887, 0.057795144617557526, 0.012673265300691128, 0.0021478869020938873, 0.015435464680194855, 0.03291745111346245, 0.005163559690117836, 0.014856617897748947, 0.0046493615955114365, 0.08370646834373474, 0.013719160109758377, 0.040843416005373, -0.05509679764509201, 0.011801714077591896, -0.001891276566311717, -0.0018783832201734185, -0.05027784779667854, -0.007615271024405956, 0.013340853154659271, -0.04818430915474892, 0.0006257069762796164, 0.06095460429787636, 0.031056951731443405, 0.001750631956383586, -0.06342730671167374, -0.04850209504365921, -0.004199012648314238, -0.059405576437711716, -0.03617382049560547, 0.042446739971637726, -0.015477083623409271, -0.013309180736541748, 0.04970293119549751, 0.06269374489784241, -0.001235868432559073, 0.004776832647621632, 0.0518951453268528, 0.038710400462150574, -0.004977318923920393, 0.10528601706027985, 0.04295797646045685, 0.006991765461862087 ]
[ 0.0063936165533959866, 0.002635879907757044, 0.0038127233274281025, -0.00859451200813055, -0.014000642113387585, 0.030434470623731613, 0.005855189636349678, -0.012834172695875168, 0.015999050810933113, 0.017469782382249832, 0.008751872926950455, 0.02604779787361622, -0.03118758089840412, -0.019158251583576202, 0.05290147662162781, -0.023379705846309662, 0.0074587236158549786, -0.0057369498535990715, -0.011210132390260696, -0.00044155886280350387, 0.007992258295416832, 0.005139335058629513, -0.01143889594823122, -0.001891811960376799, -0.021028274670243263, -0.012656256556510925, -0.020840592682361603, 0.027548357844352722, 0.02073763683438301, -0.13208040595054626, -0.010428088717162609, -0.037001464515924454, 0.005102646537125111, 0.05439867824316025, -0.06105506792664528, -0.02051074430346489, -0.014699658378958702, -0.018748130649328232, -0.014839745126664639, -0.019702209159731865, -0.011563980020582676, -0.009117649868130684, 0.00045122395385988057, 0.01045645959675312, 0.03210372477769852, -0.005758257582783699, -0.05450480803847313, 0.004382317420095205, 0.0007803943590261042, -0.0037667802534997463, -0.006470105145126581, 0.0019152548629790545, 0.005093157757073641, -0.005553032737225294, 0.06234690919518471, -0.0025032246485352516, 0.010954504832625389, -0.001711766584776342, 0.026079196482896805, -0.007796655409038067, 0.009662019088864326, 0.028808699920773506, -0.018763411790132523, -0.007051034830510616, -0.010327686555683613, -0.03348681703209877, 0.03773374855518341, 0.02013944275677204, 0.008860462345182896, 0.0386468842625618, 0.004021189175546169, 0.022670049220323563, 0.02322518266737461, -0.012884223833680153, -0.011553565040230751, -0.023329351097345352, -0.025110822170972824, -0.005349892191588879, -0.0032446931581944227, 0.017136815935373306, -0.023860955610871315, -0.0003384638112038374, 0.027766220271587372, 0.004869076423346996, 0.006351129617542028, 0.004496218170970678, 0.018124375492334366, 0.03529268875718117, 0.03256995603442192, -0.005780965089797974, -0.0745505839586258, 0.018721390515565872, -0.0020620240829885006, 0.02430708520114422, -0.08040963858366013, 0.011996062472462654, -0.022680459544062614, -0.06690526753664017, 0.0039455038495361805, 0.8353140354156494, -0.03272520750761032, 0.04850416257977486, 0.04460977390408516, 0.025962477549910545, 0.009246750734746456, 0.0221671424806118, -0.018689889460802078, -0.002184349112212658, 0.03672980144619942, 0.007554147392511368, 0.026102274656295776, 0.028922107070684433, 0.03549190238118172, 0.018563296645879745, -0.0029728629160672426, 0.027752509340643883, -0.005204660817980766, -0.0022720478009432554, 0.0070692431181669235, 0.06697041541337967, 0.02804681286215782, 0.023401491343975067, 0.001833230839110911, 0.03001268208026886, 0.024562157690525055, -0.16940820217132568, -0.030645035207271576, -8.581659773979647e-33, 0.018050480633974075, -0.04224534332752228, 0.005611640866845846, -0.010189092718064785, -0.005810972768813372, 0.0016893531428650022, 0.029673395678400993, 0.028141647577285767, -0.02338387817144394, -0.017056670039892197, 0.009568109177052975, -0.007476997096091509, -0.005907372571527958, -0.0011296365410089493, 0.06845486909151077, -0.005847264546900988, -0.026119977235794067, 0.013926362618803978, 0.02751729264855385, 0.07063141465187073, -0.02125883847475052, 0.003715016646310687, 0.018188729882240295, -0.0002111220674123615, -0.007096158340573311, 0.06927778571844101, 0.02128809504210949, -0.01415338832885027, -0.0035154290962964296, -0.039724789559841156, -0.014855809509754181, -0.005427638068795204, -0.04804881662130356, -0.036240383982658386, 0.045006949454545975, -0.03530213609337807, -0.030118638649582863, 0.028638605028390884, -0.03084678389132023, -0.02165304869413376, -0.01304496917873621, -0.020858142524957657, -0.06351745128631592, -0.0071754176169633865, -0.0310966856777668, -0.03135601431131363, -0.030186956748366356, 0.02478758431971073, 0.045738350600004196, 0.03704779967665672, 0.00391830550506711, 0.040568385273218155, 0.0301351435482502, -0.04083013907074928, -0.008636616170406342, -0.0017204221803694963, 0.030271172523498535, 0.03595571964979172, -0.03446367755532265, -0.0034613681491464376, 0.023582352325320244, -0.016478629782795906, -0.02946372888982296, 0.05463552102446556, -0.0045615751296281815, -0.01424532663077116, -0.008991994895040989, 0.006607390008866787, 0.003959735855460167, -0.04080554470419884, -0.03846408426761627, -0.010444745421409607, -0.03158023953437805, 0.021635480225086212, 0.01565053127706051, -0.006177111063152552, -0.014818375930190086, 0.001897704671137035, -0.009875999763607979, 0.019405687227845192, 0.02330411784350872, -0.028867097571492195, -0.016756882891058922, -0.03379502892494202, -0.013142034411430359, 0.010033586993813515, 0.004092723596841097, -0.023169077932834625, 0.019499313086271286, 0.03227207437157631, 0.005582849495112896, 0.016111155971884727, -0.009768946096301079, 0.005920608062297106, -0.031706977635622025, 7.491241092114153e-33, -0.039375439286231995, 0.0032157250680029392, -0.05078146979212761, 0.041821666061878204, 0.01384287141263485, 0.00524892145767808, -0.028013771399855614, 0.011376672424376011, -0.03965713083744049, 0.0319230817258358, -0.014901324175298214, 0.031680941581726074, -0.022613883018493652, 0.03747936710715294, 0.0823003500699997, -0.03259102627635002, -0.02109430357813835, -0.0037966237869113684, 0.030300242826342583, -0.005407967604696751, 0.05057654529809952, 0.004673214163631201, 0.011782629415392876, -0.015855437144637108, -0.022115200757980347, 0.05482508987188339, -0.003891416359692812, -0.0069722761400043964, -0.018116408959031105, 0.021524416282773018, -0.012511143460869789, 0.016460634768009186, 0.015859810635447502, -0.028211267665028572, -0.004998147953301668, 0.011787306517362595, 0.023980025202035904, -0.031942225992679596, 0.017477963119745255, -0.019233690574765205, 0.0010035914601758122, -0.01007432397454977, -0.01767350174486637, -0.00024867424508556724, -0.019434157758951187, 0.005417387932538986, 0.02277795970439911, -0.008636600337922573, 0.043288905173540115, 0.01579727977514267, -0.02536710351705551, -0.00829104520380497, 0.00018836595700122416, -0.008305230177938938, -0.0034833974204957485, -0.008054515346884727, -0.020493756979703903, -0.0272683035582304, -0.00478854775428772, 0.003704305039718747, -0.02406897395849228, 0.013424118049442768, -0.037254828959703445, 0.03377912566065788, -0.007777937687933445, -0.006536174099892378, -0.04541679471731186, -0.02156955562531948, -0.015305141918361187, 0.006016794592142105, -0.061095789074897766, 0.03657997399568558, 0.011324964463710785, 0.0210178904235363, -0.01896623522043228, 0.018752386793494225, 0.0034456062130630016, 0.009006434120237827, -0.010054402984678745, 0.01539052277803421, 0.015268166549503803, 0.017437944188714027, -0.001496100565418601, -0.017784705385565758, -0.004355514422059059, -0.017186559736728668, -0.027512503787875175, -0.010028483346104622, 0.003707876894623041, -0.007891097106039524, 0.03711435943841934, 0.047757167369127274, -0.007542791310697794, -0.027970677241683006, -0.017833692952990532, -1.3344600979792176e-8, -0.006316327024251223, 0.027958931401371956, -0.05000801011919975, 0.010326622053980827, 0.0013367707142606378, 0.005360962823033333, -0.019785655662417412, -0.007979748770594597, -0.025350019335746765, -0.010882704518735409, 0.046932123601436615, 0.02736816368997097, 0.00479569798335433, -0.010419952683150768, 0.03187958151102066, -0.05718492344021797, -0.047207482159137726, -0.017271075397729874, 0.010720980353653431, 0.03519690781831741, 0.012105279602110386, 0.04018476605415344, 0.016614854335784912, -0.019896812736988068, -0.0485818013548851, -0.06077469140291214, 0.013290150091052055, -0.06168534234166145, -0.007658241782337427, 0.0002578323765192181, -0.017178891226649284, -0.009196538478136063, -0.02663400024175644, 0.0038623365107923746, -0.022695666179060936, -0.049022793769836426, 0.0065131839364767075, 0.004571274854242802, 0.015197920612990856, 0.01838734559714794, -0.011372164823114872, -0.01545497216284275, -0.016845742240548134, -0.03702015057206154, -0.007087585516273975, -0.007831660099327564, -0.019928032532334328, -0.00006678554927930236, 0.020486710593104362, -0.02261790633201599, -0.025756504386663437, 0.037364888936281204, -0.01588805764913559, -0.027803340926766396, 0.02677764929831028, 0.04730328544974327, 0.014959437772631645, -0.03317525237798691, -0.001998486462980509, -0.029166201129555702, 0.02231566049158573, -0.0014787933323532343, 0.0034645190462470055, -0.011434730142354965 ]
javascript-the-new-keyword
https://markhneedham.com/blog/2010/03/06/javascript-the-new-keyword
false
2010-03-24 06:53:55
TDD: Consistent test structure
[ "tdd", "testing" ]
[ "Testing" ]
While pairing with http://foldingair.blogspot.com/[Damian] we came across the fairly common situation where we'd written two different tests - one to handle the positive case and one the negative case. While tidying up the tests after we'd got them passing we noticed that the test structure wasn't exactly the same. The two tests looked a bit like this: [source,csharp] ---- [Test] public void ShouldSetSomethingIfWeHaveAFoo() { var aFoo = FooBuilder.Build.WithBar("bar").WithBaz("baz").AFoo(); // some random setup // some stubs/expectations var result = new Controller(...).Submit(aFoo); Assert.That(result.HasFoo, Is.True); } ---- [source,csharp] ---- [Test] public void ShouldNotSetSomethingIfWeDoNotHaveAFoo() { // some random setup // some stubs/expectations var result = new Controller(...).Submit(null); Assert.That(result.HasFoo, Is.False); } ---- There isn't a great deal of difference between these two bits of code but the structure of the test isn't the same because I inlined the 'aFoo' variable in the second test. Damian pointed out that if we were just glancing at the tests in the future it would be much easier for us if the structure was exactly the same. This would mean that we would immediately be able to identify what the test was supposed to be doing and why. In this contrived example we would just need to pull out the 'null' into a descriptive variable: [source,csharp] ---- [Test] public void ShouldNotSetSomethingIfWeDoNotHaveAFoo() { var noFoo = null; // some random setup // some stubs/expectations var result = new Controller(...).Submit(noFoo); Assert.That(result.HasFoo, Is.False); } ---- Although this is a simple example I've been trying to follow this guideline wherever possible and my tests now tend to have the following structure: [source,csharp] ---- [Test] public void ShouldShowTheStructureOfMarksTests() { // The test data that's important for the test // Less important test data // Expectation/Stub setup // Call to object under test // Assertions } ---- As a neat side effect I've also noticed that it seems to be easier to spot duplication that we can possibly extract with this approach as well.
null
null
[ 0.03286357596516609, -0.02343132346868515, -0.025212133303284645, 0.050248488783836365, 0.07054577767848969, -0.0008247821242548525, 0.034842804074287415, 0.023079784587025642, 0.00038859809865243733, -0.02900885045528412, 0.024304963648319244, -0.026766713708639145, -0.09105895459651947, 0.00992071907967329, -0.03266564756631851, 0.0683206245303154, 0.09577429294586182, -0.030924389138817787, 0.04350258782505989, -0.001093834056518972, -0.008741862140595913, 0.05675830319523811, 0.010529293678700924, 0.027288131415843964, 0.05157024413347244, 0.024437114596366882, 0.01691182516515255, -0.022173898294568062, -0.07406686991453171, 0.0026318549644201994, 0.043434467166662216, 0.006552398204803467, 0.012495907954871655, -0.03435248136520386, -0.006502225063741207, -0.010061213746666908, 0.01511366292834282, 0.018082136288285255, -0.004272248595952988, 0.0027474556118249893, -0.07603737711906433, 0.0036974691320210695, -0.0036267198156565428, -0.01301657035946846, -0.04675338417291641, -0.01970202662050724, -0.007068999577313662, 0.00044111357419751585, -0.0179276205599308, 0.00498191686347127, -0.06792420148849487, 0.023911625146865845, -0.03057880327105522, 0.005275203380733728, -0.00015446146426256746, 0.047960638999938965, 0.024412328377366066, -0.06433979421854019, 0.02853778563439846, -0.07308017462491989, 0.0009096307912841439, 0.005480997264385223, 0.002096414566040039, 0.03643301874399185, 0.01254300493746996, -0.02502497471868992, -0.0022282081190496683, 0.06242959946393967, -0.026912378147244453, -0.004443716257810593, 0.00592404417693615, 0.010650216601788998, 0.0038432907313108444, -0.03763914853334427, 0.030927924439311028, -0.025371233001351357, -0.03716655820608139, 0.03291294723749161, 0.028317919000983238, 0.041994739323854446, 0.000512847735080868, -0.024293668568134308, 0.058858200907707214, 0.017708029597997665, 0.020867906510829926, -0.036744192242622375, -0.029164519160985947, -0.0062841931357979774, -0.020197130739688873, 0.07422445714473724, 0.017139103263616562, -0.030132826417684555, 0.009780481457710266, 0.055441610515117645, -0.0033820271492004395, -0.005483476910740137, 0.015996679663658142, 0.00521576264873147, -0.0009694135515019298, -0.012078151106834412, -0.02539745718240738, 0.00411540362983942, 0.019200971350073814, 0.0037730310577899218, -0.07153305411338806, -0.003092297585681081, -0.041978731751441956, -0.04044613614678383, 0.004623327869921923, 0.034978196024894714, -0.030498094856739044, 0.03438819944858551, -0.01584538258612156, 0.01381602045148611, -0.10088929533958435, 0.04312526807188988, -0.003686555428430438, -0.0074740080162882805, 0.003986257594078779, 0.02807231992483139, 0.02625792846083641, 0.00847918726503849, -0.018847599625587463, 0.07088533788919449, -0.009063754230737686, 0.06875088065862656, -0.015233677811920643, 0.0497315488755703, 0.003369416343048215, -0.07498708367347717, -0.0002214811829617247, 0.05143947899341583, 0.011172810569405556, -0.006979753728955984, 0.0006801800918765366, -0.03475544974207878, 0.005324122495949268, -0.006315907463431358, 0.03477521240711212, 0.04983952268958092, -0.040194809436798096, -0.03570026531815529, 0.02371688187122345, 0.000957036972977221, -0.008276298642158508, 0.0327136367559433, -0.016831152141094208, -0.009230156429111958, -0.029285499826073647, 0.07940652221441269, 0.03212961554527283, 0.05739228427410126, 0.05163655802607536, -0.05310654640197754, 0.0010805332567542791, 0.05403296276926994, -0.000954263552557677, 0.013498138636350632, 0.006843823939561844, 0.013776220381259918, 0.0441339910030365, 0.028801627457141876, 0.022896770387887955, 0.06208574399352074, 0.01874474063515663, -0.004146283026784658, 0.007780632469803095, 0.05479642376303673, -0.021855829283595085, -0.010446608066558838, -0.048481859266757965, -0.04958100989460945, 0.06162872165441513, -0.039680685847997665, -0.0036066994071006775, 0.0335538312792778, 0.06154482066631317, -0.009029998444020748, 0.07304596900939941, 0.01600189507007599, -0.069109708070755, 0.03366873785853386, 0.0010299797868356109, 0.034909721463918686, 0.0017110914923250675, -0.009514138102531433, 0.048570260405540466, 0.025560202077031136, -0.019836923107504845, 0.030955364927649498, -0.07127285748720169, -0.07677870243787766, -0.0558122843503952, 0.0004432205168996006, 0.07185489684343338, -0.019711114466190338, -0.02529580518603325, 0.10062337666749954, 0.02888558618724346, 0.01778796687722206, 0.02698317915201187, -0.024820294231176376, -0.01575625129044056, -0.026515820994973183, -0.04437597468495369, 0.06279557943344116, 0.04365970566868782, -0.009933984838426113, -0.06947881728410721, -0.010630077682435513, -0.032876305282115936, 0.02622179128229618, 0.03299322351813316, 0.007689327001571655, 0.057923004031181335, 0.00449829176068306, 0.03140060603618622, -0.03382476419210434, 0.0513765923678875, -0.0680578202009201, 0.0215029064565897, -0.005797567777335644, -0.01649343967437744, -0.015395263209939003, -0.00002730040068854578, 0.11963481456041336, 0.06219080835580826, -0.02960166335105896, -0.05701012164354324, 0.005219253245741129, 0.028633609414100647, -0.004756039008498192, 0.011578443460166454, -0.021111147478222847, 0.019276777282357216, -0.016075722873210907, -0.019677795469760895, -0.008340096101164818, 0.03743237629532814, -0.029147718101739883, 0.04545515403151512, 0.06382084637880325, -0.007726723328232765, 0.05868054926395416, -0.011978356167674065, -0.019512098282575607, 0.013117009773850441, -0.047136370092630386, -0.05823865905404091, 0.0008357118349522352, 0.046653781086206436, -0.005749954842031002, 0.05110597237944603, -0.013449828140437603, -0.031134093180298805, -0.011786190792918205, -0.035695407539606094, 0.003916258458048105, 0.0251321978867054, 0.054989758878946304, 0.0010746696498245, 0.04024035111069679, -0.015650521963834763, 0.005518049467355013, -0.0001938421482918784, -0.040220409631729126, -0.008763667196035385, 0.005485678091645241, 0.002538747852668166, 0.0796140804886818, 0.0028313565999269485, -0.0318627804517746, 0.021198075264692307, 0.016052577644586563, -0.02745305933058262, -0.00975770503282547, 0.04755474254488945, 0.009310604073107243, -0.036160096526145935, -0.01780826970934868, -0.05360902473330498, 0.029286790639162064, -0.03335148096084595, -0.028553513810038567, 0.03654836118221283, -0.07925139367580414, 0.03701479732990265, -0.06031974032521248, -0.07284874469041824, -0.014942402020096779, 0.001794043811969459, 0.0460926853120327, 0.010994965210556984, 0.02878689020872116, 0.08193974196910858, 0.03436256945133209, 0.027661899104714394, 0.04171203449368477, 0.01451549120247364, 0.01215278822928667, 0.011479324661195278, 0.00026894776965491474, 0.02521904930472374, -0.028684141114354134, 0.007950586266815662, -0.045137178152799606, 0.01962600089609623, -0.026470903307199478, -0.251598060131073, 0.034795597195625305, 0.00419215252622962, -0.030909698456525803, 0.031003832817077637, -0.04600977897644043, 0.020880142226815224, -0.039405081421136856, -0.033312246203422546, 0.059586137533187866, -0.02694963850080967, -0.023079058155417442, -0.026115840300917625, 0.053886353969573975, -0.010520609095692635, -0.01994907110929489, -0.005737267900258303, -0.03937707841396332, 0.028270432725548744, 0.036447130143642426, 0.0010889850091189146, -0.05466239154338837, 0.007887324318289757, 0.04202893003821373, 0.05056619271636009, 0.06717758625745773, -0.07068846374750137, 0.05983094125986099, -0.01634078659117222, -0.009918158873915672, 0.005402218550443649, -0.008378677070140839, -0.0004076345358043909, -0.01403328962624073, -0.029232632368803024, -0.005364669486880302, -0.003645349992439151, 0.02036360278725624, -0.00539821432903409, 0.037821248173713684, -0.03790891170501709, -0.04283203184604645, -0.01073029451072216, -0.004615426529198885, 0.07990812510251999, -0.03389675170183182, -0.04872864857316017, -0.003935147076845169, -0.04983016103506088, 0.05847455561161041, -0.03404521197080612, -0.03451429679989815, -0.02340342104434967, 0.05142299085855484, -0.026865703985095024, -0.020489661023020744, 0.025687100365757942, -0.010392842814326286, -0.039534665644168854, -0.042816560715436935, -0.03732224926352501, -0.0675773173570633, -0.010669386945664883, -0.05849745497107506, -0.004790399223566055, -0.06950540095567703, -0.06114161014556885, 0.006335229612886906, 0.05720873549580574, 0.0016115320613607764, 0.007117278873920441, -0.01856442354619503, -0.013133466243743896, -0.11349070817232132, -0.0003830361529253423, -0.045629389584064484, -0.025467919185757637, -0.027977123856544495, -0.0035719957668334246, 0.03456754609942436, -0.02197812683880329, -0.04351118952035904, 0.04604477807879448, 0.006701850797981024, 0.02584666758775711, 0.02030503749847412, 0.020906314253807068, 0.020497910678386688, -0.039212416857481, 0.005400550086051226, 0.07039638608694077, -0.005667269229888916, 0.013680150732398033, -0.02891215868294239, 0.016474679112434387, 0.036249469965696335, 0.016046734526753426, -0.013741711154580116, 0.029177438467741013, 0.006486958358436823, 0.04416009411215782, -0.046539630740880966, 0.015050273388624191, -0.045415136963129044, 0.010361669585108757, -0.02075936831533909, -0.050859518349170685, 0.05811917409300804, 0.017083022743463516, 0.012451039627194405, -0.020924707874655724, -0.04380112886428833, -0.009862535633146763, -0.04089292511343956, -0.009442154318094254, -0.05112384259700775, 0.0033535081893205643, 0.021233990788459778, -0.051962852478027344, -0.010067330673336983, -0.043784040957689285, 0.028972206637263298, 0.009555197320878506, -0.01961630955338478, -0.07120196521282196, -0.020512351766228676, -0.006988717243075371, -0.004890028852969408, 0.0007409040699712932, 0.011781955137848854, -0.021256087347865105, 0.0385337769985199, -0.007207412738353014, -0.03383016586303711, -0.012983223423361778, 0.017610175535082817, -0.02524898760020733, -0.0391826257109642, -0.0025425455532968044, -0.025818834081292152, -0.020418934524059296, -0.00884467177093029, 0.030894635245203972, -0.005178384017199278, 0.04599415510892868, 0.007137412205338478, 0.03152262046933174, 0.009913218207657337, -0.008533179759979248, -0.012684125453233719, 0.02129591442644596, -0.08308834582567215, 0.006241681054234505, -0.020874056965112686, -0.04535659775137901, -0.023382460698485374, 0.021276801824569702, -0.021977508440613747, -0.037445373833179474, -0.045171499252319336, 0.024952847510576248, -0.06676328182220459, -0.021418370306491852, -0.015692539513111115, 0.007588653359562159, 0.04867996647953987, -0.012136528268456459, 0.05378218740224838, -0.04227714240550995, -0.01770590990781784, 0.015268348157405853, -0.013343810103833675, -0.023287924006581306, 0.021101266145706177, -0.02738998830318451, 0.012182758189737797, -0.007095247972756624, -0.009105447679758072, 0.025445174425840378, 0.02037147805094719, 0.013972525484859943, -0.01711362972855568, 0.009163696318864822, 0.0026831061113625765, 0.04725911468267441, 0.013710561208426952, -0.0010472473222762346, -0.022753775119781494, -0.0035410441923886538, 0.00030262136715464294, -0.047112733125686646, -0.02604513242840767, 0.0025188324507325888, 0.022298064082860947, -0.03251950070261955, -0.08532888442277908, 0.022243797779083252, -0.009573184885084629, 0.003955167718231678, 0.011047436855733395, 0.017407003790140152, -0.017979329451918602, -0.01212078332901001, -0.0026757060550153255, 0.06327074766159058, -0.04352101311087608, 0.024190619587898254, 0.017862221226096153, -0.002630561590194702, 0.03542662411928177, 0.004934494383633137, -0.07015182077884674, -0.019961491227149963, -0.0014022255782037973, 0.005698329769074917, -0.05255808308720589, -0.029484963044524193, -0.01663297601044178, 0.008105756714940071, -0.001972750062122941, -0.012506592087447643, -0.005682561546564102, 0.015609750524163246, -0.015823369845747948, -0.0202036015689373, -0.007832059636712074, -0.050513800233602524, -0.004653738345950842, 0.0450650118291378, -0.04389336705207825, 0.027554932981729507, 0.0015185780357569456, 0.031954292207956314, 0.03226350247859955, -0.03341629356145859, -0.04653625190258026, -0.08121476322412491, -0.013483624905347824, -0.017802473157644272, 0.028689878061413765, -0.005083943717181683, -0.02375664748251438, -0.01757088489830494, -0.01578424870967865, -0.015619159676134586, 0.008705809712409973, -0.003381616435945034, -0.022565100342035294, 0.04179258272051811, 0.057209551334381104, 0.009270817041397095, 0.041058577597141266, 0.011999995447695255, 0.02162664383649826, 0.08139700442552567, -0.04845006763935089, -0.024103373289108276, -0.0407867431640625, -0.05369558557868004, 0.01428158674389124, 0.024170011281967163, 0.023741576820611954, -0.04367091506719589, 0.03969752788543701, 0.01357212383300066, 0.02842337265610695, 0.03956964239478111, -0.010377422906458378, 0.019266856834292412, -0.053985804319381714, 0.01438409648835659, -0.07913053780794144, 0.038433074951171875, 0.05637098476290703, -0.005916119087487459, -0.000710699416231364, -0.03571169450879097, -0.0045507983304560184, 0.03398952633142471, -0.041799724102020264, -0.01334445271641016, 0.03369792923331261, -0.01298009417951107, 0.010817059315741062, 0.0007053356384858489, -0.03926593437790871, 0.025940867140889168, 0.037373609840869904, -0.028290584683418274, -0.04074997454881668, -0.021342379972338676, 0.05151678994297981, 0.021456222981214523, -0.019794248044490814, -0.02786320075392723, 0.007034908980131149, 0.040864042937755585, 0.04017725959420204, 0.04500925913453102, 0.040809858590364456, -0.05294454097747803, 0.03062673844397068, 0.019163034856319427, -0.012460339814424515, -0.003098296234384179, -0.004059447906911373, -0.013250730000436306, -0.043972861021757126, 0.019410032778978348, 0.011804554611444473, -0.021247798576951027, -0.05387731269001961, 0.06264617294073105, -0.0073473588563501835, -0.03644595295190811, -0.04875415191054344, -0.002172777894884348, -0.03749825432896614, -0.031152723357081413, -0.01295122317969799, 0.009631820023059845, -0.04286009818315506, 0.07344207912683487, 0.028179747983813286, 0.0069757793098688126, 0.06872755289077759, -0.00041653274092823267, 0.010644344612956047, 0.008750041015446186, 0.0787038579583168, 0.07279381155967712, 0.03626123070716858, -0.0016219731187447906, 0.06549383699893951, -0.0256277397274971, -0.06259430199861526, 0.004795048851519823, -0.052500031888484955, -0.01278581190854311, -0.020699933171272278, 0.013745320029556751, 0.06353681534528732, 0.0038520912639796734, 0.05512048676609993, -0.040075693279504776, 0.005585075821727514, 0.012927818112075329, 0.061077240854501724, 0.022850878536701202, 0.04239819198846817, 0.01148935966193676, -0.00736833643168211, 0.029137765988707542, -0.01727161929011345, 0.03619321435689926, -0.033966612070798874, 0.001900537172332406, 0.030286401510238647, -0.030514704063534737, 0.014047384262084961, -0.01060155313462019, 0.028675293549895287, 0.05051184818148613, -0.012896652333438396, -0.0009787281742319465, 0.006506723817437887, 0.01956242136657238, 0.017542362213134766, 0.0016632176702842116, 0.0003081758914049715, -0.04648884758353233, -0.002883884822949767, -0.028304124251008034, -0.008213810622692108, -0.025334596633911133, -0.010281742550432682, 0.01226122211664915, -0.012169789522886276, 0.05006255954504013, 0.02530484087765217, 0.011817404069006443, -0.009786094538867474, -0.061613891273736954, -0.036894191056489944, -0.04513471573591232, -0.057502638548612595, -0.027555396780371666, 0.025722695514559746, -0.0178361926227808, -0.029500087723135948, -0.02604839764535427, -0.022514017298817635, 0.013574817217886448, 0.06748799979686737, -0.004767925012856722, -0.03748679533600807, 0.02236252650618553, -0.0011538296239450574, 0.021226916462183, 0.043207939714193344, 0.015080050565302372, -0.011794539168477058, -0.0070696924813091755, -0.06648451089859009, -0.039053354412317276, 0.038202185183763504, -0.005664072465151548, 0.0244386475533247, -0.0834163948893547, 0.029586387798190117, 0.0009412130457349122, 0.002499375957995653, -0.06689592450857162, 0.028784841299057007, 0.006857732310891151, -0.05216633901000023, 0.029316717758774757, -0.02222159318625927, -0.025816084817051888, -0.007091549690812826, -0.018818162381649017, 0.02907400205731392, 0.021077731624245644, 0.04080379009246826, -0.0376334972679615, 0.0764818862080574, 0.016136551275849342, -0.0262156929820776, -0.03897582367062569, 0.001947149052284658, -0.012339401990175247, 0.007588529959321022, -0.012391473166644573, -0.06298401206731796, -0.06479961425065994, -0.03966377675533295, -0.006166164297610521, 0.020964941009879112, -0.028834909200668335, -0.01999392919242382, 0.02260877937078476, 0.020248470827937126, -0.07412628829479218, 0.025201288983225822, 0.0079919109120965, 0.026185650378465652, -0.05422964692115784, -0.025902872905135155, 0.014646558091044426, 0.056819334626197815, -0.00679401308298111, 0.03473862260580063, 0.02857670560479164, -0.04023392125964165, -0.013877247460186481, -0.02759883925318718, 0.0074582225643098354, 0.029477180913090706, -0.020199541002511978, 0.025889353826642036 ]
[ -0.12005281448364258, 0.015458405017852783, -0.04606372117996216, 0.0032029058784246445, 0.025016089901328087, -0.02765277586877346, 0.04169056937098503, 0.0024348662700504065, 0.0023057868238538504, -0.04098610207438469, -0.013195419684052467, -0.01854417659342289, -0.009605839848518372, -0.011329494416713715, 0.06776881963014603, 0.011117257177829742, -0.031011993065476418, -0.060327060520648956, -0.004102759063243866, 0.06313764303922653, 0.007915886119008064, -0.005497158505022526, -0.038757529109716415, -0.04834023118019104, 0.02418750524520874, 0.04607944190502167, 0.05876589193940163, -0.03911007568240166, 0.009399919770658016, -0.2184009552001953, 0.0040074726566672325, -0.030937308445572853, 0.003743896260857582, -0.030666202306747437, 0.0021016497630625963, 0.017460212111473083, 0.007904660888016224, 0.006969484966248274, -0.022283105179667473, 0.03628729656338692, 0.024102624505758286, 0.01986578293144703, -0.03319747745990753, -0.0324677899479866, 0.04625467583537102, -0.008539140224456787, -0.011074159294366837, -0.019601183012127876, 0.015158343128859997, 0.011760473251342773, -0.03009829856455326, -0.06455954909324646, -0.00014789610577281564, -0.035695988684892654, -0.014302448369562626, 0.028411980718374252, 0.052519213408231735, 0.04647292569279671, -0.002315605990588665, 0.03877793997526169, -0.002225077711045742, -0.019387511536478996, -0.12744954228401184, 0.07620016485452652, 0.07010884582996368, 0.04159582406282425, -0.022413013502955437, -0.01879885606467724, -0.011831390671432018, 0.10807579755783081, 0.03495454043149948, -0.01879526674747467, -0.02682293951511383, 0.06717734783887863, -0.011117588728666306, -0.00950346514582634, 0.007459674961864948, 0.02578982524573803, 0.04863481968641281, -0.01985255256295204, -0.042807288467884064, -0.028146961703896523, 0.005953832995146513, 0.0005967763718217611, -0.0043130009435117245, 0.014601402916014194, -0.009593772701919079, 0.023792194202542305, 0.026290442794561386, 0.02190105803310871, 0.058292634785175323, -0.021867036819458008, 0.022250663489103317, 0.0076297251507639885, -0.10199040919542313, 0.009011885151267052, -0.02273925207555294, -0.007246686611324549, -0.023285716772079468, 0.42733925580978394, -0.031452976167201996, -0.011669895611703396, 0.04113159701228142, 0.035411059856414795, -0.0021394435316324234, -0.0025899142492562532, 0.016057375818490982, -0.047408368438482285, 0.014122133143246174, -0.04459281265735626, 0.03468012064695358, -0.019696982577443123, 0.05167903006076813, -0.049183644354343414, -0.02544403448700905, 0.047906726598739624, 0.013227356597781181, 0.009492560289800167, 0.0009975680150091648, -0.0031143012456595898, -0.005100846756249666, -0.025456499308347702, 0.005362240131944418, -0.010401762090623379, 0.028974222019314766, -0.051941048353910446, 0.019374361261725426, 0.06523735076189041, 0.01432754285633564, -0.02713204361498356, 0.06249414011836052, -0.05596718564629555, -0.05533488467335701, -0.00798866618424654, -0.014485688880085945, 0.017153743654489517, 0.031090758740901947, 0.005750126205384731, 0.012147190980613232, 0.05535110831260681, 0.021270060911774635, -0.02932525798678398, 0.054012078791856766, -0.013178681023418903, -0.05898798257112503, 0.1074906587600708, -0.045545730739831924, -0.01537331659346819, -0.022119896486401558, -0.020289739593863487, -0.004251463338732719, 0.028817053884267807, -0.023885849863290787, -0.05376143380999565, 0.015092344954609871, -0.001303293858654797, 0.03283561393618584, 0.000662849226500839, -0.03047933802008629, -0.018840348348021507, -0.027745811268687248, -0.01418068166822195, -0.06097954884171486, 0.04827297478914261, 0.058743663132190704, -0.07819630205631256, -0.025724438950419426, 0.010049604810774326, 0.031929127871990204, -0.05537176877260208, 0.023296210914850235, -0.008022325113415718, -0.03356179594993591, -0.05544978380203247, 0.004582545254379511, -0.0324770025908947, -0.01326898392289877, 0.02263953723013401, 0.043842509388923645, 0.027384508401155472, 0.007782659959048033, 0.014735190197825432, -0.06471427530050278, 0.03476879745721817, -0.002819229383021593, -0.05598393455147743, -0.04807382449507713, -0.01026721578091383, -0.017050230875611305, -0.007381399627774954, -0.03907277062535286, -0.06230895593762398, -0.09185884892940521, 0.10395857691764832, -0.0388953723013401, -0.034844350069761276, 0.03615032136440277, -0.01824239268898964, -0.007608627900481224, -0.0030459000263363123, 0.028823256492614746, 0.040801726281642914, -0.016190912574529648, 0.02795351669192314, -0.08005215972661972, 0.0718383863568306, 0.030576404184103012, -0.05909072235226631, 0.07779587060213089, 0.040872182697057724, -0.034105733036994934, -0.024072224274277687, -0.01057914737612009, 0.04481463506817818, -0.0038760548923164606, -0.029498914256691933, -0.013861180283129215, 0.02665911801159382, -0.011866655200719833, 0.053243983536958694, -0.038401465862989426, -0.014174499548971653, 0.05060281604528427, -0.3485063314437866, -0.04700000211596489, -0.017300691455602646, -0.0037649343721568584, 0.030330123379826546, -0.047834862023591995, -0.0068970490247011185, 0.006223885342478752, -0.049830660223960876, -0.013794434256851673, 0.07975796610116959, 0.00625317869707942, 0.004834335763007402, -0.07387251406908035, -0.009201056323945522, 0.01737292855978012, -0.02082541026175022, -0.05883624032139778, -0.003144826041534543, 0.022766228765249252, -0.03249812498688698, -0.00009992839477490634, 0.01644894666969776, -0.05075003579258919, 0.016433265060186386, -0.03458463400602341, 0.08061572164297104, -0.008005085401237011, 0.09407544136047363, -0.03109249286353588, 0.042788825929164886, 0.008485851809382439, 0.04426451027393341, -0.07302753627300262, 0.021195007488131523, -0.03122289851307869, -0.052839137613773346, -0.012755495496094227, 0.01297768484801054, -0.01580742746591568, -0.05747072026133537, 0.0012815033551305532, -0.022024648264050484, -0.044714417308568954, -0.013731603510677814, -0.007497978862375021, 0.0015091594541445374, 0.008392609655857086, -0.03382444754242897, 0.08156954497098923, -0.0019498624606058002, -0.015201649628579617, 0.007993212901055813, 0.02007046341896057, 0.028480036184191704, -0.022980356588959694, -0.09133778512477875, -0.010560515336692333, 0.007743422873318195, -0.03678947687149048, 0.0640702024102211, 0.08697592467069626, 0.027943171560764313, -0.05827933922410011, -0.01658770628273487, 0.028342192992568016, -0.019593151286244392, -0.018613705411553383, 0.05241024121642113, -0.02780451439321041, -0.03347546234726906, 0.07435401529073715, -0.01607685536146164, -0.002869846997782588, 0.018557241186499596, 0.04689757153391838, 0.005043155048042536, -0.01547013409435749, 0.0005743141518905759, 0.020561199635267258, 0.004880869295448065, 0.012490781955420971, 0.030431393533945084, -0.016929112374782562, -0.02272018790245056, 0.038493961095809937, 0.007520664948970079, 0.00535641610622406, 0.0689287781715393, -0.025094464421272278, -0.05402011424303055, -0.01011733990162611, 0.0059672389179468155, -0.06397086381912231, 0.06940463185310364, -0.00573086878284812, -0.26193132996559143, 0.008588221855461597, 0.051308631896972656, 0.05394995957612991, -0.028656480833888054, 0.022046629339456558, 0.04842893034219742, -0.06877590715885162, 0.005306918639689684, 0.01744742877781391, 0.019255807623267174, 0.017703358083963394, 0.015311912633478642, -0.006529562640935183, 0.034172456711530685, 0.0043096281588077545, 0.03870615363121033, -0.013525948859751225, 0.026555607095360756, -0.0048151155933737755, 0.023589538410305977, -0.005553605500608683, 0.17743270099163055, -0.008741091005504131, 0.014698105864226818, 0.0463295541703701, 0.032127972692251205, 0.02840663492679596, 0.07707114517688751, 0.013675267808139324, 0.028543539345264435, -0.008619003929197788, 0.06750897318124771, -0.008106217719614506, 0.03497454896569252, -0.05158916115760803, -0.027657561004161835, 0.024897001683712006, 0.03602522611618042, -0.0036657664459198713, 0.0010712450603023171, -0.004681847058236599, -0.026964204385876656, -0.001958956243470311, 0.10304537415504456, -0.0005029421881772578, -0.002096428768709302, -0.02732248418033123, -0.03661579266190529, -0.0033686466049402952, -0.04215275123715401, -0.049666840583086014, 0.020911118015646935, -0.013263285160064697, 0.02804534323513508, 0.040580250322818756, 0.020481467247009277, -0.028869712725281715, -0.01788605935871601, -0.0021223328076303005, -0.00010424839274492115, 0.022776633501052856, 0.11319892853498459, 0.03675970807671547, 0.03449573367834091 ]
[ -0.033387813717126846, -0.0024185567162930965, -0.019108334556221962, 0.03529067710042, -0.005516722798347473, 0.04876890778541565, -0.013785095885396004, 0.0277499221265316, -0.004560497589409351, 0.035248108208179474, 0.0009633414447307587, -0.007414346560835838, 0.005827079527080059, -0.020250119268894196, 0.04130149632692337, 0.029380163177847862, -0.030801964923739433, -0.03272758424282074, 0.013834090903401375, 0.02877865359187126, -0.002035875804722309, -0.003904402954503894, 0.006752709858119488, -0.037268977612257004, -0.011553838849067688, 0.011563103646039963, -0.015400409698486328, -0.03248381242156029, 0.032683972269296646, -0.13270774483680725, 0.0020190055947750807, -0.017918990924954414, -0.008519666269421577, 0.005394845735281706, -0.023764410987496376, 0.008034550584852695, 0.022184014320373535, 0.033971402794122696, -0.014642801135778427, -0.029268663376569748, 0.015326347202062607, 0.0218496136367321, 0.005235694814473391, -0.0006382377468980849, 0.001601661671884358, -0.02864418551325798, -0.01901363767683506, -0.008604460395872593, -0.031236916780471802, -0.00506187416613102, -0.016337955370545387, -0.028945215046405792, 0.00770544121041894, -0.0005734139122068882, 0.010188781656324863, -0.010152914561331272, -0.018181398510932922, -0.01322429720312357, 0.0009786986047402024, 0.027419596910476685, 0.003084952011704445, -0.01181516982614994, -0.039822183549404144, -0.027344081550836563, 0.03901907056570053, -0.0012519324664026499, 0.014859959483146667, -0.006176043767482042, -0.02991301752626896, -0.02830863557755947, -0.06274687498807907, 0.007568431552499533, 0.00010841550829354674, 0.014256855472922325, 0.0012982835760340095, 0.024013426154851913, -0.0005515485536307096, -0.03122541308403015, 0.03958405554294586, -0.0346469022333622, -0.040133796632289886, 0.004209476988762617, -0.017356248572468758, 0.030928827822208405, 0.01783500611782074, 0.005844042636454105, 0.020186088979244232, 0.0033130503725260496, 0.006750569678843021, 0.011755458079278469, -0.0009626256651245058, 0.03968973085284233, -0.0172982569783926, 0.05296897515654564, -0.0904991403222084, 0.004433291964232922, 0.002794718137010932, -0.0075771743431687355, -0.014200189150869846, 0.847366452217102, -0.0006525263888761401, 0.06790941208600998, 0.06003394350409508, 0.0126384561881423, -0.003234779229387641, -0.01365270558744669, 0.016253463923931122, -0.0314086489379406, 0.03296053409576416, -0.05237114429473877, 0.019849728792905807, 0.002694180700927973, 0.02102794498205185, -0.00312686781398952, 0.006140316370874643, 0.0454106368124485, -0.00013949240383226424, 0.013796565122902393, -0.020722700282931328, 0.001799447345547378, -0.00973738357424736, 0.019678782671689987, 0.030665390193462372, -0.013580737635493279, 0.03109682910144329, -0.1782044768333435, 0.03138904273509979, -7.275709794787071e-33, 0.0596940815448761, 0.013932758942246437, -0.01333765871822834, 0.02660507708787918, 0.03995721414685249, -0.0020457750651985407, 0.0006715556373819709, 0.044188644737005234, -0.030543867498636246, -0.0257849283516407, 0.008552824147045612, -0.03293667733669281, 0.0035391419660300016, -0.028603998944163322, 0.03171800076961517, -0.03460253030061722, -0.003943590447306633, 0.027439536526799202, -0.005684701260179281, -0.00982824619859457, 0.02939080074429512, 0.05653878673911095, 0.016513889655470848, -0.032407261431217194, -0.012743347324430943, -0.018320083618164062, 0.005310637876391411, 0.03853724151849747, -0.03584836795926094, -0.03929441049695015, -0.0032338809687644243, 0.04226333647966385, -0.06020769476890564, -0.00813367124646902, 0.0035788831301033497, -0.024884264916181564, -0.016063883900642395, 0.0006903276080265641, -0.01798110455274582, 0.013685350306332111, -0.032412607222795486, -0.008480829186737537, -0.04833720996975899, 0.008058428764343262, 0.0008066693553701043, -0.060041703283786774, -0.013142119161784649, -0.021003542467951775, 0.026652013882994652, -0.007749184034764767, -0.02473977394402027, 0.014406216330826283, 0.0041148466989398, -0.02530166506767273, -0.014478188939392567, 0.056522104889154434, 0.009875545278191566, -0.0009050389635376632, 0.015580371022224426, 0.02767387218773365, 0.008847353979945183, -0.01834111474454403, -0.06255410611629486, -0.007309320382773876, -0.03134140372276306, -0.01253401581197977, 0.016212401911616325, -0.025238310918211937, 0.033059846609830856, -0.03380042314529419, -0.028207814320921898, 0.03033183142542839, -0.024768570438027382, -0.013143791817128658, 0.002496328903362155, 0.016783112660050392, -0.010016177780926228, 0.0401303768157959, 0.003300437470898032, 0.011997087858617306, 0.029322173446416855, 0.003950581420212984, 0.012044929899275303, -0.004281635861843824, -0.005351579282432795, -0.020110227167606354, 0.011533185839653015, -0.023785509169101715, -0.037477027624845505, -0.0075591327622532845, 0.0206767525523901, 0.05691182240843773, 0.01830334961414337, -0.05678462237119675, 0.031012816354632378, 7.509588354878581e-33, -0.017377538606524467, -0.0018713846802711487, -0.0146904606372118, 0.01847958005964756, 0.044561732560396194, -0.01613917388021946, 0.0235433429479599, 0.013800183311104774, -0.06722994893789291, 0.0175021979957819, -0.022290505468845367, 0.02862398326396942, -0.003597297938540578, 0.016420109197497368, 0.04647215083241463, -0.009491611272096634, 0.027027782052755356, -0.013265402987599373, 0.03921889886260033, -0.018133871257305145, 0.041138578206300735, 0.013038703240454197, 0.006708377506583929, -0.0020596631802618504, 0.02473117783665657, 0.020035918802022934, -0.027965649962425232, 0.023339949548244476, 0.027829138562083244, 0.0003982570196967572, -0.006502396427094936, 0.01849530264735222, 0.01040579192340374, -0.004685237538069487, 0.001789364847354591, 0.02179955691099167, -0.01393030770123005, -0.013335109688341618, 0.016800740733742714, -0.01181152556091547, 0.004361683037132025, -0.0026318689342588186, -0.01811462640762329, 0.007057163864374161, 0.03731368109583855, 0.013802086003124714, -0.0024172186385840178, -0.029606394469738007, 0.0005748026887886226, 0.011990468949079514, 0.034876443445682526, 0.02232982963323593, -0.0053597730584442616, 0.010156982578337193, 0.01613876037299633, -0.02973928675055504, -0.020594706758856773, -0.016811812296509743, 0.00013906322419643402, 0.023164229467511177, -0.013044537976384163, 0.024082724004983902, -0.01856072060763836, 0.006026850081980228, 0.004894872661679983, 0.007786867208778858, -0.005258635152131319, 0.005326395388692617, -0.0013452100101858377, -0.005590580869466066, -0.024312574416399002, -0.03129822388291359, 0.015035483054816723, 0.0019786949269473553, 0.01331904623657465, 0.0009152259444817901, -0.0013087841216474771, 0.0012207338586449623, 0.02359049953520298, -0.01096377894282341, 0.015730181708931923, -0.00764833390712738, 0.01557485293596983, -0.018983349204063416, -0.02397519163787365, 0.03167508915066719, 0.022549953311681747, -0.004294769372791052, 0.005763859022408724, -0.000324687862303108, -0.013619119301438332, -0.012105733156204224, 0.03427867591381073, 0.01245830487459898, 0.0031457466538995504, -1.3106613572233528e-8, -0.027279682457447052, 0.022512253373861313, -0.009679959155619144, 0.02904181368649006, 0.024171164259314537, 0.004264830145984888, -0.015681639313697815, -0.05559169501066208, -0.017916787415742874, 0.0014926968142390251, 0.015049576759338379, -0.009283226914703846, 0.011987793259322643, 0.03982235863804817, 0.03207571059465408, -0.0815780982375145, -0.059842586517333984, -0.018183406442403793, 0.011578007601201534, 0.013837704434990883, 0.00565896974876523, 0.030002225190401077, -0.01739743910729885, 0.002215702785179019, 0.014730025082826614, 0.0016223718412220478, -0.01588107831776142, -0.08177567273378372, 0.01180990505963564, 0.011882361955940723, -0.030105801299214363, -0.002326935064047575, -0.052018728107213974, -0.002745653036981821, -0.03307640925049782, 0.020942697301506996, 0.01128370501101017, -0.0036094586830586195, 0.03180452436208725, -0.004186871461570263, 0.0252113975584507, -0.00482807494699955, 0.02729223482310772, -0.00008182169403880835, 0.01792987436056137, -0.01321688573807478, -0.010071774013340473, -0.01228421926498413, 0.012468039058148861, -0.03610851615667343, -0.0005198220605961978, -0.005169266369193792, 0.0028714346699416637, -0.0020372977014631033, -0.019645482301712036, 0.023201031610369682, -0.018162067979574203, -0.0067764632403850555, -0.01986152119934559, -0.014340379275381565, 0.021876735612750053, -0.014172513037919998, -0.030150605365633965, -0.033800143748521805 ]
tdd-consistent-test-structure
https://markhneedham.com/blog/2010/03/24/tdd-consistent-test-structure
false
2010-03-15 00:09:47
node.js: First thoughts
[ "javascript" ]
[ "Javascript" ]
I recently came across http://nodejs.org/[node.js] via http://www.pgrs.net/2010/2/28/node-js-redis-and-resque[a blog post by Paul Gross] and I've been playing around with it a bit over the weekend trying to hook up some code to call through to the Twitter API and then return the tweets on my friend timeline. node.js gives us event driven I/O using JavaScript running server side on top of http://code.google.com/p/v8/[Google's V8 JavaScript engine]. Simon Willison has http://www.slideshare.net/simon/evented-io-based-web-servers-explained-using-bunnies - Simon Willison's talk[part of a presentation on slideshare] where he describes the difference between the typical thread per request approach and the event based approach to dealing with web requests using the metaphor of bunnies. He also has http://simonwillison.net/2009/Nov/23/node/[a blog post where he describes this is more detail]. Another resource I found useful is http://jsconfeu.blip.tv/file/2899135/[a video from jsconf.eu] where the creator of node.js, Ryan Dahl, explains the philosophy behind event driven I/O and gives several examples using node.js. These are some of my thoughts so far: * I'm not used to have http://en.wikipedia.org/wiki/Event-driven_programming[so many callbacks spread all around the code] and I'm still getting used to the idea that they aren't executed until the event actually happens! I often find myself looking at a piece of code and not understanding how it can possibly work because I'm assuming that the function passed in is executed immediately when in fact it isn't. * If you make a web request the response comes back in chunks so the callback we setup to capture the response will be called multiple times with different parts of the response message. For example I have this code to call Twitter and return all my friends' status updates: ~~~javascript var sys = require("sys"), http = require('http') exports.getTweets = function(callBack) { var twitter = http.createClient(80, "www.twitter.com"); var request = twitter.request("GET", "/statuses/friends_timeline.json", {"host": "www.twitter.com", "Authorization" : "Basic " + "xxx"}); request.addListener('response', function (response) { var tweets = ""; response.addListener("data", function (chunk) { tweets += chunk; }); response.addListener("end", function() { callBack.call(this, tweets); }); }); request.close(); }; ~~~ I originally thought that the listener for 'data' would only be called once but it gets called 8 times sometimes so that I've created the 'tweets' variable which allows us to wait until we have the full response before firing the callback when the 'end' event is fired. I'm not sure whether I'm missing the point a bit by doing this and I think I possibly need to get more used to designing functions which can deal with streams rather than expecting to have all of the data. * It seems like node.js would be perfect for a version of http://code.google.com/p/http-impersonator/[my colleagues Julio Maia and Fabio Lessa's http-impersonator] which is a Java application used to record and replay requests/responses made across http-based protocols. I haven't quite worked out the best way to test the above code - ideally I want to stub out the HTTP request so that the test doesn't have to go across the wire. Micheil Smith pointed me towards http://fakeweb.rubyforge.org/[fakeweb] which allows the faking of HTTP requests/responses in Ruby so I'll probably have a go at creating something similar. So far node.js seems really cool and writing code using it is really fun. I'm still not sure exactly where it will fit in some of the architectures that I've worked on but the model it encourages feels really natural to work with.
null
null
[ 0.015197297558188438, -0.04093893989920616, -0.0236353799700737, 0.011342846788465977, 0.047709450125694275, 0.009945854544639587, 0.01939462497830391, 0.08291171491146088, -0.00525458762422204, 0.0002576186670921743, 0.009144101291894913, -0.010172349400818348, -0.07697056233882904, -0.0005868934094905853, -0.006881414446979761, 0.05015182867646217, 0.08583450317382812, -0.0034049509558826685, 0.04877273365855217, -0.011690262705087662, 0.0000693461624905467, 0.05536683648824692, 0.005825046915560961, 0.020008966326713562, 0.023785464465618134, 0.012037675827741623, -0.01999778114259243, -0.011684496887028217, -0.06801557540893555, -0.03050650842487812, 0.040103647857904434, 0.026918450370430946, -0.007940059527754784, -0.020957957953214645, 0.00570952333509922, -0.006819690577685833, -0.012601375579833984, 0.007910293526947498, -0.01371022965759039, 0.04378229379653931, -0.06933219730854034, 0.025251353159546852, -0.026194149628281593, 0.022894060239195824, -0.030690960586071014, 0.034926898777484894, 0.0025968728587031364, 0.013125218451023102, -0.01088080182671547, 0.026612291112542152, -0.07187166810035706, 0.014600398950278759, -0.011583637446165085, 0.006416030693799257, 0.009362383745610714, 0.030854450538754463, 0.006623296532779932, -0.05413457378745079, -0.004619787912815809, -0.04722227528691292, -0.008356326259672642, 0.011726433411240578, -0.012446039356291294, 0.01683199591934681, 0.017407206818461418, -0.011132878251373768, -0.000133615467348136, 0.07734841853380203, -0.02817492187023163, -0.024216149002313614, 0.00907234475016594, 0.03139501437544823, -0.0309467613697052, 0.023510152474045753, 0.020343326032161713, -0.045018356293439865, 0.00048172351671382785, 0.04016188159584999, 0.004272078163921833, 0.06266622245311737, -0.017807140946388245, 0.03959466144442558, 0.04582845792174339, 0.03841162100434303, 0.025054477155208588, -0.006515415385365486, -0.01923380233347416, -0.0013161926763132215, -0.03704235702753067, 0.0517025850713253, 0.00530402222648263, -0.060253310948610306, 0.014135632663965225, 0.030445091426372528, -0.0015010667266324162, 0.04705718904733658, -0.003495264332741499, 0.008580263704061508, -0.009658239781856537, -0.04363319277763367, -0.06586382538080215, -0.020382946357131004, 0.018849194049835205, -0.03401271253824234, -0.05643301084637642, -0.009156542830169201, -0.0180792436003685, -0.01642567105591297, 0.006703841965645552, -0.00813633669167757, -0.03348132222890854, -0.0038927614223212004, -0.007505590561777353, 0.012946146540343761, -0.0473177395761013, 0.07542036473751068, 0.004118972923606634, -0.03192216902971268, -0.02780286781489849, 0.014472773298621178, 0.06555022299289703, 0.04665488377213478, -0.004700663033872843, 0.0718512162566185, 0.00780588760972023, 0.023525390774011612, -0.026193898171186447, 0.0430276021361351, -0.003868797328323126, -0.04392585530877113, -0.017682651057839394, 0.0525444932281971, -0.04564383625984192, 0.0007951349252834916, -0.01341453567147255, -0.020015651360154152, -0.01856112852692604, 0.002553667640313506, 0.05738537013530731, 0.050919774919748306, -0.016933171078562737, -0.044269341975450516, 0.02012495882809162, 0.0023826099932193756, 0.05108867585659027, 0.01068594865500927, -0.018954887986183167, -0.044080931693315506, -0.006701448932290077, 0.029653139412403107, 0.005149397999048233, 0.0023251576349139214, 0.030509304255247116, -0.03176204860210419, -0.01000503171235323, 0.08390849083662033, 0.05206333100795746, -0.01057301927357912, -0.01923220604658127, 0.004382736049592495, 0.05801737308502197, 0.0034168020356446505, 0.01766095496714115, 0.046949200332164764, -0.0045273564755916595, -0.024925706908106804, 0.0012858954723924398, 0.06190865486860275, -0.0038230344653129578, -0.009641985408961773, -0.06622737646102905, -0.026608724147081375, 0.06202959269285202, -0.02679641731083393, -0.03184554725885391, 0.023373384028673172, 0.06629528850317001, -0.02626243233680725, 0.03857642039656639, -0.008603433147072792, -0.06897299736738205, 0.059052664786577225, 0.040539223700761795, 0.016450801864266396, 0.012907166965305805, -0.01746268942952156, 0.0821908637881279, 0.025064226239919662, -0.006878969259560108, 0.013534902594983578, -0.08044019341468811, -0.071412093937397, -0.03971860557794571, 0.007817462086677551, 0.07413028925657272, -0.06155307590961456, 0.01882832683622837, 0.07237278670072556, 0.05153512954711914, 0.047065459191799164, 0.02582850307226181, -0.04332662746310234, 0.014828287996351719, -0.041731029748916626, -0.03732220083475113, 0.030922049656510353, 0.06657420098781586, -0.038135889917612076, -0.027386454865336418, 0.01956263743340969, -0.0207838024944067, 0.017378725111484528, 0.03596968203783035, -0.01966371014714241, 0.048745062202215195, 0.024730302393436432, 0.05311638489365578, -0.0260565597563982, 0.029703792184591293, -0.0484989657998085, 0.06361905485391617, 0.006919963750988245, 0.01705726981163025, -0.003970464691519737, 0.014957648701965809, 0.12714438140392303, 0.04911230504512787, -0.02791428752243519, -0.04647696763277054, 0.024350402876734734, 0.017512483522295952, -0.01736193150281906, -0.02851220965385437, -0.01609121821820736, -0.03621469810605049, 0.008730222471058369, -0.03087300807237625, -0.011597495526075363, -0.010643304325640202, -0.037121132016181946, 0.014905215241014957, 0.05655493214726448, -0.0506107360124588, 0.053559962660074234, -0.022387994453310966, -0.02042817324399948, 0.02455105632543564, -0.04553021490573883, -0.040949828922748566, 0.005482100415974855, 0.002673524199053645, -0.010355539619922638, 0.033123016357421875, -0.039247460663318634, 0.01359535101801157, -0.019053686410188675, -0.04186473414301872, 0.018494531512260437, 0.04016825184226036, 0.07332316786050797, 0.009792782366275787, 0.04054643213748932, -0.01215660572052002, 0.014346525073051453, -0.005311873741447926, -0.05916701629757881, -0.037124041467905045, -0.02165554277598858, 0.004625523928552866, 0.04060541093349457, 0.02920662984251976, -0.007980364374816418, 0.010536889545619488, -0.010680271312594414, -0.0060430350713431835, -0.027802687138319016, -0.00045167875941842794, -0.022592326626181602, 0.0010427777888253331, -0.025469766929745674, -0.055942486971616745, 0.06608053296804428, -0.037769097834825516, -0.03324265033006668, -0.007703661918640137, -0.04075948894023895, 0.03504340723156929, -0.08531500399112701, -0.029954424127936363, -0.012381741777062416, 0.03287710249423981, 0.03431933745741844, 0.018354102969169617, 0.02970733866095543, 0.06653288751840591, -0.001000023097731173, 0.00405467115342617, -0.0014757959870621562, -0.018808642402291298, 0.030833538621664047, -0.03342825546860695, 0.00625306973233819, 0.04088873043656349, -0.016563747078180313, -0.02728746458888054, -0.03809857368469238, 0.031527724117040634, -0.0314767025411129, -0.2781583368778229, 0.05810844898223877, 0.034682463854551315, -0.03200305253267288, 0.03008810617029667, -0.032441213726997375, 0.0061987824738025665, -0.027951044961810112, 0.0025191449094563723, -0.0004426203668117523, -0.0258757546544075, -0.02249833755195141, -0.05731154978275299, 0.01763361506164074, -0.0011109098559245467, -0.006866817828267813, -0.012134977616369724, -0.014234751462936401, -0.003171599470078945, 0.02609376423060894, -0.03980476036667824, -0.045938797295093536, 0.017527732998132706, 0.01810241863131523, 0.03436170890927315, 0.030969763174653053, -0.10863752663135529, 0.03930220380425453, -0.018327564001083374, 0.008088766597211361, 0.012606539763510227, -0.03269520029425621, 0.016759159043431282, 0.00844060629606247, -0.013675720430910587, -0.018634773790836334, 0.055104222148656845, 0.004199521150439978, 0.01918153464794159, -0.02012873813509941, -0.023328082635998726, -0.04614347219467163, -0.011838597245514393, 0.006375305820256472, 0.0762980729341507, 0.006898100022226572, -0.07758927345275879, 0.017427852377295494, -0.021066125482320786, 0.056914396584033966, -0.010442066937685013, -0.07018629461526871, -0.036164071410894394, 0.008455601520836353, -0.004214584361761808, -0.02195018343627453, -0.028944749385118484, -0.016505705192685127, -0.027224784716963768, -0.047163721174001694, -0.0021967680659145117, -0.029602747410535812, -0.010154446586966515, -0.0301443450152874, 0.007380079943686724, -0.04063543304800987, -0.058354299515485764, -0.01958754099905491, 0.08211755752563477, 0.006395447067916393, 0.006779470946639776, 0.03904494643211365, -0.031239794567227364, -0.12290402501821518, -0.015207634307444096, -0.008884856477379799, -0.020810235291719437, 0.010380495339632034, 0.024793919175863266, 0.053516935557127, -0.0436190702021122, -0.037906575947999954, 0.01759699545800686, 0.0019316836260259151, 0.039628397673368454, -0.00471038743853569, 0.03358429670333862, -0.03438706696033478, -0.009689586237072945, -0.021391132846474648, 0.09591875225305557, -0.0491788424551487, -0.05204199627041817, -0.00099464925006032, 0.0232714731246233, 0.0475316122174263, 0.03760618716478348, 0.003547781379893422, -0.011453547514975071, 0.03707564249634743, 0.024450698867440224, -0.035361506044864655, 0.01962888613343239, -0.036289844661951065, 0.020610809326171875, 0.0012317897053435445, -0.0477362722158432, 0.01326365489512682, 0.018540367484092712, 0.03227477893233299, -0.015427855774760246, -0.002440671669319272, 0.012242629192769527, -0.0661938413977623, -0.02237500064074993, -0.004548278171569109, 0.0029441837687045336, 0.033848755061626434, 0.018313689157366753, -0.04618123546242714, -0.05320349708199501, 0.010633028112351894, 0.029675045982003212, 0.014506103470921516, -0.043435730040073395, -0.04071494936943054, -0.0135031808167696, -0.02411506325006485, 0.03420630469918251, -0.008748581632971764, 0.0003643434902187437, 0.03585011139512062, -0.0008572485530748963, -0.010528860613703728, 0.018552184104919434, -0.015214781276881695, -0.02099178545176983, -0.04014838859438896, 0.01118601392954588, 0.003610496176406741, 0.006882138550281525, 0.02140655927360058, -0.03496884927153587, 0.02766844630241394, 0.039769578725099564, 0.02969447709619999, -0.00009420237620361149, 0.03148270398378372, 0.020351722836494446, -0.010106382891535759, 0.0037778401747345924, -0.06455538421869278, -0.021885693073272705, -0.021784232929348946, -0.015390463173389435, -0.050262391567230225, 0.029987378045916557, -0.01499075349420309, -0.01834905706346035, -0.03799635171890259, 0.030079971998929977, -0.061425209045410156, 0.00401360122486949, 0.003214617259800434, -0.02323409542441368, 0.03517980873584747, 0.007803625427186489, 0.029798323288559914, -0.011906539089977741, -0.045857835561037064, -0.03478380665183067, 0.025582991540431976, -0.020518578588962555, -0.004736754111945629, 0.01150180771946907, -0.002937661949545145, -0.021035531535744667, 0.012071586214005947, -0.0017331496346741915, 0.003361527342349291, 0.04395873099565506, 0.0002576071710791439, 0.01444754283875227, 0.03409011289477348, 0.07497851550579071, 0.015906477347016335, -0.0004331498930696398, 0.022373028099536896, -0.03225739672780037, 0.02086564339697361, -0.05257324501872063, 0.011799752712249756, 0.016641130670905113, 0.008514627814292908, -0.017957506701350212, -0.07969912141561508, 0.048821136355400085, 0.0010224622674286366, 0.012082488276064396, -0.014252869412302971, 0.014247182756662369, 0.03635193407535553, -0.03735413774847984, 0.026311073452234268, 0.03235878795385361, -0.04683893918991089, 0.009366228245198727, 0.002585509093478322, 0.04063231125473976, -0.005414845887571573, 0.03197506070137024, -0.04688465595245361, -0.0019324752502143383, -0.02058524638414383, 0.01059151440858841, -0.015460925176739693, -0.04532095417380333, -0.019240079447627068, 0.026870930567383766, 0.002746650017797947, 0.0004846946685574949, -0.01552780345082283, -0.035306401550769806, -0.012431986629962921, -0.021375592797994614, 0.02002633921802044, -0.02889401465654373, -0.0220944844186306, 0.02840553969144821, -0.03127054497599602, 0.018466098234057426, -0.02146165445446968, 0.019705258309841156, 0.030127670615911484, -0.016574138775467873, -0.007400938309729099, -0.03622730076313019, 0.020265085622668266, -0.014892897568643093, 0.08286374062299728, -0.03283477947115898, -0.0008433390758000314, -0.03862034156918526, 0.005842987447977066, -0.02818119153380394, -0.004144870210438967, -0.023930402472615242, -0.004401158541440964, 0.02232350781559944, 0.054819442331790924, 0.04841891676187515, 0.030821898952126503, 0.00598114961758256, 0.013842091895639896, 0.032692018896341324, -0.08774159848690033, -0.029663827270269394, -0.04189598187804222, -0.06992939859628677, -0.0016603096155449748, 0.009868018329143524, 0.0007093289750628173, -0.056449420750141144, 0.04792896285653114, 0.021213119849562645, 0.007780034095048904, 0.024164078757166862, -0.00861536804586649, 0.03336664289236069, -0.0007584122940897942, 0.011690841056406498, -0.08696799725294113, 0.005677185021340847, 0.0273241326212883, 0.01342996396124363, 0.00022114181774668396, 0.008243571035563946, -0.03475346788764, 0.04091601446270943, -0.0713123083114624, -0.0038829133845865726, 0.048450861126184464, 0.012272154912352562, -0.004564065020531416, -0.007086511701345444, -0.08590001612901688, 0.030264869332313538, 0.032744474709033966, -0.022669337689876556, 0.011667304672300816, -0.05340104550123215, 0.045510176569223404, 0.005016531329602003, 0.000928368594031781, -0.03358704596757889, -0.03046870231628418, 0.06567181646823883, 0.010083614848554134, -0.02109064906835556, 0.06468606740236282, -0.016424547880887985, 0.01586756855249405, 0.039690569043159485, 0.004612850956618786, 0.00556733924895525, 0.026421329006552696, -0.015897775068879128, -0.07567592710256577, 0.03699896112084389, 0.009533263742923737, -0.032654572278261185, -0.02693289890885353, 0.07337074726819992, 0.016162952408194542, -0.045467231422662735, -0.039296288043260574, -0.009211624972522259, -0.0530049093067646, -0.040472786873579025, -0.03490462526679039, -0.0019052110146731138, -0.008752943016588688, 0.05103793367743492, -0.012927480973303318, 0.0004285326867830008, 0.08632925897836685, -0.010239078663289547, 0.006457148585468531, -0.0024835302028805017, 0.07163837552070618, 0.08975912630558014, 0.07089076191186905, -0.013339607045054436, 0.0573357529938221, -0.01061055064201355, -0.041600193828344345, -0.025906536728143692, -0.05163642391562462, -0.027666160836815834, 0.0015518912114202976, 0.012807671912014484, 0.05983348563313484, -0.03267005831003189, 0.060035500675439835, -0.03423856571316719, 0.008431980386376381, 0.01194639690220356, 0.010044139809906483, 0.0011594530660659075, 0.062352318316698074, 0.021467698737978935, 0.012709003873169422, -0.0037232544273138046, -0.023396193981170654, 0.02871212549507618, -0.05997204780578613, -0.026397136971354485, 0.04152902215719223, 0.03498941659927368, -0.0023640519939363003, 0.03082582727074623, 0.02615136094391346, 0.06236938014626503, -0.007996330969035625, 0.01621272601187229, 0.00996414665132761, 0.03163263946771622, -0.00911135133355856, 0.01678497903048992, -0.013691157102584839, -0.013632352463901043, -0.015217309817671776, -0.024140985682606697, -0.00894634798169136, -0.003235336160287261, -0.030862905085086823, 0.057952091097831726, -0.025967314839363098, 0.0008975158561952412, -0.016628945246338844, -0.032288238406181335, -0.027980171144008636, -0.030198102816939354, -0.03241375833749771, -0.063446044921875, -0.08094602078199387, -0.048041146248579025, 0.03544042631983757, -0.01571100391447544, -0.028153138235211372, -0.01865626499056816, 0.006740408483892679, 0.014182142913341522, 0.018511688336730003, -0.0295698344707489, -0.02009001560509205, 0.031746797263622284, -0.01405722089111805, 0.03849536180496216, 0.03547971695661545, 0.02554032951593399, -0.00016220859833993018, -0.008970784023404121, -0.044880107045173645, 0.03215456008911133, 0.02627122960984707, 0.026300961151719093, -0.019524607807397842, -0.07641198486089706, 0.01813012920320034, 0.023243490606546402, -0.009059852920472622, -0.055247433483600616, 0.008906672708690166, 0.028548605740070343, 0.01336220744997263, 0.03503432124853134, -0.018182074651122093, -0.0008390614530071616, -0.0560205914080143, -0.029779858887195587, -0.005220682360231876, 0.018908075988292694, 0.04486628621816635, -0.016902431845664978, 0.08443360030651093, 0.048501256853342056, -0.031043129041790962, -0.025676129385828972, -0.019318105652928352, -0.016646239906549454, -0.023388521745800972, -0.014765214174985886, -0.05215269699692726, -0.039519887417554855, -0.08470175415277481, -0.057045187801122665, 0.018132422119379044, -0.0029788438696414232, -0.02882675640285015, 0.04956661909818649, 0.03854619711637497, -0.05508076772093773, 0.03544101119041443, -0.0374794565141201, 0.02450416050851345, 0.004385034088045359, -0.015274728648364544, -0.0011508841998875141, -0.015608935616910458, -0.013841081410646439, -0.02918979339301586, 0.014032768085598946, -0.010632884688675404, -0.049841444939374924, -0.011301308870315552, 0.03821379691362381, 0.0414615198969841, -0.006144378799945116, 0.00802961178123951 ]
[ -0.0679711401462555, -0.029053231701254845, -0.054048120975494385, -0.025733420625329018, 0.046624328941106796, -0.08269771933555603, 0.010140947997570038, 0.030750645324587822, -0.006119763944298029, -0.016726430505514145, -0.014083282090723515, 0.016096293926239014, -0.012920401990413666, -0.03443647176027298, 0.06446275860071182, 0.016343459486961365, 0.004687608685344458, -0.10600662976503372, -0.07006791979074478, 0.015515666455030441, 0.00038768723607063293, -0.02915610373020172, -0.032224006950855255, -0.0349612757563591, 0.01165829598903656, 0.012165440246462822, 0.03253581002354622, -0.02981690689921379, 0.014248785562813282, -0.14948156476020813, 0.0083765285089612, -0.04168592765927315, 0.020635390654206276, -0.018431181088089943, -0.007166667375713587, 0.03405272588133812, 0.06483883410692215, -0.05435434728860855, 0.01514637190848589, 0.08807581663131714, 0.029830552637577057, 0.008017375133931637, -0.04609732702374458, -0.019825512543320656, 0.06272884458303452, -0.021189507097005844, -0.013677570968866348, -0.030028685927391052, -0.06715663522481918, -0.0040364391170442104, -0.02827012538909912, -0.030163828283548355, -0.009750491939485073, -0.0419415645301342, 0.043275147676467896, 0.06203524395823479, 0.01634988933801651, 0.09952199459075928, 0.049205977469682693, 0.011760390363633633, 0.03566848114132881, -0.007127102930098772, -0.12234901636838913, 0.10114464163780212, 0.023917505517601967, 0.04653950035572052, -0.04628738760948181, -0.0026001313235610723, -0.020042940974235535, 0.06228787451982498, 0.02540901117026806, 0.013244042173027992, -0.00037450718809850514, 0.04577352851629257, -0.019038746133446693, -0.009547053836286068, 0.027488229796290398, 0.03456944227218628, 0.022454090416431427, -0.03562598302960396, -0.05720779672265053, -0.010514190420508385, 0.00341633684001863, -0.017779536545276642, -0.01817593164741993, -0.018162256106734276, -0.01897515542805195, 0.05188886821269989, 0.014836088754236698, 0.04333985596895218, -0.006538568064570427, -0.007563013583421707, 0.0481453500688076, 0.014404930174350739, -0.05004333704710007, 0.005356977228075266, 0.005848668981343508, 0.014903423376381397, -0.0254441499710083, 0.3681339919567108, -0.0044950940646231174, 0.026507340371608734, 0.04382505267858505, 0.063758485019207, -0.012658016756176949, -0.028983529657125473, -0.0011939943069592118, -0.07638555765151978, 0.027200954034924507, -0.011140493676066399, -0.021415233612060547, -0.02080044522881508, 0.04424207657575607, -0.06966519355773926, 0.022056138142943382, 0.038726240396499634, 0.027313916012644768, 0.048771411180496216, 0.009435571730136871, 0.02393832616508007, 0.03837256133556366, 0.0523267425596714, 0.05568362772464752, -0.009538660757243633, 0.03203928843140602, 0.048157986253499985, 0.06726836413145065, 0.05840722471475601, 0.038883358240127563, 0.03189261630177498, 0.03877049684524536, 0.004448253195732832, -0.0884062871336937, 0.00840509869158268, 0.009109427221119404, 0.01982967182993889, -0.015561964362859726, -0.054709844291210175, -0.036471713334321976, 0.009373447857797146, 0.026622207835316658, -0.031043745577335358, 0.051876917481422424, -0.002851453609764576, -0.034053683280944824, 0.09072816371917725, 0.0022852246183902025, 0.0029452829621732235, -0.025789784267544746, -0.03562789782881737, 0.005653680767863989, 0.049020327627658844, -0.06500936299562454, -0.05268236994743347, -0.03201586753129959, 0.01362832635641098, 0.040868766605854034, 0.018915405496954918, -0.03705155476927757, 0.013427193276584148, -0.05326630920171738, -0.014019605703651905, 0.021856827661395073, 0.024388905614614487, 0.05034551024436951, -0.14312335848808289, 0.006200450472533703, 0.041125088930130005, 0.03495882451534271, -0.10886132717132568, -0.04230232164263725, 0.033892035484313965, -0.05379059165716171, -0.08550596982240677, 0.04906332865357399, 0.0026056640781462193, -0.025746406987309456, -0.02879180945456028, 0.08183526247739792, 0.026379087939858437, -0.021167324855923653, -0.04645577073097229, -0.006989024579524994, 0.01700548641383648, -0.04801904037594795, -0.03974253684282303, -0.014246994629502296, -0.003225438529625535, 0.0003315136127639562, -0.013765675947070122, -0.00039826490683481097, -0.050632890313863754, -0.03899414837360382, 0.045673877000808716, -0.007557321339845657, -0.015965614467859268, -0.013385746628046036, -0.031156593933701515, 0.015990758314728737, -0.00529476860538125, -0.0017171214567497373, -0.02305646985769272, -0.03265226632356644, 0.0296001136302948, -0.0619322806596756, 0.032401736825704575, 0.04458250477910042, -0.020437955856323242, 0.059676069766283035, 0.026511771604418755, -0.05996580049395561, -0.01980319432914257, -0.012064225040376186, 0.0029198918491601944, -0.003681432455778122, -0.043750014156103134, 0.0000485936579934787, 0.015230433084070683, -0.006924659013748169, 0.0400695726275444, -0.0522078275680542, -0.014998311176896095, -0.01606103777885437, -0.3375721275806427, -0.06729169934988022, -0.0024147287476807833, -0.0027496381662786007, 0.026544658467173576, -0.057397499680519104, -0.004965232219547033, -0.033517129719257355, 0.00011760464985854924, 0.026986513286828995, 0.11979365348815918, -0.01528142299503088, 0.01711030676960945, -0.11210661381483078, 0.01688757911324501, 0.028670532628893852, -0.019050277769565582, -0.07185864448547363, -0.01272361259907484, 0.022083792835474014, -0.026424884796142578, -0.034536827355623245, -0.007632253225892782, -0.08240319788455963, -0.0023913562763482332, -0.021574877202510834, 0.09080983698368073, -0.0015000604325905442, 0.07609259337186813, -0.05901278555393219, 0.01597736030817032, -0.021375412121415138, 0.01385299488902092, -0.07441115379333496, -0.005529460031539202, 0.012024462223052979, 0.04063722863793373, 0.004081896506249905, 0.03668880835175514, -0.02031928114593029, -0.08970358967781067, 0.037288401275873184, -0.04202905669808388, -0.05177798867225647, -0.009614882059395313, 0.021259158849716187, -0.033865757286548615, -0.024791227653622627, 0.016017844900488853, 0.04007149115204811, 0.0135924331843853, 0.002617166843265295, 0.04405199736356735, 0.015540381893515587, 0.010240623727440834, -0.004699773620814085, -0.03668951988220215, -0.01941175013780594, -0.015511905774474144, 0.017715008929371834, 0.019730344414711, 0.03242909535765648, 0.015714820474386215, -0.07904598861932755, 0.02922164835035801, 0.0449901781976223, 0.003943509887903929, -0.013427739031612873, 0.015999741852283478, -0.04124889522790909, -0.03849458694458008, 0.11288104951381683, -0.004289205651730299, 0.051183901727199554, 0.062030237168073654, 0.02689647302031517, -0.013424515724182129, -0.0259099043905735, 0.057298123836517334, 0.05015348643064499, 0.03945106267929077, -0.04806223884224892, 0.06987901777029037, -0.016091007739305496, -0.03978519141674042, 0.005204346962273121, -0.04749877378344536, 0.0024158779997378588, -0.007682295516133308, 0.01728854328393936, -0.03219471871852875, 0.007173062302172184, -0.0436415821313858, -0.08485996723175049, 0.035643916577100754, -0.013628392480313778, -0.22953130304813385, 0.019212380051612854, 0.037115514278411865, 0.04476361349225044, 0.045074377208948135, 0.022235620766878128, 0.011224479414522648, -0.050357818603515625, -0.00208437186665833, -0.01997748203575611, 0.016844937577843666, 0.05393209308385849, 0.00947941280901432, 0.023849453777074814, -0.0012310357997193933, 0.040454842150211334, 0.02187941037118435, 0.008329271338880062, -0.03179037198424339, -0.011985785327851772, 0.0839519277215004, -0.00579203013330698, 0.1817188560962677, 0.031056921929121017, 0.022496556863188744, 0.057802099734544754, -0.027227476239204407, 0.036891914904117584, 0.09748799353837967, -0.025629922747612, -0.007917883805930614, 0.010656202211976051, 0.023805029690265656, 0.002788201440125704, 0.008642434142529964, -0.11707409471273422, 0.007666302844882011, 0.05934805050492287, 0.009680579416453838, -0.03179388865828514, -0.03664999455213547, 0.02630467712879181, 0.02412433549761772, -0.030968077480793, 0.07072075456380844, -0.03366687521338463, -0.030897827818989754, -0.07223459333181381, -0.026616569608449936, 0.0627402812242508, -0.05122533440589905, -0.04269378259778023, -0.000046967819798737764, -0.012955057434737682, 0.04730495437979698, 0.08247953653335571, 0.018060509115457535, -0.020768355578184128, -0.020249584689736366, 0.03969506174325943, -0.0017057083314284682, -0.01324115414172411, 0.10106504708528519, 0.02983100339770317, 0.054543282836675644 ]
[ -0.005922249518334866, 0.01127134170383215, 0.034886814653873444, 0.02286483719944954, 0.03107518143951893, -0.002085519954562187, 0.014470696449279785, 0.005575444549322128, 0.036608144640922546, -0.018507512286305428, -0.035981275141239166, 0.05429337918758392, -0.0031577192712575197, -0.04109852761030197, 0.006903479341417551, -0.01546412892639637, -0.012770677916705608, 0.01184515468776226, 0.029395682737231255, -0.05646169185638428, -0.03963951766490936, -0.015250055119395256, 0.023029379546642303, -0.012118800543248653, -0.024565644562244415, -0.03195195645093918, -0.03723043575882912, -0.009184648282825947, 0.02329089306294918, -0.09399883449077606, -0.017201874405145645, -0.05226941034197807, -0.02193644270300865, -0.03438554331660271, -0.02977033518254757, 0.04257217422127724, -0.013935158960521221, -0.025125494226813316, -0.006277044769376516, 0.029497286304831505, 0.03487733379006386, -0.04008222371339798, -0.03268973156809807, -0.016576198861002922, 0.008795668371021748, -0.011170733720064163, -0.04771515354514122, -0.006827672477811575, -0.037082795053720474, 0.0288288202136755, -0.004955586977303028, -0.000504569907207042, -0.006573393475264311, 0.014126356691122055, -0.03298591077327728, 0.009082424454391003, -0.0066335005685687065, -0.010212515480816364, 0.008465148508548737, -0.007062652613967657, -0.01959402486681938, -0.015429154969751835, 0.012297135777771473, -0.0347079262137413, -0.005132555495947599, 0.01040931511670351, -0.009265745058655739, 0.010125897824764252, 0.005172495264559984, 0.023790806531906128, 0.013995436951518059, 0.04250386729836464, -0.05121796950697899, -0.021954426541924477, -0.04486624896526337, -0.031889453530311584, 0.027457118034362793, -0.010877453722059727, -0.004577659536153078, 0.05697572976350784, -0.04834308102726936, -0.01007169671356678, 0.039024174213409424, 0.03406341001391411, -0.034845128655433655, 0.010357237420976162, -0.017559941858053207, 0.0001811133261071518, -0.0023837373591959476, 0.02500057965517044, -0.05558304116129875, 0.01185313519090414, 0.03719297796487808, 0.031088439747691154, -0.07680238783359528, 0.01572505757212639, -0.011575546115636826, -0.03822864592075348, 0.0021250101272016764, 0.8116868734359741, -0.012427257373929024, 0.009228860959410667, 0.02556069754064083, 0.014130414463579655, 0.02148374728858471, -0.015179615467786789, -0.056903254240751266, 0.004641534294933081, 0.02680431865155697, -0.0013059996999800205, 0.012955741956830025, 0.020342836156487465, 0.03354598954319954, 0.018420537933707237, 0.0059506939724087715, 0.024574343115091324, 0.03690451383590698, 0.015099354088306427, 0.014205214567482471, 0.03505465388298035, 0.08380909264087677, 0.02905031479895115, 0.007608105894178152, -0.0003466315974947065, 0.03501790389418602, -0.16695114970207214, 0.03239033371210098, -8.174775628753959e-33, 0.022002222016453743, -0.03353317454457283, 0.00617224583402276, -0.0043101259507238865, 0.037063777446746826, 0.00782716367393732, 0.014676171354949474, 0.010938241146504879, -0.02649948187172413, -0.02164432220160961, -0.021401802077889442, -0.005640116520226002, 0.021661635488271713, -0.05318251997232437, 0.02908599004149437, -0.007242279592901468, -0.003964751493185759, 0.0582742765545845, 0.04974881932139397, 0.000640427169855684, -0.0033684337977319956, 0.036337949335575104, 0.012668054550886154, 0.041180726140737534, 0.01642691157758236, 0.028307458385825157, 0.03294982761144638, -0.0016203336417675018, -0.019532568752765656, -0.05298075079917908, 0.023952793329954147, 0.010803132317960262, -0.012078492902219296, -0.027730099856853485, 0.0674988254904747, -0.04572169482707977, -0.02539302222430706, 0.0059521859511733055, -0.03793816640973091, -0.014761087484657764, -0.03629933297634125, 0.013746839016675949, -0.06388973444700241, -0.033440977334976196, -0.037560079246759415, -0.024476883932948112, 0.003629184328019619, -0.022160328924655914, 0.029238495975732803, 0.004102014470845461, 0.02334623597562313, 0.028735939413309097, 0.03228757530450821, -0.028748003765940666, -0.014521513134241104, 0.023783937096595764, 0.016143130138516426, 0.000425675738370046, 0.01888377033174038, 0.012488815002143383, 0.06307229399681091, -0.047159239649772644, -0.0031631719321012497, -0.010260023176670074, 0.010424057953059673, -0.027853529900312424, -0.03471112623810768, 0.03100433386862278, 0.03498659282922745, 0.00014979216211941093, -0.021909333765506744, 0.017594611272215843, -0.011737971566617489, -0.0028757110703736544, 0.017110353335738182, -0.015883587300777435, -0.011628489941358566, 0.01022044662386179, -0.010130500420928001, 0.02206331491470337, 0.03836630657315254, -0.03550374135375023, -0.0021553339902311563, -0.019071374088525772, 0.01446271687746048, 0.00639481982216239, -0.014365020208060741, 0.005626360885798931, 0.017848331481218338, 0.03471760079264641, 0.05904879420995712, 0.018598977476358414, -0.024385113269090652, -0.04886407032608986, -0.0483260340988636, 8.343401028063385e-33, -0.051597222685813904, -0.006961101200431585, -0.06388653069734573, 0.022698363289237022, 0.00474719749763608, -0.04194607585668564, -0.005651366431266069, 0.008143262937664986, -0.03343258053064346, 0.06336662918329239, -0.021875035017728806, 0.009702697396278381, -0.053566593676805496, 0.014417976140975952, 0.05554165318608284, -0.017548374831676483, 0.0260127242654562, -0.04614539444446564, 0.01796925812959671, -0.03976987674832344, 0.00371559732593596, 0.0047493125312030315, 0.005705126095563173, -0.01598750613629818, 0.02190946415066719, 0.03233819827437401, -0.024118436500430107, 0.00024311337620019913, 0.004215292166918516, -0.0343383364379406, -0.034496862441301346, -0.030954165384173393, 0.04516894370317459, 0.008836893364787102, 0.018992828205227852, 0.008776298724114895, -0.004563827533274889, -0.002228486118838191, 0.053732819855213165, -0.041308868676424026, 0.028949938714504242, -0.026405707001686096, 0.0007001612102612853, 0.0032441418152302504, -0.005732534918934107, 0.06501850485801697, -0.019350888207554817, 0.023279672488570213, -0.0032363892532885075, 0.030381688848137856, -0.006289995741099119, 0.0036521675065159798, 0.005973325576633215, 0.021388225257396698, 0.013797308318316936, -0.04962412267923355, -0.030159002169966698, -0.014319488778710365, -0.025096381083130836, 0.011988951824605465, 0.007942835800349712, -0.04345942661166191, -0.002857858082279563, 0.045167114585638046, -0.023607511073350906, -0.037899214774370193, -0.033791761845350266, -0.024627571925520897, 0.02864379622042179, -0.03338739275932312, -0.023575017228722572, 0.030169952660799026, -0.0021942793391644955, 0.032778069376945496, 0.034702979028224945, -0.032215606421232224, 0.0085712606087327, -0.016523031517863274, -0.006261277478188276, 0.013046895153820515, -0.02196688763797283, 0.05631449073553085, 0.0048023066483438015, -0.02428555116057396, 0.03135702386498451, 0.03319885581731796, -0.02354927361011505, 0.04345797002315521, 0.03632631525397301, 0.001946117146871984, -0.0014511228073388338, 0.022329755127429962, -0.027565013617277145, 0.01629428192973137, -0.00908869132399559, -1.3292022593702768e-8, -0.016156567260622978, 0.029736999422311783, -0.028561778366565704, 0.005944876931607723, 0.044772371649742126, 0.030348556116223335, 0.0007645045989193022, -0.0006221614894457161, -0.03269712254405022, 0.02484753727912903, 0.040114592760801315, -0.009247327223420143, 0.02847294695675373, 0.003575365524739027, 0.021138541400432587, -0.04116266220808029, -0.02541050687432289, -0.042982425540685654, 0.020407771691679955, 0.021382302045822144, 0.020908882841467857, 0.04483213275671005, -0.007967149838805199, -0.000987459672614932, 0.011693933978676796, -0.008694243617355824, -0.0010848951060324907, -0.04629652574658394, -0.01665051281452179, -0.04125211015343666, -0.058808211237192154, -0.031041409820318222, -0.03745424374938011, -0.01329718716442585, -0.015634560957551003, -0.03442193195223808, -0.028597453609108925, -0.0052380370907485485, 0.03026469238102436, -0.023051468655467033, 0.03688304126262665, 0.001853560796007514, 0.03462015837430954, -0.0006933549302630126, 0.003973160404711962, 0.014934386126697063, -0.02334565296769142, 0.038013897836208344, 0.0433330275118351, -0.019015474244952202, -0.0202244333922863, -0.01077367179095745, 0.01730492152273655, 0.02907508611679077, 0.03176932409405708, -0.016830334439873695, 0.04113362357020378, -0.03924322500824928, 0.0012533275876194239, -0.00021375599317252636, 0.06248452886939049, 0.025056693702936172, -0.03348710760474205, -0.026826465502381325 ]
node-js-first-thoughts
https://markhneedham.com/blog/2010/03/15/node-js-first-thoughts
false
2010-03-13 23:26:23
Preventing systematic errors: An example
[ "testing" ]
[ "Testing" ]
James Shore has http://jamesshore.com/Blog/Alternatives-to-Acceptance-Testing.html[an interesting recent blog post where he describes some alternatives to over reliance on acceptance testing] and one of the ideas that he describes is fixing the process whenever a bug is found in exploratory testing. He describes two ways of preventing bugs from making it through to exploratory testing: * Make the bug impossible * Catch the bug automatically ____ Sometimes we can prevent defects by changing the design of our system so that type of defect is impossible. For example, if find a defect that's caused by mismatch between UI field lengths and database field lengths, we might change our build to automatically generate the UI field lengths from database metadata. When we can't make defects impossible, we try to catch them automatically, typically by improving our build or test suite. For example, we might create a test that looks at all of our UI field lengths and checks each one against the database. ____ We had an example of the latter this week around some code which loads rules out of a database and then tries to map those rules to classes in the code through use of reflection. For example a rule might refer to a specific property on an object so if the name of the property in the database doesn't match the name of the property on the object then we end up with an exception. This hadn't happened before because we hadn't been making many changes to the names of those properties and when we did people generally remembered that if they changed the object then they should change the database script as well. Having that sort of manual step always seems a bit risky to me since it's prone to human error, so having worked out what was going on we wrote a couple of integration tests to ensure that every property in the database matched up with those in the code. We couldn't completely eliminate this type of bug in this case because the business wanted to have the rules configurable on the fly via the database. It perhaps seems quite obvious that we should look to write these types of tests to shorten the feedback loop and allow us to catch problems earlier than we otherwise would but it's easy to forget to do this so James' post provides a good reminder!
null
null
[ 0.024370593950152397, 0.021831300109624863, -0.014741839841008186, 0.03169148787856102, 0.09947777539491653, -0.002458669478073716, 0.04463459551334381, 0.02945251204073429, 0.010160613805055618, -0.0238814577460289, -0.024058464914560318, -0.00475835707038641, -0.07513660192489624, 0.023979773744940758, -0.028190070763230324, 0.07595237344503403, 0.06870602816343307, 0.0035580871626734734, 0.0378025583922863, 0.009793571196496487, 0.02756701596081257, 0.061867937445640564, 0.002086371649056673, 0.04111598804593086, 0.032318875193595886, 0.025458374992012978, 0.007647193968296051, 0.008016074076294899, -0.06263404339551926, -0.01634368859231472, 0.04067951440811157, 0.011294841766357422, 0.004204713273793459, -0.009126624092459679, -0.00027187156956642866, -0.0008554989472031593, -0.032200004905462265, 0.019039463251829147, -0.006885423790663481, 0.010331039316952229, -0.057544782757759094, 0.0392424538731575, -0.012453855015337467, 0.01349045243114233, -0.05435686931014061, 0.004555731546133757, -0.0600823238492012, 0.01160743273794651, -0.003713886719197035, 0.01013926975429058, -0.05794353783130646, 0.07377694547176361, -0.021700868383049965, -0.00931068230420351, -0.008117783814668655, 0.05040793865919113, 0.02888938970863819, -0.07380864024162292, 0.01669897511601448, -0.034989867359399796, 0.002798492554575205, -0.015756875276565552, -0.0068560377694666386, 0.04635014757514, 0.035887569189071655, 0.006486912723630667, -0.004480269271880388, 0.04822702333331108, -0.03515557199716568, 0.003803394502028823, -0.011775599792599678, 0.007691829930990934, -0.01338378805667162, -0.01738988235592842, 0.011672444641590118, -0.04777730256319046, -0.030526814982295036, 0.053208183497190475, 0.03999873623251915, 0.04575550928711891, -0.02110099047422409, 0.0022362065501511097, 0.027868159115314484, 0.015439645387232304, -0.0006055911653675139, -0.04649056866765022, -0.01749388501048088, -0.008680013008415699, -0.0570823960006237, 0.05719420313835144, 0.024561356753110886, -0.05443023145198822, 0.028044098988175392, 0.035282086580991745, -0.005679195746779442, 0.009296663105487823, 0.026432862505316734, -0.013561743311583996, -0.005233658943325281, -0.01765025593340397, -0.04579370096325874, -0.030526267364621162, 0.0026858774945139885, 0.02953401766717434, -0.08708900958299637, -0.022145703434944153, -0.03500113636255264, -0.010911810211837292, -0.01311835739761591, 0.01814212277531624, -0.029212776571512222, 0.025261346250772476, -0.008928289636969566, -0.004075322765856981, -0.09249046444892883, 0.0744035616517067, 0.009412990882992744, -0.03955457732081413, 0.024539239704608917, 0.02801966853439808, 0.03712768107652664, 0.012399625964462757, -0.01183170173317194, 0.08522237837314606, 0.013124674558639526, 0.024177229031920433, -0.027503419667482376, 0.060355156660079956, -0.019830461591482162, -0.058634161949157715, -0.011376174166798592, 0.05907202512025833, -0.02052079513669014, -0.00022426438226830214, 0.004764111712574959, -0.024477556347846985, 0.003375897416844964, -0.009238113649189472, 0.02440270222723484, 0.05626828968524933, -0.011543539352715015, -0.04256701096892357, 0.011761890724301338, 0.013703995384275913, 0.023595865815877914, 0.01696738414466381, 0.0063315751031041145, -0.013952051289379597, -0.057924188673496246, 0.006846316158771515, 0.015380646102130413, 0.03819965571165085, 0.019556492567062378, -0.022516893222928047, 0.011437632143497467, 0.0752192884683609, 0.006097415927797556, 0.01798686943948269, -0.017500435933470726, 0.02237095683813095, 0.0427645705640316, 0.03913584351539612, 0.02974543906748295, 0.009267628192901611, 0.02282940410077572, -0.0020359763875603676, -0.003396452171728015, 0.0691547691822052, 0.009915190748870373, 0.016809290274977684, -0.0728466585278511, -0.06361076235771179, 0.05663798004388809, -0.05730797350406647, -0.01817866414785385, 0.04678772762417793, 0.06250832974910736, 0.00431708013638854, 0.025578387081623077, 0.019849348813295364, -0.07962479442358017, 0.011991577222943306, 0.0015972581459209323, 0.021929698064923286, 0.014548387378454208, -0.02894231490790844, 0.06484217941761017, 0.02415473572909832, 0.01261355821043253, 0.034888043999671936, -0.07888182252645493, -0.08069836348295212, -0.015272130258381367, -0.023143725469708443, 0.04785512760281563, -0.028724728152155876, 0.00004397460725158453, 0.08586777001619339, 0.011903706006705761, 0.05855325236916542, 0.02403176762163639, 0.02356683276593685, 0.014813525602221489, -0.051248371601104736, -0.03173614665865898, 0.05151223763823509, 0.03332018107175827, 0.0029850248247385025, -0.048933692276477814, 0.009277654811739922, -0.003921222873032093, 0.0013635179493576288, 0.04821963235735893, -0.040629152208566666, 0.03473665937781334, 0.012829803861677647, 0.04357452318072319, -0.03258104249835014, 0.05191534385085106, -0.06924369186162949, -0.018481101840734482, 0.005591068882495165, -0.02701059728860855, 0.010192815214395523, 0.0022321627475321293, 0.11452339589595795, 0.05326888710260391, -0.0442216694355011, -0.04106384143233299, 0.02219722419977188, 0.011863871477544308, -0.044579602777957916, -0.0024269537534564734, -0.018948590382933617, 0.012204751372337341, 0.01133719738572836, -0.045974306762218475, -0.02653099223971367, 0.03054521605372429, -0.032723426818847656, 0.0021614774595946074, 0.055332571268081665, -0.028828362002968788, 0.0641464963555336, -0.009619534015655518, -0.02008436806499958, 0.003564191050827503, -0.013481051661074162, -0.053124453872442245, -0.0006550232064910233, 0.014744059182703495, -0.009506789036095142, 0.04645680636167526, -0.013665108010172844, -0.020500298589468002, -0.03389902785420418, -0.03927500173449516, 0.017088357359170914, 0.04964398220181465, 0.07004126906394958, -0.034841299057006836, 0.053315214812755585, 0.0025964085943996906, 0.015604941174387932, 0.0017438206123188138, -0.0363500714302063, -0.011304420419037342, -0.016511274501681328, -0.01199096068739891, 0.03466740995645523, -0.007492052856832743, 0.03937978297472, 0.024156659841537476, 0.0010938141494989395, -0.0028255493380129337, -0.0036087981425225735, 0.03269237279891968, 0.007447325624525547, -0.022248420864343643, -0.005757328122854233, -0.03065715916454792, 0.05605803057551384, -0.042430974543094635, -0.0328693725168705, 0.017831522971391678, -0.07365917414426804, 0.03595656156539917, -0.07257786393165588, -0.0629122331738472, 0.019246207550168037, 0.015382454730570316, 0.05108535289764404, 0.015813004225492477, 0.022335750982165337, 0.06159169226884842, -0.002777406480163336, 0.0037101926282048225, 0.0039461287669837475, 0.02658231556415558, 0.028897522017359734, 0.003113451646640897, -0.00500312028452754, 0.028172528371214867, -0.00011695286957547069, 0.02129400707781315, -0.04111935943365097, 0.042107608169317245, -0.02111108787357807, -0.2932387590408325, 0.034165918827056885, 0.002088067587465048, -0.04789089784026146, 0.005661165341734886, -0.0032951172906905413, 0.015937423333525658, -0.0480213426053524, -0.017503824084997177, 0.03614889830350876, -0.032267678529024124, -0.056496188044548035, -0.009646891616284847, 0.06525178998708725, -0.0027516146656125784, 0.03415374830365181, 0.0313047356903553, -0.02829899825155735, -0.011577107012271881, 0.03777278959751129, -0.018491828814148903, -0.0725952759385109, -0.007193413563072681, 0.027190184220671654, 0.03699358552694321, 0.04792892187833786, -0.08576369285583496, 0.04371916502714157, -0.05180206522345543, 0.002176823327317834, 0.02000596933066845, 0.011143989861011505, -0.006340148393064737, -0.026944411918520927, -0.02850194089114666, -0.0029475099872797728, 0.010195057839155197, -0.016841113567352295, -0.010477501899003983, 0.03250724449753761, -0.026524439454078674, -0.02281392551958561, -0.017180684953927994, 0.030001966282725334, 0.060481466352939606, -0.019278697669506073, -0.07201932370662689, 0.005975986830890179, -0.029229264706373215, 0.06330489367246628, -0.026236509904265404, -0.019752103835344315, 0.01199937891215086, 0.039345353841781616, -0.015193120576441288, -0.007963214069604874, 0.0008147758198902011, -0.0032929815351963043, -0.05405799299478531, -0.033452365547418594, -0.010081644169986248, -0.03934340924024582, -0.024359261617064476, -0.012662204913794994, 0.0124437864869833, -0.07454299181699753, -0.060032542794942856, -0.01573536917567253, 0.07521754503250122, 0.00821329839527607, -0.02136280946433544, 0.022038109600543976, -0.0009246367262676358, -0.11972741037607193, 0.005222575273364782, -0.010976096615195274, -0.034334879368543625, -0.02942163497209549, -0.004057661164551973, 0.040744848549366, -0.03620026633143425, -0.04554140195250511, 0.022206632420420647, 0.026010703295469284, 0.016479380428791046, -0.009546653367578983, 0.03910117968916893, 0.01432493980973959, -0.028440557420253754, 0.012278751470148563, 0.06813526153564453, -0.004899620544165373, -0.011890084482729435, -0.037327270954847336, 0.01827980950474739, 0.012361453846096992, 0.026258233934640884, -0.015947649255394936, 0.009932009503245354, 0.0479426309466362, 0.006658933591097593, -0.0741962119936943, 0.05237452685832977, -0.03102717734873295, -0.0018692411249503493, -0.025151215493679047, -0.06093709543347359, 0.02106158435344696, 0.03364545851945877, 0.0301640797406435, -0.006449895910918713, -0.03387649729847908, 0.0015608837129548192, -0.04262901097536087, -0.04128333553671837, -0.03219751641154289, 0.01956366002559662, 0.035750020295381546, -0.02260390855371952, -0.02955503575503826, -0.04908639192581177, 0.02214091643691063, -0.004474525805562735, -0.002110089873895049, -0.04702219367027283, -0.04007856920361519, 0.004400674719363451, -0.005040227901190519, 0.013169189915060997, 0.004554024897515774, -0.016422554850578308, 0.04914455488324165, 0.024212906137108803, -0.010422772727906704, 0.007106657139956951, -0.015296167694032192, -0.05723787471652031, -0.01038835383951664, -0.009038305841386318, -0.02014373429119587, -0.0035425988025963306, 0.004227150231599808, 0.016454514116048813, 0.03550048545002937, 0.041745129972696304, -0.0004654379445128143, 0.06996085494756699, -0.009722158312797546, 0.03197586163878441, 0.024277497082948685, 0.00801991205662489, -0.08781761676073074, 0.03209676221013069, -0.045145973563194275, -0.04861575365066528, -0.025190895423293114, 0.03770516812801361, -0.004460932686924934, -0.0195462629199028, -0.03557770326733589, -0.0016373334219679236, -0.05222679674625397, -0.037271205335855484, -0.023940369486808777, 0.006292509380728006, 0.06344693899154663, -0.0226876363158226, 0.016088837757706642, -0.034469880163669586, -0.014531697146594524, 0.0038190928753465414, 0.013350586406886578, -0.04339348152279854, 0.011509210802614689, 0.016201257705688477, -0.0076246196404099464, -0.015845943242311478, -0.031180160120129585, 0.03896305710077286, 0.025002220645546913, -0.00938414130359888, -0.00729826744645834, 0.010371211916208267, 0.01583053730428219, 0.03878253698348999, -0.00801058765500784, -0.005678790621459484, -0.023314984515309334, -0.00884238164871931, -0.0236167274415493, -0.03429752215743065, -0.02062217704951763, -0.001845894381403923, 0.028487706556916237, -0.032357119023799896, -0.0670759379863739, 0.031156504526734352, 0.001478160615079105, 0.016201376914978027, 0.02054624632000923, -0.003975318279117346, -0.00610517431050539, -0.019797982648015022, 0.017695406451821327, 0.03938595578074455, -0.06000995263457298, 0.02069590426981449, 0.0018117099534720182, -0.009222641587257385, 0.04095384478569031, -0.0000540464861842338, -0.04703176021575928, -0.0156259685754776, -0.022824501618742943, -0.011842017993330956, -0.05716295167803764, -0.02496025711297989, -0.012476705014705658, 0.009557632729411125, -0.0177664402872324, -0.01704488694667816, -0.01586693525314331, 0.010666747577488422, -0.02002548798918724, -0.0295371375977993, 0.0049582854844629765, -0.027328776195645332, 0.010034716688096523, 0.04666019231081009, -0.031098272651433945, 0.024086834862828255, -0.028855711221694946, 0.0032006262335926294, 0.018894873559474945, -0.033429279923439026, -0.011174749583005905, -0.05252784863114357, 0.015103891491889954, 0.00030949513893574476, 0.01670820824801922, -0.009186078794300556, -0.0307149700820446, -0.04417005553841591, -0.010242709890007973, -0.02548607997596264, 0.003852559719234705, -0.02214464731514454, -0.028235482051968575, 0.03280480578541756, 0.05734134465456009, 0.024974960833787918, 0.01786942593753338, -0.008242521435022354, -0.0013348781503736973, 0.038848668336868286, -0.0708235427737236, -0.002109442837536335, -0.027914483100175858, -0.06448736786842346, 0.01767778769135475, 0.01303928717970848, 0.030251208692789078, -0.018338313326239586, 0.027624255046248436, 0.01931224949657917, 0.01643248274922371, 0.02316449210047722, -0.0191179271787405, 0.0479966476559639, -0.07721909880638123, 0.007467912044376135, -0.08714938908815384, 0.01744271256029606, 0.03716892749071121, -0.016974270343780518, -0.0059087565168738365, -0.002947540720924735, -0.0379222147166729, 0.03553653880953789, -0.0638471320271492, -0.034812819212675095, 0.028642699122428894, 0.013882908038794994, 0.003465980291366577, 0.02176174707710743, -0.056529171764850616, 0.02304917946457863, 0.024703191593289375, -0.023803403601050377, -0.03906046599149704, -0.004729557782411575, 0.04076541215181351, 0.007691734470427036, 0.017800476402044296, -0.028178593143820763, -0.011544739827513695, 0.0703689381480217, 0.020295750349760056, 0.027236733585596085, 0.03485660254955292, -0.026833001524209976, 0.050289057195186615, 0.052868522703647614, 0.011443644762039185, -0.00631914846599102, -0.002046388341113925, -0.0012804742436856031, -0.04583520069718361, 0.02037445455789566, 0.006458398886024952, -0.02219715528190136, -0.04288715496659279, 0.06224408000707626, 0.03417341411113739, -0.03652062639594078, -0.03202331066131592, -0.004622707609087229, -0.039961062371730804, 0.0040654451586306095, -0.03374701365828514, -0.02566046454012394, -0.054565541446208954, 0.049202121794223785, -0.021633198484778404, 0.01960790529847145, 0.06994583457708359, -0.015803268179297447, 0.013292459771037102, -0.022190336138010025, 0.08914121240377426, 0.0841662734746933, 0.0504029281437397, 0.017460281029343605, 0.06451243162155151, -0.026941120624542236, -0.0532107912003994, 0.028078412637114525, -0.02397460676729679, -0.031856901943683624, -0.02681015245616436, 0.020660780370235443, 0.05809440091252327, 0.0014380067586898804, 0.06158914044499397, -0.02389112114906311, 0.0051370286382734776, 0.003918070811778307, 0.02614065445959568, 0.013945790007710457, 0.08006362617015839, -0.005980169400572777, -0.001200837199576199, -0.00104245834518224, -0.040249451994895935, 0.006050728261470795, -0.03753043711185455, -0.019896551966667175, 0.027152245864272118, -0.006610274314880371, 0.032473526895046234, 0.009866652078926563, 0.06108613312244415, 0.08249711245298386, -0.041114531457424164, 0.007303526625037193, 0.005153949372470379, 0.036396004259586334, 0.002842782763764262, 0.01853492110967636, -0.012511775828897953, -0.01187970582395792, -0.011067144572734833, -0.020688258111476898, 0.002381793688982725, -0.013420305214822292, -0.028329743072390556, 0.054244089871644974, -0.023521479219198227, -0.012878088280558586, 0.04479082673788071, 0.01012184377759695, -0.022519679740071297, -0.05186815187335014, -0.04729572311043739, -0.024736274033784866, -0.055962301790714264, -0.01841738447546959, 0.01629571057856083, -0.011815685778856277, -0.027428098022937775, -0.014361443929374218, -0.018033204600214958, -0.021847352385520935, 0.05268281698226929, -0.05375862866640091, -0.04750518500804901, 0.035447996109724045, 0.019929617643356323, 0.028740670531988144, 0.023399431258440018, 0.05089322477579117, -0.009112291038036346, -0.007132596801966429, -0.03569093346595764, 0.003163819434121251, 0.03888045623898506, -0.007166328374296427, 0.019951779395341873, -0.08603546768426895, -0.002132735215127468, 0.03446918725967407, -0.000494663487188518, -0.05290403589606285, 0.04174026846885681, -0.0036346949636936188, -0.0049032424576580524, 0.06045377999544144, -0.03295472636818886, -0.01394541747868061, -0.04268133267760277, -0.01875271648168564, -0.012743864208459854, -0.008003276772797108, 0.04806748777627945, -0.026240507140755653, 0.07594276964664459, 0.016905004158616066, -0.02901333197951317, -0.05192927271127701, 0.01406880933791399, 0.005866071674972773, -0.0026849994901567698, -0.023119591176509857, -0.04302298277616501, -0.033550702035427094, -0.08701294660568237, -0.010437142103910446, 0.01910889334976673, -0.013000010512769222, -0.03276600316166878, 0.03036014549434185, 0.03290222957730293, -0.04568930342793465, 0.02791445329785347, -0.04283471405506134, 0.04274876043200493, -0.03698625788092613, -0.024380477145314217, 0.01141525898128748, 0.0036953454837203026, -0.016117988154292107, 0.022227520123124123, 0.01964643783867359, -0.04017622768878937, -0.012456785887479782, -0.021980175748467445, 0.04321708530187607, 0.02869628183543682, 0.0010454746661707759, -0.014250858686864376 ]
[ -0.13539788126945496, -0.018016846850514412, 0.002891805022954941, -0.02599189057946205, 0.019968576729297638, -0.030528228729963303, -0.006061017978936434, 0.006503892596811056, -0.020216964185237885, -0.016287297010421753, 0.007422253489494324, 0.006642061285674572, 0.003746504196897149, 0.003656630637124181, 0.062091417610645294, 0.012638268060982227, -0.012059161439538002, -0.04976992681622505, 0.018260808661580086, 0.03442377597093582, -0.006162258330732584, -0.008323300629854202, -0.03021268919110298, -0.0024123096372932196, -0.015214848332107067, 0.05356060341000557, 0.039050254970788956, -0.062144435942173004, -0.004603477660566568, -0.22847317159175873, 0.014804876409471035, 0.0017175618559122086, 0.01786254532635212, -0.041071146726608276, 0.022774646058678627, 0.013607760891318321, -0.01942315697669983, 0.004419273696839809, -0.0016533926827833056, 0.028738927096128464, 0.011150134727358818, 0.04432297870516777, -0.055435262620449066, -0.04407482594251633, 0.036091119050979614, -0.010312017984688282, 0.02338464744389057, -0.02999706380069256, -0.018799487501382828, 0.029865581542253494, -0.05979837104678154, -0.02716056816279888, -0.038538020104169846, -0.02505890280008316, -0.019405579194426537, 0.02753373049199581, 0.04137735068798065, 0.07942622154951096, 0.002195519395172596, 0.012875793501734734, 0.025571083649992943, -0.018396323546767235, -0.09023800492286682, 0.08404641598463058, 0.045140329748392105, 0.05812845751643181, -0.015007645823061466, -0.05455080419778824, 0.0052803922444581985, 0.08728881925344467, -0.0018232926959171891, -0.01834082417190075, -0.0425289124250412, 0.06070096790790558, 0.0012154380092397332, 0.017315849661827087, 0.001386927324347198, -0.008281904272735119, 0.04494161903858185, -0.05111881345510483, -0.046087611466646194, -0.007576835807412863, 0.015688035637140274, -0.005598040297627449, -0.0501919649541378, 0.01266392506659031, -0.010525457561016083, 0.05060851201415062, 0.03649884834885597, 0.02512528747320175, 0.07116881012916565, -0.007774705998599529, 0.0602821484208107, 0.004074166063219309, -0.057437848299741745, -0.004892620258033276, -0.030938439071178436, -0.0027107323985546827, -0.04320264607667923, 0.4514749050140381, -0.010751116089522839, -0.009060109965503216, 0.03345849737524986, 0.03258609026670456, -0.01371869258582592, -0.004701371304690838, 0.00700392946600914, -0.053064972162246704, 0.02443932741880417, -0.02334078960120678, 0.02850647270679474, 0.019471678882837296, 0.07486508041620255, -0.0456753708422184, -0.03700394928455353, 0.012198410928249359, 0.008591844700276852, -0.00926102977246046, 0.005851798690855503, -0.024556322023272514, 0.006979045458137989, 0.010494332760572433, 0.012576790526509285, 0.0004484967212192714, 0.02385766990482807, -0.03350533917546272, 0.010722517967224121, 0.044584523886442184, 0.0024151781108230352, 0.0029900933150202036, 0.022647807374596596, -0.06794477254152298, -0.09646926075220108, -0.0003920620947610587, 0.0049953944981098175, 0.012634748592972755, 0.003036623355001211, -0.0005621920572593808, 0.012020280584692955, 0.044982023537158966, -0.021029341965913773, -0.021419672295451164, 0.045708201825618744, -0.01105479896068573, -0.06028828024864197, 0.10512284189462662, 0.0037176432088017464, -0.02257654070854187, -0.04398111626505852, -0.05828161537647247, 0.018050214275717735, 0.022421304136514664, -0.03043525665998459, -0.03811579570174217, -0.0025442861951887608, 0.030522186309099197, 0.0917600765824318, 0.01040231715887785, -0.04343320429325104, -0.0034400413278490305, -0.012109518982470036, 0.003558546770364046, -0.05008155107498169, 0.05238132178783417, 0.031044837087392807, -0.10190633684396744, -0.024955496191978455, 0.009908095002174377, 0.018327658995985985, -0.03381361812353134, -0.021770106628537178, 0.0004551233141683042, -0.04452887177467346, -0.03011135570704937, 0.05558508634567261, -0.023552101105451584, -0.038388047367334366, 0.007483122870326042, 0.03284924477338791, 0.03823920339345932, 0.017211919650435448, -0.007330600637942553, -0.05484940484166145, -0.004831230733543634, -0.019193343818187714, -0.09707275778055191, -0.035921622067689896, -0.0018075411207973957, -0.0035162637941539288, -0.013812599703669548, -0.03242559731006622, -0.03499957546591759, -0.10739830881357193, 0.0762544721364975, -0.02822202816605568, -0.049570366740226746, 0.03487810119986534, -0.0048332070000469685, 0.001589193707332015, -0.033035047352313995, 0.0016399417072534561, 0.05546471104025841, -0.010867091827094555, 0.03794858977198601, -0.03603265434503555, 0.07883316278457642, 0.056579574942588806, -0.07084812223911285, 0.09883071482181549, 0.03488123416900635, -0.04427516460418701, -0.02648676559329033, -0.002558025298640132, 0.02340775728225708, 0.011917093768715858, -0.020898345857858658, 0.0029353576246649027, 0.026224689558148384, 0.03228733316063881, 0.019674327224493027, 0.0009198954794555902, 0.029184404760599136, 0.003485522698611021, -0.3265705704689026, -0.025881905108690262, -0.05086345598101616, 0.0044271997176110744, -0.015661081299185753, -0.062426310032606125, 0.020241383463144302, -0.01683134026825428, -0.03453262150287628, 0.000060054269852116704, 0.06401493400335312, -0.007537254597991705, 0.02654559165239334, -0.06256479024887085, 0.011709031648933887, -0.017349043861031532, -0.05211150646209717, -0.01130649819970131, -0.05631547421216965, -0.00872797891497612, -0.017495177686214447, 0.00991471391171217, 0.028463607653975487, -0.08677773922681808, -0.0012902526650577784, -0.043155740946531296, 0.09423936158418655, -0.0388103649020195, 0.06324104964733124, -0.03432269021868706, 0.05006163939833641, -0.016885247081518173, 0.018464835360646248, -0.06373618543148041, 0.019797533750534058, 0.011131128296256065, -0.043114691972732544, 0.007462822832167149, 0.008577939122915268, -0.04531562700867653, -0.047552440315485, 0.021546240895986557, -0.03804595395922661, -0.07938253879547119, -0.025529904291033745, 0.012638939544558525, -0.012814564630389214, -0.012195849791169167, -0.02497238665819168, 0.07227366417646408, 0.004768081940710545, 0.00844455137848854, 0.03072251006960869, 0.027525894343852997, 0.0033885908778756857, -0.038946110755205154, -0.08283265680074692, 0.026292435824871063, 0.03171404451131821, 0.006925676017999649, 0.053140055388212204, 0.05630035698413849, 0.03168770670890808, -0.05093466863036156, 0.016468506306409836, 0.014577656984329224, -0.010884204879403114, -0.020016629248857498, 0.05437099188566208, -0.012097115628421307, -0.04127727076411247, 0.12936827540397644, -0.003032973036170006, -0.016448475420475006, 0.021264085546135902, 0.033045314252376556, 0.0017334837466478348, 0.009201029315590858, -0.004678512457758188, -0.011424754746258259, 0.02059626393020153, -0.020185114815831184, 0.03530598059296608, -0.013692811131477356, 0.0003370050108060241, 0.08036258071660995, -0.0017865360714495182, -0.0393240749835968, 0.06699014455080032, -0.013752448372542858, -0.03581273928284645, 0.000720739655662328, -0.024722853675484657, -0.050351954996585846, 0.08468050509691238, 0.0002638620790094137, -0.2442259043455124, 0.008967782370746136, 0.06612467765808105, 0.06747177988290787, -0.016873368993401527, 0.027052441611886024, 0.04734458401799202, -0.044526148587465286, 0.026849491521716118, -0.01993837021291256, 0.0093206986784935, 0.0001524480030639097, 0.01097274012863636, -0.022335899993777275, 0.0536733902990818, 0.013188711367547512, 0.032207030802965164, -0.010398008860647678, 0.02779376693069935, -0.013059497810900211, 0.013712664134800434, -0.007241125218570232, 0.17120464146137238, 0.032862208783626556, 0.010281059890985489, 0.03155653923749924, 0.0482930913567543, 0.0014700904721394181, 0.06567329168319702, 0.034865062683820724, -0.026015236973762512, -0.00801662914454937, 0.038734883069992065, 0.004546504467725754, 0.025439428165555, -0.03371267393231392, -0.02223251387476921, 0.013000333681702614, 0.020476127043366432, -0.020040303468704224, 0.010597612708806992, -0.011209389194846153, -0.047891244292259216, 0.03557460755109787, 0.060757625848054886, 0.018734648823738098, -0.0032911573071032763, 0.009283078834414482, -0.054537709802389145, -0.008951897732913494, -0.034440409392118454, -0.045672349631786346, -0.005982640199363232, -0.017171774059534073, 0.002243733499199152, 0.084792859852314, 0.02478903718292713, -0.002414816990494728, 0.01803727075457573, -0.009467564523220062, 0.02173859253525734, -0.005659961607307196, 0.1060323491692543, 0.02498149499297142, 0.010502689518034458 ]
[ 0.0017704733181744814, 0.012791632674634457, -0.007080646697431803, 0.019613975659012794, -0.024286990985274315, -0.03102923184633255, 0.008485309779644012, 0.024100299924612045, -0.04234844446182251, 0.0024575984571129084, -0.008666458539664745, -0.014559461735188961, 0.028664380311965942, -0.03519600257277489, -0.001547664520330727, 0.01428730133920908, -0.01585698127746582, 0.001647277968004346, 0.019598545506596565, 0.005396685097366571, -0.03787067160010338, 0.007981870323419571, -0.023119548335671425, 0.005214708857238293, -0.005631865002214909, 0.0024221898056566715, -0.05124902352690697, 0.02045222371816635, 0.024370165541768074, -0.14077965915203094, -0.03704969212412834, -0.02836306020617485, -0.0068227932788431644, 0.034429214894771576, -0.01638777181506157, -0.03883381187915802, 0.021587615832686424, 0.02301512472331524, -0.0018416992388665676, -0.03128271549940109, -0.031730055809020996, -0.018473800271749496, -0.004182339645922184, 0.03780467435717583, -0.003819115227088332, -0.032342683523893356, -0.009456533938646317, -0.028405390679836273, 0.001430709846317768, -0.030919793993234634, -0.03182762488722801, 0.011482867412269115, 0.010586248710751534, 0.03501404821872711, 0.027930622920393944, 0.03393549844622612, 0.013612098060548306, 0.003909924533218145, -0.010103326290845871, 0.04991430416703224, 0.019390162080526352, 0.0007667145691812038, -0.01289913710206747, -0.022040700539946556, -0.024424193426966667, -0.009396924637258053, -0.017397645860910416, -0.010708617977797985, 0.020191946998238564, -0.017402062192559242, -0.01809086836874485, -0.004667079076170921, -0.031172581017017365, 0.012515719048678875, 0.017459487542510033, 0.05248767510056496, -0.010074013844132423, -0.007633510511368513, -0.0005880544777028263, 0.0007986532291397452, -0.07315023243427277, 0.012627501040697098, 0.018676882609725, 0.0033618758898228407, 0.022336337715387344, -0.006550321821123362, 0.013192754238843918, 0.006644917652010918, 0.013370583765208721, 0.029626943171024323, 0.0003488080983515829, 0.006945534609258175, -0.010560928843915462, 0.027709756046533585, -0.09411875903606415, -0.008656758815050125, -0.002718408824875951, -0.0550917349755764, -0.007257541175931692, 0.8468495011329651, 0.006786259822547436, 0.03585844486951828, 0.019706979393959045, 0.043229274451732635, -0.0198806319385767, -0.005475197918713093, 0.01648775115609169, -0.013536916114389896, 0.0012109068920835853, -0.035809747874736786, 0.025880614295601845, 0.023467421531677246, 0.01937589980661869, 0.00042855291394516826, 0.007969008758664131, -0.009497889317572117, -0.02725399285554886, -0.019785499200224876, -0.005424643866717815, 0.0015876981196925044, 0.046837519854307175, 0.03804078325629234, -0.03584178909659386, -0.0008146772743202746, 0.03607923537492752, -0.1568523347377777, 0.01582346111536026, -8.423322154291823e-33, 0.030297119170427322, 0.04008127748966217, 0.023914195597171783, -0.005924283526837826, 0.016146091744303703, 0.018792204558849335, -0.0007011195993982255, 0.03917386382818222, 0.01880820095539093, -0.011552885174751282, 0.012535561807453632, -0.026324264705181122, -0.006021942012012005, -0.049318164587020874, 0.053169067949056625, 0.016680318862199783, -0.00755547359585762, 0.036272983998060226, 0.005104687996208668, 0.05335249751806259, 0.032869093120098114, 0.03259367495775223, -0.011542529799044132, -0.009317097254097462, 0.022768665105104446, 0.013059398159384727, -0.011529277078807354, 0.043925754725933075, -0.009098025970160961, -0.0347997322678566, -0.025132296606898308, -0.007858752273023129, -0.01521007064729929, -0.0013911845162510872, 0.004320088308304548, -0.06725425273180008, 0.015620988793671131, 0.0032055936753749847, -0.006887707393616438, -0.012863999232649803, -0.02096671611070633, 0.007004210725426674, -0.04143896326422691, 0.0018127965740859509, 0.015146001242101192, 0.01988082006573677, 0.007491410244256258, -0.015641439706087112, 0.011969318613409996, -0.04478536546230316, 0.013628545217216015, 0.0020939300302416086, -0.014706797897815704, 0.026865290477871895, 0.005808663554489613, 0.04604298248887062, -0.0320541076362133, -0.014626774936914444, 0.02610623650252819, 0.029901349917054176, 0.007889864966273308, -0.022063815966248512, -0.020466063171625137, 0.022390874102711678, -0.012220351956784725, -0.02686477079987526, 0.03454335406422615, -0.02514365129172802, 0.020250516012310982, 0.009242594242095947, -0.04653652384877205, 0.01666409708559513, -0.038064923137426376, 0.0013697113608941436, 0.01125798374414444, -0.04944614693522453, 0.0007926218677312136, 0.0011198642896488309, -0.0030321835074573755, 0.012826887890696526, -0.0013027689419686794, 0.012591969221830368, -0.047208402305841446, -0.019401589408516884, -0.002754379063844681, -0.03382813185453415, 0.007955712266266346, 0.0036230897530913353, -0.019504228606820107, -0.03186209499835968, 0.03412233665585518, 0.039377931505441666, 0.007974647916853428, -0.029482755810022354, -0.011630469933152199, 8.109756097474101e-33, 0.024276990443468094, -0.03491855785250664, -0.010675002820789814, 0.012854469940066338, 0.022357376292347908, -0.03135882318019867, 0.00622600968927145, 0.04187585040926933, -0.039412401616573334, 0.020719587802886963, -0.003308163257315755, -0.002257349668070674, -0.024880414828658104, 0.016219694167375565, -0.010303538292646408, -0.00790321920067072, 0.000296512502245605, -0.04377777874469757, 0.03088119439780712, 0.03359328582882881, 0.061597105115652084, 0.018789570778608322, 0.021745922043919563, 0.011084410361945629, -0.025107668712735176, 0.025213414803147316, -0.03587237000465393, -0.006884739268571138, -0.00973605178296566, 0.01629764959216118, -0.003095458261668682, -0.005706553813070059, 0.02323632314801216, -0.030390825122594833, -0.032883960753679276, -0.00187649205327034, -0.00873851403594017, -0.0177454873919487, 0.015781568363308907, 0.02192985638976097, 0.01785968244075775, 0.03588319569826126, 0.01386029552668333, 0.017759913578629494, -0.00341962743550539, 0.022549279034137726, 0.008706198073923588, 0.005953742191195488, 0.010562345385551453, -0.0017187884077429771, 0.01169266551733017, 0.01766049489378929, 0.01784711331129074, 0.007717932108789682, -0.0038830486591905355, -0.017293257638812065, -0.02014426700770855, -0.030515598133206367, -0.02714904025197029, 0.06824687868356705, -0.021780192852020264, 0.03576121851801872, -0.02222621440887451, -0.024290867149829865, -0.036357805132865906, 0.011498073115944862, -0.01548408530652523, 0.03929075971245766, -0.01624186895787716, -0.04937196150422096, -0.023442156612873077, -0.01058209128677845, -0.014750026166439056, 0.041621699929237366, 0.05999003350734711, -0.02421373687684536, -0.05063754320144653, -0.016149302944540977, 0.017745912075042725, 0.011141008697450161, 0.026822518557310104, 0.0035646483302116394, -0.00025875316350720823, -0.0066553750075399876, -0.03527328744530678, 0.008251319639384747, -0.01378705259412527, 0.026823924854397774, -0.027346502989530563, 0.0018979887245222926, -0.027221456170082092, -0.0022096990142017603, 0.0270790234208107, 0.0027177371084690094, -0.02798452042043209, -1.3801675358138255e-8, -0.02489985153079033, 0.017537089064717293, 0.012516331858932972, -0.013281013816595078, 0.00448010116815567, 0.0021708353888243437, -0.02214951440691948, 0.014945397153496742, 0.0058709243312478065, -0.004250019788742065, 0.03134838491678238, 0.04093903303146362, -0.0031098313629627228, 0.03138188645243645, -0.008326180279254913, -0.062188226729631424, -0.01589869149029255, -0.029281599447131157, 0.006938399747014046, 0.019932081922888756, 0.009590577334165573, 0.06317074596881866, -0.04074651002883911, -0.019242387264966965, 0.008808878250420094, 0.015818092972040176, -0.012319677509367466, -0.06211619824171066, -0.012202257290482521, 0.02760222926735878, 0.027607636526226997, -0.027433352544903755, 0.01769455149769783, 0.006719491444528103, -0.026173610240221024, -0.02238050475716591, 0.016205469146370888, 0.00006338780804071575, 0.026045583188533783, -0.021026883274316788, -0.011669917032122612, -0.05058583989739418, 0.01506219245493412, -0.03470299765467644, -0.026727646589279175, -0.02538379095494747, -0.004748642910271883, 0.02159234695136547, 0.020253000780940056, -0.05516265332698822, 0.04709593206644058, -0.014686943031847477, 0.021879302337765694, 0.010291856713593006, 0.00491167139261961, 0.017219234257936478, -0.003971139434725046, 0.009184787981212139, -0.02507445029914379, -0.015447535552084446, 0.023688534274697304, -0.0057362401857972145, -0.001974244834855199, -0.007879077456891537 ]
preventing-systematic-errors-an-example
https://markhneedham.com/blog/2010/03/13/preventing-systematic-errors-an-example
false
2010-03-14 00:45:34
A reminder of the usefulness of Git
[ "git", "dscm" ]
[ "Software Development" ]
Despite the fact that none of the projects that I've worked on have used http://git-scm.com/[Git] or http://mercurial.selenic.com/[Mercurial] as the team's main repository I keep forgetting how useful those tools can be even if they're just being used locally. I ran into a problem when trying to work out why a Rhino Mocks expectation wasn't working as I expected last week having refactored a bit of code to include a constructor. I wanted to include the Rhino Mocks source code in our solution before and after the refactoring and step through the code to see what was different in the way the expectations were being setup. My initial thought was that I could just check out the repository again in another folder and then include the Rhino Mocks source code there and step through it but unfortunately we have all the projects set up to deploy to IIS so Visual Studio wanted me to adjust all those settings in order to load the solution in the new checkout location. I probably could have gone and turned off that setting but it seemed a bit too much effort and I realised that I could easily use Git to help me solve the problem. I took a patch of the changes I'd made and then reverted the code before checking it into a local Git repository. I updated the solution to include the http://www.ayende.com/projects/rhino-mocks.aspx[Rhino Mocks] code and then created a branch called 'refactoringChanges' so that I could then apply the patch that I'd created with my changes. It was then really easy to switch back between the two branches and see the differences in the way that the Rhino Mocks was working internally. The actual problem eventually turned out to be the way that the code calls Castle DynamicProxy but I didn't get the chance to look further into it - we had learnt enough to know how we could get around the problem. I'm in the process of including the source code for all the 3rd party libraries that we use in the solution on a separate Git branch that I can switch to when I want to debug through that code. Sometimes I end up having to close down Visual Studio and re-open the solution when I switch to and from that branch but apart from that it seems to work reasonably well so far.
null
null
[ 0.017848508432507515, -0.009847632609307766, -0.018389888107776642, 0.06229475140571594, 0.08116770535707474, 0.030194222927093506, 0.04080185666680336, 0.0378323495388031, 0.006713836919516325, -0.035374321043491364, -0.01937522180378437, -0.013024142012000084, -0.0800088495016098, 0.01888488233089447, -0.06261666864156723, 0.0692405253648758, 0.06267708539962769, -0.012173752300441265, 0.02421393431723118, 0.015983307734131813, 0.029742952436208725, 0.07988376915454865, -0.029369598254561424, 0.029144518077373505, 0.011337251402437687, 0.010818303562700748, 0.02945709601044655, -0.01742393895983696, -0.06097937747836113, -0.035322368144989014, 0.046374719589948654, -0.002765279496088624, 0.02213035337626934, -0.0320996530354023, -0.003323689103126526, -0.011627359315752983, -0.042597342282533646, 0.024693887680768967, 0.013771230354905128, -0.0053336299024522305, -0.0649656280875206, 0.04263749346137047, -0.015399305149912834, -0.011178398504853249, -0.06339193135499954, 0.014195548370480537, -0.020306119695305824, 0.010835893452167511, -0.023708637803792953, -0.006603033747524023, -0.039988670498132706, 0.028922071680426598, -0.03701147809624672, -0.04228736460208893, -0.023814572021365166, 0.034871555864810944, 0.040890906006097794, -0.08765625953674316, 0.015351315960288048, -0.047175850719213486, -0.0348660945892334, 0.004807173740118742, 0.01102585531771183, 0.07083751261234283, 0.04059457778930664, -0.028263969346880913, 0.0032308376394212246, 0.0443047396838665, -0.03872677683830261, -0.006930459290742874, 0.013302954845130444, -0.009886288084089756, -0.01313481479883194, -0.015521722845733166, 0.018068939447402954, -0.03613102808594704, 0.002253464888781309, 0.05549652501940727, 0.017807569354772568, 0.08460266888141632, -0.01714097149670124, 0.010869858786463737, 0.025993596762418747, -0.009365594014525414, 0.01817033626139164, -0.01614278182387352, -0.016850274056196213, 0.007919580675661564, -0.06560049206018448, 0.056638095527887344, 0.024644283577799797, -0.05004138872027397, 0.03122139535844326, 0.030307574197649956, 0.031807638704776764, 0.03442055732011795, 0.01956838183104992, 0.008025836199522018, 0.029766961932182312, -0.00708651402965188, -0.026307571679353714, 0.0332394614815712, 0.011079171672463417, -0.012369721196591854, -0.07745067775249481, 0.01062764786183834, -0.015396539121866226, -0.04025985673069954, -0.03613913804292679, -0.016023434698581696, -0.04091465100646019, 0.029124049469828606, -0.03225616738200188, -0.0022438825108110905, -0.06720384955406189, 0.0809117779135704, -0.006956013385206461, -0.046107787638902664, -0.026281015947461128, 0.009387004189193249, 0.03826102986931801, 0.03021582029759884, -0.03146315738558769, 0.09112339466810226, 0.028497911989688873, 0.050188224762678146, -0.04193850979208946, 0.02769658714532852, -0.007476725149899721, -0.0801905170083046, -0.020482437685132027, 0.058539099991321564, -0.01770780421793461, 0.0077910167165100574, -0.007483172696083784, -0.03679313138127327, -0.004283836577087641, -0.020288769155740738, 0.04823022708296776, 0.02648874744772911, -0.028293507173657417, -0.004304010886698961, -0.006141323130577803, 0.0047814808785915375, 0.008666985668241978, 0.030359778553247452, -0.0007646779995411634, -0.03589682653546333, -0.03844601660966873, 0.04154832288622856, 0.0008002303075045347, 0.022868791595101357, 0.011818400584161282, -0.043748144060373306, 0.04390087351202965, 0.09199228137731552, 0.02311002090573311, 0.015221145004034042, -0.01465211808681488, 0.0034177724737674, 0.04680560901761055, 0.04762677475810051, 0.008805748075246811, 0.04485414922237396, 0.019096601754426956, -0.005481079686433077, -0.017855186015367508, 0.010625332593917847, -0.009079856798052788, -0.005773978307843208, -0.05115367844700813, -0.060195982456207275, 0.05597633123397827, -0.05385524779558182, 0.01991152949631214, 0.057500142604112625, 0.0826001837849617, 0.05652404949069023, 0.041643865406513214, 0.00022320200514514, -0.0808117538690567, 0.02034432254731655, 0.029483554884791374, 0.017214374616742134, 0.03393734246492386, -0.006884880363941193, 0.05356583744287491, 0.01725730113685131, -0.0010488692205399275, 0.04165783151984215, -0.1051158532500267, -0.07910561561584473, -0.03125033155083656, -0.015239658765494823, 0.06973817944526672, -0.004522872157394886, -0.018305068835616112, 0.070216603577137, -0.0005762698710896075, 0.015150963328778744, 0.0222991481423378, 0.012166651897132397, -0.003564290702342987, -0.04163088649511337, -0.049445804208517075, 0.02572724036872387, 0.032951075583696365, 0.01159773487597704, -0.04417753964662552, 0.0009357460658065975, -0.009005811996757984, 0.0008613746031187475, 0.03750500828027725, -0.032114386558532715, 0.040268003940582275, 0.029048291966319084, 0.03600865602493286, -0.04639826714992523, 0.06868644058704376, -0.05170571804046631, 0.02381706051528454, -0.01001829281449318, -0.017696693539619446, -0.03539405018091202, -0.014596793800592422, 0.08417846262454987, 0.053260453045368195, -0.06683164834976196, -0.03700041398406029, 0.003416946390643716, 0.010289729572832584, -0.043038349598646164, -0.016898754984140396, -0.01378566026687622, 0.01842653751373291, -0.006891199853271246, -0.04781197011470795, -0.023721687495708466, -0.0057207029312849045, -0.03633742406964302, 0.028957493603229523, 0.07172330468893051, -0.03541932627558708, 0.05194583162665367, 0.005653856787830591, -0.020717760547995567, -0.00781596451997757, -0.009792537428438663, -0.07599208503961563, 0.026134639978408813, 0.03742363303899765, -0.011711614206433296, 0.05952480807900429, -0.03281531110405922, -0.029350558295845985, -0.019431380555033684, -0.023949194699525833, 0.016182180494070053, -0.005291326902806759, 0.08735869079828262, -0.007008728105574846, 0.0370238833129406, -0.012961793690919876, 0.044299062341451645, -0.004972221329808235, -0.02326757088303566, -0.029382675886154175, -0.00961711723357439, -0.0002343331725569442, 0.021557455882430077, 0.00016694712394382805, 0.025268232449889183, 0.025095617398619652, -0.018726669251918793, -0.000754892302211374, -0.04898636043071747, 0.0220148004591465, 0.0014227814972400665, -0.016138510778546333, -0.04190519452095032, -0.005382963921874762, 0.01913372613489628, -0.058472272008657455, -0.01720360293984413, 0.015079018659889698, -0.06468014419078827, 0.04309044033288956, -0.07888754457235336, -0.04008820652961731, -0.004792242310941219, 0.025636304169893265, 0.04076113551855087, -0.015210830606520176, 0.05859433487057686, 0.07131056487560272, 0.005985805299133062, 0.032578859478235245, 0.0183427594602108, 0.024958398193120956, 0.03142111003398895, 0.01479459647089243, -0.003590391017496586, 0.015022596344351768, 0.017054328694939613, 0.009347345679998398, -0.04207870736718178, 0.042440008372068405, -0.025927050039172173, -0.2770765423774719, 0.03955414891242981, 0.021970709785819054, -0.05445142835378647, 0.04026350378990173, -0.013394275680184364, 0.014267444610595703, -0.05605516582727432, -0.02216869220137596, 0.032397978007793427, -0.019462546333670616, -0.062362462282180786, -0.006604079157114029, 0.040083758533000946, -0.020387688651680946, 0.026522882282733917, 0.023597383871674538, -0.014496629126369953, 0.02131960354745388, 0.04112346097826958, -0.029309697449207306, -0.038611024618148804, 0.01746942847967148, 0.02455722913146019, 0.02198084071278572, 0.07079750299453735, -0.07708314061164856, 0.07672666013240814, -0.05452955141663551, -0.014434345066547394, 0.021079573780298233, 0.002230884740129113, -0.024106832221150398, -0.0004156178911216557, -0.03684724122285843, -0.007173746824264526, 0.002062661573290825, -0.005663328804075718, -0.006630090065300465, 0.018341924995183945, -0.04076463729143143, -0.027059700340032578, -0.0010936049511656165, -0.009904196485877037, 0.08207035809755325, -0.0369420051574707, -0.06481689214706421, -0.019684908911585808, -0.05632193386554718, 0.09041223675012589, -0.04059289023280144, -0.02673214115202427, 0.005124816671013832, 0.048846323043107986, -0.00012855548993684351, -0.021855290979146957, -0.0036298641934990883, 0.015560769475996494, -0.056202150881290436, -0.033095646649599075, -0.0027271185535937548, -0.034567177295684814, -0.03572859242558479, -0.04164354130625725, -0.013672073371708393, -0.06994034349918365, -0.04571964219212532, -0.01980966329574585, 0.06569114327430725, -0.010980194434523582, -0.033449437469244, 0.013574035838246346, -0.00789686944335699, -0.09440970420837402, 0.002355386270210147, -0.030218075960874557, -0.0646757110953331, -0.017412593588232994, 0.02937915548682213, 0.027334747835993767, -0.04070272296667099, -0.02478450909256935, 0.03553140163421631, 0.015160003677010536, -0.011160713620483875, 0.02837918885052204, 0.04285801574587822, 0.02762082777917385, -0.04683303460478783, 0.02341259829699993, 0.05015905946493149, -0.027137085795402527, -0.027797754853963852, -0.02492544613778591, 0.0227531585842371, 0.020710429176688194, 0.015890302136540413, -0.011255055665969849, 0.02049490064382553, 0.03708501532673836, 0.02572592720389366, -0.059259429574012756, 0.050007931888103485, -0.016017621383070946, 0.008915808983147144, -0.0186506025493145, -0.05167405679821968, 0.017814870923757553, 0.04430253431200981, 0.04503009095788002, -0.011109705083072186, -0.045627765357494354, 0.005918084643781185, -0.04853765293955803, -0.037522558122873306, 0.0012446170439943671, 0.00996040552854538, 0.03838583081960678, -0.0049135759472846985, 0.00721100764349103, -0.033900175243616104, 0.023658648133277893, 0.002122974256053567, 0.010145795531570911, -0.049255795776844025, -0.045597925782203674, -0.0190427303314209, 0.018078919500112534, 0.02810950018465519, 0.013946468941867352, -0.024343213066458702, 0.04951297119259834, 0.004636418540030718, -0.03949751332402229, 0.015598702244460583, 0.002723671030253172, -0.036476749926805496, -0.021400025114417076, -0.0023339586332440376, 0.011783808469772339, -0.042056553065776825, 0.01556339766830206, -0.018220605328679085, 0.018004173412919044, 0.033480145037174225, 0.0019436198053881526, 0.04832329973578453, -0.01686955615878105, 0.01238188985735178, 0.00514037162065506, 0.017218727618455887, -0.08621759712696075, 0.012582476250827312, -0.04810573533177376, -0.045636918395757675, -0.03376547247171402, 0.027531281113624573, -0.0075421202927827835, -0.005490252282470465, -0.01801040582358837, 0.0032499339431524277, -0.05567093566060066, -0.01530633494257927, -0.007885226048529148, -0.005599929951131344, 0.06107848137617111, -0.007160942070186138, 0.00954711064696312, -0.039588991552591324, -0.013773969374597073, 0.013518259860575199, 0.04711830988526344, -0.03307708725333214, -0.00002821554517140612, -0.0036326893605291843, 0.022293204441666603, 0.01077354047447443, 0.012365738861262798, 0.05102429538965225, 0.01905028335750103, 0.004244002979248762, -0.027153238654136658, 0.017811225727200508, 0.022184431552886963, 0.022695865482091904, -0.031116001307964325, 0.0066022020764648914, -0.01022445410490036, -0.008457950316369534, -0.01783318817615509, -0.028997192159295082, -0.013372369110584259, 0.002461231779307127, 0.033078111708164215, -0.05331220477819443, -0.08173009008169174, 0.022909317165613174, 0.03066227398812771, 0.02503032796084881, 0.001839679665863514, -0.01868159882724285, 0.01279213186353445, -0.021696317940950394, 0.04018004983663559, 0.06371676921844482, -0.05309629440307617, -0.007640407886356115, -0.00007140714296838269, 0.03262510895729065, -0.031070290133357048, -0.008426115848124027, -0.04864460602402687, -0.04825268313288689, -0.009384656324982643, -0.013499543070793152, -0.03091917186975479, -0.013493982143700123, -0.037701014429330826, 0.0191322211176157, -0.0040358444675803185, -0.03350871801376343, -0.011251195333898067, 0.0036777679342776537, 0.005355072673410177, -0.018887696787714958, 0.015066263265907764, -0.009325380437076092, 0.013346158899366856, -0.00706641236320138, -0.036246541887521744, 0.0171189121901989, -0.03897806629538536, 0.05307462811470032, 0.009031718596816063, -0.01929534040391445, -0.015530905686318874, -0.010262828320264816, -0.014642356894910336, 0.005057586822658777, 0.007462416309863329, -0.008638693951070309, -0.0005473043420352042, -0.042584024369716644, -0.012188448570668697, -0.023010550066828728, -0.003392243292182684, -0.028190912678837776, -0.028151217848062515, 0.012210417538881302, 0.04995853453874588, 0.02250068262219429, 0.03230147808790207, -0.006741675548255444, 0.007292876951396465, 0.06540650129318237, -0.09088151156902313, -0.033896416425704956, -0.0160672627389431, -0.07315084338188171, 0.004164974670857191, 0.029992369934916496, 0.016579531133174896, -0.055054906755685806, 0.04220239073038101, 0.03524915874004364, 0.00502682663500309, 0.04580327123403549, -0.015183660201728344, 0.03213179484009743, -0.0537773035466671, -0.026944899931550026, -0.05825204402208328, 0.02178262732923031, 0.04039408266544342, -0.006709098815917969, -0.00514952139928937, -0.024507619440555573, -0.026586279273033142, 0.05194487422704697, -0.030758392065763474, -0.021804368123412132, 0.05387309938669205, 0.006833042949438095, 0.00645388662815094, 0.03326670825481415, -0.07400374114513397, 0.043002933263778687, 0.056854117661714554, -0.044758979231119156, -0.02474687434732914, -0.048638004809617996, 0.05166206881403923, 0.0001682774309301749, 0.019362356513738632, -0.04958193749189377, -0.015905261039733887, 0.03428903967142105, 0.025398777797818184, 0.027429061010479927, 0.0621776282787323, -0.002526643453165889, 0.023680677637457848, 0.04269098863005638, -0.0011249895906075835, -0.011307848617434502, 0.026722045615315437, -0.00958921480923891, -0.02917896956205368, 0.04730265960097313, -0.0052871908992528915, -0.033315375447273254, -0.04043989256024361, 0.045917708426713943, 0.02248925343155861, -0.031099069863557816, -0.025462152436375618, 0.016565877944231033, -0.06816783547401428, 0.01963501051068306, -0.03216139227151871, -0.03248005732893944, -0.029434116557240486, 0.04493976756930351, 0.005005406215786934, -0.004418433178216219, 0.07599432021379471, 0.007089095655828714, -0.020030023530125618, -0.01736399345099926, 0.052652448415756226, 0.060484495013952255, 0.03515306115150452, 0.007100902963429689, 0.042270321398973465, -0.0038417221512645483, -0.0344109982252121, 0.048802658915519714, -0.013662510551512241, -0.003769154893234372, -0.05444451421499252, -0.01576315611600876, 0.03932184353470802, 0.004586855880916119, 0.0613178126513958, -0.029859639704227448, 0.03302420303225517, -0.005783142056316137, 0.00961996428668499, 0.021293802186846733, 0.07358914613723755, 0.005299391690641642, -0.010594569146633148, -0.012265120632946491, -0.0270573478192091, 0.013349774293601513, -0.046538468450307846, -0.016325881704688072, 0.01893380470573902, -0.023459091782569885, 0.017022816464304924, 0.028020551428198814, -0.009438776411116123, 0.056325461715459824, -0.026847397908568382, 0.00923540536314249, -0.01807834766805172, 0.048361364752054214, 0.01677294448018074, -0.011093132197856903, -0.007733768317848444, -0.02685144916176796, -0.008846527896821499, -0.020331822335720062, -0.006369846872985363, 0.007867177948355675, -0.02380818873643875, 0.03774777799844742, 0.006065905559808016, 0.01825571246445179, 0.0319179929792881, 0.02460569143295288, -0.023692265152931213, -0.043167900294065475, -0.0396781861782074, -0.04281514510512352, -0.01958535797894001, -0.019096659496426582, 0.013102378696203232, -0.01362992636859417, -0.02861204743385315, -0.023386798799037933, -0.028629930689930916, -0.022545848041772842, 0.04412123188376427, -0.04519657790660858, -0.02234174683690071, 0.001392056350596249, 0.019065849483013153, 0.016581257805228233, 0.014616702683269978, 0.04928617179393768, 0.002780150156468153, -0.036506287753582, -0.010928238742053509, 0.023450296372175217, 0.03127328306436539, 0.015247827395796776, 0.033456090837717056, -0.06507808715105057, 0.04394514858722687, 0.025277897715568542, 0.02701570652425289, -0.05575098469853401, 0.021849775686860085, -0.007647657301276922, -0.03805190697312355, 0.0705326572060585, -0.016600098460912704, 0.002716198330745101, -0.026746585965156555, 0.005442698951810598, -0.007832109928131104, 0.03562749922275543, 0.03962927684187889, -0.010861185379326344, 0.06934209167957306, 0.01612449251115322, -0.020070688799023628, -0.06619978696107864, -0.005102779250591993, 0.003588514169678092, 0.007218640763312578, -0.025426892563700676, -0.03454574570059776, -0.04760962724685669, -0.05740812420845032, -0.010068886913359165, -0.0007371731335297227, -0.016988907009363174, -0.0162400770932436, -0.0028545805253088474, 0.01949469931423664, -0.06840255856513977, 0.018043363466858864, -0.04079539328813553, 0.040429845452308655, -0.017167268320918083, -0.00588704738765955, 0.01788473129272461, 0.014875580556690693, 0.012598473578691483, 0.01703977771103382, 0.04065413773059845, -0.035986077040433884, -0.007760112173855305, 0.009079392068088055, 0.013610891997814178, 0.0467727966606617, 0.01841117814183235, 0.0005831476300954819 ]
[ -0.09193708002567291, 0.017157481983304024, -0.010070574469864368, -0.004070186521857977, 0.0672292560338974, -0.04648515582084656, -0.010902411304414272, -0.004553561564534903, -0.02819180302321911, -0.02715393528342247, -0.015807872638106346, -0.02615002542734146, 0.0060017467476427555, 0.0017392351292073727, 0.10349390655755997, 0.003077459055930376, -0.033069148659706116, -0.07494131475687027, 0.030975179746747017, 0.009820114821195602, 0.004490634426474571, -0.013611258007586002, -0.010792653076350689, -0.01385466568171978, 0.026372550055384636, 0.026819171383976936, 0.03252680227160454, -0.0462762787938118, -0.027317121624946594, -0.21289555728435516, 0.021897155791521072, -0.009031088091433048, -0.0147255789488554, -0.018654586747288704, -0.020515959709882736, 0.06526383012533188, 0.04337974637746811, 0.006761572789400816, 0.009557262994349003, 0.08704105764627457, 0.0034126804675906897, 0.04593634977936745, -0.034778766334056854, -0.04621420428156853, 0.03321734815835953, -0.027678726240992546, -0.004505355376750231, -0.012871072627604008, -0.0060775247402489185, 0.025941697880625725, 0.005399892572313547, -0.016078613698482513, -0.04933622106909752, 0.0035719035658985376, -0.05143112316727638, 0.05359109118580818, 0.04591839015483856, 0.054646141827106476, -0.004001265857368708, 0.01065569557249546, 0.03472229093313217, -0.012627528980374336, -0.14262643456459045, 0.06723468750715256, 0.027389707043766975, 0.059843510389328, -0.025390462949872017, -0.04025525599718094, 0.03866330906748772, 0.09556426852941513, 0.000006589769782294752, -0.015342230908572674, -0.03964542597532272, 0.0532521978020668, 0.015298753045499325, 0.004498161841183901, -0.0007694505620747805, 0.05875420197844505, 0.07038027048110962, -0.04367469251155853, -0.08489888906478882, 0.008142735809087753, -0.01630585454404354, -0.02155047468841076, -0.02667735517024994, 0.03261571377515793, 0.01425221562385559, 0.07381319999694824, 0.06086606904864311, 0.02688649296760559, 0.068390391767025, -0.040669992566108704, 0.027821043506264687, -0.022204622626304626, -0.08326951414346695, -0.023667501285672188, -0.009822552092373371, -0.012558219954371452, -0.02584489807486534, 0.44139423966407776, -0.01610037498176098, -0.021621018648147583, 0.0318610854446888, 0.03328513726592064, -0.009024395607411861, 0.021629704162478447, 0.006904129404574633, -0.01956051029264927, 0.000534098653588444, -0.004109143745154142, 0.0023635507095605135, 0.004091172944754362, 0.024909254163503647, -0.0690147653222084, 0.022638697177171707, 0.03239981457591057, -0.011715211905539036, 0.011029941961169243, -0.04477534070611, 0.02276606671512127, -0.016869161278009415, 0.009857581928372383, 0.02508593164384365, 0.011565664783120155, -0.005744968540966511, -0.01311577670276165, -0.006734119262546301, 0.057239994406700134, 0.01759648323059082, -0.020814621821045876, 0.035674385726451874, -0.025647055357694626, -0.0707307830452919, -0.017981935292482376, -0.026660436764359474, 0.009455062448978424, 0.05393826216459274, -0.012707929126918316, -0.0310677457600832, 0.02259371243417263, 0.004448742605745792, 0.006137693766504526, -0.0003052392858080566, -0.04157472029328346, -0.05228210613131523, 0.06722529977560043, -0.01646779291331768, 0.000067914355895482, -0.023068247362971306, -0.056724272668361664, 0.01789107918739319, 0.02410229481756687, -0.0007561333477497101, -0.025653596967458725, 0.057513587176799774, -0.01949901320040226, 0.013797573745250702, 0.030716827139258385, -0.02867218293249607, -0.00997762568295002, -0.017219871282577515, -0.06265419721603394, -0.030971353873610497, -0.015943685546517372, 0.02478383667767048, -0.10929705947637558, -0.022179896011948586, 0.01145529467612505, 0.043464820832014084, -0.04128582403063774, -0.013313780538737774, 0.025436194613575935, 0.005657637026160955, -0.02177693136036396, 0.036811839789152145, -0.02164302207529545, -0.0249174777418375, 0.014447326771914959, 0.03798338770866394, 0.04976912587881088, -0.009161005727946758, 0.009942407719790936, 0.000054368447308661416, 0.010301871225237846, -0.03770173341035843, -0.08781076967716217, -0.05619361996650696, -0.006702757906168699, -0.04730282351374626, -0.03384467214345932, -0.02280799299478531, -0.03493684157729149, -0.06793134659528732, 0.08100765198469162, -0.006329321768134832, -0.008412394672632217, 0.021705906838178635, -0.009138528257608414, 0.03999984636902809, -0.014152186922729015, 0.02088281139731407, 0.05366203561425209, -0.005569793283939362, 0.01830299198627472, -0.09050506353378296, 0.05566318333148956, 0.049621615558862686, -0.03457013517618179, 0.059463970363140106, 0.022326556965708733, -0.049897123128175735, 0.005297705996781588, 0.011741377413272858, 0.03464467450976372, -0.011387599632143974, -0.013486386276781559, -0.006351213436573744, 0.007537057623267174, -0.0015428861370310187, 0.02073139138519764, -0.037711791694164276, 0.023354846984148026, -0.006174131296575069, -0.36346855759620667, -0.038296788930892944, 0.001255947514437139, 0.004864197690039873, 0.05286024138331413, -0.06572557985782623, -0.0043610939756035805, -0.004377736244350672, -0.004664026200771332, -0.020946050062775612, 0.09421102702617645, 0.002587295835837722, 0.019430123269557953, -0.08873245120048523, -0.0004261687572579831, 0.02016504667699337, -0.045929472893476486, -0.01869664154946804, -0.01969865895807743, -0.021188974380493164, -0.024517454206943512, -0.027119092643260956, 0.0002976786345243454, -0.029078733175992966, 0.011465595103800297, -0.009123895317316055, 0.08333392441272736, 0.009255744516849518, 0.07441407442092896, -0.021656619384884834, 0.023457037284970284, 0.010910764336585999, 0.05527184158563614, -0.1034991666674614, 0.03279911354184151, -0.010783816687762737, -0.0017005570698529482, 0.01156811136752367, 0.05056825280189514, -0.015854664146900177, -0.027496719732880592, 0.009142898954451084, -0.0522824227809906, -0.06988611817359924, -0.012992712669074535, 0.026784012094140053, -0.0304875448346138, -0.00926146935671568, -0.04346964880824089, 0.03158973529934883, 0.01590152643620968, 0.010943682864308357, -0.0005967584438621998, 0.015384375117719173, -0.0060179163701832294, -0.007317226845771074, -0.06252287328243256, 0.007848416455090046, 0.02297988347709179, -0.0006610408308915794, 0.057217370718717575, 0.04665149003267288, 0.04896402359008789, -0.053002968430519104, 0.015597115270793438, 0.0018180966144427657, 0.00535294134169817, -0.004042099229991436, 0.07187393307685852, -0.01901601254940033, -0.009801635518670082, 0.10098312795162201, -0.019929636269807816, 0.0019909637048840523, 0.02269829995930195, 0.024474211037158966, -0.0033405767753720284, -0.010291163809597492, -0.002647385001182556, -0.011060568504035473, 0.007463864050805569, -0.014414136298000813, 0.005133765749633312, -0.021567903459072113, -0.021050242707133293, 0.054330531507730484, -0.047853048890829086, -0.06308156251907349, 0.05756032094359398, 0.02233022265136242, -0.006990784779191017, -0.015117857605218887, -0.0075552514754235744, -0.04434764385223389, 0.07715267688035965, 0.0034094159491360188, -0.23586980998516083, 0.008376854471862316, 0.07896289229393005, 0.03638835996389389, -0.030635632574558258, -0.002523856470361352, 0.0393470861017704, -0.06891873478889465, 0.02117595635354519, 0.0011460165260359645, 0.06095953285694122, 0.027106983587145805, 0.020772650837898254, 0.0023653493262827396, 0.04039759188890457, -0.027520809322595596, 0.04561296105384827, -0.0030725658871233463, 0.03593812510371208, 0.002761030336841941, 0.003689144505187869, -0.026027319952845573, 0.1707933098077774, 0.04916924238204956, -0.011456582695245743, 0.03150136023759842, 0.012474006973206997, 0.012412255629897118, 0.08160275965929031, 0.0026212262455374002, 0.023445840924978256, -0.03704177960753441, 0.050733938813209534, -0.006783907301723957, 0.04187778756022453, -0.07968166470527649, -0.004424562677741051, 0.04133640602231026, 0.02103826031088829, -0.006967233028262854, -0.042038243263959885, 0.01024633552879095, -0.02473757229745388, 0.02546636015176773, 0.06476662307977676, -0.06389975547790527, -0.003568838117644191, -0.02765372209250927, -0.06252387911081314, -0.0328606516122818, -0.029377108439803123, -0.04126680642366409, 0.021770158782601357, -0.0160866416990757, 0.0035111454781144857, 0.05977069213986397, 0.022552579641342163, -0.057505909353494644, -0.030102094635367393, 0.024643052369356155, 0.03263497352600098, -0.013600886799395084, 0.09180445969104767, -0.029342588037252426, 0.021853331476449966 ]
[ -0.006964053958654404, 0.027939999476075172, -0.005101361777633429, 0.03728263080120087, 0.012498999014496803, -0.012879565358161926, -0.016391418874263763, 0.035202667117118835, -0.03515937179327011, 0.03082140162587166, 0.008470439352095127, 0.002992152702063322, 0.024781469255685806, 0.01664585806429386, 0.03752003237605095, -0.027812302112579346, 0.009911496192216873, -0.004409673623740673, 0.03733711317181587, 0.011041081510484219, -0.0078080506063997746, 0.027814457193017006, 0.015723563730716705, 0.0188723336905241, -0.02016334980726242, -0.014737686142325401, -0.03422774001955986, 0.0013737916015088558, 0.010274430736899376, -0.12778940796852112, -0.016729552298784256, -0.031336307525634766, -0.023112207651138306, -0.017583658918738365, -0.01806781254708767, 0.011038504540920258, -0.001708343392238021, 0.04838305339217186, 0.02278539165854454, 0.013638177886605263, -0.011864661239087582, 0.013061871752142906, 0.01053918432444334, -0.010193871334195137, -0.013968858867883682, -0.043926652520895004, -0.011346457526087761, -0.009272859431803226, -0.008631546050310135, 0.008779047057032585, -0.019398394972085953, -0.025065192952752113, -0.05463077127933502, -0.012515420094132423, -0.0064720879308879375, -0.0074137127958238125, 0.019829334691166878, -0.052845101803541183, 0.04536100849509239, -0.02506428211927414, 0.023816455155611038, -0.003650367958471179, -0.03174743801355362, -0.02767353691160679, -0.004954792093485594, -0.013697292655706406, 0.02685406804084778, 0.014461332000792027, 0.0020036064088344574, -0.015708332881331444, -0.04342183843255043, 0.03151094168424606, -0.004525816533714533, 0.021008899435400963, 0.024967625737190247, 0.033021874725818634, -0.009080319665372372, -0.011547524482011795, 0.0461130365729332, -0.003668783465400338, -0.030596798285841942, 0.025099489837884903, -0.007944216951727867, 0.024710338562726974, 0.017632855102419853, 0.035295892506837845, 0.006172414869070053, -0.0053405300714075565, 0.017030848190188408, -0.016538625583052635, 0.032232411205768585, -0.013195749372243881, -0.027652647346258163, 0.024195225909352303, -0.030624469742178917, -0.05219973251223564, 0.016262473538517952, 0.006787790916860104, -0.007903512567281723, 0.8285165429115295, -0.013823816552758217, -0.008734901435673237, 0.04777364060282707, -0.0013658165698871017, -0.017470669001340866, 0.003362282644957304, 0.00006068525544833392, 0.006372897420078516, 0.004024829715490341, -0.020710207521915436, -0.005928519647568464, 0.02375921607017517, -0.00008412494935328141, -0.02336646057665348, 0.06760001927614212, 0.05933993682265282, 0.011152278631925583, -0.012046342715620995, -0.03404495492577553, 0.002566796261817217, 0.028953637927770615, -0.03752344846725464, -0.001506489235907793, -0.02374107390642166, 0.009639625437557697, -0.18403074145317078, 0.013021476566791534, -7.958198876138614e-33, 0.04341202229261398, -0.020087677985429764, -0.025341348722577095, 0.03414398059248924, 0.028330789878964424, 0.009380686096847057, 0.03889520466327667, 0.032476577907800674, -0.027102401480078697, -0.009920453652739525, -0.020675335079431534, -0.031462397426366806, -0.03142479434609413, -0.01120674703270197, -0.011128806509077549, -0.027512695640325546, -0.039070967584848404, 0.04353050887584686, -0.05741477757692337, 0.01877882145345211, 0.02359020709991455, 0.03570286184549332, -0.016588464379310608, 0.0006838692352175713, 0.01931416057050228, 0.011634163558483124, 0.003972473554313183, 0.005542838480323553, -0.03157214820384979, -0.04552938789129257, 0.060080744326114655, 0.003248595865443349, -0.04411454126238823, 0.008132119663059711, 0.027049293741583824, -0.06916830688714981, -0.04541180655360222, -0.015291198156774044, -0.02378132753074169, -0.02020728960633278, 0.0005875095957890153, 0.004371555522084236, -0.03856109827756882, 0.04498784616589546, -0.014612546190619469, -0.0020832496229559183, 0.006320532411336899, 0.03295210376381874, 0.036194536834955215, -0.00951122771948576, 0.009792318567633629, 0.05699649080634117, -0.030076803639531136, -0.0035569611936807632, 0.015585789456963539, 0.03590595722198486, 0.04366676136851311, 0.000523009744938463, 0.01439308375120163, -0.019469741731882095, -0.00021007102623116225, -0.008597555570304394, -0.04008730873465538, 0.01820646971464157, -0.005537158809602261, -0.006643669214099646, -0.019305523484945297, 0.0022690610494464636, 0.06664538383483887, -0.01920364424586296, -0.00980545673519373, 0.00018942462338600308, -0.02941584587097168, -0.018565669655799866, 0.03886094316840172, -0.021944532170891762, 0.0171345341950655, 0.06920207291841507, 0.03054853342473507, 0.03434216231107712, 0.006150432862341404, 0.036097604781389236, -0.0201572235673666, -0.0127528365701437, 0.014721686951816082, -0.000573712692130357, 0.01752059906721115, -0.03393075242638588, -0.005614518653601408, -0.0020657454151660204, 0.06302883476018906, 0.0022545871324837208, -0.03743046894669533, -0.04213264584541321, -0.027276594191789627, 8.46996797418436e-33, -0.020406531170010567, -0.02423333004117012, -0.00028284647851251066, 0.020738966763019562, -0.03194264695048332, 0.01331088412553072, 0.004521962255239487, 0.01648484170436859, -0.05020852014422417, 0.013783498667180538, 0.01869511976838112, 0.05065952613949776, -0.017727654427289963, 0.040503960102796555, 0.047233108431100845, -0.033244743943214417, 0.034188926219940186, -0.06781468540430069, 0.040799178183078766, 0.024931613355875015, 0.05750440061092377, 0.006958439946174622, -0.004159747157245874, -0.0012536155991256237, 0.004674025811254978, 0.045519135892391205, -0.01144697330892086, -0.00390841206535697, 0.0394207127392292, -0.027985550463199615, 0.025646133348345757, 0.021640872582793236, 0.013539227657020092, -0.0093005346134305, -0.0008603599271737039, -0.006028464995324612, -0.01903926394879818, 0.029437724500894547, -0.06141210347414017, -0.02211962267756462, -0.015302132815122604, -0.0020124681759625673, -0.0034396036062389612, 0.032486699521541595, 0.00791203510016203, -0.001669780584052205, 0.004681384190917015, -0.005739022511988878, 0.004360288381576538, 0.04810182750225067, 0.003554980270564556, -0.024373089894652367, 0.0435626283288002, -0.029810836538672447, 0.021106064319610596, -0.007629589177668095, -0.03511519730091095, -0.026565497741103172, 0.030468473210930824, 0.00828542560338974, 0.000104314080090262, -0.011448882520198822, -0.016261639073491096, -0.013559076935052872, -0.056119780987501144, 0.010500572621822357, -0.029089605435729027, -0.01102391816675663, 0.00019569502910599113, -0.001998207764700055, -0.007919931784272194, 0.00047894177259877324, -0.014285187236964703, -0.027479954063892365, 0.043484244495630264, -0.04140844941139221, 0.00029273791005834937, 0.004733795765787363, -0.03012050688266754, 0.01114597450941801, -0.006140841171145439, -0.01579269953072071, 0.02681267075240612, -0.02870524860918522, -0.005608908366411924, 0.005480186548084021, -0.032340388745069504, 0.037723127752542496, 0.021465132012963295, 0.009021878242492676, -0.030208708718419075, 0.009427201934158802, 0.012185703963041306, 0.001296009635552764, 0.03576953709125519, -1.322812792636796e-8, -0.010015756823122501, 0.032517895102500916, -0.010178848169744015, 0.020212482661008835, -0.00438177864998579, -0.001965523464605212, -0.02773989923298359, -0.023519445210695267, -0.047549668699502945, 0.040069010108709335, 0.04246799647808075, 0.026041608303785324, 0.021065661683678627, 0.010496263392269611, 0.004765662830322981, -0.030998222529888153, -0.01823507994413376, -0.01859678141772747, 0.025415318086743355, -0.030140653252601624, 0.010628683492541313, 0.047541964799165726, 0.030077869072556496, 0.016188276931643486, 0.015321869403123856, 0.03690505400300026, 0.024420827627182007, -0.07271471619606018, -0.008684180676937103, 0.001792694441974163, -0.0033555023837834597, -0.0168544203042984, -0.06475207954645157, 0.019662361592054367, -0.035204291343688965, -0.009122679941356182, 0.004367852583527565, 0.022403696551918983, 0.045158836990594864, -0.009847810491919518, 0.0052987863309681416, 0.004506844561547041, 0.00839973147958517, -0.007940717041492462, -0.004686244297772646, 0.005837004166096449, -0.052160341292619705, 0.026069562882184982, -0.006906214635819197, -0.052644092589616776, -0.004543018992990255, -0.012840315699577332, -0.010845529846847057, -0.005694640800356865, 0.004473449196666479, 0.0006369277834892273, 0.02899574674665928, -0.0038645246531814337, -0.030779212713241577, 0.010667216032743454, 0.004851913545280695, -0.012020179070532322, -0.006532398983836174, -0.02955479733645916 ]
a-reminder-of-the-usefulness-of-git
https://markhneedham.com/blog/2010/03/14/a-reminder-of-the-usefulness-of-git
false
2010-03-22 23:42:02
Defensive Programming and the UI
[ "defensive-programming" ]
[ "Software Development" ]
A few weeks ago I was looking at quite an interesting bug in our system which initially didn't seem possible. On one of our screens we have some questions that the user fills in which read a bit like this: * Do you have a foo? ** Is your foo an approved foo? ** Is your foo special? i.e. you would only see the 2nd and 3rd questions on the screen if you answered yes to the first question. However, if you went to the next page on the form having answered 'Yes' to the first question and then came back to this page and changed your answer to the first question to 'No' then when the data got submitted to the server the answers to the other two questions would still be posted. We were therefore ending up with a request with the following values submitted: [source,text] ---- hasFoo "No" approvedFoo "Yes" specialFoo "Yes" ---- Later on in the application we had some logic which decided what to do with the user request and this one was erroneously being approved because we hadn't catered for the condition where the first question was answered 'No' and the other questions had 'Yes' values. In theory we should have written some client side code to reset the optional questions if the first one was answered 'No' but even then it's still possible to post whatever data you want to the server if you try hard enough. Given that we need to behave in a somewhat defensive way somewhere on the server. My initial thinking was that perhaps we should change the logic to handle this scenario but talking through the problem with http://mikewagg.blogspot.com/[Mike] he pointed out that it would make more sense to fix the data earlier in the chain. I ended up writing some code in the controller to change the latter two fields to 'No' if the answer to the first question was 'No'. We're not really using custom binders on the project otherwise I think it would be the type of logic that would go in there. Overall I'm no really a fan of defensive programming in general because it often seems to lead to over complicated code but in the case of user input it does make sense and the general guideline seems to be to *fix any logically invalid values as close to the entry point of our application as possible*.
null
null
[ 0.008252603933215141, -0.013127919286489487, -0.0024312781170010567, 0.048421017825603485, 0.08181200176477432, -0.014167699962854385, 0.01448768936097622, 0.030346039682626724, -0.00001842908386606723, -0.022539474070072174, -0.017962031066417694, 0.02007131464779377, -0.052309244871139526, 0.007760682143270969, -0.010186536237597466, 0.05993634834885597, 0.05480903387069702, 0.008402296341955662, 0.03907924145460129, -0.0065787071362137794, 0.02271292917430401, 0.05030341446399689, 0.00016333204985130578, 0.016711663454771042, 0.05038383975625038, 0.017510084435343742, -0.005687805823981762, -0.010762497782707214, -0.08241718262434006, 0.0030156311113387346, 0.03127836436033249, 0.018603060394525528, -0.005330169573426247, -0.014831316657364368, -0.00041354665881954134, -0.013754906132817268, -0.025117233395576477, 0.0509740449488163, -0.0033963650930672884, 0.019535595551133156, -0.07857026904821396, 0.03714141994714737, -0.01409862656146288, -0.0009892386151477695, -0.029594959691166878, 0.0060880607925355434, -0.0175143014639616, 0.008027316071093082, 0.0018261501099914312, -0.012189929373562336, -0.07810578495264053, 0.058383576571941376, -0.017758049070835114, -0.0016933425795286894, -0.0011497708037495613, 0.044621918350458145, 0.00910930521786213, -0.054063428193330765, 0.009534267708659172, -0.041274379938840866, -0.001424821326509118, 0.017945541068911552, 0.009661518037319183, 0.03135943040251732, -0.0023422790691256523, -0.043718185275793076, -0.032019078731536865, 0.04974894970655441, -0.008034637197852135, 0.003944710362702608, 0.0015233788872137666, 0.016485393047332764, 0.01106770895421505, -0.016795868054032326, 0.037002693861722946, -0.033971816301345825, -0.0009841278661042452, 0.07022079825401306, 0.004898367449641228, 0.028680600225925446, -0.01757071353495121, 0.006007082294672728, 0.03373567759990692, 0.02378472313284874, 0.002372671151533723, -0.05121367424726486, -0.026818744838237762, -0.008454960770905018, -0.007766624912619591, 0.04733162745833397, 0.04624243825674057, -0.0757833868265152, 0.042619071900844574, 0.02284301444888115, -0.0030349676962941885, 0.001221508951857686, 0.006011693738400936, 0.004742009565234184, -0.013394362293183804, 0.008487841114401817, -0.013553514145314693, -0.01894228346645832, 0.03947412967681885, -0.0012846156023442745, -0.06938508152961731, -0.009131873957812786, -0.04190162569284439, -0.019159846007823944, -0.0029209619387984276, 0.02473304606974125, -0.028122413903474808, 0.022652404382824898, -0.01996424049139023, 0.004244628828018904, -0.06603192538022995, 0.07267457991838455, -0.013251964934170246, -0.0262083038687706, -0.006867393851280212, 0.03961794078350067, 0.025931192561984062, 0.01654682122170925, -0.007107604295015335, 0.09609496593475342, 0.008485803380608559, 0.018420040607452393, -0.007317299954593182, 0.05537039414048195, -0.02669323794543743, -0.06177746132016182, -0.011548962444067001, 0.06022229790687561, -0.03327292576432228, 0.02483111247420311, 0.002070056740194559, -0.023642893880605698, 0.002158200601115823, -0.027864668518304825, 0.04876471683382988, 0.03235375136137009, -0.03858943656086922, -0.02546846494078636, -0.002012812066823244, 0.00336149288341403, 0.03787864372134209, 0.007727696560323238, 0.008832872845232487, -0.004628680180758238, -0.052253272384405136, 0.016109544783830643, 0.009461850859224796, 0.004848151933401823, 0.03603622689843178, -0.036239832639694214, 0.006236771587282419, 0.07025662809610367, 0.02296402119100094, 0.0035737226717174053, -0.017435874789953232, 0.034708257764577866, 0.04222472012042999, 0.038618169724941254, 0.01737242564558983, 0.039435308426618576, 0.030767643824219704, -0.0035993335768580437, -0.008277232758700848, 0.02742089331150055, 0.00859377346932888, 0.004995839670300484, -0.07014908641576767, -0.05567584186792374, 0.07029809057712555, -0.053553782403469086, -0.026085229590535164, 0.05696774274110794, 0.059413161128759384, 0.012886963784694672, 0.042811524122953415, -0.005025558173656464, -0.06211220845580101, 0.005241911858320236, -0.001514232950285077, 0.028540238738059998, 0.011072306893765926, -0.0005521767889149487, 0.07022237777709961, 0.056065864861011505, 0.02036966383457184, 0.02578134462237358, -0.06327071040868759, -0.05904849246144295, -0.033323973417282104, 0.0012053530663251877, 0.06495507061481476, -0.023036537691950798, 0.003299859818071127, 0.10418473929166794, 0.024803699925541878, 0.06617490202188492, 0.05351587012410164, 0.006596885155886412, 0.013733260333538055, -0.03538360446691513, -0.045688144862651825, 0.05378269404172897, 0.05575123801827431, 0.004638495855033398, -0.040835630148649216, 0.03335711732506752, -0.05457880347967148, 0.01662507839500904, 0.028745710849761963, -0.022953858599066734, 0.031647466123104095, 0.01994180493056774, 0.05354003235697746, -0.034786589443683624, 0.03693686053156853, -0.07840338349342346, 0.03799870237708092, 0.022357702255249023, 0.010419738478958607, -0.012524072080850601, -0.00015267964045051485, 0.11467444896697998, 0.04916047304868698, -0.01817883923649788, -0.051354218274354935, -0.008966172114014626, 0.009515656158328056, -0.025039007887244225, 0.013822132721543312, -0.010537338443100452, -0.0019418381853029132, -0.004560216795653105, -0.029102418571710587, -0.02743755653500557, 0.027548737823963165, -0.029449881985783577, 0.026359403505921364, 0.07521022856235504, -0.01247619092464447, 0.0568828359246254, -0.03612946346402168, -0.03095625340938568, -0.0015645152889192104, -0.0023310547694563866, -0.033176030963659286, 0.004822301212698221, 0.015464003197848797, -0.008927930146455765, 0.06119580939412117, -0.001099045854061842, -0.030152084305882454, -0.018012424930930138, -0.029862012714147568, -0.0020692029502242804, 0.04531387984752655, 0.0608891025185585, -0.014970019459724426, 0.05717017874121666, 0.006999714765697718, -0.005066069308668375, -0.009193796664476395, -0.04395703971385956, -0.035902947187423706, -0.0033736738841980696, -0.01113720703870058, 0.06293243169784546, 0.01676161400973797, -0.011653615161776543, 0.020175257697701454, 0.010503881610929966, -0.0027983637992292643, -0.009800574742257595, 0.03786393254995346, 0.008544743992388248, -0.009246277622878551, -0.010504056699573994, -0.03546372428536415, 0.04153146967291832, -0.0624929815530777, -0.0543660968542099, 0.040345288813114166, -0.07201661169528961, 0.05356068164110184, -0.05898100137710571, -0.0649055540561676, 0.011878942139446735, 0.0236157588660717, 0.03791419044137001, 0.007929479703307152, 0.017522986978292465, 0.09287454187870026, -0.025514470413327217, 0.002742206444963813, 0.019024865701794624, 0.024432513862848282, 0.03993118926882744, 0.012731416150927544, -0.011768956668674946, 0.03165438026189804, -0.021861713379621506, 0.023092128336429596, -0.0221543051302433, 0.042830709367990494, -0.027524830773472786, -0.2982512414455414, 0.054967932403087616, -0.0013794329715892673, -0.04146771505475044, 0.028281887993216515, -0.007844654843211174, 0.026332171633839607, -0.02874859794974327, -0.011549797840416431, 0.034281402826309204, -0.014585518278181553, -0.04526292160153389, -0.03928321972489357, 0.0485299676656723, 0.0012442722218111157, 0.024161148816347122, 0.03122466802597046, -0.05854217708110809, -0.00919292215257883, 0.015010151080787182, -0.009570871479809284, -0.06919500976800919, 0.014752433635294437, 0.06689544022083282, 0.05028002709150314, 0.07231109589338303, -0.059927623718976974, 0.024457603693008423, -0.0372614860534668, -0.018339987844228745, 0.020409436896443367, -0.006205588113516569, -0.002988312626257539, -0.019669270142912865, -0.04873958230018616, -0.03170335665345192, 0.024509787559509277, 0.003588471794500947, 0.015270233154296875, 0.02712666057050228, -0.05016501620411873, -0.04366064816713333, -0.0015438759000971913, 0.003105861134827137, 0.06762294471263885, -0.02674231305718422, -0.06872866302728653, 0.0039551397785544395, -0.04086150974035263, 0.04785905033349991, -0.014307934790849686, -0.054170411080121994, 0.001614888897165656, 0.03500307351350784, -0.006062319036573172, -0.001676555024459958, 0.025966109707951546, -0.019981730729341507, -0.05739310383796692, -0.055599700659513474, -0.015069813467562199, -0.05534375086426735, -0.029340283945202827, -0.038418959826231, 0.014347015880048275, -0.05810747295618057, -0.04455164074897766, 0.013157622888684273, 0.09319732338190079, 0.03467975929379463, -0.022715721279382706, 0.022985991090536118, -0.0013230890035629272, -0.11474169045686722, -0.006613831967115402, -0.03355937451124191, -0.03239192068576813, -0.002797321882098913, -0.011825885623693466, 0.018941188231110573, -0.023406509310007095, -0.03317628800868988, 0.019311677664518356, 0.008743949234485626, 0.020546697080135345, -0.025715816766023636, 0.04372111335396767, 0.02602284774184227, -0.033453430980443954, 0.02000078745186329, 0.09533052146434784, 0.00028657919028773904, -0.007452822290360928, -0.03657199442386627, 0.021218745037913322, 0.023386627435684204, 0.03519409894943237, -0.03186412155628204, -0.0144373569637537, 0.04877577722072601, 0.03900139778852463, -0.03774285688996315, 0.041217684745788574, -0.02581292949616909, -0.005897198803722858, -0.005217709578573704, -0.042860742658376694, 0.029296254739165306, 0.011620103381574154, 0.02457813359797001, -0.040760912001132965, -0.040984123945236206, -0.02149546891450882, -0.051213134080171585, -0.038429051637649536, -0.01852569729089737, 0.022871123626828194, 0.024297291412949562, -0.019422486424446106, -0.022844558581709862, -0.035215429961681366, 0.007493943441659212, 0.021377595141530037, 0.008698110468685627, -0.06584794074296951, -0.03781076893210411, -0.000025234716304112226, 0.013194670900702477, 0.022701207548379898, 0.0013638176023960114, -0.00311108585447073, 0.024196481332182884, -0.021497562527656555, -0.033348072320222855, 0.012565432116389275, 0.0023888873402029276, -0.02272055670619011, -0.02038598619401455, -0.020193587988615036, -0.01138345431536436, 0.0007921536453068256, 0.008309553377330303, 0.02443668246269226, 0.028079435229301453, 0.04850725829601288, -0.018885133787989616, 0.03232143074274063, 0.01250537671148777, 0.00789646990597248, 0.01737108826637268, 0.005420890636742115, -0.08608084172010422, 0.006169271655380726, -0.05077958106994629, -0.041154034435749054, -0.0020731224212795496, 0.05319380387663841, -0.0121579235419631, -0.01986199989914894, -0.016086824238300323, 0.011538423597812653, -0.06757272034883499, -0.044402629137039185, -0.013801171444356441, -0.0011036269133910537, 0.0538657009601593, -0.014017540030181408, 0.022830016911029816, -0.013549278490245342, -0.022509850561618805, -0.006321276538074017, 0.01053470466285944, -0.048190753906965256, 0.006487650331109762, 0.014964818954467773, -0.02845022641122341, -0.0054550194181501865, -0.031492896378040314, 0.0547032430768013, -0.0101054348051548, 0.001474109711125493, -0.01524990051984787, 0.024266604334115982, 0.03778129443526268, 0.04840568080544472, -0.012727005407214165, 0.02490363083779812, -0.002727015409618616, 0.008163826540112495, -0.013051752001047134, -0.04872983321547508, -0.01502951979637146, -0.006205814890563488, 0.02361346036195755, -0.028925279155373573, -0.07339075207710266, 0.026918943971395493, 0.007087142206728458, 0.023528262972831726, 0.0056661744602024555, -0.009299542754888535, 0.0001337062567472458, -0.018503082916140556, 0.016120675951242447, 0.04320462420582771, -0.04842779412865639, 0.034734513610601425, -0.011823727749288082, 0.006925936788320541, 0.013650455512106419, -0.0009355534566566348, -0.059907540678977966, -0.01503116823732853, -0.029213497415184975, 0.014412668533623219, -0.06977495551109314, -0.04871029034256935, 0.005080984439700842, -0.012714866548776627, -0.008169607259333134, -0.009658285416662693, -0.01273556798696518, 0.028060952201485634, -0.03864935040473938, -0.02456810511648655, -0.00864203181117773, -0.024237509816884995, -0.008289909921586514, 0.032408010214567184, -0.017682092264294624, 0.011151728220283985, -0.023582130670547485, 0.01085942517966032, 0.00014442649262491614, -0.050099071115255356, -0.02925119921565056, -0.07777731120586395, 0.014178636483848095, -0.014860095456242561, 0.031742941588163376, -0.016657674685120583, -0.032857850193977356, -0.03593595325946808, -0.008558496832847595, -0.01931704394519329, 0.024078035727143288, -0.03178054839372635, -0.012467163614928722, 0.017922576516866684, 0.05311631038784981, 0.018026450648903847, 0.018366487696766853, -0.005759080406278372, -0.01120836939662695, 0.04874764755368233, -0.06337578594684601, -0.0013636078219860792, -0.03196016699075699, -0.04867764934897423, 0.013260568492114544, 0.005526656750589609, 0.034371357411146164, -0.04265641048550606, 0.030892271548509598, 0.011306678876280785, 0.01897331140935421, 0.03520675376057625, -0.02106061764061451, 0.04461086541414261, -0.02787090092897415, -0.005968125537037849, -0.0912734642624855, 0.041958536952733994, 0.03621264547109604, 0.008931868709623814, -0.0019302826840430498, -0.01939261332154274, -0.02944822981953621, 0.05872686207294464, -0.0452413335442543, -0.009141754359006882, 0.029509183019399643, 0.03005734272301197, -0.022949621081352234, 0.03890219330787659, -0.058918241411447525, 0.009617608040571213, 0.04752478003501892, -0.0472634956240654, -0.03489973396062851, -0.011984563432633877, 0.05048271641135216, 0.013015017844736576, -0.00270654633641243, -0.022092832252383232, -0.012730116955935955, 0.04447607696056366, 0.021566292271018028, 0.020628152415156364, 0.03879537433385849, -0.023037703707814217, 0.011907605454325676, 0.07007163763046265, 0.014136209152638912, -0.0340697355568409, 0.030455101281404495, -0.02396201342344284, -0.06412278860807419, -0.0012709071161225438, 0.009291162714362144, -0.024355020374059677, -0.05420861393213272, 0.06088932231068611, 0.018490483984351158, -0.009951749816536903, -0.04825829342007637, -0.015467905439436436, -0.055803749710321426, -0.008311964571475983, -0.027473513036966324, -0.005624996032565832, -0.03227047622203827, 0.04511459171772003, 0.015934143215417862, 0.007150685880333185, 0.05851132050156593, -0.0022000563330948353, 0.004550531506538391, -0.012185994535684586, 0.05977877601981163, 0.05495205894112587, 0.06889243423938751, 0.01064496673643589, 0.06303345412015915, -0.02217841148376465, -0.03877198323607445, 0.019499104470014572, -0.03579111769795418, -0.03938957676291466, -0.010082651861011982, -0.02823788858950138, 0.054686255753040314, -0.014880349859595299, 0.04882941022515297, -0.014512085355818272, 0.005150556098669767, 0.01963963732123375, 0.046707168221473694, 0.0209763515740633, 0.08942975103855133, 0.009361030533909798, -0.005609890446066856, -0.007220037281513214, -0.029953673481941223, 0.005724241957068443, -0.043797045946121216, -0.02235301397740841, 0.019079342484474182, -0.01702275313436985, 0.011179978959262371, -0.032502975314855576, 0.03350043669342995, 0.06344522535800934, -0.025840967893600464, -0.001435150159522891, 0.008317121304571629, 0.036210209131240845, -0.0024148039519786835, 0.02899002470076084, -0.012965534813702106, -0.03086725063621998, 0.004423250909894705, -0.025634974241256714, -0.026908546686172485, -0.031055524945259094, -0.028021370992064476, 0.04810409992933273, -0.033938609063625336, 0.005302937235683203, 0.04061348736286163, 0.00793782714754343, -0.020980987697839737, -0.06733289361000061, -0.05497973784804344, -0.04724276438355446, -0.07065270841121674, -0.014951234683394432, 0.016996828839182854, -0.0007322531891986728, -0.025916775688529015, -0.02665388584136963, -0.045229025185108185, -0.020138954743742943, 0.059817325323820114, -0.02175813727080822, -0.036794986575841904, 0.039249252527952194, 0.009320114739239216, 0.04203397035598755, 0.021776974201202393, 0.03397404029965401, -0.019471362233161926, 0.004980797413736582, -0.04416460543870926, -0.02262851595878601, 0.046242207288742065, 0.033438365906476974, -0.033317066729068756, -0.08269458264112473, 0.011259282939136028, 0.013402055017650127, 0.02073582448065281, -0.04701119661331177, 0.039450474083423615, -0.0062612565234303474, -0.0203439611941576, 0.06386886537075043, -0.025607764720916748, -0.018662994727492332, -0.025134079158306122, -0.03125543147325516, -0.008350697346031666, 0.017851058393716812, 0.04041574150323868, -0.02832171320915222, 0.07540638744831085, 0.01664392277598381, -0.034359436482191086, -0.034743379801511765, -0.007311264984309673, -0.009563173167407513, -0.027703754603862762, -0.017141522839665413, -0.08136734366416931, -0.0370669960975647, -0.0426761768758297, -0.01123427227139473, 0.03338417410850525, -0.028066376224160194, -0.043614890426397324, 0.019655395299196243, 0.020996684208512306, -0.0643516257405281, 0.043079923838377, -0.026027671992778778, 0.024864671751856804, -0.027604416012763977, -0.011525250039994717, -0.01798955351114273, 0.013234183192253113, 0.0012344543356448412, -0.008522952906787395, 0.02577810175716877, -0.042034897953271866, -0.004340828862041235, -0.005041421391069889, 0.00389895704574883, 0.0344039648771286, -0.014957315288484097, 0.006234610918909311 ]
[ -0.10926386713981628, -0.0034124874509871006, -0.0362694077193737, -0.04148581251502037, 0.037843007594347, -0.042046282440423965, 0.018613575026392937, 0.008970889262855053, 0.0008010318269953132, -0.012107172049582005, 0.005026706028729677, 0.0030130064114928246, 0.002646212000399828, -0.006367697846144438, 0.08376534283161163, 0.028372518718242645, -0.003744166111573577, -0.08262063562870026, 0.003013803157955408, 0.07153555005788803, 0.003986196592450142, 0.005544816143810749, -0.044945184141397476, -0.007669107988476753, 0.016089407727122307, 0.01027193944901228, 0.022199643775820732, -0.01646767370402813, -0.007501058280467987, -0.1891414374113083, 0.003994996193796396, -0.016837511211633682, 0.017196282744407654, -0.0318266823887825, 0.01577429287135601, 0.022446000948548317, 0.020413005724549294, 0.009607813321053982, 0.028569070622324944, 0.03628986328840256, 0.025697367265820503, 0.015195174142718315, -0.035973723977804184, -0.028140408918261528, 0.03835771232843399, 0.006854258012026548, 0.0005545164458453655, -0.05150240287184715, -0.0025256257504224777, 0.010652933269739151, -0.03327507525682449, -0.02220666967332363, -0.029535016044974327, -0.025209343060851097, 0.0028191206511110067, 0.034370847046375275, 0.02155313454568386, 0.05845716968178749, -0.01691531389951706, 0.04761628061532974, 0.031057624146342278, -0.029147688299417496, -0.12565143406391144, 0.10068178921937943, 0.029818151146173477, 0.07079141587018967, -0.020803475752472878, -0.012983768247067928, -0.03188914433121681, 0.07159473747015, 0.016184957697987556, -0.0255094263702631, -0.031651951372623444, 0.02306476980447769, 0.019869377836585045, -0.010580571368336678, 0.014285068027675152, 0.048529770225286484, 0.05536799877882004, -0.0491977222263813, -0.050483137369155884, -0.012602350674569607, -0.0027228472754359245, -0.011516760103404522, -0.03641250729560852, 0.004949713125824928, -0.012406053021550179, 0.07316391170024872, 0.016865676268935204, 0.0375259630382061, 0.06778348982334137, -0.019170021638274193, 0.03546054661273956, 0.016089284792542458, -0.07333188503980637, 0.0019106237450614572, -0.031347185373306274, 0.008232870139181614, -0.0915619358420372, 0.45529434084892273, -0.017268123105168343, -0.02527032233774662, 0.03588738664984703, 0.0030562530737370253, -0.009546417742967606, -0.005164000205695629, 0.015546729788184166, -0.07024632394313812, 0.025286253541707993, -0.030855515971779823, 0.013246830552816391, -0.01051977276802063, 0.07680101692676544, -0.03165806457400322, -0.032556552439928055, 0.049496717751026154, 0.018429571762681007, 0.0016366902273148298, 0.0016196907963603735, -0.01248483918607235, -0.008577244356274605, 0.0037578660994768143, 0.01644640788435936, -0.00008256498404080048, 0.004536487627774477, -0.0227765254676342, 0.02837231755256653, 0.05509159341454506, 0.012950999662280083, 0.019866513088345528, 0.056007303297519684, -0.09923725575208664, -0.07039328664541245, -0.01158520020544529, -0.009423828683793545, 0.02080722711980343, 0.016150658950209618, -0.0141363013535738, -0.01600749045610428, 0.04562920331954956, -0.015576221980154514, -0.030512124300003052, 0.008696055971086025, -0.017227357253432274, -0.04997221380472183, 0.09276051819324493, 0.0007895313901826739, -0.043414290994405746, -0.013668756932020187, -0.04461503401398659, -0.013659012503921986, 0.026753582060337067, -0.024700570851564407, -0.06170810014009476, -0.013350057415664196, 0.014575892128050327, 0.059235140681266785, -0.023641742765903473, -0.04828828200697899, -0.030384866520762444, -0.0017392534064128995, -0.02316330187022686, -0.033936817198991776, 0.04977656900882721, 0.04770193621516228, -0.12160874158143997, -0.03253686800599098, -0.012336582876741886, 0.028031539171934128, -0.038500700145959854, -0.015623955056071281, -0.0002867339935619384, -0.023470653221011162, -0.03728426620364189, 0.046341728419065475, -0.014973134733736515, -0.01655730977654457, 0.019252406433224678, 0.029059143736958504, 0.012692112475633621, -0.00392568064853549, 0.006248189136385918, -0.023315532132983208, -0.010987134650349617, -0.03996940702199936, -0.0883675366640091, -0.06689838320016861, 0.001063378294929862, -0.008365421555936337, -0.029476093128323555, -0.0519411526620388, -0.0672377198934555, -0.09948024153709412, 0.07826751470565796, -0.02610628493130207, -0.013978732749819756, 0.03338486701250076, -0.004084474872797728, 0.003194755408912897, -0.019746311008930206, 0.004659581463783979, 0.02228488028049469, -0.002179357223212719, 0.040723007172346115, -0.0293399877846241, 0.08824718743562698, 0.05738261342048645, -0.05100831389427185, 0.08900358527898788, 0.053943827748298645, -0.03769420087337494, -0.006712611764669418, -0.0007249520276673138, 0.023392826318740845, 0.0283316969871521, -0.014684689231216908, -0.012711701914668083, 0.008602011017501354, 0.01534391287714243, 0.027781840413808823, -0.015659399330615997, 0.010807882063090801, 0.039615172892808914, -0.32745298743247986, -0.03851810842752457, -0.03329033777117729, 0.008578944951295853, -0.011425551027059555, -0.0614895261824131, 0.039284251630306244, -0.017135964706540108, -0.02962452545762062, 0.03694622963666916, 0.09245271980762482, -0.003934290260076523, 0.002408436732366681, -0.05645040050148964, -0.0087598767131567, -0.00023362912179436535, -0.02125519886612892, -0.03102935664355755, -0.012292332015931606, -0.005784452892839909, -0.009674287401139736, -0.0030969223007559776, 0.005072704050689936, -0.06693672388792038, 0.009652498178184032, -0.029037419706583023, 0.10762155055999756, 0.027640262618660927, 0.051782362163066864, -0.05056024715304375, 0.07613655924797058, -0.0012543164193630219, 0.005043732468038797, -0.10650303214788437, 0.02050194889307022, -0.016771718859672546, -0.035585761070251465, -0.002488113474100828, 0.02811417169868946, -0.016543930396437645, -0.029657885432243347, -0.019504545256495476, -0.05926727503538132, -0.05512058362364769, -0.02156989462673664, 0.00046269610174931586, -0.02532816492021084, -0.009546219371259212, -0.026022104546427727, 0.07708515971899033, -0.005110780242830515, 0.001012139953672886, 0.00009184620284941047, 0.059759560972452164, 0.027286434546113014, -0.026141269132494926, -0.09024105221033096, -0.009199977852404118, -0.001598613103851676, 0.014541581273078918, 0.034173689782619476, 0.06063826009631157, 0.02173132449388504, -0.045937299728393555, 0.0026744853239506483, 0.01848689652979374, -0.0008464561542496085, 0.012823239900171757, 0.060897648334503174, -0.06156633794307709, -0.03417813405394554, 0.11913634091615677, -0.0019290635827928782, 0.020300185307860374, 0.027951830998063087, 0.07442895323038101, 0.0034289576578885317, 0.018888358026742935, 0.016855238005518913, 0.0006851840298622847, 0.019419508054852486, -0.012126609683036804, 0.03561653569340706, -0.03412578999996185, 0.001322766998782754, 0.048509325832128525, -0.032422494143247604, -0.016885530203580856, 0.050923820585012436, 0.011456495150923729, -0.006040854379534721, -0.02190002053976059, -0.03235651180148125, -0.07672307640314102, 0.07843341678380966, -0.04934690520167351, -0.23489229381084442, -0.013776849955320358, 0.06671761721372604, 0.04909119755029678, 0.010576118715107441, 0.044462088495492935, 0.02742379531264305, -0.000409338012104854, -0.03863861784338951, 0.021327326074242592, 0.009519773535430431, 0.04060734435915947, -0.007363840006291866, -0.036571722477674484, 0.03970825672149658, -0.010249985381960869, 0.002725656144320965, 0.0162192415446043, 0.022891009226441383, -0.021655794233083725, 0.02938079461455345, -0.013463282026350498, 0.14570437371730804, 0.009884655475616455, 0.02950170636177063, 0.02268998883664608, 0.0038501969538629055, 0.02295614220201969, 0.044456273317337036, 0.012240087613463402, -0.0033999907318502665, 0.0014190399087965488, 0.061951592564582825, -0.0022084973752498627, 0.022307496517896652, -0.09618143737316132, -0.01942630298435688, 0.007470352109521627, 0.02684791013598442, -0.02169947698712349, -0.0022987104021012783, 0.002368765417486429, -0.03074720874428749, 0.04109222814440727, 0.05767913907766342, 0.015960345044732094, 0.014096595346927643, -0.013020011596381664, -0.024509169161319733, -0.01734178140759468, -0.03588907793164253, -0.03778976947069168, 0.00592603487893939, 0.0034874447155743837, 0.02381025440990925, 0.057918716222047806, 0.025856314226984978, -0.020796144381165504, -0.004913862328976393, 0.025277474895119667, -0.022390710189938545, 0.013662789016962051, 0.15973030030727386, 0.02069454826414585, 0.024891704320907593 ]
[ -0.03144996613264084, 0.007553752977401018, -0.0010840045288205147, 0.014006435871124268, -0.008959661237895489, -0.015827707946300507, 0.028310026973485947, -0.015581688843667507, 0.012367147952318192, -0.01232863962650299, -0.007232759613543749, -0.02357582002878189, 0.04432296007871628, -0.0024213558062911034, 0.005483651999384165, 0.004923723638057709, 0.030977094545960426, -0.011442631483078003, 0.023944266140460968, 0.007238824851810932, -0.03950730711221695, 0.033405739814043045, 0.008485089987516403, -0.014952138066291809, -0.006184034515172243, -0.0035255523398518562, -0.026480555534362793, -0.011292684823274612, 0.03571309149265289, -0.15295840799808502, -0.028016410768032074, -0.01907348819077015, -0.021173320710659027, 0.030852289870381355, -0.01682227849960327, -0.032854724675416946, 0.02916109934449196, 0.013881724327802658, -0.002701114397495985, -0.0017226275522261858, -0.030092796310782433, -0.032756466418504715, -0.004669625777751207, 0.02771633304655552, -0.010907826945185661, -0.026457753032445908, -0.009368845261633396, -0.03416869416832924, 0.014561389572918415, -0.030278483405709267, -0.027170350775122643, -0.017867401242256165, -0.006970470305532217, 0.010636621154844761, 0.004206789657473564, -0.022485852241516113, -0.02442498691380024, -0.010518297553062439, -0.018953008577227592, 0.03900033235549927, 0.004368219058960676, 0.007725474424660206, -0.0367727167904377, -0.01120148878544569, 0.0340966172516346, 0.013816107995808125, -0.005648845806717873, -0.0461420975625515, -0.028628824278712273, -0.023455394431948662, -0.022193992510437965, 0.020851440727710724, -0.0033827980514615774, -0.015026385895907879, 0.002218258334323764, -0.0012641706271097064, -0.026140442118048668, 0.008281374350190163, 0.015322845429182053, -0.041450221091508865, 0.006357562728226185, 0.0015918939607217908, -0.004643937572836876, 0.031092418357729912, 0.02116498351097107, 0.00009896121628116816, -0.029303649440407753, 0.033865947276353836, 0.013778113760054111, 0.04803285002708435, -0.020388906821608543, 0.028446048498153687, 0.004570736549794674, 0.028474610298871994, -0.06674003601074219, 0.0002142162120435387, -0.03985411301255226, -0.0021626544184982777, -0.006532780360430479, 0.8575072884559631, 0.013563927263021469, 0.03390481323003769, 0.011136296205222607, 0.022617792710661888, 0.04387916252017021, -0.023214012384414673, -0.006665930151939392, -0.010567888617515564, 0.025280553847551346, 0.0068128518760204315, -0.017018118873238564, 0.01460789330303669, 0.03265887498855591, 0.011990228667855263, -0.012724548578262329, 0.01971392333507538, 0.038996800780296326, 0.008566386066377163, -0.06036140397191048, 0.0063795302994549274, 0.008360913954675198, -0.014052435755729675, 0.0007071297150105238, -0.021306918933987617, 0.03991266340017319, -0.190382182598114, -0.004843249451369047, -8.237772575066433e-33, 0.06522805243730545, 0.0017799785127863288, 0.0365152545273304, 0.0016483147628605366, 0.0038993002381175756, 0.022514643147587776, 0.008797654882073402, 0.02016923576593399, -0.0061923423781991005, -0.022906150668859482, 0.029112165793776512, -0.03896584361791611, 0.026080861687660217, -0.0038687800988554955, 0.057889144867658615, -0.011692495085299015, -0.008538652211427689, 0.038670845329761505, 0.021665921434760094, -0.009557899087667465, 0.014959159307181835, 0.02560499683022499, 0.020375439897179604, -0.013545959256589413, 0.02199869602918625, 0.03135278820991516, -0.01853781007230282, 0.031473781913518906, 0.022250037640333176, -0.048479966819286346, -0.018786653876304626, -0.010069450363516808, -0.013122070580720901, 0.005946167279034853, -0.0009683576645329595, -0.0451488271355629, 0.001825158135034144, 0.0005450836033560336, -0.007956341840326786, 0.002312511671334505, -0.030534902587532997, 0.0006946184439584613, -0.033938921988010406, 0.01034610066562891, -0.031740911304950714, -0.029432514682412148, -0.019730739295482635, -0.0028259409591555595, 0.02250286564230919, -0.030966971069574356, -0.0050023458898067474, 0.018044931814074516, -0.016284601762890816, -0.005411979742348194, -0.02387937717139721, -0.01623215340077877, -0.04228715971112251, 0.022134099155664444, -0.003065633587539196, 0.013640464283525944, 0.004980830941349268, 0.005836759228259325, -0.030446505174040794, -0.0017414226895198226, -0.022404583171010017, -0.017287462949752808, -0.004106460139155388, -0.008557002991437912, 0.028114069253206253, 0.004134164657443762, -0.01841685362160206, -0.016585949808359146, -0.0030843159183859825, -0.015314863994717598, 0.00605718232691288, -0.01320368517190218, -0.012650007382035255, 0.02828892692923546, 0.03285389021039009, 0.0001759513543220237, 0.012519299052655697, 0.019717052578926086, -0.011357559822499752, 0.022984925657510757, -0.021794229745864868, -0.012060616165399551, 0.006063828710466623, 0.04602082446217537, -0.022548289969563484, -0.029949605464935303, 0.03026156686246395, 0.005100259557366371, 0.02045603282749653, -0.038834843784570694, 0.009023759514093399, 8.275382516820992e-33, 0.006038280203938484, -0.006261753849685192, -0.062425702810287476, 0.01769384928047657, 0.0443541593849659, -0.025106364861130714, -0.0020303609780967236, 0.029000282287597656, -0.02399195171892643, 0.024168958887457848, -0.0017289062961935997, 0.026908278465270996, 0.006975090131163597, 0.020880380645394325, 0.0035892461892217398, -0.016559358686208725, -0.011575805023312569, -0.0006559701287187636, 0.015275591053068638, -0.010016394779086113, 0.030142007395625114, 0.017250893637537956, -0.001727780676446855, 0.0217476487159729, 0.015875669196248055, 0.04193839803338051, -0.03266678377985954, 0.01663088984787464, -0.007391190156340599, 0.01859050989151001, -0.0038056052289903164, -0.009563063271343708, 0.01200185064226389, -0.04081359878182411, -0.02555997483432293, -0.006080712657421827, -0.009874619543552399, -0.010711317881941795, 0.010073437355458736, 0.013110130093991756, -0.007614044938236475, -0.009664347395300865, 0.02862587943673134, 0.015152299776673317, 0.016432054340839386, 0.008481036871671677, 0.00018598684982862324, -0.024623101577162743, 0.012115079909563065, -0.0018155013676732779, -0.0013142753159627318, 0.004310586955398321, -0.007494661957025528, 0.009749509394168854, 0.006576751358807087, 0.021577641367912292, -0.041540566831827164, -0.005513122770935297, 0.014466347172856331, 0.0013363923644647002, 0.0025406060740351677, 0.05437853932380676, -0.017426034435629845, 0.017664428800344467, -0.008784009143710136, 0.004442328121513128, -0.014027486555278301, -0.017674192786216736, 0.0053521753288805485, -0.03718766197562218, -0.027359504252672195, -0.0071666669100522995, 0.009978142566978931, 0.03355854004621506, 0.0631924569606781, -0.032963380217552185, 0.007550965063273907, 0.012613249942660332, 0.01306195743381977, 0.05628617852926254, 0.009267809800803661, 0.0032194959931075573, 0.02009737305343151, 0.023357372730970383, 0.0031431433744728565, 0.025223271921277046, -0.007715653162449598, 0.015111606568098068, 0.00036634609568864107, -0.0500653013586998, -0.008857669308781624, 0.01622931845486164, -0.005683306138962507, 0.0038672969676554203, 0.008701137267053127, -1.3659624542583515e-8, -0.027917049825191498, -0.014553103595972061, -0.0010516385082155466, 0.03199141472578049, 0.023746170103549957, 0.009994382038712502, -0.02223115973174572, -0.027369100600481033, -0.009519021026790142, 0.0002530823985580355, 0.034364111721515656, -0.009573264978826046, -0.003762023290619254, -0.03867759928107262, 0.022178541868925095, -0.053451210260391235, 0.016145888715982437, -0.01539606787264347, 0.025091785937547684, 0.011595477350056171, 0.01799941249191761, 0.04438065364956856, -0.019996901974081993, 0.006026837974786758, 0.035478781908750534, -0.0031406874768435955, 0.009440620429813862, -0.08118811994791031, -0.035611025989055634, 0.039819758385419846, -0.013961656019091606, -0.04336228594183922, -0.01193865854293108, 0.011349795386195183, -0.024205703288316727, -0.04283375293016434, -0.009591290727257729, -0.00025527187972329557, 0.021530959755182266, 0.011280369013547897, 0.020912131294608116, -0.006997589021921158, -0.004599615465849638, -0.02485451102256775, -0.017884040251374245, 0.02046550251543522, -0.022098593413829803, 0.005520572420209646, -0.002016514539718628, -0.04694848507642746, 0.02076222002506256, -0.0010306858457624912, 0.030040087178349495, 0.05267094448208809, 0.021022964268922806, -0.008908605203032494, -0.001994013786315918, -0.006562965922057629, -0.019911829382181168, 0.0049386885948479176, 0.027683325111865997, 0.016687719151377678, -0.016723502427339554, -0.032898083329200745 ]
defensive-programming-and-the-ui
https://markhneedham.com/blog/2010/03/22/defensive-programming-and-the-ui
false
2010-03-25 08:09:26
Selenium, Firefox and HTTPS pages
[ "selenium", "firefox" ]
[ "Testing" ]
A fairly common scenario that we come across when building automated test suites using Selenium is the need to get past the security exception that Firefox pops up when you try to access a self signed HTTPS page. Luckily there is quite a cool plugin for Firefox called 'https://addons.mozilla.org/en-US/firefox/addon/10246[Remember Certificate Exception]' which automatically clicks through the exception and allows the automated tests to keep running and not get stuck on the certificate exception page. One other thing to note is that if the first time you hit a HTTPS page is on a HTTP POST then the automated test will still get stuck because after the plugin has accepted the certificate exception it will try to refresh the page which leads to the 'Do you want to resend the data' pop up. We've previously got around this by writing a script using http://www.autoitscript.com/autoit3/index.shtml[AutoIt] which waits for that specific pop up and then 'presses the spacebar' but another way is to ensure that you hit a HTTPS page with a GET request at the beginning of the build so that the certificate exception is accepted for the rest of the test run. To use the plugin in the build we need to add it to the Firefox profile that we use to run the build. In Windows you need to run this command (having first ensured that all instances of Firefox are closed): [source,text] ---- firefox.exe --ProfileManager ---- We then need to create a profile which points to the '/path/to/selenium/profile' directory that we will use when launching Selenium Server. There is a much more detailed description of how to do that on http://girliemangalo.wordpress.com/2009/02/05/creating-firefox-profile-for-your-selenium-rc-tests/[this blog post]. After that we need to launch Firefox with that profile and then add the plugin to the profile. Having done that we need to tell Selenium Server to use that profile whenever it runs any tests which can be done like so: [source,text] ---- java -jar selenium-server.jar -firefoxProfileTemplate /path/to/selenium/profile ----
null
null
[ 0.013281615450978279, -0.001035850029438734, -0.0024221567437052727, 0.049412019550800323, 0.097880519926548, -0.0036276814062148333, 0.03515131026506424, 0.04216926172375679, 0.03423544391989708, -0.02684244140982628, -0.02229340933263302, 0.014695610851049423, -0.07454437017440796, -0.002512474777176976, -0.025909271091222763, 0.0639527440071106, 0.07908008992671967, 0.027034079656004906, 0.01536300964653492, -0.008704569190740585, 0.016318965703248978, 0.0760238841176033, 0.00959029234945774, 0.040571264922618866, 0.02859935723245144, 0.004785302560776472, 0.0005023686098866165, -0.0003766284207813442, -0.06519870460033417, 0.003657486056908965, 0.029916198924183846, 0.012516762129962444, -0.013701279647648335, -0.010547718033194542, 0.020337974652647972, -0.016586920246481895, -0.005026862490922213, 0.006553028244525194, 0.01334631908684969, 0.05325937271118164, -0.049555085599422455, 0.0469682440161705, -0.014104482717812061, 0.023613901808857918, -0.03414672613143921, 0.01865585334599018, -0.02360178902745247, -0.0011705077486112714, 0.0238005593419075, -0.02571398764848709, -0.06042269244790077, 0.04079919308423996, -0.029946723952889442, 0.0019550586584955454, 0.028356226161122322, 0.022788429632782936, 0.03549811989068985, -0.06793477386236191, 0.034419674426317215, -0.02559586428105831, -0.009580064564943314, 0.023048490285873413, 0.008153388276696205, 0.056769903749227524, -0.015203558839857578, -0.018433820456266403, 0.012940124608576298, 0.057781342417001724, -0.06725474447011948, -0.01984833925962448, -0.014846855774521828, -0.008552120067179203, -0.05550256744027138, -0.02610735595226288, 0.03253018110990524, -0.025994621217250824, -0.021240415051579475, 0.04054523631930351, 0.014251794666051865, 0.05721151828765869, -0.02908230945467949, 0.018624912947416306, 0.02929111383855343, 0.03208224102854729, -0.033240173012018204, -0.030394362285733223, -0.025997664779424667, 0.0021580210886895657, -0.03478264808654785, 0.07876794785261154, 0.040194086730480194, -0.05900495499372482, -0.016257604584097862, 0.020305976271629333, -0.014909246005117893, -0.011311917565762997, 0.02933933585882187, -0.019238891080021858, -0.013173253275454044, 0.003984645940363407, -0.040755148977041245, 0.005032661836594343, -0.005345838610082865, 0.0022412091493606567, -0.08087853342294693, 0.020753338932991028, -0.02082369290292263, -0.004506941884756088, 0.008213200606405735, 0.01188562624156475, -0.008450271561741829, 0.03063521347939968, -0.010662036016583443, 0.021502140909433365, -0.08424585312604904, 0.0841701328754425, -0.002297913422808051, -0.04310983046889305, 0.027274874970316887, 0.013666868209838867, 0.03499017655849457, 0.02810002490878105, -0.015576603822410107, 0.06974030286073685, 0.02906239964067936, 0.05372491851449013, -0.018680473789572716, 0.03243546187877655, 0.00383356842212379, -0.045345403254032135, 0.0024002522695809603, 0.044649887830019, 0.018401727080345154, 0.010338558815419674, 0.013186818920075893, 0.015570505522191525, -0.0012271488085389137, -0.012840723618865013, 0.05763084068894386, 0.04084440693259239, -0.0134963383898139, -0.04795123264193535, 0.0014317698078230023, 0.01888900250196457, 0.033907581120729446, -0.013970640487968922, -0.00872794445604086, -0.01731160469353199, -0.04959776625037193, 0.04493316262960434, 0.0296401996165514, -0.0038332652766257524, 0.033189110457897186, -0.023279231041669846, -0.020442215725779533, 0.06790652871131897, 0.04511580988764763, -0.005613049492239952, -0.024002887308597565, 0.01587982475757599, 0.04689205065369606, 0.03262834995985031, 0.005064164288341999, 0.027108972892165184, 0.005548329558223486, 0.013386163860559464, -0.015430336818099022, 0.04770243912935257, 0.004497535992413759, 0.0007707574986852705, -0.07806166261434555, -0.05025487020611763, 0.03727074712514877, -0.07741331309080124, -0.008360680192708969, 0.08120744675397873, 0.0794416218996048, 0.017004555091261864, 0.039381254464387894, -0.0030865396838635206, -0.06152467057108879, -0.0027176470030099154, 0.006178069859743118, 0.05072996765375137, 0.01278920378535986, -0.03408132866024971, 0.05948379635810852, 0.03220614790916443, -0.007718005683273077, 0.0156101044267416, -0.08820712566375732, -0.06769701838493347, -0.016315417364239693, -0.03070971556007862, 0.06634095311164856, -0.025782771408557892, 0.010110997594892979, 0.0483022965490818, 0.01333256158977747, 0.04117070883512497, -0.012677921913564205, -0.01469374354928732, 0.024161743000149727, -0.07337848097085953, -0.07319924980401993, 0.029794840142130852, 0.04749245569109917, -0.0405486561357975, -0.05363542586565018, -0.00870560109615326, -0.025072654709219933, 0.035098254680633545, 0.0528176911175251, 0.005934157408773899, 0.041930388659238815, 0.01707821898162365, 0.05875491350889206, -0.042668409645557404, 0.05532446503639221, -0.03913554921746254, 0.03640495985746384, -0.018619660288095474, -0.025297800078988075, 0.01314178854227066, -0.007686339318752289, 0.12697762250900269, 0.05331394076347351, -0.04163870960474014, -0.035988699644804, 0.021594814956188202, 0.01564338244497776, -0.0508136972784996, 0.030291633680462837, -0.019268367439508438, 0.0008970197523012757, 0.018576711416244507, -0.040197040885686874, -0.03182113170623779, 0.009131195954978466, -0.05133337527513504, 0.03313017636537552, 0.06620936840772629, -0.022385982796549797, 0.05342961847782135, -0.03296447917819023, -0.029767002910375595, 0.032486967742443085, -0.01751510240137577, -0.05439567193388939, 0.019572056829929352, 0.038600388914346695, -0.025821825489401817, 0.004777273628860712, -0.026388496160507202, -0.032301414757966995, -0.03400063142180443, -0.049450863152742386, 0.0029484566766768694, 0.02555166557431221, 0.04787464812397957, -0.009087594226002693, 0.0171420406550169, -0.018520347774028778, 0.02681133709847927, 0.009039882570505142, -0.04464048519730568, -0.030636271461844444, -0.016542954370379448, -0.016525965183973312, 0.04929949343204498, -0.010043919086456299, 0.019815746694803238, 0.016872812062501907, 0.0008762473007664084, 0.017449848353862762, 0.02099662646651268, 0.029348166659474373, -0.0009964786004275084, -0.008133557625114918, -0.025858422741293907, -0.017245298251509666, 0.02895921654999256, -0.022227657958865166, -0.015937091782689095, 0.005013108253479004, -0.08024563640356064, 0.034010786563158035, -0.0898805484175682, -0.07986004650592804, -0.005307553336024284, 0.007530028000473976, 0.01775134727358818, 0.017715340480208397, 0.04024774953722954, 0.03567185625433922, -0.028191983699798584, 0.007175355218350887, 0.0270866509526968, 0.015670645982027054, 0.027132369577884674, 0.022944273427128792, -0.000896275625564158, -0.004329932853579521, -0.027989041060209274, 0.015856612473726273, -0.045541152358055115, 0.02988007292151451, -0.028221404179930687, -0.27406448125839233, 0.03879716247320175, 0.025238988921046257, -0.04406643658876419, 0.015470200218260288, -0.013723552227020264, 0.03161678463220596, -0.05053464323282242, -0.028031205758452415, 0.010742844082415104, -0.012319955043494701, -0.027354996651411057, 0.004244386684149504, 0.03689426928758621, -0.03843538835644722, 0.016156822443008423, 0.03618980944156647, -0.06005949154496193, 0.04114117845892906, 0.020148033276200294, 0.0113608343526721, -0.04981657862663269, 0.033980462700128555, 0.021310001611709595, 0.049533288925886154, 0.0454569049179554, -0.06232143193483353, 0.049836114048957825, -0.025920139625668526, 0.006060570944100618, 0.05320737883448601, -0.01414024829864502, 0.01240095030516386, -0.010118250735104084, -0.02864561602473259, 0.0021961196325719357, 0.05800068378448486, -0.012592444196343422, -0.02258254587650299, -0.0011984013253822923, -0.02108384482562542, -0.02708199806511402, -0.03621628135442734, -0.00094377197092399, 0.056982118636369705, -0.028553323820233345, -0.05478378012776375, 0.006635821890085936, -0.027899324893951416, 0.07785782963037491, -0.05958177521824837, -0.017103835940361023, -0.0100531205534935, 0.03232615813612938, 0.003974564373493195, 0.00793951004743576, -0.014495056122541428, 0.023282885551452637, -0.03812630474567413, -0.03920906409621239, -0.0034639625810086727, -0.011012397706508636, -0.00877635832875967, -0.062114860862493515, 0.006038571707904339, -0.07133141160011292, -0.03645438328385353, -0.002484565135091543, 0.07605978101491928, 0.0034895986318588257, -0.019061248749494553, 0.008429301902651787, -0.000691888970322907, -0.11652040481567383, 0.03771618381142616, -0.034472763538360596, -0.019250981509685516, -0.02654503658413887, -0.016784075647592545, 0.04689718410372734, -0.037908799946308136, -0.018509266898036003, 0.020141761749982834, -0.0018424228765070438, 0.006196742877364159, 0.009395722299814224, 0.025354793295264244, -0.004868820309638977, -0.00601254403591156, -0.017018334940075874, 0.09146284312009811, -0.03583332151174545, -0.032128531485795975, -0.023188402876257896, -0.0032938518561422825, 0.04641764983534813, 0.025340069085359573, 0.032062601298093796, 0.014096183702349663, 0.02124418504536152, 0.03134017810225487, -0.035070307552814484, 0.02952229231595993, -0.025598745793104172, 0.017539922147989273, -0.005243826657533646, -0.04593754932284355, -0.005286430474370718, 0.031473103910684586, 0.020831119269132614, -0.02932390198111534, -0.0035292634274810553, 0.00006379071419360116, -0.05719250813126564, -0.04203061759471893, -0.029596494510769844, 0.006512481719255447, 0.004785104654729366, -0.004194134380668402, -0.028478408232331276, -0.057010963559150696, 0.014998705126345158, 0.015926720574498177, -0.022388331592082977, -0.0452970489859581, -0.03029976785182953, 0.004515315871685743, -0.004302450455725193, 0.029331274330615997, 0.016926394775509834, -0.003891721600666642, 0.03561575710773468, 0.018141981214284897, -0.020947016775608063, -0.00903355609625578, -0.020002683624625206, -0.03355858474969864, -0.020700501278042793, -0.0016959302593022585, 0.0014173622475937009, -0.03383033350110054, -0.0016461253399029374, -0.008852759376168251, 0.017711997032165527, 0.054926734417676926, 0.016237977892160416, 0.03568542003631592, 0.02726033143699169, 0.0005465841386467218, 0.02006768248975277, 0.005205346737056971, -0.05461250618100166, 0.01764708198606968, -0.0362672358751297, -0.032662779092788696, -0.015805521979928017, 0.01873236708343029, -0.0014965329319238663, -0.04671818017959595, -0.038452938199043274, 0.012106876820325851, -0.09399272501468658, 0.021194608882069588, -0.02240268886089325, 0.00852824468165636, 0.05307610705494881, -0.01452538464218378, 0.028168365359306335, -0.03146214783191681, -0.004908281844109297, 0.015552518889307976, 0.04034295305609703, -0.032026346772909164, 0.016563739627599716, 0.0025160550139844418, -0.028442202135920525, -0.023812346160411835, -0.02155878208577633, 0.005926426965743303, -0.007745999377220869, -0.007813754491508007, -0.017036283388733864, 0.04075317084789276, -0.011598250828683376, 0.02218329906463623, -0.03560347110033035, -0.030851054936647415, 0.0010885128285735846, -0.020514152944087982, 0.0037508055102080107, -0.01872064918279648, -0.011300266720354557, -0.02481500618159771, 0.015522300265729427, -0.015184580348432064, -0.09363795816898346, 0.009994462132453918, 0.00524910306558013, 0.028135647997260094, -0.006221038289368153, -0.041207149624824524, -0.021643998101353645, -0.032593607902526855, 0.04030732065439224, 0.05388115718960762, -0.050732892006635666, 0.019224217161536217, -0.005333686713129282, 0.030466873198747635, 0.019933614879846573, 0.0006859868881292641, -0.06477455794811249, -0.024627678096294403, -0.006107455585151911, 0.015258812345564365, -0.04490862786769867, -0.03583357483148575, -0.03825545310974121, 0.006349771749228239, -0.008609334006905556, 0.015944506973028183, -0.0011016465723514557, 0.023167598992586136, -0.00199820171110332, -0.0063329217955470085, -0.017889566719532013, -0.01638028211891651, -0.025911685079336166, 0.042473457753658295, -0.0253478791564703, 0.021783748641610146, -0.010397485457360744, 0.04563368856906891, 0.0009774385252967477, -0.018112756311893463, -0.0017494267085567117, -0.05893384665250778, -0.01116226427257061, 0.00993625819683075, 0.03719896823167801, 0.013038874603807926, -0.0010188599117100239, -0.06571324169635773, -0.012177903205156326, -0.015597397461533546, 0.021072866395115852, -0.0178071279078722, -0.016259176656603813, 0.03711698576807976, 0.06944506615400314, 0.002691539004445076, 0.041717641055583954, 0.050364695489406586, 0.005094750784337521, 0.017033802345395088, -0.06038564816117287, -0.018540609627962112, -0.017825176939368248, -0.04666278883814812, 0.01223323866724968, 0.02034866437315941, 0.024329207837581635, -0.05419550836086273, 0.05109690502285957, 0.0170039813965559, 0.0018997950246557593, 0.018395839259028435, -0.006978590041399002, 0.030992697924375534, -0.04556792974472046, -0.026233945041894913, -0.07933741062879562, 0.020212320610880852, 0.05564266815781593, -0.01787993125617504, -0.006894461810588837, 0.0009780601831153035, -0.04656779393553734, 0.03419789299368858, -0.0377773642539978, -0.019090209156274796, 0.034550078213214874, -0.00424538180232048, -0.010727896355092525, -0.0031108898110687733, -0.05291823670268059, 0.03760824352502823, 0.0031468996312469244, -0.06377313286066055, -0.016252530738711357, -0.016673536971211433, 0.050362423062324524, 0.009699481539428234, 0.004663136787712574, -0.010909817181527615, -0.03233500197529793, 0.062479496002197266, 0.013390495441854, -0.010551603510975838, 0.031817685812711716, -0.012639591470360756, 0.03721851482987404, 0.048481546342372894, 0.02370174042880535, 0.0033742995001375675, 0.0031667170114815235, -0.00009723105904413387, -0.051065023988485336, 0.030120937153697014, -0.0009150305413641036, -0.027076711878180504, -0.050684984773397446, 0.05006307736039162, 0.03815613314509392, -0.0410383976995945, -0.05740123614668846, 0.00450734281912446, -0.06285310536623001, -0.04800195246934891, -0.013559014536440372, 0.0019552914891391993, -0.05134476721286774, 0.07369042187929153, -0.031177958473563194, 0.00949422549456358, 0.0681367889046669, -0.013187764212489128, 0.017917605116963387, -0.011252670548856258, 0.07198265939950943, 0.08724042028188705, 0.023506032302975655, 0.0245264433324337, 0.07776742428541183, 0.009727672673761845, -0.078289695084095, 0.021870438009500504, -0.04554859548807144, -0.02299097552895546, -0.022205622866749763, 0.03165726363658905, 0.054472845047712326, -0.00720863277092576, 0.06751694530248642, -0.009271232411265373, -0.012299733236432076, -0.003366658231243491, 0.04672517627477646, 0.035300835967063904, 0.04570543020963669, 0.007094842381775379, -0.003279787953943014, -0.02638145536184311, -0.017295347526669502, 0.03444940969347954, -0.046278517693281174, -0.0289466492831707, 0.02567417174577713, -0.042121484875679016, 0.036378372460603714, 0.02153749018907547, 0.0262447539716959, 0.08269531279802322, -0.0032143965363502502, -0.0094076506793499, -0.008384314365684986, -0.0009115865686908364, 0.0026571787893772125, 0.023886574432253838, -0.010387037880718708, 0.0035696234554052353, -0.029883474111557007, -0.029289918020367622, -0.027712678536772728, -0.020835820585489273, -0.011654277332127094, 0.03876768425107002, 0.0010819843737408519, 0.0012661151122301817, 0.037237368524074554, -0.009829741902649403, -0.03425266966223717, -0.04878755286335945, -0.07220140844583511, -0.010915927588939667, -0.03218941390514374, -0.03031621128320694, 0.04003972187638283, 0.017422251403331757, -0.026621900498867035, -0.019367923960089684, 0.009156856685876846, -0.009859591722488403, -0.023583844304084778, -0.05310210958123207, -0.03309803083539009, 0.04549236595630646, -0.005152175202965736, 0.02793131396174431, 0.01251101866364479, 0.05359271168708801, 0.0031537252943962812, -0.00706879235804081, -0.027486193925142288, -0.00904160924255848, 0.036184608936309814, -0.00980145763605833, 0.04576588049530983, -0.06473614275455475, 0.008450600318610668, 0.00810080487281084, 0.0006506998906843364, -0.04080509766936302, 0.03223959729075432, 0.010293923318386078, -0.01179482787847519, 0.08017729967832565, -0.029338523745536804, 0.018788950517773628, -0.049910590052604675, -0.024486958980560303, 0.010650025680661201, -0.004144554492086172, 0.031677424907684326, -0.012704458087682724, 0.08801843971014023, -0.002056385623291135, -0.013111889362335205, -0.037637289613485336, 0.002475383225828409, -0.016127541661262512, 0.003103341907262802, -0.018598515540361404, -0.03472444787621498, -0.05708751827478409, -0.08611717075109482, -0.016175244003534317, 0.012954199686646461, -0.024174630641937256, -0.016354361549019814, -0.0060810488648712635, 0.0066124810837209225, -0.09855809807777405, 0.028411846607923508, -0.06179796904325485, 0.008946285583078861, -0.03759719058871269, -0.020951412618160248, 0.021616388112306595, 0.016673145815730095, 0.01524882297962904, -0.01871374621987343, 0.025695858523249626, -0.022209832444787025, -0.0005600980366580188, -0.024594658985733986, 0.05999892204999924, 0.04822534695267677, -0.02425408363342285, 0.02548065036535263 ]
[ -0.08707136660814285, 0.004595065023750067, -0.013893366791307926, -0.030027169734239578, 0.02931247092783451, -0.015483331866562366, -0.002303472487255931, 0.060515936464071274, -0.041287198662757874, -0.06832732260227203, 0.0010118087520822883, -0.025900552049279213, 0.005083520896732807, -0.02290264703333378, 0.0869809165596962, 0.010138066485524178, -0.01860096864402294, -0.057724304497241974, -0.020228112116456032, 0.042798932641744614, -0.0020858771167695522, -0.01598418317735195, -0.014723032712936401, -0.045649658888578415, -0.025766093283891678, 0.021873289719223976, 0.03084544464945793, -0.02287202887237072, -0.01515932660549879, -0.1546677201986313, 0.032265711575746536, -0.055564526468515396, -0.0004376752767711878, -0.013315207324922085, -0.0040624202229082584, -0.008516140282154083, -0.004143647849559784, -0.0026276446878910065, 0.012212115339934826, 0.02903006598353386, 0.029139826074242592, 0.035465437918901443, -0.08073092252016068, 0.01384218130260706, 0.047560956329107285, -0.02726956643164158, 0.031387921422719955, -0.03693119063973427, 0.007168279495090246, -0.0037613308522850275, -0.045337941497564316, -0.03252620995044708, 0.06669497489929199, -0.004585119895637035, -0.00713301682844758, 0.0150132542476058, 0.02714688889682293, 0.049674615263938904, 0.010655197314918041, 0.05982039496302605, -0.00028148858109489083, -0.04199058562517166, -0.12408502399921417, 0.09683892875909805, 0.04530961066484451, 0.0257146954536438, -0.038680337369441986, -0.006040202919393778, -0.024895351380109787, 0.04691648483276367, -0.012079673819243908, -0.009114900603890419, -0.08718298375606537, 0.06679870933294296, 0.024591771885752678, 0.03893308341503143, 0.03106849640607834, 0.03137929365038872, 0.027897097170352936, -0.006333787459880114, -0.08034184575080872, -0.06953591853380203, 0.00642507104203105, -0.011614738963544369, -0.016354236751794815, 0.0073747215792536736, 0.038533974438905716, 0.055766038596630096, 0.054171208292245865, 0.06418202072381973, 0.02091098204255104, -0.05610208213329315, 0.017047597095370293, -0.019360724836587906, -0.05369090661406517, 0.002104594139382243, -0.004459860268980265, 0.03293934464454651, -0.04954194277524948, 0.39783525466918945, -0.02162800543010235, -0.0029530117753893137, 0.030279491096735, 0.007967473939061165, 0.027705257758498192, -0.004571165889501572, 0.01089466456323862, -0.015740131959319115, -0.004989296663552523, -0.06485863775014877, 0.0497874915599823, 0.020633528009057045, 0.055115602910518646, -0.05075808987021446, -0.019193926826119423, 0.01428171992301941, -0.006419667508453131, -0.009773153811693192, 0.004498651716858149, 0.004434512462466955, 0.01614668406546116, 0.01623455062508583, 0.02930852212011814, 0.008267349563539028, 0.037638258188962936, 0.033460572361946106, 0.05917436629533768, 0.04540127143263817, -0.010454991832375526, 0.050584133714437485, 0.029340656474232674, -0.05963543802499771, -0.02466260828077793, -0.022401433438062668, 0.009890269488096237, 0.038407161831855774, 0.008832587860524654, 0.00886353850364685, -0.014476059935986996, 0.01604239083826542, -0.002407259773463011, -0.018777012825012207, 0.030022643506526947, -0.032032549381256104, -0.005953531712293625, 0.10319968312978745, -0.0011035117786377668, 0.009304556995630264, -0.029684241861104965, -0.06719422340393066, -0.013553124852478504, 0.03635205328464508, -0.0030075947288423777, -0.06825941801071167, 0.008127087727189064, 0.031759899109601974, 0.06868456304073334, 0.007352304179221392, -0.04352555796504021, -0.00965370424091816, 0.003899973351508379, -0.028633011505007744, -0.04368019476532936, 0.0767986997961998, 0.07827311009168625, -0.11439672112464905, -0.035716909915208817, 0.025819091126322746, -0.0061250366270542145, -0.045020945370197296, -0.05035455524921417, 0.007275362499058247, -0.030262915417551994, -0.04224943742156029, 0.01298514287918806, -0.03678513690829277, 0.0019648531451821327, 0.02554910071194172, -0.00853071641176939, 0.03057694435119629, -0.0008438541553914547, -0.023663146421313286, -0.060340456664562225, -0.012423958629369736, -0.039544761180877686, -0.05472441017627716, -0.03146158158779144, 0.0029343741480261087, -0.024152632802724838, -0.02624601311981678, -0.04203777760267258, -0.013812694698572159, -0.033053409308195114, 0.06412821263074875, 0.0002707158855628222, -0.0017360333586111665, -0.03875875845551491, -0.04559823125600815, 0.00563287315890193, -0.054101962596178055, 0.07018370926380157, -0.006539930589497089, -0.007363089360296726, 0.0458722747862339, -0.054289594292640686, 0.08103439956903458, 0.08561258763074875, -0.03473450988531113, 0.09694018214941025, -0.00041765643982216716, -0.05129554122686386, 0.012349406257271767, 0.00842487346380949, 0.004478262271732092, -0.00011070548498537391, -0.02646084688603878, -0.005435180850327015, 0.026092728599905968, 0.04473784938454628, 0.06438564509153366, -0.015535122714936733, 0.04035309702157974, -0.018556391820311546, -0.3303421139717102, -0.0705118179321289, -0.05350765213370323, 0.01595957949757576, 0.008249596692621708, -0.058591362088918686, 0.025291485711932182, -0.003445311449468136, -0.028514385223388672, 0.012280463241040707, 0.1190282478928566, -0.01162011083215475, 0.026654180139303207, -0.09416437894105911, -0.006962975952774286, -0.03385693207383156, -0.044279731810092926, -0.05294055864214897, 0.013151985593140125, 0.045761872082948685, -0.041298143565654755, -0.0240015909075737, -0.04599137604236603, -0.036370035260915756, 0.015328732319176197, -0.026186611503362656, 0.09149844199419022, 0.0062864841893315315, 0.06634216755628586, -0.08919290453195572, 0.03551675006747246, 0.011876806616783142, 0.02474060282111168, -0.08665149658918381, -0.014606884680688381, -0.022686948999762535, 0.013814842328429222, -0.0007402388146147132, 0.0506160706281662, -0.011345022358000278, -0.04953896626830101, 0.0007493579760193825, -0.032909903675317764, -0.04917468503117561, 0.005182418506592512, -0.07009122520685196, 0.0007103281677700579, -0.04817183315753937, -0.013013031333684921, 0.09548941254615784, 0.040148504078388214, -0.0022920160554349422, 0.022102460265159607, 0.04131992533802986, -0.0019839054439216852, -0.04320094734430313, -0.039775822311639786, -0.04994402825832367, 0.0170977171510458, -0.05788174644112587, 0.02814463898539543, 0.06286005675792694, 0.0274286400526762, -0.06233815476298332, 0.05098135396838188, 0.02729378454387188, 0.0025960439816117287, 0.004109611734747887, 0.03779417276382446, -0.06087539345026016, -0.016406608745455742, 0.13669925928115845, 0.030718734487891197, 0.0031812451779842377, -0.0012197913601994514, 0.04157295823097229, -0.0023423656821250916, -0.0028039971366524696, 0.005162543151527643, 0.020143648609519005, 0.01002863235771656, 0.020413100719451904, 0.0401763990521431, -0.037330105900764465, -0.027217475697398186, 0.08641089498996735, -0.038834571838378906, -0.015311380848288536, 0.05121216922998428, -0.03495950251817703, -0.03577317297458649, 0.023751258850097656, -0.034342747181653976, -0.05426223203539848, 0.05078543350100517, -0.006381044164299965, -0.2284328043460846, -0.023532142862677574, 0.033563096076250076, 0.05776480212807655, -0.03615855425596237, -0.021854229271411896, 0.04802314192056656, -0.06745453923940659, -0.018245209008455276, 0.05078897252678871, -0.006240961141884327, 0.02578865736722946, 0.01788986660540104, -0.046374138444662094, 0.028455188497900963, 0.009875158779323101, 0.013694794848561287, 0.02986108884215355, 0.010298902168869972, -0.014722345396876335, -0.011287137866020203, 0.000622050603851676, 0.18848733603954315, 0.03764711320400238, 0.017155949026346207, 0.07339563220739365, 0.02493993192911148, 0.01865815371274948, 0.10300754010677338, 0.030876925215125084, 0.024592390283942223, -0.03311513736844063, -0.02349795587360859, -0.0001955560001078993, 0.03609854355454445, -0.07985586673021317, -0.018696796149015427, -0.01093923207372427, 0.003570555243641138, -0.02061273530125618, 0.004960163962095976, 0.014386606402695179, -0.02449282631278038, -0.004535507410764694, 0.0706472173333168, -0.03673814237117767, 0.005097927525639534, -0.016850927844643593, -0.030833454802632332, -0.0008349912823177874, -0.04931449890136719, -0.0764818862080574, -0.003588563995435834, 0.011291569098830223, -0.0007626042352057993, 0.08873970806598663, 0.047912221401929855, 0.014657835476100445, -0.014083538204431534, 0.017007894814014435, 0.005454347934573889, 0.010634316131472588, 0.08072466403245926, 0.023016998544335365, 0.07346996665000916 ]
[ -0.005727794487029314, 0.010081627406179905, -0.026671964675188065, 0.030989551916718483, -0.02033836767077446, -0.013192900456488132, 0.013459043577313423, 0.02825595624744892, -0.0061798919923603535, -0.09063871949911118, -0.007181123364716768, -0.02337983250617981, 0.05722133442759514, 0.02018583193421364, 0.026153312996029854, -0.0834919884800911, -0.04585060104727745, 0.023670686408877373, 0.034985560923814774, -0.03744412958621979, -0.02264423854649067, 0.03081997111439705, 0.04061172530055046, -0.015383895486593246, -0.042482536286115646, 0.004764801822602749, -0.022309109568595886, 0.01818019524216652, -0.008372990414500237, -0.14648942649364471, 0.006512525957077742, -0.030836764723062515, 0.01147818099707365, -0.024810265749692917, -0.03047054447233677, -0.02906692400574684, 0.009272242896258831, 0.045748092234134674, -0.02018900029361248, -0.016993138939142227, 0.01661691442131996, -0.04387591406702995, -0.006185433827340603, 0.03482770919799805, -0.060482267290353775, -0.05729709193110466, -0.01097290962934494, -0.08426867425441742, -0.02885493077337742, -0.016168920323252678, -0.004855544771999121, 0.01882334053516388, 0.022464724257588387, 0.04264337196946144, -0.05499974638223648, -0.00428178021684289, -0.012703144922852516, 0.013330727815628052, 0.0327443890273571, 0.036069583147764206, 0.04371028393507004, -0.030811743810772896, -0.039111435413360596, -0.004087555687874556, -0.014754152856767178, -0.009767066687345505, 0.007840052247047424, -0.03607518598437309, -0.042901214212179184, 0.023069551214575768, -0.005102409515529871, 0.009174131788313389, -0.012524448335170746, -0.010860280133783817, 0.007117085624486208, -0.02008495107293129, -0.030852999538183212, -0.029726695269346237, 0.02944938838481903, 0.01081467978656292, -0.000006720531473547453, -0.0437244176864624, -0.0038205464370548725, 0.08429934084415436, 0.001790002454072237, 0.071553073823452, 0.036582328379154205, -0.03159681335091591, 0.005704729352146387, 0.05131451040506363, -0.013972040265798569, 0.017918987199664116, -0.008176703937351704, 0.05400656908750534, -0.074593186378479, 0.001147631905041635, -0.006359712686389685, -0.025786152109503746, -0.007133034523576498, 0.7578793168067932, 0.013969912193715572, 0.025679202750325203, 0.016318464651703835, 0.023528380319476128, -0.004367677960544825, -0.001103494898416102, -0.0123754246160388, -0.028737952932715416, 0.023846350610256195, -0.05476044863462448, 0.052756357938051224, -0.008984003216028214, 0.033308036625385284, -0.008384977467358112, 0.002480956492945552, 0.026694227010011673, -0.003454728052020073, 0.027513528242707253, 0.025630773976445198, 0.017695274204015732, 0.014911015518009663, 0.01800910383462906, 0.01216434221714735, 0.011762955226004124, 0.007436434272676706, -0.1287783533334732, 0.013318558223545551, -7.28422478199084e-33, 0.027765803039073944, -0.002370110247284174, -0.005464661866426468, 0.03383493795990944, 0.03390426188707352, -0.010510522872209549, 0.01381054986268282, 0.07672816514968872, -0.010071313008666039, -0.06585433334112167, 0.005749020259827375, -0.006051603704690933, -0.034482430666685104, -0.05307265743613243, 0.03543691709637642, -0.009860771708190441, -0.017939528450369835, 0.0509444959461689, 0.004180139396339655, 0.019450422376394272, 0.06762238591909409, 0.03126055747270584, 0.04993952810764313, 0.012337966822087765, -0.004180086310952902, 0.03243480622768402, 0.029681507498025894, 0.07283108681440353, -0.07160011678934097, -0.052395518869161606, -0.024283694103360176, 0.01178447064012289, -0.009724128991365433, -0.006753860041499138, 0.05544966459274292, -0.0122031569480896, 0.04984491318464279, 0.01697712577879429, -0.01708502694964409, -0.005313743371516466, -0.039848100394010544, -0.025203315541148186, 0.021196037530899048, -0.012627343647181988, -0.029735920950770378, -0.04314113408327103, -0.041182201355695724, -0.017256557941436768, 0.06617575138807297, 0.04191301763057709, -0.010949607007205486, 0.000529339537024498, 0.011520537547767162, -0.05953213572502136, -0.02334509789943695, 0.049375951290130615, -0.02896706573665142, 0.06293730437755585, -0.019416775554418564, 0.010896331630647182, -0.012030156329274178, -0.022459154948592186, -0.05322910100221634, -0.006856442894786596, -0.013434108346700668, 0.007262103725224733, 0.031897205859422684, 0.006043301895260811, -0.03979884460568428, -0.011212123557925224, -0.04085400700569153, 0.03488531708717346, -0.01224773470312357, -0.009039749391376972, 0.03684162721037865, 0.011233354918658733, 0.00609048455953598, 0.07938654720783234, 0.05336630344390869, 0.02755548246204853, 0.04503047093749046, -0.027136052027344704, -0.0012350716860964894, -0.02364390343427658, 0.001047101803123951, 0.005555738229304552, 0.00795204471796751, 0.010445281863212585, 0.02549225091934204, 0.013236845843493938, 0.04919954016804695, -0.0012093624100089073, 0.015703294426202774, 0.02817447856068611, -0.04340919107198715, 7.94192415685148e-33, -0.0022331937216222286, -0.013749003410339355, -0.015653599053621292, 0.014878833666443825, 0.05678394064307213, 0.0005552181391976774, 0.018857382237911224, 0.0325227752327919, -0.022264622151851654, 0.02521265670657158, -0.03264707326889038, 0.03215375915169716, 0.04059358686208725, 0.015483781695365906, -0.0028518137987703085, -0.012417451478540897, -0.024820761755108833, -0.02595585584640503, 0.01643414981663227, -0.05188669264316559, 0.0028490456752479076, 0.01705269329249859, -0.020433243364095688, 0.041136328130960464, 0.0217067189514637, 0.04277399554848671, -0.050961922854185104, -0.0011906413128599524, -0.014183848164975643, 0.0026782089844346046, 0.025574149563908577, 0.007850365713238716, 0.015305642038583755, -0.017854126170277596, 0.0009141827467828989, -0.0005363058880902827, 0.00929155945777893, 0.017852604389190674, 0.050370801240205765, 0.013184803538024426, -0.00966298021376133, -0.03379112109541893, 0.005326242186129093, 0.011150510981678963, 0.1022970974445343, -0.005668689496815205, -0.0015638902550563216, -0.013271421194076538, 0.005833601113408804, 0.06613016128540039, -0.038793839514255524, 0.02846534736454487, -0.02195379137992859, -0.0038366762455552816, 0.029396068304777145, -0.03361096978187561, -0.05345897376537323, 0.04485780745744705, -0.009250783361494541, 0.02305566519498825, -0.008649943396449089, -0.03942998871207237, -0.0019955767784267664, 0.06536279618740082, -0.05669519305229187, 0.027831047773361206, -0.08481549471616745, 0.0008352985023520887, 0.013994593173265457, 0.01821797713637352, -0.009433504194021225, -0.02991468459367752, -0.0185092743486166, -0.03381738066673279, 0.0487045980989933, -0.06735800951719284, 0.01626778207719326, -0.025614093989133835, -0.011367824859917164, 0.040581751614809036, 0.01664230041205883, 0.023252664133906364, -0.04950955882668495, 0.0030987749341875315, -0.0069816322065889835, -0.008162016980350018, -0.019960548728704453, 0.0013570735463872552, -0.0034303509164601564, -0.015451603569090366, -0.02023845911026001, 0.05456534028053284, 0.014331912621855736, -0.025788703933358192, 0.01231304183602333, -1.2356706768912318e-8, 0.010243733413517475, -0.01407631766051054, -0.02655584178864956, 0.019388211891055107, 0.07249806076288223, -0.006486214231699705, -0.02750619500875473, -0.043422896414995193, -0.026503080502152443, -0.026712046936154366, -0.011193938553333282, -0.026633404195308685, 0.009679463692009449, 0.04214276745915413, -0.03528855741024017, -0.022312702611088753, 0.006522758398205042, -0.0035295095294713974, 0.038755595684051514, -0.005447898525744677, 0.03470961004495621, 0.025768425315618515, 0.014353739097714424, 0.06134653836488724, 0.010865818709135056, 0.009713124483823776, 0.0004689390189014375, -0.036516763269901276, 0.014554891735315323, 0.025519786402583122, -0.04172469303011894, -0.058198023587465286, -0.045335553586483, -0.032424189150333405, -0.021106261759996414, 0.020553963258862495, -0.016164226457476616, -0.021364912390708923, 0.005622618831694126, 0.013921165838837624, 0.04478028789162636, 0.011191383004188538, 0.041032999753952026, -0.014033138751983643, -0.03458801656961441, 0.03592593967914581, -0.08607791364192963, 0.03171897307038307, 0.026216741651296616, -0.03740087151527405, -0.006442123092710972, -0.020720377564430237, 0.025185342878103256, -0.006203063298016787, -0.0457085520029068, -0.004478820599615574, 0.06185232102870941, -0.010383662767708302, 0.017634423449635506, -0.0019027242669835687, 0.022627610713243484, -0.006985684856772423, 0.03285893052816391, -0.04250367730855942 ]
selenium-firefox-and-https-pages
https://markhneedham.com/blog/2010/03/25/selenium-firefox-and-https-pages
false
2010-04-02 23:11:07
LDNUG: Mixing functional and object oriented approaches to programming in C#
[]
[ "Software Development" ]
On Wednesday evening my colleague http://mikewagg.blogspot.com/[Mike Wagg] and I presented http://www.markhneedham.com/blog/2010/01/31/ddd8-mixing-functional-and-object-oriented-approaches-to-programming-in-c/[a variation of a talk I originally presented at Developer Developer Developer 8] titled 'Mixing functional and object oriented approaches to programming in C#' to the London .NET User Group at Skillsmatter. The slides from the talk are below and there is a http://skillsmatter.com/podcast/open-source-dot-net/mike-wagg-mark-needham-functional-and-oo-approaches-to-c-sharp-programming/zx-548[video of the talk on the Skillsmatter website]. *http://www.slideshare.net/markhneedham/mixing-functional-and-object-oriented-approaches-to-programming-in-c-3624944[Mixing functional and object oriented approaches to programming in C#]* These were some of the lessons I learned from this version of the talk: * I recently spent a bit of time flicking through Scott Berkun's 'http://www.amazon.com/gp/product/0596801998?ie=UTF8&tag=marneesblo-20&linkCode=as2&camp=1789&creative=390957&creativeASIN=0596801998[Confessions of a Public Speaker]' and one of the suggestions he has is that *people aren't interested in how you got to your current opinion - they're more interested in hearing what you've got to say*. While I think a story based approach is more fun to watch, in the original version of this talk I felt I spent too much time detailing where ideas had come from even though that information didn't add much value to the talk. We cut that out this time and I think it worked better as a result. * I haven't done a paired talk before but I found it a much more enjoyable experience than when I just presented on my own. Mike took the role of the object oriented guy interested in how functional can work in that context while I took the role of the guy who's really interested in functional programming and wants to put it into C# code whenever possible. It was quite fun playing those roles especially when I was showing some of the slides on passing functions around and continuation passing style as the code became more and more difficult to understand. * http://www.zimakki.com/blog/[Zi] suggested that it would work better next time if we *paused at the end of slides with code on* so the audience would have time to let it soak in and ensure they understood what was going on so this is something to try for next time. * Mike and I were unsure whether the introduction where he covered *how C# had evolved through the different versions* would be useful but this was a part of the talk which got a lot of positive feedback and several people mentioned that they had done something similar at their work place when explaining LINQ to colleagues. * Liz Martin pointed out that the talk was effectively about *knowing your language and how to use it an effective way* without causing yourself too much pain. I think this is probably a fair summary and if taken further perhaps explains how we end up with different idiomatic patterns of use in each language. * Next time I'd look to explain some of the more complicated functional code a bit better and perhaps build up to it with some simpler examples. This time it was more to demonstrate how impossible the code can become if you take a functional approach to the extreme in C#. It also seems like there is some overlap with some of the patterns of Domain Driven Design and how the fit in with these two approaches to programming. We had a discussion afterwards about some resources for learning functional programming. These were some of the things mentioned and resources I find useful: * http://www.markhneedham.com/blog/2009/05/24/real-world-functional-programming-book-review/[Real World Functional Programming] - I started learning about F# from this book and it provides a nice introduction to functional programming concepts with examples side by side in C# and F#. * http://channel9.msdn.com/shows/Going+Deep/Lecture-Series-Erik-Meijer-Functional-Programming-Fundamentals-Chapter-1/[Functional Programming Fundamentals] - Erik Meijer's series of lectures on functional programming based mainly around Haskell recorded for Microsoft's Channel 9. I've only watched a couple of these so far but they seem to provide a decent introduction. * http://feeds2.feedburner.com/planet_fsharp[Planet F#] - a syndicator with posts by various people about what they're doing with F#. * http://mitpress.mit.edu/sicp/[Structure and Interpretation of Computer Programs] - a computer science introductory text used in introductory courses at MIT. It's not only about functional programming but there are relevant sections.</ul>
null
null
[ 0.01774316094815731, -0.00014180778816808015, 0.0034876337740570307, 0.04079096019268036, 0.07426867634057999, 0.018444480374455452, 0.019375737756490707, 0.03830912709236145, 0.013200405985116959, -0.03165709599852562, -0.01638210192322731, 0.02317911945283413, -0.05321447178721428, 0.002265690825879574, -0.012160968035459518, 0.05973063036799431, 0.061992574483156204, -0.033953707665205, 0.03513000160455704, 0.019437063485383987, 0.027570344507694244, 0.06467484682798386, 0.015957865864038467, 0.026359982788562775, 0.02485525980591774, 0.02462490275502205, 0.004831668920814991, 0.0026601848658174276, -0.056662365794181824, -0.013093925081193447, 0.04091964662075043, 0.02519705705344677, 0.027044786140322685, -0.01239151880145073, 0.016726363450288773, -0.01828276924788952, 0.004437537398189306, 0.0194893516600132, 0.007081207353621721, 0.03526798635721207, -0.06836716085672379, 0.045567698776721954, -0.009478891268372536, 0.014671788550913334, -0.04088975861668587, 0.0028897353913635015, -0.0452057383954525, 0.0020486926659941673, -0.00047638246905989945, -0.005068548955023289, -0.07385805249214172, 0.013577518984675407, 0.007549270987510681, 0.013084299862384796, -0.03212602436542511, 0.05397244542837143, 0.022998766973614693, -0.06024510785937309, 0.0012150713009759784, -0.041321463882923126, -0.009795202873647213, -0.008313442580401897, 0.010204710997641087, 0.026949191465973854, 0.039489224553108215, -0.007886799983680248, -0.0202048160135746, 0.03113071247935295, -0.03884943947196007, -0.004900621250271797, -0.01963953860104084, 0.018282413482666016, -0.00179089920129627, -0.019477644935250282, 0.02083352580666542, -0.05479425564408302, 0.015972187742590904, 0.06671123206615448, 0.005961164832115173, 0.02315187081694603, -0.020917169749736786, 0.02829314023256302, 0.028222106397151947, 0.03401603177189827, -0.015605930238962173, -0.03801961615681648, -0.020631615072488785, -0.009635159745812416, -0.05514736846089363, 0.05792389437556267, -0.002577725565060973, -0.05108458921313286, 0.02362673357129097, 0.03517504408955574, -0.002084715524688363, 0.03494441509246826, 0.04954995959997177, -0.004581979941576719, -0.011546671390533447, -0.013041200116276741, -0.02333434298634529, -0.022949380800127983, 0.0013016731245443225, 0.0173003189265728, -0.0699210911989212, -0.011088415049016476, -0.028402138501405716, -0.0059221661649644375, -0.017534660175442696, 0.019210154190659523, -0.043669331818819046, 0.029685979709029198, -0.0012809946201741695, 0.0036842713598161936, -0.06208164244890213, 0.06054378300905228, 0.014419734477996826, -0.04485950618982315, -0.022150816395878792, -0.0014535000082105398, 0.0386531688272953, 0.04037632793188095, -0.00452237855643034, 0.08573446422815323, 0.01779763214290142, 0.002887970767915249, -0.024227526038885117, 0.056853003799915314, -0.017411308363080025, -0.06426836550235748, -0.004498624242842197, 0.0440262071788311, -0.015602742321789265, -0.0097858477383852, 0.004951388109475374, -0.0432540625333786, 0.008325459435582161, 0.018974438309669495, 0.01687835343182087, 0.05363810062408447, 0.003489833790808916, -0.046137064695358276, 0.03800960257649422, 0.0004501813091337681, 0.010425843298435211, -0.004734062124043703, -0.00821926724165678, -0.008139733225107193, -0.036909010261297226, 0.009509109891951084, 0.0014102020068094134, 0.021901775151491165, 0.01999039575457573, -0.07229302078485489, 0.03473801165819168, 0.08850234001874924, 0.029971230775117874, 0.014714750461280346, -0.01260846946388483, 0.034491732716560364, 0.03715813532471657, 0.03468802571296692, -0.0012211545836180449, 0.01120253000408411, 0.0035301875323057175, -0.008895616978406906, -0.0003295824280939996, 0.04808799549937248, -0.005179253406822681, 0.021636901423335075, -0.05163903534412384, -0.026461420580744743, 0.054185651242733, -0.043220359832048416, -0.05045626312494278, 0.03138957917690277, 0.08053342252969742, 0.027251124382019043, 0.051846280694007874, -0.012447323650121689, -0.08491943776607513, 0.0047086323611438274, 0.022126229479908943, 0.012319425120949745, 0.017281340435147285, -0.01727190613746643, 0.06405358016490936, 0.01619977131485939, 0.003730042604729533, 0.053133606910705566, -0.0636572390794754, -0.09057658165693283, -0.03646910563111305, -0.022125953808426857, 0.06366413086652756, -0.00863493513315916, 0.004426491912454367, 0.053922008723020554, 0.016978781670331955, 0.05396666377782822, 0.039220549166202545, -0.0013896959135308862, 0.007784775923937559, -0.024506617337465286, -0.03465113416314125, 0.05032140389084816, 0.03195914253592491, 0.011228690855205059, -0.05030602589249611, 0.004763237200677395, -0.006141710095107555, -0.02547505497932434, 0.046668343245983124, -0.033331867307424545, 0.03607518598437309, 0.007587338797748089, 0.06182081624865532, -0.02627481520175934, 0.03190898522734642, -0.03344883397221565, -0.008462957106530666, 0.004051174968481064, -0.03273778781294823, 0.03347480297088623, -0.0009184291702695191, 0.13587169349193573, 0.07097885012626648, -0.05267120897769928, -0.03130422160029411, 0.010519048199057579, 0.023926716297864914, -0.03449597954750061, -0.006995934993028641, 0.003140650689601898, 0.014891277998685837, 0.012270224280655384, -0.0707256868481636, -0.03444744274020195, 0.016072191298007965, -0.045681774616241455, 0.022767459973692894, 0.0653955340385437, -0.019709577783942223, 0.056727729737758636, -0.010938124731183052, -0.008996509946882725, 0.0033778094220906496, -0.009853470139205456, -0.030563395470380783, 0.009478185325860977, -0.003452321281656623, -0.010977151803672314, 0.059895165264606476, -0.0156515184789896, -0.020244911313056946, -0.0380697138607502, -0.019702445715665817, 0.0011525989975780249, 0.04973593354225159, 0.06559967249631882, -0.00116013886872679, 0.06750795245170593, -0.022337328642606735, 0.02154693566262722, -0.0005860573728568852, -0.056300804018974304, -0.030900223180651665, -0.03286817669868469, 0.010364136658608913, 0.028418993577361107, 0.00018132234981749207, 0.015379330143332481, -0.00045293133007362485, -0.005040679592639208, -0.026576843112707138, -0.03417164087295532, 0.03729621320962906, -0.0033629725221544504, -0.04118746891617775, -0.05142221227288246, -0.030948223546147346, 0.04974403977394104, -0.05761413648724556, -0.012975131161510944, -0.005605062935501337, -0.06600101292133331, 0.025591228157281876, -0.07621123641729355, -0.03843493387103081, -0.010135967284440994, 0.002576746977865696, 0.03408101201057434, -0.005370034836232662, 0.021543171256780624, 0.07885488122701645, 0.004691082052886486, 0.011034436523914337, -0.016070475801825523, -0.010718326084315777, 0.02211231179535389, 0.008364398963749409, 0.012778013944625854, 0.04145801439881325, 0.017898451536893845, -0.011651095002889633, -0.06000569462776184, 0.043681494891643524, -0.023907285183668137, -0.2827337682247162, 0.029454519972205162, 0.012231379747390747, -0.0337480828166008, 0.015679676085710526, 0.01000862754881382, 0.015276264399290085, -0.06220928952097893, -0.022991666570305824, 0.005141057539731264, -0.06150072067975998, -0.04296768829226494, -0.03774549067020416, 0.059832435101270676, 0.018785014748573303, 0.023962577804923058, 0.025169413536787033, -0.040143463760614395, 0.010995149612426758, 0.06583994626998901, -0.014343205839395523, -0.06511405855417252, 0.0012424490414559841, 0.044304266571998596, 0.03159330040216446, 0.04932226240634918, -0.09849963337182999, 0.055783990770578384, -0.058610301464796066, -0.000298856757581234, -0.005926106590777636, 0.0184581708163023, 0.011883838102221489, -0.02159135229885578, -0.011598201468586922, -0.02560751512646675, 0.03682933375239372, 0.0073575107380747795, -0.008619913831353188, 0.004016412887722254, -0.013844715431332588, -0.034521572291851044, -0.017056569457054138, 0.006189566105604172, 0.07741530984640121, 0.02195129543542862, -0.08599354326725006, -0.011341175064444542, -0.029696406796574593, 0.052248433232307434, -0.029371218755841255, -0.04802322760224342, 0.004808531142771244, 0.037121664732694626, -0.0028271707706153393, -0.03315065801143646, -0.007352021988481283, -0.022902490571141243, -0.03665465861558914, -0.03510572016239166, -0.01587376557290554, -0.033017609268426895, -0.012829810380935669, -0.05571085587143898, 0.0028142135124653578, -0.06424693018198013, -0.06758306175470352, -0.02093648724257946, 0.08092117309570312, 0.03481400012969971, -0.02444874309003353, 0.020096007734537125, -0.004528145771473646, -0.11024593561887741, 0.0023596889805048704, 0.0064438763074576855, -0.03372569382190704, -0.00015879447164479643, 0.046994492411613464, 0.05098767951130867, -0.03429101034998894, -0.06484612077474594, 0.0203482024371624, 0.006927228532731533, 0.03727323189377785, -0.01230483129620552, 0.035128530114889145, 0.009186027571558952, -0.03696512058377266, 0.01398520078510046, 0.0691530779004097, 0.01010473445057869, -0.006831520237028599, -0.017503127455711365, 0.030772116035223007, 0.00746250431984663, 0.027413956820964813, -0.0022845198400318623, 0.018212324008345604, 0.031061284244060516, 0.004303533583879471, -0.0682060644030571, 0.016470128670334816, -0.02600136399269104, -0.01136093307286501, 0.007907240651547909, -0.05890966206789017, -0.004097644705325365, 0.037183936685323715, 0.016938164830207825, 0.0027683747466653585, -0.029632344841957092, 0.020485742017626762, -0.038703832775354385, -0.026183957234025, -0.006602948065847158, 0.005767088383436203, 0.047283999621868134, -0.011118132621049881, -0.01875091716647148, -0.04583735391497612, -0.00013770590885542333, -0.0006010520737618208, -0.007325060199946165, -0.05902198702096939, -0.017462817952036858, -0.024065744131803513, -0.014527850784361362, 0.003128258977085352, 0.03883637487888336, -0.017375707626342773, 0.031868599355220795, 0.02015068009495735, -0.043835777789354324, 0.023481106385588646, -0.02176460064947605, -0.05798366665840149, -0.02994156815111637, -0.008670149371027946, 0.0020006438717246056, 0.011036432348191738, 0.0343376025557518, 0.005691892933100462, 0.014368399046361446, 0.033286795020103455, 0.023009631782770157, 0.007475795689970255, -0.007976952940225601, 0.02715402841567993, 0.017025943845510483, 0.019097624346613884, -0.08208073675632477, 0.032530251890420914, -0.04138719290494919, -0.017354248091578484, -0.01569508947432041, 0.04694642126560211, -0.01409160252660513, -0.035179246217012405, -0.009773755446076393, 0.03632328659296036, -0.04249931126832962, -0.03613672032952309, -0.04689513519406319, 0.013664687983691692, 0.055020879954099655, -0.03907116875052452, 0.03335048258304596, -0.018166732043027878, -0.015827946364879608, 0.013283300213515759, 0.01087032351642847, -0.04332578927278519, 0.0003493500407785177, 0.029363075271248817, -0.012305096723139286, -0.01078247930854559, 0.004412404727190733, 0.05337117239832878, 0.002066111657768488, 0.014742945320904255, -0.035849180072546005, -0.011301398277282715, 0.00938308984041214, 0.0752568319439888, -0.003047837410122156, -0.0020355999004095793, -0.0030914938542991877, -0.01025569811463356, -0.0034060017205774784, -0.03569347411394119, -0.014167959801852703, 0.005301983095705509, 0.04219856485724449, -0.03570935130119324, -0.07273618876934052, 0.06668568402528763, 0.02407304383814335, -0.0016198008088395, -0.0032721462193876505, 0.004614182282239199, 0.0060392748564481735, -0.023221803829073906, 0.03360786288976669, 0.055988527834415436, -0.06954391300678253, 0.008443491533398628, -0.021943306550383568, 0.0005194418481551111, 0.00883000809699297, 0.0027639518957585096, -0.01643090695142746, -0.016548125073313713, -0.02950739488005638, 0.0031863730400800705, -0.05722026899456978, -0.019950252026319504, -0.005288662854582071, 0.007001859601587057, -0.004731969442218542, -0.02840142697095871, -0.01680290885269642, -0.013963335193693638, -0.019559547305107117, -0.044664714485406876, 0.019849758595228195, -0.04748108983039856, 0.016988717019557953, 0.015308544039726257, -0.04718214273452759, 0.011822889558970928, -0.03897993266582489, 0.013530698604881763, 0.03358389064669609, -0.0180490892380476, -0.013556743040680885, -0.0516267865896225, -0.0057463073171675205, -0.003132697893306613, 0.05029401555657387, -0.006440175697207451, -0.03262999653816223, -0.05553539842367172, -0.018573779612779617, -0.058991894125938416, 0.02502041682600975, -0.02062356472015381, 0.0003226331318728626, 0.023153457790613174, 0.032548271119594574, 0.011158770881593227, 0.031354375183582306, -0.028968825936317444, -0.010979298502206802, 0.04204762727022171, -0.06337480247020721, -0.02764010615646839, -0.044015564024448395, -0.05674367770552635, -0.008839295245707035, -0.006204301491379738, 0.022661305963993073, -0.04247882962226868, 0.051668282598257065, 0.024455972015857697, 0.03593461960554123, 0.03706961125135422, 0.011303395964205265, 0.012868372723460197, -0.04460933804512024, -0.0025598693173378706, -0.08399929106235504, -0.006383631378412247, 0.04059373587369919, 0.023320753127336502, -0.028264084830880165, 0.013168797828257084, -0.034103523939847946, 0.05323893949389458, -0.08978791534900665, -0.021816391497850418, 0.02468797005712986, -0.013716536574065685, -0.019774682819843292, 0.014802688732743263, -0.06720836460590363, 0.020683638751506805, 0.021953187882900238, -0.03503997251391411, -0.015711233019828796, -0.027615731582045555, 0.05423460528254509, 0.01044508721679449, 0.04480976611375809, -0.03754720836877823, 0.007636789698153734, 0.08007330447435379, 0.023085741326212883, 0.0044527905993163586, 0.05404162034392357, -0.003497411496937275, 0.03755316883325577, 0.029635151848196983, -0.005410631187260151, -0.01374004501849413, 0.003467842238023877, -0.02029339224100113, -0.07393181324005127, -0.0004634313518181443, 0.006241504568606615, -0.029898909851908684, -0.03161390870809555, 0.04472309723496437, 0.026394395157694817, -0.031048951670527458, -0.055168718099594116, 0.013115502893924713, -0.060870569199323654, 0.011458483524620533, -0.019849874079227448, 0.021115317940711975, -0.03715336322784424, 0.044266629964113235, 0.017994847148656845, -0.007826314307749271, 0.05910525098443031, 0.004660036414861679, -0.03373382240533829, -0.022805647924542427, 0.10024465620517731, 0.06244678422808647, 0.06752409040927887, 0.011967368423938751, 0.062276095151901245, -0.037315014749765396, -0.04697447270154953, 0.011148665100336075, 0.0034040999598801136, -0.013523697853088379, -0.030224833637475967, 0.0296967551112175, 0.0915442630648613, -0.00949971191585064, 0.06427174061536789, -0.028676291927695274, -0.0035683740861713886, -0.004706691484898329, 0.0025406237691640854, 0.009262108244001865, 0.06561888754367828, 0.01714547723531723, 0.010348428040742874, -0.009737947955727577, -0.05879475548863411, 0.024440620094537735, -0.036191556602716446, -0.01340334303677082, 0.0031728448811918497, 0.0018129763193428516, 0.03132793679833412, 0.00037403986789286137, 0.030573388561606407, 0.08383464068174362, -0.030370905995368958, 0.021322626620531082, -0.00030412108753807843, 0.0195614043623209, 0.007150427438318729, 0.012614313513040543, -0.02254532091319561, -0.02296672761440277, 0.0061953398399055, -0.014383381232619286, -0.017285063862800598, -0.031132787466049194, -0.03188787400722504, 0.05283200740814209, -0.02161371149122715, 0.0063541121780872345, 0.01663242280483246, 0.00694224564358592, -0.021779358386993408, -0.07823614776134491, -0.0396699495613575, -0.02389737404882908, -0.04486284404993057, -0.025710154324769974, 0.044250719249248505, -0.0033059727866202593, -0.03969145566225052, -0.007257124874740839, -0.016946250572800636, -0.021767741069197655, 0.06059912592172623, -0.05099327489733696, -0.027896493673324585, 0.020307231694459915, 0.009688496589660645, 0.02804923802614212, 0.020338118076324463, 0.033175501972436905, -0.01431478001177311, -0.009990232065320015, -0.024298613891005516, 0.011078046634793282, 0.028735017403960228, -0.0031782283913344145, 0.000609388982411474, -0.09095004945993423, 0.04269092157483101, 0.008374693803489208, -0.008408456109464169, -0.07881084829568863, 0.016187507659196854, 0.02557159587740898, 0.008806463330984116, 0.04116157442331314, -0.013722511939704418, -0.01070355623960495, -0.024884657934308052, 0.012115777470171452, -0.014399133622646332, 0.01836201921105385, 0.04925043135881424, -0.015831658616662025, 0.08658401668071747, 0.029393384233117104, -0.019855007529258728, -0.042697835713624954, -0.01108292955905199, -0.0037324600853025913, 0.01552034541964531, -0.028649628162384033, -0.022916657850146294, -0.01800161972641945, -0.07433032244443893, -0.016172735020518303, 0.021935397759079933, -0.014776917174458504, -0.03052491880953312, 0.029809344559907913, 0.023411191999912262, -0.028143012896180153, 0.02509777806699276, -0.04501819610595703, 0.029878981411457062, -0.0036714072339236736, -0.003536524251103401, -0.009437309578061104, -0.005759067367762327, -0.008730542846024036, -0.014642723836004734, 0.00803450308740139, -0.0379449799656868, -0.022379538044333458, 0.003177449805662036, 0.039279237389564514, 0.04748162999749184, 0.023498257622122765, -0.004258410539478064 ]
[ -0.11013124138116837, -0.014430849812924862, -0.03086170367896557, -0.04232189804315567, 0.01475625578314066, -0.03252789005637169, -0.009953228756785393, 0.00833189021795988, 0.012832686305046082, -0.03417118638753891, -0.014666472561657429, -0.011955286376178265, -0.0018605567747727036, 0.002879667328670621, 0.10967843234539032, 0.0300615094602108, -0.006692548282444477, -0.05175387114286423, 0.011693150736391544, 0.012252682819962502, 0.0013894984731450677, -0.05485910177230835, -0.0508992038667202, -0.02684868685901165, 0.0001823313650675118, 0.03239516168832779, 0.03141928091645241, -0.06544628739356995, 0.02821461856365204, -0.2092272937297821, -0.011451322585344315, 0.0449499636888504, 0.04535810276865959, -0.026236362755298615, -0.004486151039600372, 0.056889262050390244, 0.02772008441388607, 0.01377791166305542, -0.03874027356505394, 0.03620067611336708, 0.010682767257094383, -0.00017276017752010375, -0.0278084147721529, -0.03193459287285805, 0.03548669442534447, -0.005012740381062031, -0.002507169498130679, -0.031656306236982346, -0.02621028758585453, 0.028301699087023735, -0.06349930167198181, -0.057868290692567825, -0.030659636482596397, -0.03934655711054802, 0.012129365466535091, 0.053182452917099, 0.017287375405430794, 0.06730576604604721, 0.004126810003072023, 0.03518280014395714, -0.008171847090125084, -0.01054202951490879, -0.12702515721321106, 0.09794903546571732, 0.04751849174499512, 0.05149143561720848, -0.02993680350482464, -0.021451536566019058, 0.01063272450119257, 0.09577072411775589, 0.016775984317064285, -0.028724541887640953, -0.0015781890833750367, 0.021271077916026115, 0.005973314866423607, -0.015102430246770382, -0.005490047391504049, 0.025088364258408546, 0.03490060940384865, -0.03981576859951019, -0.0312579944729805, 0.000760825234465301, -0.0036118014249950647, -0.016629140824079514, -0.029646307229995728, 0.025765998288989067, -0.002670079469680786, 0.046524062752723694, 0.02442065440118313, 0.025757957249879837, 0.013198234140872955, -0.0029025140684098005, 0.03570738434791565, -0.015020938590168953, -0.06383154541254044, -0.0073267025873064995, 0.015458646230399609, -0.008151968009769917, -0.03639145568013191, 0.45321008563041687, -0.027785373851656914, -0.04205979034304619, 0.09536466747522354, 0.020047655329108238, -0.033716753125190735, -0.0011649783700704575, 0.018127083778381348, -0.06346256285905838, 0.02982901781797409, -0.026090580970048904, -0.013261162675917149, 0.0029282555915415287, 0.04175616800785065, -0.04469510540366173, 0.019320623949170113, 0.029592465609312057, 0.06074289605021477, 0.008137920871376991, 0.014756995253264904, -0.006302467547357082, 0.02388901263475418, 0.003079358721151948, 0.025297610089182854, 0.025936109945178032, -0.0007560287485830486, -0.05485842376947403, 0.01707138493657112, 0.05507347732782364, 0.03172236308455467, 0.00830782763659954, 0.07867234200239182, -0.023317748680710793, -0.06359933316707611, -0.01179028395563364, 0.00816737674176693, 0.008145486004650593, 0.034177787601947784, -0.04060503840446472, 0.013706092722713947, 0.044875118881464005, 0.01145094819366932, -0.013657708652317524, 0.013440690003335476, -0.02996772900223732, -0.021227356046438217, 0.143120676279068, -0.0011705850483849645, -0.021573465317487717, -0.011236070655286312, -0.03371885418891907, 0.010831393301486969, 0.023356270045042038, -0.00584057904779911, -0.05186958983540535, 0.030358606949448586, 0.004576943814754486, 0.10098716616630554, -0.010047844611108303, -0.05180666968226433, 0.009510976262390614, -0.04939410835504532, -0.016121679916977882, -0.03216443583369255, 0.049704331904649734, 0.05043134093284607, -0.10855346918106079, -0.028759032487869263, 0.0057172030210494995, 0.042957935482263565, -0.07191846519708633, 0.0018756717909127474, 0.00791298970580101, -0.02645954303443432, -0.0036597480066120625, 0.053349655121564865, -0.012817668728530407, -0.05536382645368576, 0.003850615117698908, 0.05992526933550835, 0.021650252863764763, 0.028426632285118103, 0.020346930250525475, -0.041278235614299774, 0.020395619794726372, -0.03740473836660385, -0.08463700860738754, -0.026046359911561012, -0.016533000394701958, -0.03680962696671486, 0.00581732951104641, -0.01983410120010376, -0.035489048808813095, -0.06336944550275803, 0.08776319772005081, -0.05459513142704964, -0.031853388994932175, 0.03752709925174713, -0.0007430711411871016, -0.024752382189035416, -0.01857687719166279, -0.0286067184060812, 0.03808913752436638, -0.05733195319771767, 0.03472168743610382, -0.06179922819137573, 0.031578585505485535, 0.016418207436800003, -0.042171910405159, 0.08392379432916641, 0.06092037260532379, -0.04243548586964607, -0.06002971902489662, 0.013601615093648434, 0.035416070371866226, 0.007167421281337738, -0.03562282770872116, 0.0012942900648340583, 0.030374111607670784, -0.024517476558685303, 0.010130568407475948, -0.03973118215799332, 0.008303572423756123, -0.031563665717840195, -0.3255203068256378, -0.008920442312955856, -0.011824463494122028, -0.02298218198120594, 0.00913394894450903, -0.06987287849187851, 0.03084363043308258, -0.006781371310353279, -0.025565624237060547, 0.010446157306432724, 0.057039789855480194, 0.0027315036859363317, 0.01075663324445486, -0.08901195973157883, -0.005914581008255482, 0.02960388921201229, -0.006851579528301954, -0.03147585317492485, -0.030017610639333725, 0.012273953296244144, 0.010410815477371216, 0.011615537106990814, -0.013104131445288658, -0.05922736972570419, -0.0021597312297672033, -0.06444545835256577, 0.08255545049905777, -0.0016957020852714777, 0.09860213845968246, -0.0004943267558701336, 0.039328835904598236, 0.011649887077510357, 0.023593436926603317, -0.10247139632701874, 0.003567115869373083, 0.011570907197892666, 0.03529660403728485, -0.028818510472774506, 0.04506887122988701, -0.031382396817207336, -0.04279588907957077, 0.011300169862806797, -0.061021264642477036, -0.07078316062688828, -0.05742649361491203, 0.010642506182193756, -0.02245902642607689, -0.04286699742078781, -0.03772050514817238, 0.06816733628511429, -0.003525285515934229, -0.01603759452700615, 0.024934228509664536, 0.024351656436920166, -0.03090186044573784, -0.019373947754502296, -0.07145922631025314, -0.005318822339177132, -0.0026068147271871567, 0.014265603385865688, 0.030743643641471863, 0.054732952266931534, 0.013683835044503212, -0.05406440794467926, -0.0009178975597023964, 0.023714011535048485, 0.02576611191034317, -0.01707516796886921, 0.05602012202143669, -0.015144096687436104, -0.020177751779556274, 0.06338992714881897, 0.0014150742208585143, -0.0028422665782272816, 0.027859831228852272, 0.029602637514472008, -0.013643542304635048, 0.011969216167926788, 0.0005330420099198818, -0.01642434298992157, 0.032334763556718826, -0.005770025309175253, 0.027803029865026474, -0.021204933524131775, -0.000626905239187181, 0.0034139754716306925, 0.014791282825171947, -0.03411651775240898, 0.04087197408080101, 0.002650617156177759, -0.033312153071165085, -0.008864829316735268, 0.0062124719843268394, -0.06482607126235962, 0.0774083063006401, -0.005130998324602842, -0.2530991733074188, 0.009939799085259438, 0.09076834470033646, 0.03392611816525459, -0.021068966016173363, 0.041028477251529694, 0.028168192133307457, -0.07121941447257996, -0.007400759495794773, 0.0008387070847675204, 0.024698464199900627, 0.007854207418859005, -0.009621859528124332, 0.016411378979682922, 0.049725718796253204, 0.0028554301243275404, 0.03639871999621391, -0.00567208044230938, 0.01827087439596653, -0.0030392161570489407, -0.0002824168186634779, 0.02655736356973648, 0.16013291478157043, -0.00032284282497130334, 0.05983263999223709, -0.005355616100132465, 0.0022212835028767586, 0.0015854843659326434, 0.07076798379421234, -0.007128205616027117, 0.00839250348508358, 0.00947076641023159, 0.04723738878965378, 0.0012072251411154866, 0.025140566751360893, -0.06484805792570114, -0.023270482197403908, 0.0455680750310421, 0.01555644255131483, 0.0203874371945858, 0.017495881766080856, -0.0024902985896915197, -0.008221781812608242, 0.01355153787881136, 0.0534089021384716, 0.03362986817955971, 0.01194930262863636, -0.03698538616299629, -0.037202976644039154, -0.020928187295794487, -0.04638446867465973, -0.03797714784741402, 0.0468662790954113, -0.014682412147521973, 0.006491422187536955, 0.06987059861421585, -0.004205033648759127, -0.017343293875455856, -0.028972558677196503, 0.020577337592840195, 0.01677773706614971, -0.03727219998836517, 0.09174352884292603, 0.03510893136262894, 0.021851392462849617 ]
[ -0.004407593049108982, 0.0049580540508031845, 0.01048161368817091, 0.017314881086349487, -0.023831291124224663, 0.022340180352330208, 0.02980491705238819, 0.01985947974026203, -0.01877310499548912, -0.009875332936644554, -0.03932962939143181, 0.035458505153656006, -0.011286365799605846, 0.006845126859843731, 0.03685860335826874, -0.0022047318052500486, 0.011283013969659805, -0.02637558989226818, 0.017128560692071915, 0.026358498260378838, -0.011028211563825607, 0.01537240482866764, -0.020758256316184998, -0.045980919152498245, -0.018495023250579834, -0.009334738366305828, -0.005568897817283869, -0.020519327372312546, 0.027718743309378624, -0.13227957487106323, -0.011434534564614296, 0.003660210408270359, -0.012839967384934425, 0.025760594755411148, -0.005550717934966087, -0.009677686728537083, 0.012404430657625198, 0.03676762804389, 0.02882569283246994, -0.01883254572749138, -0.025249019265174866, 0.0064631178975105286, 0.005676173139363527, 0.009647373110055923, 0.002782645169645548, 0.019907046109437943, 0.0005593921523541212, -0.06152009591460228, -0.011240895837545395, -0.01486286986619234, -0.05284217745065689, 0.006638831924647093, -0.02480463497340679, 0.0038969898596405983, 0.022963786497712135, -0.00007452283898601308, 0.028934407979249954, -0.02458418533205986, -0.0007355922134593129, -0.01997341774404049, -0.032441165298223495, -0.01358681358397007, -0.042440399527549744, -0.012342138215899467, -0.006619704887270927, -0.020511576905846596, -0.02913074381649494, -0.007766296621412039, -0.027320291846990585, -0.0023576337844133377, -0.021463729441165924, 0.036206893622875214, -0.04368114471435547, -0.035383448004722595, 0.011382002383470535, -0.004842016380280256, 0.019747048616409302, -0.03285791724920273, 0.0444616936147213, -0.043046753853559494, -0.02656937576830387, 0.03603806719183922, -0.02334645763039589, 0.006200004834681749, 0.02709624171257019, -0.010375812649726868, -0.015478926710784435, -0.0352792926132679, -0.003337332746013999, 0.01633988879621029, -0.03892388567328453, 0.03701368719339371, -0.007266704458743334, -0.0043749515898525715, -0.07338723540306091, -0.008595969527959824, 0.010872527956962585, -0.005486881826072931, -0.013835960999131203, 0.8718286156654358, -0.03307439386844635, 0.014939640648663044, 0.02482612058520317, -0.030951131135225296, 0.0005258297314867377, -0.002006949856877327, -0.004374756943434477, -0.008002112619578838, 0.027869177982211113, -0.030370358377695084, 0.006172925233840942, 0.004086317028850317, 0.02529972232878208, -0.004987054038792849, 0.03119213879108429, 0.012214639224112034, 0.01942048966884613, -0.018392862752079964, 0.001119709457270801, 0.006985692773014307, -0.0019436486763879657, -0.004153277259320021, -0.013688973151147366, 0.02287549152970314, -0.006852293852716684, -0.15964624285697937, 0.012296154163777828, -8.654338385639081e-33, 0.03213462978601456, -0.011288185603916645, 0.006702721584588289, 0.009932461194694042, 0.018617354333400726, -0.0024811180774122477, 0.0445328913629055, -0.013612380251288414, -0.005341086070984602, -0.021279433742165565, -0.017249438911676407, 0.000444463366875425, 0.0004962336970493197, -0.003531565424054861, 0.01815948076546192, -0.006938462611287832, 0.004292645491659641, 0.03243367001414299, -0.021630937233567238, 0.010685901157557964, 0.0330575630068779, 0.019576923921704292, -0.025427626445889473, -0.016250956803560257, 0.021703099831938744, 0.015531128272414207, -0.01170339621603489, 0.025461625307798386, 0.006630588322877884, -0.042606085538864136, -0.03704298287630081, 0.06463370472192764, -0.038189712911844254, -0.010314755141735077, 0.03847099095582962, -0.03703458607196808, -0.004619452636688948, 0.0031515283044427633, -0.01391289010643959, -0.038057371973991394, -0.026859791949391365, 0.012612640857696533, -0.056782860308885574, -0.014112843200564384, -0.00628331582993269, -0.006820300593972206, -0.02319464460015297, 0.04878423735499382, 0.027742445468902588, 0.0014102747663855553, 0.01759909652173519, 0.05113532766699791, -0.012208536267280579, 0.028415173292160034, -0.013115274719893932, 0.015152255073189735, 0.007217305712401867, -0.0037442357279360294, 0.0025013750419020653, 0.028017735108733177, 0.04140579327940941, 0.017839571461081505, -0.016484566032886505, 0.005538309924304485, 0.0022053057327866554, -0.019274728372693062, -0.000015058530152600724, -0.0008440843084827065, 0.02159763313829899, -0.012977317906916142, -0.042495861649513245, 0.01890762336552143, 0.0021579591557383537, -0.01957821659743786, -0.021165138110518456, -0.004399573430418968, -0.020349087193608284, 0.00044748035725206137, 0.012676463462412357, 0.03495512530207634, 0.037988968193531036, 0.015208585187792778, -0.0057940129190683365, -0.04355116933584213, -0.0004194020002614707, -0.011269096285104752, 0.0073351869359612465, -0.021893084049224854, -0.004186124540865421, -0.0005930290790274739, 0.03524789214134216, -0.012151174247264862, 0.0024167667143046856, -0.005455659236758947, 0.0011030357563868165, 7.974634491215017e-33, -0.011556738056242466, -0.0055417632684111595, -0.028265053406357765, 0.00813068076968193, 0.030753470957279205, -0.015372940339148045, 0.01815110817551613, -0.024540137499570847, -0.04110502451658249, 0.030103111639618874, -0.0019388248911127448, -0.026602545753121376, 0.013576541095972061, 0.04053030163049698, 0.03955715149641037, -0.02356141246855259, 0.009277033619582653, 0.007000671699643135, 0.04249579459428787, 0.005303672514855862, 0.04773130267858505, 0.0027995805721729994, 0.017184322699904442, 0.007684117183089256, 0.01544254831969738, 0.010379938408732414, -0.02533421851694584, 0.01356552354991436, -0.002126176841557026, 0.0006808399921283126, -0.006286184303462505, 0.005270509514957666, 0.0186822097748518, -0.028319083154201508, 0.008710651658475399, -0.0034663351252675056, -0.017239989712834358, -0.03198576718568802, 0.022632701322436333, -0.0011304476065561175, 0.009605408646166325, -0.011944817379117012, -0.004530716687440872, 0.03104747273027897, 0.015623521991074085, 0.004569601733237505, 0.0033555207774043083, -0.03073965571820736, -0.007414539344608784, 0.02588229440152645, 0.009780346415936947, 0.010843762196600437, -0.009656489826738834, -0.027691103518009186, -0.027115177363157272, -0.016217876225709915, 0.017362382262945175, -0.00522787356749177, 0.022280387580394745, 0.004423805512487888, 0.0018451581709086895, 0.014821530319750309, -0.02273435704410076, -0.008435235358774662, -0.01379068661481142, -0.005841021426022053, -0.006802281364798546, 0.0016709920018911362, -0.006749775260686874, -0.013252980075776577, -0.031326472759246826, 0.0006102357874624431, 0.039107851684093475, 0.0303359217941761, 0.002012643264606595, -0.005416699219495058, -0.012853333726525307, 0.002271911595016718, -0.02162426896393299, 0.02271142229437828, 0.0035390197299420834, -0.003377712331712246, 0.04169202223420143, 0.045125532895326614, -0.0414099395275116, 0.02920161746442318, -0.02617059089243412, 0.016115428879857063, -0.030925655737519264, -0.013244468718767166, -0.0150583041831851, -0.019519202411174774, 0.01755744032561779, 0.023446926847100258, -0.0037271862383931875, -1.4115841828754583e-8, -0.04149732366204262, 0.0026666440535336733, -0.025077149271965027, -0.009026478044688702, 0.013924640603363514, 0.020343832671642303, -0.006572674959897995, -0.010355648584663868, -0.023592114448547363, 0.01277992408722639, 0.006703774444758892, -0.010969796217978, -0.005095819942653179, 0.011647052131593227, 0.03964243084192276, -0.034746285527944565, 0.00445093447342515, -0.030528061091899872, 0.029213422909379005, 0.006415758281946182, 0.042616572231054306, 0.04320187494158745, -0.004990080371499062, 0.02916669473052025, -0.017495742067694664, 0.02380370907485485, 0.022150181233882904, -0.06555863469839096, 0.0005526768509298563, 0.02630242519080639, 0.006769254803657532, -0.019353153184056282, -0.04465823620557785, 0.040723271667957306, -0.021807311102747917, -0.03425125405192375, -0.014639279805123806, 0.04032067209482193, -0.014654201455414295, 0.004378124605864286, -0.022382201626896858, 0.012452657334506512, 0.004524818155914545, -0.021470803767442703, -0.006824659649282694, 0.014686884358525276, -0.023460986092686653, -0.034321680665016174, -0.021316442638635635, -0.016790959984064102, 0.012518029659986496, 0.019105128943920135, 0.018112659454345703, 0.024798396974802017, 0.021330824121832848, 0.02338828518986702, -0.017925068736076355, -0.020610090345144272, -0.024015339091420174, 0.005395412445068359, -0.01371756661683321, 0.04147707670927048, -0.02196033112704754, -0.010857917368412018 ]
ldnug-mixing-functional-and-object-oriented-approaches-to-programming-in-c
https://markhneedham.com/blog/2010/04/02/ldnug-mixing-functional-and-object-oriented-approaches-to-programming-in-c
false
2010-04-20 07:08:09
Functional C#: An imperative to declarative example
[ "c", "net" ]
[ ".NET" ]
I http://www.markhneedham.com/blog/2010/04/18/coding-another-outside-in-example/[wrote previously about how we've been working on some calculations] on my current project and one thing we've been trying to do is write this code in a fairly declarative way. Since we've been test driving the code it initially started off being quite imperative and looked a bit like this: [source,csharp] ---- public class TheCalculator { ... public double CalculateFrom(UserData userData) { return Calculation1(userData) + Calculation2(userData) + Calculation3(userData); } public double Calculation1(UserData userData) { // do calculation stuff here } public double Calculation2(UserData userData) { // do calculation stuff here } ... } ---- What we have on line 7 is a series of calculations which we can put in a collection and then sum together: [source,csharp] ---- public class TheCalculator { ... public double CalculateFrom(UserData userData) { var calculations = new Func<UserData, double>[] { Calculation1, Calculation2, Calculation3 }; return calculations.Sum(calculation => calculation(userData)); } public double Calculation1(UserData userData) { // do calculation stuff here } ... } ---- We can http://www.markhneedham.com/blog/2010/04/17/functional-c-using-custom-delegates-to-encapsulate-funcs/[pull out a 'Calculation' delegate] to make that a bit more readable: [source,csharp] ---- public class TheCalculator { private delegate double Calculation(UserData userData); public double CalculateFrom(UserData userData) { var calculations = new Calculation[] { Calculation1, Calculation2, Calculation3 }; return calculations.Sum(calculation => calculation(userData)); } ... } ---- One of the cool things about structuring the code like this is that if we want to add a new Calculation we can just go to the end of the array, type in the name of the method and then Resharper will create it for us with the proper signature. We eventually came across some calculations which needed to be subtracted from the other ones, which seems like quite an imperative thing to do! Luckily http://twitter.com/christianralph[Christian] saw a way to wrap these calculations in a 'Subtract' function so that we could stay in declarative land: [source,csharp] ---- public class TheCalculator { private delegate double Calculation(UserData userData); public double CalculateFrom(UserData userData) { var calculations = new [] { Calculation1, Calculation2, Calculation3, Subtract(Calculation4) }; return calculations.Sum(calculation => calculation(userData)); } ... public Calculation Subtract(Calculation calculation) { return userData => calculation(userData) * -1; } } ---- Having a method which explicitly has the 'Calculation' signature allows us to remove it from the array declarative which is pretty neat. We can also change the method signature of 'Subtract' to take in a variable number of calculations if we need to: [source,csharp] ---- public class TheCalculator { ... public double CalculateFrom(UserData userData) { var calculations = new [] { Calculation1, Calculation2, Calculation3, Subtract(Calculation4, Calculation5) }; return calculations.Sum(calculation => calculation(userData)); } public Calculation Subtract(params Calculation[] calculations) { return userData => calculations.Sum(calculation => calculation(userData)) * -1; } } ---- The other nice thing about coding it this way is that we ran into a problem where when we fed real data through the code we were getting the wrong values returned and we wanted to understand where it was falling down. We could easily temporarily add in a 'Console.WriteLine' statement like this to help us out: [source,csharp] ---- public class TheCalculator { ... public double CalculateFrom(UserData userData) { var calculations = new [] { Calculation1, Calculation2, Calculation3, Subtract(Calculation4, Calculation5) }; return calculations .Select(calculation => { Console.WriteLine(calculation.Method.Name + " = " + calculation(userData)); return calculation; }) .Sum(calculation => calculation(userData)); } ... } ---- It then printed the results down the page like so: [source,csharp] ---- Calculation1: 23.34 Calculation2: 45.45 ... ----
null
null
[ 0.017160454764962196, -0.02447226084768772, -0.020034220069646835, 0.009106623008847237, 0.07941626757383347, -0.002452207263559103, 0.021537289023399353, 0.005699186120182276, -0.016535503789782524, -0.021084919571876526, 0.012033726088702679, -0.0023281946778297424, -0.05680076777935028, 0.01963488571345806, -0.025618743151426315, 0.06903021037578583, 0.0932467058300972, -0.037588633596897125, 0.018720827996730804, -0.003346785204485059, -0.016421271488070488, 0.07958972454071045, -0.020665854215621948, 0.01303125824779272, 0.005584841128438711, 0.0520748645067215, -0.0011055313516408205, -0.02679034322500229, -0.05594991147518158, -0.018022090196609497, 0.04255982115864754, 0.03751089796423912, 0.0055829365737736225, 0.010433686897158623, -0.002708032261580229, -0.040752310305833817, 0.001260668388567865, -0.009962310083210468, 0.014561217278242111, 0.017619414255023003, -0.05253132805228233, 0.013544716872274876, -0.03032900020480156, 0.007973408326506615, -0.05523025244474411, -0.022594992071390152, 0.0039419191889464855, -0.015535890124738216, -0.066109798848629, -0.02275162748992443, -0.07164125889539719, 0.022174188867211342, -0.04873211309313774, 0.008337393403053284, -0.006247222423553467, 0.07059496641159058, 0.005018422845751047, -0.07871703058481216, 0.007308269385248423, -0.0775178000330925, 0.016222361475229263, 0.015438648872077465, -0.007964914664626122, 0.029584964737296104, 0.00845356099307537, -0.0039236536249518394, -0.020674295723438263, 0.04143858328461647, -0.03153599053621292, -0.026102839037775993, -0.017612839117646217, 0.008065419271588326, 0.0069981832057237625, -0.0034933791030198336, 0.008661813102662563, -0.03632793202996254, 0.0024344278499484062, 0.0273908618837595, 0.018769247457385063, 0.039325423538684845, 0.009772347286343575, 0.009939770214259624, 0.033756427466869354, 0.020289508625864983, 0.02861810475587845, -0.022483384236693382, -0.037393759936094284, -0.00443915743380785, -0.013608493842184544, 0.08228544145822525, -0.0072595481760799885, -0.03427008166909218, 0.019658910110592842, 0.029173312708735466, 0.006086107809096575, 0.011650173924863338, 0.011816306039690971, -0.03616879880428314, -0.01268019899725914, 0.018159305676817894, -0.012928340584039688, -0.017056146636605263, 0.04591566324234009, 0.0002337693003937602, -0.06992194801568985, -0.004214047454297543, -0.04124755039811134, -0.02221706137061119, 0.029811177402734756, 0.014555288478732109, -0.03798965737223625, 0.014529203064739704, -0.03260675072669983, -0.010396350175142288, -0.06508593261241913, 0.03742605820298195, 0.028181571513414383, 0.00626339903101325, -0.008967925794422626, 0.022875359281897545, 0.05159451439976692, 0.05119534954428673, 0.0020913491025567055, 0.08137348294258118, 0.0021311859600245953, 0.03139008954167366, -0.010584057308733463, 0.06402943283319473, 0.015701277181506157, -0.06442485004663467, -0.018625514581799507, 0.04516258090734482, -0.020554760470986366, 0.0043104784563183784, 0.001647158875130117, -0.02724096179008484, -0.03267558291554451, 0.022062338888645172, 0.039565131068229675, 0.032709117978811264, 0.0007764291949570179, -0.020232992246747017, 0.015384801663458347, -0.015397032722830772, -0.005914812907576561, 0.03131101652979851, -0.00921433512121439, 0.006403513252735138, -0.011096064001321793, 0.06066587567329407, 0.007705312687903643, 0.06214740872383118, 0.051230136305093765, -0.05391202121973038, 0.024104254320263863, 0.062218260020017624, 0.01320635061711073, 0.008774291723966599, -0.005213345400989056, 0.047511354088783264, 0.03979490324854851, 0.01288258284330368, 0.0022871592082083225, 0.0263194777071476, 0.004359770566225052, 0.010637158527970314, 0.013734566047787666, 0.0559806302189827, -0.011958859860897064, -0.02557741478085518, -0.06122787669301033, -0.03680231422185898, 0.04126428812742233, -0.06139955669641495, -0.03368307277560234, 0.023271463811397552, 0.07147137820720673, -0.0011135253589600325, 0.08841778337955475, 0.0023919944651424885, -0.0715295746922493, 0.00744335213676095, 0.0136443842202425, 0.0060401251539587975, 0.0010312016820535064, 0.0166223905980587, 0.06942866742610931, 0.007157178595662117, -0.028339646756649017, 0.01439384650439024, -0.054310720413923264, -0.07391158491373062, -0.04888007417321205, -0.01695423014461994, 0.05492290481925011, -0.031155144795775414, -0.024304606020450592, 0.0741066187620163, 0.02915152534842491, 0.049465589225292206, 0.014915809035301208, -0.004692282993346453, 0.05208701640367508, -0.017104540020227432, -0.04033298417925835, 0.028343988582491875, 0.04248631373047829, 0.026423756033182144, -0.041802871972322464, 0.029365992173552513, -0.020889215171337128, -0.0009394038934260607, 0.05537707731127739, -0.014290676452219486, 0.029646392911672592, 0.020836152136325836, 0.00838916003704071, -0.023699244484305382, 0.05323005095124245, -0.056612689048051834, 0.01850961521267891, 0.010290567763149738, 0.01478737872093916, 0.016776032745838165, 0.005895649082958698, 0.11683948338031769, 0.05739857628941536, -0.02769007906317711, -0.04377274587750435, -0.01161130703985691, -0.004928033333271742, -0.04041196405887604, -0.01428877655416727, -0.025428110733628273, 0.0050319465808570385, -0.012235772795975208, -0.04115981236100197, -0.0010894922306761146, 0.01410264614969492, -0.026883002370595932, 0.027636142447590828, 0.080816350877285, -0.028275731950998306, 0.06187942251563072, -0.006658228114247322, -0.00426235469058156, -0.005454388912767172, -0.009448789060115814, -0.03772824630141258, 0.010343852452933788, -0.00011199287109775469, -0.007530375849455595, 0.06844645738601685, -0.01136790867894888, -0.015260275453329086, -0.004863793961703777, -0.01923440583050251, -0.003278580494225025, 0.0058296374045312405, 0.0531899519264698, 0.0135734211653471, 0.061069462448358536, 0.004044227302074432, -0.01928146742284298, -0.01659846492111683, -0.06650535017251968, -0.010839084163308144, 0.01264964509755373, 0.034519731998443604, 0.050688501447439194, 0.03160436078906059, -0.00566845154389739, 0.029795795679092407, 0.005253232084214687, -0.029049387201666832, -0.026163458824157715, 0.04420686885714531, -0.006522409617900848, -0.05818704515695572, -0.061307393014431, -0.055287450551986694, 0.037407707422971725, -0.03172381594777107, -0.03482311591506004, 0.015866011381149292, -0.07922837138175964, 0.05480078235268593, -0.08898397535085678, -0.05191168189048767, 0.007191671524196863, 0.03137638419866562, 0.03852471336722374, -0.002614906756207347, 0.0397997610270977, 0.10173481702804565, -0.005269703455269337, -0.0009071850799955428, -0.017986007034778595, -0.020637566223740578, 0.01169347669929266, -0.021328462287783623, 0.011954945512115955, 0.053671907633543015, -0.011694948188960552, -0.007483541965484619, -0.05780097469687462, 0.026153722777962685, -0.002034445060417056, -0.2574854791164398, 0.01736496388912201, -0.01844250038266182, -0.04205111414194107, 0.02459888905286789, -0.010985935106873512, 0.011470148339867592, -0.03630583733320236, -0.01790921948850155, 0.05317094922065735, -0.04528673365712166, -0.03902965784072876, -0.0575701966881752, 0.0535922572016716, 0.014784029684960842, 0.012145627290010452, -0.013971707783639431, -0.036086857318878174, 0.021121252328157425, 0.06734958291053772, -0.008263783529400826, -0.06756801903247833, 0.0018947742646560073, 0.05443977192044258, 0.050136253237724304, 0.031074924394488335, -0.06452981382608414, 0.042687658220529556, -0.048884354531764984, 0.0009659890201874077, -0.030743177980184555, 0.017446858808398247, 0.018204227089881897, -0.05630932003259659, -0.010929984971880913, -0.04828718677163124, 0.002622233936563134, 0.042625632137060165, -0.017481481656432152, 0.02495298534631729, -0.03263375908136368, -0.06775088608264923, -0.017841607332229614, 0.0025728701148182154, 0.07625211775302887, 0.0025248066522181034, -0.0677567794919014, -0.009144534356892109, -0.0572468526661396, 0.07371876388788223, -0.023532528430223465, -0.052537232637405396, 0.010335433296859264, 0.02571522817015648, -0.029596181586384773, -0.035843025892972946, 0.014988904818892479, 0.021575262770056725, -0.04851416125893593, -0.002861326327547431, -0.0039202384650707245, -0.04705357924103737, -0.011912510730326176, -0.051511578261852264, 0.0009981744224205613, -0.05479928478598595, -0.05472762510180473, -0.02031892165541649, 0.06926168501377106, 0.04204745218157768, -0.024657556787133217, -0.026812881231307983, -0.017638150602579117, -0.10944991558790207, -0.0028604180552065372, -0.03706793487071991, -0.016417862847447395, -0.03356776386499405, 0.011288722977042198, 0.04483862221240997, -0.032573141157627106, -0.06278921663761139, 0.03786678984761238, 0.038961272686719894, 0.004513946361839771, -0.012997642159461975, 0.009916534647345543, 0.011705588549375534, -0.01320540439337492, 0.010749969631433487, 0.08506657183170319, -0.010463980957865715, -0.0062908027321100235, -0.05318155139684677, 0.0036666046362370253, 0.024947166442871094, 0.042157139629125595, -0.02405235730111599, 0.0014957704115658998, 0.017789294943213463, 0.038385067135095596, -0.03587048128247261, 0.025591693818569183, -0.05679621919989586, -0.014130503870546818, -0.019117597490549088, -0.07849583774805069, 0.0366511233150959, 0.02699192613363266, 0.0260158758610487, -0.0001601075055077672, -0.03147491067647934, -0.01805994287133217, -0.04678286612033844, -0.04041002690792084, -0.030173739418387413, 0.0058894711546599865, 0.023253338411450386, -0.013101541437208652, -0.005118431057780981, -0.0535888671875, 0.004198743496090174, 0.009533300995826721, -0.010564624331891537, -0.08497413992881775, -0.03364327549934387, -0.021593989804387093, -0.013642028905451298, 0.016782263293862343, 0.027138011530041695, -0.04080817848443985, 0.027659360319375992, -0.007789952214807272, -0.05737978219985962, 0.002757295034825802, -0.006314520258456469, -0.014176425524055958, -0.035896312445402145, -0.019247237592935562, -0.014701779000461102, 0.03415857255458832, -0.013066843152046204, 0.011297481134533882, 0.0012192237190902233, 0.04305253177881241, 0.004541126079857349, 0.03953314945101738, 0.04237795248627663, -0.027035607025027275, 0.00788173358887434, -0.01104162260890007, -0.05128365382552147, 0.00762300007045269, -0.02794637344777584, -0.03498804569244385, -0.0172144565731287, 0.02701554261147976, -0.044909097254276276, -0.015949584543704987, -0.01649540103971958, 0.01651463285088539, -0.03555544465780258, -0.03304038196802139, -0.03875856474041939, 0.010989815928041935, 0.06409426033496857, -0.03399595618247986, 0.048563454300165176, -0.042890697717666626, -0.014588922262191772, 0.017970293760299683, 0.027295704931020737, -0.042796533554792404, 0.03581898286938667, 0.0009053425746969879, 0.009916918352246284, -0.00010919365740846843, 0.0012532630935311317, 0.02897898480296135, 0.02130226604640484, 0.021339042112231255, -0.022799145430326462, 0.0140397809445858, -0.01877518743276596, 0.036300837993621826, -0.0019528560806065798, 0.008514054119586945, 0.0018015493405982852, -0.013759078457951546, 0.0014586225152015686, -0.033196572214365005, -0.01800980605185032, -0.019417788833379745, 0.033711060881614685, -0.04045514762401581, -0.057420216500759125, 0.011690091341733932, 0.04775325208902359, 0.008562496863305569, 0.013238126412034035, 0.012080395594239235, 0.010304843075573444, 0.005307571496814489, 0.01774176023900509, 0.0636330395936966, -0.03986503556370735, 0.03761329501867294, 0.007505067624151707, 0.019257834181189537, 0.017700454220175743, 0.011642388068139553, -0.01824129745364189, 0.0008037136285565794, -0.028414104133844376, -0.027399618178606033, -0.030543005093932152, -0.027955640107393265, -0.011996647343039513, 0.023863965645432472, -0.02272743172943592, -0.012458743527531624, -0.016589540988206863, -0.012055019848048687, -0.04238316789269447, -0.021388953551650047, 0.0003446940681897104, -0.017379729077219963, -0.0038028834387660027, 0.008994496427476406, -0.029107429087162018, 0.012469243258237839, -0.023469699546694756, 0.01858510635793209, 0.018581995740532875, -0.005178169347345829, -0.036608435213565826, -0.05622882768511772, 0.033204108476638794, -0.025649864226579666, 0.044916003942489624, -0.009847614914178848, -0.006420175079256296, -0.024238763377070427, -0.02607852779328823, -0.04441601037979126, 0.01803424395620823, -0.024422159418463707, -0.01337353978306055, 0.024964995682239532, 0.03193097934126854, -0.00556692760437727, 0.0372498482465744, 0.004719772841781378, 0.011281673796474934, 0.04794178903102875, -0.04075917974114418, -0.014410491101443768, -0.0269081462174654, -0.05131179466843605, 0.011185232549905777, 0.005767074413597584, 0.04854735732078552, -0.04790477454662323, 0.0482039712369442, 0.03676989674568176, 0.028356384485960007, 0.030964305624365807, 0.01654030568897724, 0.04030906781554222, -0.02656996250152588, 0.03618989139795303, -0.08576872199773788, 0.006623462308198214, 0.02578839287161827, 0.03831475228071213, -0.023935601115226746, -0.021220212802290916, -0.026457473635673523, 0.05977621302008629, -0.07980433106422424, -0.014814240857958794, 0.03635313734412193, 0.009786703623831272, 0.014369117096066475, 0.001845990540459752, -0.049555424600839615, 0.035325631499290466, 0.01728370226919651, -0.03473343700170517, -0.02210325188934803, -0.041781824082136154, 0.04874219745397568, 0.03167960047721863, 0.013701983727514744, -0.04499056190252304, 0.004284491762518883, 0.0725497230887413, 0.022461045533418655, 0.015014837495982647, 0.08447761833667755, -0.02350359410047531, 0.034546151757240295, 0.019007137045264244, -0.008067785762250423, -0.038199156522750854, -0.0022547815460711718, 0.008454077877104282, -0.06526602804660797, 0.0015145288780331612, 0.010506326332688332, -0.03650714084506035, -0.04855980724096298, 0.08122987300157547, 0.004301120527088642, -0.005742844194173813, -0.06660474091768265, 0.026279626414179802, -0.03523845970630646, -0.019520211964845657, -0.0316634364426136, 0.02953113242983818, -0.027407828718423843, 0.06366444379091263, 0.010740191675722599, -0.030818136408925056, 0.05933387950062752, -0.00030624051578342915, 0.008440349251031876, 0.004892509896308184, 0.0921235904097557, 0.061946284025907516, 0.07463828474283218, -0.016695667058229446, 0.062034424394369125, -0.0398700013756752, -0.04500922933220863, -0.0034308170434087515, -0.03931034728884697, 0.007217569276690483, -0.025196397677063942, 0.02423843741416931, 0.06674095243215561, 0.02145095355808735, 0.057283151894807816, -0.056773778051137924, -0.02306360751390457, -0.01249572541564703, 0.03521639108657837, 0.03375096246600151, 0.031567078083753586, 0.014764370396733284, 0.007463481742888689, 0.010672349482774734, -0.05483672022819519, 0.04715115949511528, -0.00982825830578804, -0.01836153119802475, 0.019300390034914017, 0.008442221209406853, 0.010136381722986698, -0.015799937769770622, 0.01633962243795395, 0.07514102756977081, -0.0009878999553620815, -0.017916377633810043, -0.021197674795985222, 0.041974347084760666, 0.02812216803431511, -0.05081569403409958, -0.01372777670621872, -0.02245226316154003, -0.0024539881851524115, 0.007404595613479614, -0.012361334636807442, -0.024897849187254906, -0.011634914204478264, 0.029338015243411064, -0.025627607479691505, 0.01604519598186016, -0.006322077941149473, 0.02817522920668125, -0.036316681653261185, -0.03175915405154228, -0.04176449775695801, -0.04029237851500511, -0.04667375609278679, -0.014518861658871174, 0.04039658233523369, -0.02686432935297489, -0.026255842298269272, -0.025326473638415337, -0.027930794283747673, -0.008365869522094727, 0.03424885869026184, -0.015877991914749146, -0.02928192727267742, 0.027438301593065262, 0.0012103162007406354, 0.06008116900920868, 0.026310572400689125, 0.03743739426136017, -0.006544234696775675, -0.008036600425839424, -0.05664050951600075, -0.01999914087355137, 0.05905924737453461, 0.01515262946486473, 0.009649651125073433, -0.07525630295276642, 0.02972998470067978, 0.018649568781256676, 0.010421885177493095, -0.07900527864694595, 0.016509778797626495, 0.015395700000226498, 0.019628014415502548, 0.04921772703528404, -0.022123539820313454, -0.03150900453329086, -0.013798179104924202, -0.008150618523359299, 0.022557511925697327, 0.026938602328300476, 0.05191916227340698, -0.025052988901734352, 0.08214307576417923, 0.008129831403493881, -0.026293102651834488, -0.013371462002396584, -0.020139915868639946, -0.021809248253703117, -0.002677884418517351, -0.030040694400668144, -0.011959484778344631, -0.020608285441994667, -0.04275011271238327, -0.0010140453232452273, 0.027160847559571266, -0.02399231493473053, -0.03505568951368332, 0.003862184239551425, 0.05373997613787651, -0.06136346235871315, 0.03927507624030113, -0.022285256534814835, 0.029265066608786583, -0.03228602558374405, -0.008355232886970043, 0.019281335175037384, 0.028529396280646324, 0.003049728460609913, 0.022890320047736168, 0.017270399257540703, -0.0428759939968586, -0.037817712873220444, -0.011832251213490963, 0.011621988378465176, 0.04380318522453308, -0.032856475561857224, 0.028465697541832924 ]
[ -0.0956919714808464, -0.02346692606806755, -0.017235836014151573, -0.051718298345804214, 0.02106066234409809, -0.03140673786401749, 0.019292116165161133, 0.018254661932587624, 0.03491247072815895, -0.01599067822098732, -0.0018234291346743703, -0.03589008376002312, -0.0069409762509167194, 0.006896401755511761, 0.07489855587482452, -0.015029837377369404, -0.04747823253273964, -0.0520213320851326, -0.0047062155790627, 0.044726286083459854, 0.07057902961969376, -0.033322643488645554, -0.051081717014312744, -0.030565805733203888, 0.039165299385786057, 0.06243281066417694, -0.022461863234639168, -0.05455630272626877, 0.02017919160425663, -0.2011157125234604, 0.011296856217086315, -0.010375360026955605, 0.05516069382429123, -0.04356503486633301, -0.00942772626876831, 0.017767323181033134, 0.012744847685098648, 0.06941063702106476, 0.012014138512313366, 0.05143370479345322, 0.009975466877222061, 0.01266126986593008, -0.030626419931650162, -0.013079955242574215, 0.03735194727778435, 0.004620791412889957, -0.02200150489807129, -0.01602260395884514, 0.0001817940647015348, 0.04209490865468979, -0.03369235247373581, -0.031562697142362595, -0.022412165999412537, 0.003320787101984024, 0.0039286226965487, 0.005243558902293444, 0.041134268045425415, 0.0595063678920269, 0.013234894722700119, 0.02568998746573925, -0.010748832486569881, -0.011983182281255722, -0.1350305825471878, 0.0755668580532074, 0.01156633161008358, 0.028146302327513695, -0.005608417093753815, -0.023451363667845726, 0.0170110035687685, 0.09559070318937302, 0.01142947282642126, -0.028623653575778008, 0.006452503148466349, 0.028377467766404152, 0.0179833322763443, -0.021011212840676308, -0.0037833445239812136, 0.031447503715753555, 0.033786531537771225, -0.009810814633965492, -0.0481402762234211, -0.015664763748645782, 0.006933963391929865, 0.006477437913417816, -0.005729058291763067, 0.034557800740003586, -0.0008147880434989929, 0.052326615899801254, 0.06628134846687317, -0.0023510705213993788, 0.040080148726701736, -0.012545539066195488, 0.015602447092533112, 0.014571128413081169, -0.07705949991941452, -0.010941163636744022, 0.010484694503247738, -0.013494758866727352, -0.02759588696062565, 0.4137595593929291, -0.003590440610423684, -0.0278919730335474, 0.026607820764183998, 0.02636769227683544, -0.02479921653866768, 0.0013929775450378656, -0.015133854933083057, -0.03841058537364006, 0.009228011593222618, -0.050178028643131256, -0.0030323308892548084, 0.02815721556544304, 0.026990100741386414, -0.07019225507974625, 0.01699800230562687, 0.008972383104264736, 0.001406925031915307, -0.008667441084980965, 0.009185091592371464, 0.010901336558163166, 0.018349459394812584, 0.004598746541887522, 0.026472952216863632, 0.02725507877767086, 0.01342097483575344, -0.01979994960129261, 0.02184326760470867, 0.060843661427497864, 0.016247456893324852, 0.020390817895531654, 0.09011432528495789, -0.00827047973871231, -0.11573900282382965, -0.017628462985157967, 0.0018573901616036892, 0.003454017685726285, 0.05772233009338379, -0.040554631501436234, 0.0013338327407836914, 0.0290629081428051, -0.011668787337839603, 0.02468154951930046, 0.000045524455345002934, -0.023638879880309105, -0.04519606754183769, 0.16820135712623596, -0.019377321004867554, -0.024487553164362907, 0.020321227610111237, -0.04983163997530937, 0.008751004934310913, 0.027357393875718117, -0.0012516247807070613, -0.08332332223653793, 0.028236063197255135, 0.04307468980550766, 0.07852713763713837, -0.043875325471162796, -0.03259875997900963, -0.033927273005247116, -0.06720998883247375, -0.0023960438556969166, -0.05740698426961899, 0.03991961479187012, 0.059654269367456436, -0.08416987210512161, -0.0009305272251367569, 0.026322370395064354, 0.008656367659568787, -0.09144294261932373, 0.0063697826117277145, 0.007623611018061638, -0.06374889612197876, -0.0182140301913023, 0.08864175528287888, -0.0013318571727722883, -0.02029707469046116, -0.0006727040163241327, 0.05791079252958298, 0.037238411605358124, 0.02505175955593586, 0.0026192953810095787, -0.05784367397427559, -0.018039874732494354, -0.03166816011071205, -0.05425618961453438, -0.021791953593492508, -0.02859557792544365, -0.04030972346663475, -0.008423025719821453, -0.04536854848265648, -0.003664158284664154, -0.1042526587843895, 0.08019423484802246, -0.046152062714099884, -0.026107292622327805, 0.05301617085933685, -0.026729919016361237, -0.021921556442975998, -0.020877502858638763, 0.02822190709412098, 0.0022107225377112627, 0.01565699279308319, 0.052067968994379044, -0.01809261180460453, 0.07228012382984161, 0.030987022444605827, -0.03154761344194412, 0.05966104939579964, 0.043454624712467194, -0.022689541801810265, -0.048040080815553665, 0.016187399625778198, 0.0020997447427362204, -0.040185075253248215, -0.008190023712813854, 0.007910356856882572, 0.04670783132314682, 0.002310172887519002, 0.0007781843305565417, -0.03729754313826561, -0.02202281728386879, 0.025396263226866722, -0.3295544981956482, -0.03384217992424965, 0.0333537720143795, -0.03365582600235939, -0.008781642653048038, -0.058573998510837555, 0.02906494215130806, -0.030391961336135864, -0.05469732731580734, 0.011290743947029114, 0.09200664609670639, -0.02117798663675785, -0.00045912922360002995, -0.11089571565389633, -0.005940071772783995, 0.012715866789221764, -0.05048335716128349, -0.03228684142231941, -0.021077075973153114, 0.02351842261850834, 0.015497802756726742, 0.005804063752293587, 0.0023591250646859407, -0.04623529687523842, -0.010933523066341877, -0.04480889067053795, 0.0844074934720993, -0.054784465581178665, 0.12085991352796555, -0.023756688460707664, 0.048289939761161804, 0.011911634355783463, -0.031294357031583786, -0.062101855874061584, -0.004220804665237665, -0.036175940185785294, -0.03999236971139908, 0.006082518957555294, 0.0006881279987283051, -0.04409323260188103, -0.03258790820837021, 0.018154984340071678, -0.020553139969706535, -0.01861414685845375, -0.004171699285507202, 0.02354232408106327, -0.030930930748581886, -0.05803748592734337, -0.012715371325612068, 0.049853574484586716, -0.015358416363596916, -0.028736764565110207, 0.028894362971186638, 0.004283950664103031, 0.01692497543990612, -0.025616928935050964, -0.06593450158834457, 0.02484511025249958, -0.009769984520971775, 0.01908944733440876, 0.02843945100903511, 0.032110653817653656, 0.009762726724147797, -0.019699765369296074, 0.002028929302468896, -0.006241958122700453, 0.015912599861621857, -0.02596747688949108, 0.023968419060111046, -0.04389193281531334, -0.02136552706360817, 0.08381461352109909, -0.0024694057647138834, -0.004573030862957239, 0.0364747978746891, 0.036663834005594254, -0.016498716548085213, -0.00009326860890723765, 0.012641501612961292, 0.0175899900496006, -0.003019635332748294, 0.01337440311908722, 0.019916092976927757, -0.020244095474481583, -0.0033051955979317427, 0.003768044989556074, -0.0008517471142113209, 0.006936616729944944, 0.010744180530309677, -0.016060244292020798, -0.029016178101301193, -0.01430936623364687, 0.006519513204693794, -0.047982484102249146, 0.0402483306825161, 0.0037755852099508047, -0.28568896651268005, 0.004838138818740845, 0.049604158848524094, 0.04188033938407898, 0.0030879636760801077, 0.015671512112021446, 0.0364019051194191, -0.042941030114889145, -0.019536586478352547, 0.013514426536858082, 0.009270613081753254, 0.017960909754037857, 0.009294819086790085, 0.013700013980269432, 0.06045975536108017, -0.044836025685071945, 0.016346191987395287, -0.0006494028493762016, 0.04848876968026161, 0.004001756198704243, 0.05613517761230469, -0.004526359960436821, 0.17914974689483643, 0.002520610811188817, 0.06687813997268677, 0.027319226413965225, 0.022107115015387535, 0.007250795140862465, 0.1354433000087738, 0.013229496777057648, 0.004553234204649925, -0.005635045003145933, 0.08292936533689499, -0.003727427450940013, 0.00043775924132205546, -0.05916430056095123, 0.005060529336333275, 0.035363733768463135, 0.03836961090564728, 0.02056642808020115, 0.010560041293501854, -0.013307764194905758, -0.05646221339702606, 0.03281256556510925, 0.09554336220026016, 0.024431733414530754, 0.003783965716138482, -0.052406683564186096, -0.05167243257164955, -0.03124811127781868, -0.0344371497631073, -0.024395328015089035, -0.0013028301764279604, -0.02626364305615425, 0.005632102955132723, 0.05569549649953842, -0.009130763821303844, -0.031781621277332306, -0.027723336592316628, -0.005204498767852783, -0.014420716091990471, 0.016140813007950783, 0.06633008271455765, 0.008728386834263802, 0.015067839063704014 ]
[ -0.033072397112846375, 0.04359440505504608, -0.0180549044162035, 0.03198431059718132, -0.07052068412303925, 0.005439895670861006, 0.00847694929689169, -0.010036997497081757, 0.015513414517045021, 0.04430772736668587, -0.0030463417060673237, -0.027323924005031586, -0.013475789688527584, -0.015727166086435318, 0.017761869356036186, -0.03922034800052643, -0.0006693123141303658, 0.009107277728617191, 0.008252696134150028, -0.007717770989984274, 0.022234827280044556, 0.02220233343541622, 0.03124266117811203, 0.019308488816022873, 0.0489814318716526, -0.0014848418068140745, -0.028776390478014946, -0.02391505427658558, 0.021351853385567665, -0.1044047400355339, -0.019826751202344894, -0.036673404276371, -0.030672958120703697, 0.023029649630188942, -0.0479842945933342, -0.05480487272143364, 0.02626577392220497, 0.055042196065187454, -0.023416273295879364, -0.006077859550714493, -0.013494024984538555, 0.0017928731394931674, -0.013918554410338402, -0.011320716701447964, -0.0056043933145701885, -0.019414549693465233, 0.03089176118373871, -0.03283209726214409, 0.041011687368154526, 0.014264118857681751, 0.008760124444961548, 0.009602952748537064, -0.00034746809978969395, 0.03233160451054573, 0.0882270485162735, -0.02211148478090763, -0.016804218292236328, 0.011688568629324436, -0.01585698127746582, -0.0251068864017725, -0.01889849081635475, 0.019750788807868958, -0.022307345643639565, -0.011922881938517094, 0.05504399538040161, -0.014625863172113895, -0.0013179644010961056, -0.01334123034030199, 0.0050406926311552525, -0.008621926419436932, -0.01035842951387167, 0.00524831423535943, 0.02537730149924755, -0.03253129869699478, -0.0013520020293071866, -0.034593336284160614, -0.027562759816646576, -0.013707666657865047, 0.015631752088665962, -0.004018277861177921, 0.014287476427853107, -0.0032823921646922827, -0.007361731491982937, -0.01461372897028923, 0.046052441000938416, -0.01261977944523096, -0.0007569396402686834, 0.0008453747141174972, 0.02179562672972679, -0.03846892714500427, -0.005760421976447105, 0.05796688795089722, 0.0033179817255586386, 0.0380847342312336, -0.08330860733985901, -0.011611956171691418, -0.011133366264402866, -0.0005945818265900016, -0.0030461992137134075, 0.7935119867324829, -0.01863599382340908, 0.04873830825090408, 0.03983867168426514, -0.0008550399215891957, 0.006115743424743414, -0.017484348267316818, 0.012524452060461044, -0.006672418676316738, 0.023643966764211655, -0.011409874074161053, 0.061066556721925735, 0.030314449220895767, 0.024678433313965797, 0.04753463342785835, 0.0003440533473622054, 0.047700006514787674, 0.04138550907373428, -0.009073933586478233, -0.024519124999642372, -0.025619590654969215, -0.01901239901781082, -0.010385539382696152, 0.04571522772312164, -0.0193567406386137, -0.0025286704767495394, -0.19960325956344604, -0.05065980926156044, -7.41108486701555e-33, 0.0011812978191301227, -0.018549464643001556, 0.04212811589241028, 0.019604122266173363, 0.02192815952003002, 0.017466621473431587, -0.0008156105759553611, 0.0047202641144394875, 0.034895725548267365, -0.02731504663825035, 0.04546274244785309, 0.0012556822039186954, -0.012852413579821587, 0.034993093460798264, 0.022418366745114326, -0.03277316689491272, 0.0005586819024756551, 0.008743305690586567, 0.04771213233470917, 0.01520770788192749, 0.015402102842926979, 0.016470355913043022, 0.042246006429195404, 0.02894778549671173, 0.010190671309828758, 0.022996509447693825, 0.029727254062891006, 0.003153267316520214, 0.006971816532313824, -0.025654520839452744, 0.03919341787695885, 0.011612764559686184, -0.026390912011265755, -0.03224603086709976, 0.025995677337050438, -0.021320361644029617, 0.013463465496897697, -0.017594173550605774, -0.011230465956032276, -0.0005312134744599462, -0.05241457000374794, -0.012812821194529533, 0.04178294911980629, -0.03525357320904732, -0.07250870019197464, -0.021110815927386284, -0.006449675187468529, 0.04736015200614929, 0.0703229308128357, -0.0033079078420996666, -0.04202080890536308, 0.013472309336066246, -0.007118308916687965, -0.00675249146297574, -0.04706154018640518, 0.039309918880462646, -0.03982434421777725, -0.006582067348062992, 0.01142680924385786, 0.04187249392271042, -0.0439925342798233, -0.01061833556741476, -0.03348049893975258, 0.0016013466520234942, -0.06021128594875336, -0.0063803838565945625, -0.012612617574632168, -0.014491060748696327, 0.06255980581045151, -0.013858990743756294, -0.052118416875600815, 0.015561774373054504, 0.0016381575260311365, -0.007997280918061733, 0.04333246126770973, -0.012412374839186668, -0.0065213898196816444, -0.03695540502667427, -0.023714937269687653, 0.00257691228762269, 0.005298590287566185, -0.02452017180621624, 0.0290492195636034, 0.007254408206790686, 0.02039468102157116, -0.0024924338795244694, -0.027719659730792046, 0.025521745905280113, -0.03908350691199303, 0.017278287559747696, 0.020092450082302094, 0.030600348487496376, -0.0018777778604999185, -0.010768990963697433, -0.032987043261528015, 6.840977453706434e-33, -0.02086954191327095, -0.012115906924009323, -0.053094569593667984, 0.003879621857777238, 0.06326357275247574, -0.02675175853073597, -0.014513541013002396, -0.0425494983792305, -0.045389916747808456, -0.019430894404649734, 0.017293602228164673, 0.000047101751988520846, -0.023003142327070236, 0.05061090365052223, 0.08260008692741394, -0.05722913146018982, 0.0004392426344566047, -0.007410839200019836, 0.03916652500629425, -0.011583492159843445, 0.0064461808651685715, -0.009477311745285988, 0.04144669696688652, -0.025285447016358376, 0.00034818981657736003, 0.03310408443212509, -0.041021257638931274, -0.00449113454669714, -0.006265677511692047, 0.029675915837287903, -0.020320774987339973, -0.023343253880739212, 0.00159263180103153, -0.056908268481492996, -0.027215739712119102, -0.02950184978544712, 0.020676221698522568, -0.022291239351034164, 0.020778262987732887, 0.02180439792573452, -0.008834055624902248, -0.001404915121383965, 0.0038753929547965527, 0.020920883864164352, 0.02399182878434658, -0.008100166916847229, 0.009580403566360474, -0.017591901123523712, 0.014608143828809261, 0.014302367344498634, 0.03282449394464493, -0.02247292920947075, -0.047529008239507675, 0.04474571719765663, -0.001880739233456552, -0.013972807675600052, 0.023288171738386154, -0.0487915500998497, -0.0020740460604429245, -0.029148006811738014, -0.03476892411708832, -0.007842565886676311, -0.025622686371207237, 0.052489884197711945, -0.01664077676832676, 0.033296726644039154, 0.01179152075201273, -0.025623032823204994, 0.016131596639752388, 0.039621882140636444, -0.024312160909175873, -0.016153475269675255, 0.021735364571213722, 0.0025023510679602623, -0.0017878810176625848, -0.01422971859574318, -0.004486825317144394, -0.0009770258329808712, 0.036683034151792526, 0.03386906161904335, 0.01579185575246811, -0.04494050145149231, 0.05565467104315758, -0.054807260632514954, -0.015057236887514591, -0.06170332059264183, 0.005629631225019693, 0.007154860068112612, -0.03525109961628914, -0.0033268106635659933, -0.04902610182762146, 0.032148562371730804, -0.03779396414756775, -0.0016864760546013713, -0.008225060068070889, -1.2599204346486204e-8, -0.047986261546611786, 0.002256296807900071, -0.008176738396286964, 0.039819978177547455, 0.025305919349193573, -0.007947607897222042, -0.03775319084525108, -0.010053873993456364, -0.0236359816044569, -0.025607699528336525, 0.014111748896539211, 0.007199719548225403, 0.027855729684233665, -0.029086222872138023, 0.0011065717553719878, -0.030154693871736526, -0.027532324194908142, 0.016439005732536316, -0.006252848543226719, -0.027979403734207153, -0.000976121868006885, 0.049115777015686035, -0.03331545740365982, 0.02021864801645279, 0.015317854471504688, 0.02603166736662388, -0.014846106059849262, -0.031105881556868553, -0.030641429126262665, 0.01665516011416912, 0.017521364614367485, -0.03830660134553909, 0.01766972616314888, 0.01558726653456688, -0.047624621540308, -0.0749283879995346, 0.004475171212106943, 0.0325809121131897, 0.037784211337566376, 0.012991031631827354, -0.008200140669941902, -0.004350729752331972, 0.06646567583084106, 0.006782714277505875, 0.04827076196670532, -0.028652718290686607, -0.028868915513157845, 0.014577986672520638, 0.04682774096727371, -0.01834733970463276, 0.03714410215616226, 0.025415310636162758, 0.016690297052264214, 0.00976263266056776, 0.013114423491060734, 0.03233536705374718, -0.022187452763319016, -0.03431737795472145, -0.05398660525679588, 0.017438145354390144, 0.04217967018485069, 0.009314972907304764, -0.05010092630982399, -0.0295303612947464 ]
functional-c-an-imperative-to-declarative-example
https://markhneedham.com/blog/2010/04/20/functional-c-an-imperative-to-declarative-example
false
2010-04-18 22:46:46
Coding: Another outside in example
[ "coding" ]
[ "Coding" ]
I've written before about http://www.markhneedham.com/blog/2010/03/02/riskiest-thing-first-vs-outside-in-development/[my thoughts on outside in development] and we came across another example last week where we made our life difficult by not initially following this approach. The rough design of what we were working on looked like this: image::{{<siteurl>}}/uploads/2010/04/outsideIn1.gif[outsideIn1.gif,410] My pair and I were working on the code to do the calculations and we deliberately chose not to drive the functionality from the UI because the other pair were reworking all our validation code and we didn't want to step on each others toes. We therefore started driving the code directly from the individual calculations and decided to create an object to represent each of the types of calculation. It worked quite well for all but one of the calculation classes, 'Calculation3, which became increasingly complicated as we added more test cases. At this stage we http://www.markhneedham.com/blog/2008/11/04/pair-programming-benefits-of-the-pair-switch-mid-story/[rotated pairs] and still unable to see a way to simplify 'Calculation3' we decided to try and drive it from the object which would actually make use of it. As http://twitter.com/darrenhobbs/statuses/12305120777[Darren Hobbs pointed out] in another discussion: ____ Don't design an API. Write the code that you'd want to be able to write to use your API. ____ In this case it became clear that the missing object which could drive out the Calculation objects was a 'Calculator': image::{{<siteurl>}}/uploads/2010/04/outsideIn2.gif[outsideIn2.gif,410] We started writing tests for the calculator and initially it didn't seem to make that much difference - the design of nearly all the individual 'Calculation' objects remained the same. However, once we got to the tests which would drive out the functionality currently in 'Calculation3' it became clear that we had actually got 3 objects inside 1 and that what we really needed in this case was an orchestrating class which could delegate down to small objects to do the calculations. image::{{<siteurl>}}/uploads/2010/04/outsideIn3.gif[outsideIn3.gif,455] The most interesting thing about this situation for me is that I often do drive code from the outside in and I've even http://www.markhneedham.com/blog/2009/12/19/coding-an-outside-in-observation[previously written about the benefits of doing so] but in this context I got it wrong and it was a slightly painful lesson!
null
null
[ 0.03565296530723572, 0.011020610108971596, 0.0038836896419525146, 0.02800496481359005, 0.07549610733985901, 0.013082103803753853, 0.0083925761282444, 0.0405234657227993, 0.017797719687223434, -0.009836792945861816, 0.0016381799941882491, 0.0043005491606891155, -0.0669289231300354, -0.0019170307787135243, -0.023496145382523537, 0.07147412747144699, 0.07780784368515015, -0.000624772219453007, 0.019388198852539062, 0.027195999398827553, 0.021304374560713768, 0.07555557042360306, -0.0000063704451349622104, 0.03578999266028404, 0.0326303206384182, 0.021717194467782974, 0.004307168070226908, -0.00463242270052433, -0.050813328474760056, -0.007171696983277798, 0.033671360462903976, 0.02135089971125126, 0.003775486024096608, 0.0004493111337069422, 0.0037411428056657314, -0.016659744083881378, -0.029317524284124374, 0.0063033257611095905, 0.017059674486517906, 0.03499212488532066, -0.040816694498062134, 0.02935941144824028, -0.022232122719287872, -0.010433675721287727, -0.04932323470711708, -0.0021992078982293606, -0.03933399170637131, 0.008260375820100307, -0.02955668978393078, 0.0005529284826479852, -0.06218407675623894, 0.0545027032494545, -0.03295697271823883, -0.0038715663831681013, -0.012068154290318489, 0.05417367070913315, 0.03087710402905941, -0.08298160135746002, 0.026069458574056625, -0.03504706546664238, 0.012518052943050861, 0.00636457372456789, 0.005622025579214096, 0.027806643396615982, 0.000910154776647687, -0.025317445397377014, -0.013130697421729565, 0.0363323949277401, -0.022242572158575058, -0.016510866582393646, -0.013523676432669163, -0.005410699173808098, 0.003862453857436776, -0.04655442014336586, -0.0002831190649885684, -0.04355712980031967, 0.002064566360786557, 0.07298111170530319, 0.013261337764561176, 0.019617188721895218, -0.015734713524580002, 0.020299600437283516, 0.010267902165651321, 0.02961619757115841, -0.0011654135305434465, -0.03233980014920235, -0.010331743396818638, -0.015798892825841904, -0.04680779203772545, 0.0645163357257843, 0.029746105894446373, -0.05663945898413658, 0.016994530335068703, 0.031958289444446564, 0.004467307589948177, 0.01551906019449234, 0.013364679180085659, 0.018153000622987747, 0.01133648306131363, -0.010576789267361164, -0.03381863608956337, -0.01051642931997776, 0.020406341180205345, 0.002273763995617628, -0.06588977575302124, -0.02435402385890484, -0.02456655725836754, -0.028376881033182144, 0.020458916202187538, -0.0007876760209910572, -0.00840574037283659, 0.026541797444224358, -0.01839204505085945, 0.008629378862679005, -0.05386839807033539, 0.051999326795339584, -0.000674347160384059, -0.035527560859918594, -0.029158562421798706, 0.03556596487760544, 0.04882872477173805, 0.0024785054847598076, -0.03318415582180023, 0.08431468904018402, 0.03003668040037155, 0.04540993645787239, -0.01470633689314127, 0.0577131025493145, -0.025389881804585457, -0.06419679522514343, -0.0161606352776289, 0.03047098033130169, -0.04003419727087021, 0.005501851439476013, 0.011444556526839733, -0.03918933868408203, -0.00895173754543066, -0.010382898151874542, 0.044166117906570435, 0.044813938438892365, -0.009617934934794903, -0.04118051379919052, 0.014853546395897865, -0.008297037333250046, 0.019360508769750595, 0.014389263466000557, 0.004467812832444906, -0.014645620249211788, -0.0400630459189415, 0.019963271915912628, 0.004563031252473593, -0.0032815111335366964, 0.026986705139279366, -0.04244210571050644, 0.017521832138299942, 0.08524739742279053, 0.04183196648955345, 0.022984465584158897, -0.03186012804508209, 0.029957175254821777, 0.03821446746587753, 0.032384827733039856, 0.0064566610381007195, 0.02159363403916359, -0.0034458686131983995, 0.00444199750199914, 0.015739576891064644, 0.061148080974817276, -0.015875736251473427, 0.005005151964724064, -0.06620508432388306, -0.06881296634674072, 0.0757908895611763, -0.0440710186958313, -0.03768507391214371, 0.022783370688557625, 0.08394481241703033, 0.008827561512589455, 0.049516983330249786, 0.010000251233577728, -0.07543721795082092, 0.016618086025118828, 0.03328482434153557, 0.028389722108840942, 0.025722719728946686, -0.02068042755126953, 0.07167823612689972, 0.018671777099370956, -0.01694548688828945, 0.029494713991880417, -0.06519603729248047, -0.09608303010463715, -0.024833496659994125, -0.008636386133730412, 0.04358825087547302, -0.03505980595946312, -0.00468035414814949, 0.06751543283462524, 0.011907771229743958, 0.038558050990104675, 0.001323171891272068, 0.0013272255891934037, 0.03408374637365341, -0.046836968511343, -0.033462829887866974, 0.039496466517448425, 0.048671599477529526, -0.008154003880918026, -0.05656792223453522, 0.019224798306822777, -0.01851877011358738, 0.0013235645601525903, 0.042852893471717834, -0.01792280748486519, 0.015885256230831146, 0.02603505738079548, 0.05104067549109459, -0.016781583428382874, 0.037616703659296036, -0.0660189762711525, -0.001424538902938366, 0.018257560208439827, -0.009660882875323296, 0.0018751886673271656, 0.009680227376520634, 0.1263420432806015, 0.05649491026997566, -0.04141882807016373, -0.0473332516849041, 0.02204866334795952, -0.017130842432379723, -0.03815805912017822, -0.010874997824430466, -0.025171417742967606, -0.008204295299947262, 0.014496151357889175, -0.04974561557173729, -0.020705828443169594, 0.01566924713551998, -0.027989530935883522, 0.005452961195260286, 0.06273804605007172, -0.027011916041374207, 0.03684035688638687, -0.01565222255885601, -0.014184387400746346, -0.0017474077176302671, -0.025763144716620445, -0.05475064367055893, 0.008404281921684742, -0.002553211059421301, -0.008128286339342594, 0.05345168337225914, -0.00868287030607462, -0.03357897326350212, -0.03313366696238518, -0.021656937897205353, 0.013471574522554874, 0.04231475293636322, 0.04539519175887108, 0.015842057764530182, 0.05942285805940628, 0.0021854748483747244, 0.01045891921967268, -0.02483750320971012, -0.049729667603969574, -0.025060318410396576, 0.003737775143235922, 0.02083364687860012, 0.05354440212249756, 0.023555217310786247, 0.022349508479237556, 0.024988573044538498, 0.018864115700125694, 0.0010961592197418213, -0.01051969826221466, 0.03201359882950783, -0.009055456146597862, -0.022314485162496567, -0.021850960329174995, -0.0035805879160761833, 0.05390404164791107, -0.035817671567201614, -0.019942130893468857, 0.03858719393610954, -0.06244788318872452, 0.06694358587265015, -0.08294714242219925, -0.05858525261282921, 0.010449208319187164, 0.016869107261300087, 0.04266859591007233, 0.003477958496659994, 0.01678120158612728, 0.08084704726934433, 0.0245819054543972, -0.009114665910601616, -0.0023174623493105173, 0.01281066332012415, 0.041147105395793915, 0.017901217564940453, 0.020353324711322784, 0.0419006310403347, -0.00804002396762371, -0.006705280393362045, -0.038722872734069824, 0.015015596523880959, 0.0030877413228154182, -0.3083760142326355, 0.01977064646780491, -0.012544670142233372, -0.031421612948179245, 0.024820061400532722, -0.01756860874593258, 0.018932683393359184, -0.035005468875169754, -0.008335854858160019, 0.025553695857524872, -0.03753668814897537, -0.058600738644599915, -0.03278186917304993, 0.05004731938242912, 0.0004188125312794, 0.016191666945815086, 0.03886367380619049, -0.03143969923257828, 0.003880221862345934, 0.03750218451023102, -0.01700645126402378, -0.0911487340927124, -0.010827477090060711, 0.03618845343589783, 0.02604025788605213, 0.04527861252427101, -0.08964677155017853, 0.022108614444732666, -0.053850553929805756, -0.004522697068750858, 0.013301135040819645, 0.007747585419565439, 0.011531244963407516, -0.008463706821203232, -0.012242275290191174, -0.0015660846838727593, 0.03470149636268616, -0.000492057588417083, 0.012361534871160984, 0.031116077676415443, -0.033291492611169815, -0.01506448071449995, -0.01089085079729557, 0.02559436298906803, 0.09028731286525726, -0.03050147369503975, -0.051807302981615067, 0.014899484813213348, -0.04894440993666649, 0.06750556081533432, -0.027769112959504128, -0.024528298527002335, -0.011633523739874363, 0.04480946809053421, -0.00978386215865612, -0.032984402030706406, -0.0028917049057781696, -0.0024803681299090385, -0.04299688711762428, -0.043300237506628036, 0.0007194078643806279, -0.035035740584135056, -0.016403652727603912, -0.04363052174448967, 0.012387696653604507, -0.0712360069155693, -0.051693543791770935, -0.009484346024692059, 0.06627172231674194, 0.027652425691485405, -0.040146104991436005, 0.023309458047151566, -0.0023449535947293043, -0.12227145582437515, -0.01428051758557558, -0.0030454518273472786, -0.004868233576416969, -0.012726418673992157, 0.001862005447037518, 0.03153936192393303, -0.029558297246694565, -0.06747982650995255, 0.03581651672720909, 0.02646940015256405, 0.011499871499836445, -0.027907170355319977, 0.048482976853847504, 0.011785868555307388, 0.003990331664681435, 0.031970683485269547, 0.0937231108546257, -0.012020919471979141, -0.01791025511920452, -0.023411676287651062, 0.015738248825073242, 0.02999967522919178, 0.04345511272549629, -0.011973119340837002, -0.011148640885949135, 0.044729411602020264, 0.006082788575440645, -0.05364523082971573, 0.03314013034105301, -0.022898109629750252, -0.0002808455319609493, -0.01485793199390173, -0.03859642893075943, 0.030172983184456825, 0.012651274912059307, 0.03741610050201416, -0.0015118438750505447, -0.028762899339199066, -0.003959775902330875, -0.042342688888311386, -0.04158717393875122, -0.006765322294086218, 0.021059326827526093, 0.019446711987257004, -0.014236758463084698, -0.019388606771826744, -0.045609038323163986, 0.008018708787858486, 0.022355476394295692, -0.021451067179441452, -0.0669081062078476, -0.034544821828603745, -0.02306489273905754, -0.008472933433949947, 0.03387393057346344, 0.02446119301021099, -0.023875467479228973, 0.05406839773058891, -0.0025365015026181936, -0.024438004940748215, 0.00029134241049177945, -0.003280811943113804, -0.046671707183122635, -0.020470330491662025, 0.009638909250497818, -0.002156942617148161, 0.027745382860302925, 0.018683403730392456, 0.022701801732182503, 0.015780026093125343, 0.04398534074425697, -0.01766606979072094, 0.03347567841410637, -0.008124732412397861, 0.011055144481360912, 0.002838833723217249, -0.01566445641219616, -0.08170516043901443, 0.0034417996648699045, -0.040497083216905594, -0.038128554821014404, -0.02618715912103653, 0.018741734325885773, -0.029678352177143097, -0.0485394150018692, -0.031464241445064545, 0.028041476383805275, -0.03219829872250557, -0.05265243723988533, -0.014236371032893658, -0.00582923972979188, 0.06932589411735535, -0.007708657532930374, 0.023641183972358704, -0.014459468424320221, -0.02153920941054821, 0.017752429470419884, 0.015456536784768105, -0.033737435936927795, 0.015319528989493847, -0.006418451201170683, 0.0009380242554470897, -0.015104911290109158, -0.02940221317112446, 0.04410723224282265, 0.007117337081581354, -0.011945447884500027, -0.025165358558297157, 0.02287757396697998, 0.01649080216884613, 0.052857354283332825, 0.0005552469519898295, -0.0029080030508339405, 0.0033418091479688883, 0.0003395400126464665, -0.0149423498660326, -0.06266807019710541, -0.008811058476567268, 0.006341693457216024, 0.03204644098877907, -0.029613442718982697, -0.08828652650117874, 0.033940114080905914, 0.01575239934027195, 0.016853099688887596, 0.019111260771751404, -0.012927243486046791, 0.021239440888166428, -0.016627267003059387, 0.01922956481575966, 0.06633295863866806, -0.04218336194753647, 0.030657462775707245, 0.012170999310910702, 0.02512790821492672, -0.00996458251029253, 0.001122723100706935, -0.04984953626990318, -0.0440390482544899, -0.0272175595164299, -0.011135568842291832, -0.05536958947777748, -0.01920095458626747, -0.022507132962346077, 0.009859120473265648, -0.021546779200434685, -0.012582801282405853, 0.012296443805098534, -0.016022933647036552, -0.027585899457335472, -0.02270599454641342, 0.008792760781943798, -0.039441194385290146, 0.013616716489195824, 0.026187699288129807, -0.027954280376434326, 0.022442786023020744, -0.009211075492203236, 0.02788247913122177, 0.02749963104724884, -0.001142321852967143, -0.026690475642681122, -0.03760073706507683, -0.004310770891606808, -0.012587685137987137, 0.04610390216112137, -0.0059714969247579575, -0.014451310969889164, -0.043388012796640396, -0.004466162994503975, -0.03592709079384804, 0.015886642038822174, -0.02066703885793686, -0.014464241452515125, 0.043855972588062286, 0.05936004966497421, 0.00042247356032021344, 0.014405546709895134, -0.008889209479093552, -0.015165524557232857, 0.020209306851029396, -0.07227949798107147, -0.013396238908171654, -0.028453713282942772, -0.04277218133211136, 0.009677206166088581, -0.0007133115432225168, 0.028468964621424675, -0.06352773308753967, 0.03463131934404373, 0.023681918159127235, 0.037660595029592514, 0.05649026110768318, -0.01886734552681446, 0.04454772174358368, -0.05351980775594711, 0.019871577620506287, -0.09374410659074783, 0.014302968978881836, 0.02893497608602047, -0.005179561674594879, -0.031099900603294373, 0.004488777369260788, -0.04782290384173393, 0.04257648438215256, -0.08809400349855423, -0.027957912534475327, 0.057227831333875656, 0.013141072355210781, -0.010438247583806515, -0.005676080007106066, -0.050323452800512314, 0.02702142298221588, 0.03165852651000023, -0.04490212723612785, -0.018270280212163925, -0.02666780725121498, 0.05190947651863098, -0.004534652456641197, 0.01281550619751215, -0.006693242117762566, -0.005359155125916004, 0.08446463197469711, 0.015756893903017044, 0.005508890375494957, 0.037368662655353546, -0.013977259397506714, 0.0444929413497448, 0.026660596951842308, 0.004798767622560263, -0.003023375989869237, 0.015220661647617817, -0.010230667889118195, -0.0629132017493248, 0.013767835684120655, 0.020553790032863617, -0.038891471922397614, -0.04431784898042679, 0.06760560721158981, 0.017639920115470886, -0.033745430409908295, -0.05286678671836853, 0.010625205002725124, -0.06533563882112503, -0.014184290543198586, -0.002266212832182646, -0.015066243708133698, -0.04339742660522461, 0.05601922795176506, -0.021904977038502693, -0.012031999416649342, 0.07350791245698929, 0.017646217718720436, -0.030485032126307487, -0.018739087507128716, 0.08207245916128159, 0.06119360029697418, 0.05716041475534439, -0.009936682879924774, 0.058102380484342575, -0.023621244356036186, -0.04337015375494957, 0.001574715948663652, -0.03520195931196213, -0.013031907379627228, -0.03425055742263794, 0.024695279076695442, 0.06845586746931076, -0.005630772560834885, 0.048133015632629395, -0.02089942805469036, -0.01911506988108158, 0.004636401776224375, 0.019768059253692627, -0.000696152972523123, 0.0739779993891716, 0.02418767474591732, 0.0001836894516600296, -0.01688396744430065, -0.05342487618327141, 0.02495625987648964, -0.03581489995121956, -0.01813564822077751, 0.018817352131009102, -0.0036369848530739546, 0.026089994236826897, -0.000011137568435515277, 0.046004824340343475, 0.0757061317563057, -0.03067801520228386, 0.0008883934933692217, 0.007703533861786127, 0.061190344393253326, 0.003179884050041437, -0.007183469831943512, -0.014926624484360218, -0.022541599348187447, -0.00918690487742424, -0.02928765118122101, -0.010194898582994938, -0.009964575059711933, -0.026221267879009247, 0.07151708751916885, -0.020943019539117813, -0.0007581950630992651, 0.016757730394601822, 0.0032181497663259506, -0.02711580879986286, -0.06296371668577194, -0.04549114406108856, -0.05486972630023956, -0.06986422836780548, -0.008955949917435646, 0.025781365111470222, -0.015235190279781818, -0.037303801625967026, -0.014256331138312817, -0.009543068706989288, 0.010042260400950909, 0.04352261871099472, -0.049688491970300674, -0.036602385342121124, 0.04876904934644699, 0.02026272937655449, 0.01809827983379364, 0.0008862853283062577, 0.051341768354177475, -0.00201740232296288, -0.024422619491815567, -0.04453432559967041, -0.006991483271121979, 0.02429192140698433, 0.022428536787629128, -0.003961500711739063, -0.06297845393419266, 0.011546534486114979, 0.04125107824802399, -0.015432115644216537, -0.06922747939825058, 0.03189218416810036, 0.009597819298505783, 0.009226827882230282, 0.048806898295879364, -0.03678182139992714, 0.0006155669107101858, -0.037022411823272705, -0.007174806669354439, -0.0003672547754831612, 0.024518344551324844, 0.04729854315519333, -0.0222226120531559, 0.09174526482820511, 0.006182915531098843, -0.018943097442388535, -0.015444900840520859, -0.002365990774706006, -0.01858823001384735, -0.0036460391711443663, -0.03165743872523308, -0.05133659020066261, -0.03315918147563934, -0.0759797915816307, -0.019132019951939583, 0.01824006251990795, -0.03707130625844002, -0.031753674149513245, 0.006119638215750456, 0.03128519654273987, -0.0292339064180851, 0.03967760503292084, -0.04423040896654129, 0.0368172861635685, -0.03195171803236008, 0.010506859049201012, 0.019037485122680664, 0.014558120630681515, -0.00011467486910987645, 0.029768208041787148, 0.0014872160973027349, -0.042514558881521225, -0.020115576684474945, -0.0022824835032224655, 0.023145345970988274, 0.0057927812449634075, 0.007329960353672504, -0.0023687207140028477 ]
[ -0.10202690958976746, -0.019804364070296288, -0.03485811501741409, -0.021106913685798645, 0.024171043187379837, -0.03646499663591385, -0.009275935590267181, 0.015150375664234161, 0.016355058178305626, -0.0034392778761684895, -0.02109639346599579, -0.03287224471569061, 0.0057137454859912395, -0.013188079930841923, 0.0710197240114212, -0.023257996886968613, -0.043870363384485245, -0.07792392373085022, -0.011755935847759247, 0.020954152569174767, 0.02937374822795391, -0.03279983997344971, -0.04167497903108597, -0.03790317103266716, 0.006186534650623798, 0.0647357925772667, 0.0005165811162441969, -0.012188496999442577, 0.04281071946024895, -0.2059122771024704, -0.007260696962475777, -0.004237273242324591, 0.047606710344552994, -0.039065998047590256, -0.01525125466287136, 0.05456310510635376, 0.02116324193775654, 0.0420958548784256, -0.007886216044425964, 0.02999274991452694, 0.02351263538002968, 0.023346908390522003, -0.02176220715045929, -0.03401148319244385, 0.042765211313962936, 0.022198006510734558, -0.012890884652733803, -0.03409579023718834, -0.013046272099018097, 0.029857460409402847, -0.03206239640712738, -0.038179121911525726, -0.023413822054862976, -0.01389608345925808, 0.006662149913609028, 0.0355612114071846, 0.023841602727770805, 0.0913306325674057, -0.007721646223217249, 0.0393846221268177, 0.020335957407951355, -0.02942432090640068, -0.12201087176799774, 0.06957139819860458, 0.033110588788986206, 0.04896312579512596, -0.03271471709012985, -0.047485992312431335, -0.007060919422656298, 0.0857081189751625, 0.024330127984285355, -0.03222384303808212, 0.007118505425751209, 0.03396833315491676, 0.02468537725508213, -0.008411596529185772, -0.013647038489580154, 0.020426498726010323, 0.0429055355489254, -0.03239520266652107, -0.015487629920244217, -0.01575302705168724, -0.03554542735219002, 0.011704533360898495, -0.028191162273287773, 0.02012494020164013, -0.016881687566637993, 0.04466280713677406, 0.05250711739063263, 0.019222166389226913, 0.04142344743013382, -0.02286902815103531, 0.03311419114470482, -0.0010141723323613405, -0.04737746715545654, -0.004343895707279444, 0.01075404416769743, 0.00042455465882085264, -0.039157141000032425, 0.47149577736854553, -0.03991396352648735, -0.010552609339356422, 0.0576208122074604, 0.0395534485578537, -0.013423193246126175, -0.017009969800710678, -0.00034829616197384894, -0.0651291161775589, 0.02133389562368393, -0.02886960841715336, 0.0077243587002158165, 0.01807302050292492, 0.037287574261426926, -0.0324309803545475, -0.02116449363529682, 0.011148357763886452, 0.013350946828722954, 0.014793314039707184, 0.02085338532924652, 0.004370272159576416, 0.0026558530516922474, 0.017003759741783142, 0.023664269596338272, 0.007076197303831577, -0.013279514387249947, -0.020996904000639915, 0.021451663225889206, 0.047810424119234085, 0.005183846689760685, 0.027276597917079926, 0.07184768468141556, -0.055780183523893356, -0.07539749890565872, -0.005770286079496145, -0.007582725025713444, 0.010016810148954391, 0.03344675898551941, -0.006475056055933237, 0.008781950920820236, 0.05839094519615173, 0.005899695213884115, 0.003472622949630022, 0.021587369963526726, -0.009209421463310719, 0.0010655553778633475, 0.12742245197296143, -0.01091873086988926, -0.031447019428014755, 0.010894030332565308, -0.03389032930135727, 0.01685049943625927, 0.04378556087613106, -0.02250819280743599, -0.05728005990386009, 0.02598467282950878, 0.017400089651346207, 0.0629076436161995, -0.02447010949254036, -0.03254828229546547, -0.01577490009367466, -0.03806568309664726, -0.01458941213786602, -0.06136738881468773, 0.030151842162013054, 0.05482381954789162, -0.10833566635847092, -0.003951175604015589, 0.025411643087863922, 0.030136343091726303, -0.08275696635246277, 0.0198780857026577, 0.01459541916847229, -0.02809372916817665, -0.025916846469044685, 0.07714974135160446, -0.016449756920337677, -0.03921876475214958, 0.028949785977602005, 0.04173408821225166, 0.011433261446654797, 0.0012156096054241061, -0.010533091612160206, -0.042273275554180145, -0.010562016628682613, -0.06409236043691635, -0.06334616988897324, -0.027849024161696434, -0.01991194486618042, -0.06082267314195633, 0.008780349977314472, -0.006348007824271917, -0.027580656111240387, -0.12030936777591705, 0.08026455342769623, -0.046844303607940674, -0.019152507185935974, 0.02121591940522194, -0.023444177582859993, -0.03875507414340973, -0.001411436009220779, 0.01231088861823082, 0.0010994154727086425, -0.0005238596349954605, 0.021611789241433144, -0.051750004291534424, 0.06116262450814247, 0.06982272118330002, -0.03696104884147644, 0.07992354780435562, 0.05870150029659271, -0.023171069100499153, -0.0651896521449089, -0.00634616706520319, 0.010675322264432907, -0.007321545854210854, -0.016384970396757126, 0.0061943419277668, 0.0071302419528365135, -0.01754690147936344, 0.007250436116009951, -0.022763369604945183, -0.01610928401350975, -0.008536848239600658, -0.35621359944343567, -0.05416331812739372, -0.01365624275058508, -0.01613493077456951, 0.007824103347957134, -0.0719882994890213, 0.0038173848297446966, -0.010999100282788277, -0.05502431094646454, 0.016198521479964256, 0.08164797723293304, -0.005234224256128073, 0.009729183278977871, -0.06691984087228775, -0.009585651569068432, 0.028874022886157036, -0.04527066648006439, -0.014283924363553524, -0.03258633241057396, 0.037162452936172485, -0.01954534463584423, 0.0010694940574467182, -0.028758402913808823, -0.04832427203655243, 0.018276968970894814, -0.055777307599782944, 0.09419157356023788, -0.02135961316525936, 0.0919482409954071, -0.030609477311372757, 0.027106106281280518, -0.006460545584559441, 0.013324747793376446, -0.06556522846221924, 0.018328627571463585, -0.008133528754115105, -0.015113530680537224, -0.013959790579974651, 0.019039584323763847, -0.052598778158426285, -0.058659546077251434, 0.020715724676847458, -0.017459318041801453, -0.02894808165729046, -0.029734471812844276, 0.013383332639932632, -0.036452390253543854, -0.03176061436533928, -0.019352318719029427, 0.07270261645317078, 0.006708823144435883, -0.006364806555211544, 0.033330097794532776, -0.004800743423402309, -0.010852518491446972, -0.02103591151535511, -0.07853420823812485, 0.025778234004974365, 0.010630350559949875, 0.015232114121317863, 0.003812569659203291, 0.046302907168865204, 0.026184702292084694, -0.03315715119242668, -0.0034836556296795607, 0.005442558787763119, 0.005982059054076672, -0.029626721516251564, 0.03620140999555588, -0.007247409783303738, -0.011410150676965714, 0.10729166865348816, 0.010909815318882465, 0.0019907711539417505, 0.03547729179263115, 0.02141461707651615, 0.005764345172792673, 0.0229488518089056, 0.046293627470731735, 0.01775169000029564, 0.014450817368924618, -0.017687197774648666, 0.03547374904155731, -0.025369608774781227, 0.0014736928278580308, 0.012149964459240437, 0.015510640107095242, -0.02307543158531189, 0.025827938690781593, -0.014179433695971966, -0.01266974676400423, -0.019842257723212242, -0.00019274950318504125, -0.05158291012048721, 0.07849472761154175, -0.011092603206634521, -0.25479626655578613, 0.0013307633344084024, 0.07610160857439041, 0.04407429322600365, -0.0013380168238654733, 0.027855727821588516, 0.035221703350543976, -0.03334164246916771, 0.0024443783331662416, -0.022071508690714836, 0.0010147735010832548, 0.029506243765354156, 0.02902379259467125, 0.004052787087857723, 0.058148205280303955, -0.021451588720083237, 0.030475979670882225, -0.010770848952233791, 0.024686584249138832, 0.010848427191376686, 0.030247095972299576, 0.0057189143262803555, 0.1707606017589569, 0.019092874601483345, 0.03251173719763756, 0.022335784509778023, 0.00034761702409014106, 0.015078078024089336, 0.08255741000175476, 0.0029785309452563524, -0.005058974027633667, 0.002319975523278117, 0.026652203872799873, 0.007067501544952393, 0.018696924671530724, -0.08181628584861755, -0.019451119005680084, 0.01957235299050808, 0.03171293064951897, 0.0004287550982553512, 0.015588915906846523, -0.010257682763040066, -0.027301451191306114, 0.021508246660232544, 0.07101398706436157, 0.027080195024609566, -0.0038546225987374783, -0.01686359941959381, -0.04833916574716568, -0.03634047135710716, -0.031159214675426483, -0.06156783178448677, -0.004395761992782354, -0.022207973524928093, 0.007890031673014164, 0.07764942198991776, 0.0012915327679365873, -0.01328563503921032, -0.02077545039355755, 0.008104472421109676, 0.00524534285068512, 0.00032990783802233636, 0.09502918273210526, 0.02210952155292034, 0.0255286768078804 ]
[ -0.03073621727526188, 0.03288479894399643, -0.02649650163948536, 0.023687446489930153, -0.026977170258760452, -0.0023224942851811647, -0.018731597810983658, 0.014509985223412514, 0.033281102776527405, -0.005559138488024473, -0.02240736223757267, 0.006015014834702015, 0.014295552857220173, -0.0002896888763643801, 0.0400693379342556, -0.01487729698419571, -0.024467507377266884, 0.010976984165608883, -0.002351469360291958, 0.011155235581099987, -0.02209734171628952, 0.026523353531956673, -0.011013959534466267, 0.010113133117556572, 0.03268919512629509, 0.014223377220332623, -0.025235135108232498, -0.03229615464806557, 0.03693592920899391, -0.11739878356456757, -0.04192152991890907, -0.040351852774620056, -0.011094541288912296, 0.0047851125709712505, -0.02490091510117054, -0.015231762081384659, -0.005476198624819517, 0.011453686282038689, -0.012948880903422832, -0.016976982355117798, 0.005464052781462669, 0.0031648115254938602, -0.0061389971524477005, -0.01582035794854164, -0.00035230396315455437, -0.00903569720685482, -0.015103577636182308, -0.045348621904850006, 0.007427979726344347, -0.01963840425014496, -0.03760010376572609, -0.0003358201065566391, -0.027263332158327103, 0.005076429340988398, 0.012328662909567356, -0.023372400552034378, 0.026882681995630264, -0.022060368210077286, -0.012030547484755516, -0.00903734378516674, -0.001257512136362493, 0.022366799414157867, -0.02187110297381878, -0.03701343014836311, -0.010515999048948288, -0.005219961982220411, -0.01676793023943901, -0.011861935257911682, 0.011580988764762878, 0.0026794043369591236, -0.03304499387741089, 0.03321142494678497, 0.00014207704225555062, -0.022952908650040627, 0.02978064864873886, -0.014632605016231537, 0.007938218303024769, -0.018795575946569443, 0.004493916407227516, -0.038183122873306274, -0.013795333914458752, 0.00449992623180151, 0.022616591304540634, 0.007477262057363987, 0.031192421913146973, 0.004353062715381384, -0.004553601611405611, 0.025936417281627655, 0.007407554425299168, -0.012336384505033493, -0.027547704055905342, 0.03157692775130272, -0.026674337685108185, 0.04056764394044876, -0.05941324308514595, -0.01783534698188305, -0.01078262273222208, -0.019961373880505562, 0.004031183663755655, 0.8686944842338562, -0.006480732467025518, 0.04234490543603897, 0.055240780115127563, 0.0058797807432711124, 0.01681964285671711, 0.027998939156532288, -0.009286514483392239, 0.010824241675436497, 0.019480573013424873, -0.03015385940670967, 0.0542696937918663, -0.00866602547466755, 0.029291626065969467, 0.024286987259984016, 0.002559932181611657, 0.05345379188656807, -0.00023272416729014367, -0.006819679867476225, 0.013058999553322792, 0.009201308712363243, 0.011835052631795406, 0.013354523107409477, 0.01924031227827072, -0.013921358622610569, -0.0005430097226053476, -0.19238144159317017, 0.014365707524120808, -7.971039682553409e-33, 0.026088867336511612, -0.01835089921951294, -0.00027179872267879546, 0.0048725660890340805, 0.017296768724918365, 0.03586392477154732, -0.026049716398119926, -0.017245197668671608, 0.011330599896609783, -0.023662365972995758, -0.0016513323644176126, 0.013380460441112518, 0.01427264790982008, -0.014547891914844513, 0.05074312910437584, -0.008677550591528416, -0.014925893396139145, 0.014714629389345646, 0.008920994587242603, 0.01693313755095005, 0.048668209463357925, 0.001536739757284522, -0.031412579119205475, 0.007329427171498537, -0.0331864170730114, 0.05237307772040367, 0.0277642123401165, 0.015171907842159271, -0.014911985024809837, -0.04832809045910835, 0.02154720015823841, 0.028771044686436653, -0.013331707566976547, -0.0433066263794899, 0.0252807829529047, -0.03079204075038433, -0.008879529312252998, -0.013561897911131382, -0.04213778302073479, 0.0181486327201128, -0.03144211322069168, -0.007166458759456873, -0.0038514079060405493, -0.01652640476822853, -0.024598632007837296, 0.0030171149410307407, 0.012474840506911278, 0.044673219323158264, 0.02979024313390255, -0.01716296374797821, -0.033464524894952774, 0.028078487142920494, -0.0015691701555624604, -0.00999231543391943, -0.02169000543653965, 0.007904961705207825, -0.018033871427178383, 0.0020475261844694614, -0.010026981122791767, 0.010653994046151638, 0.0028934921137988567, -0.01696223020553589, -0.010601505637168884, 0.007585971150547266, -0.067953921854496, -0.0005770380375906825, -0.015538841485977173, -0.007592289708554745, 0.027531825006008148, -0.0085463747382164, -0.06538184732198715, 0.032408684492111206, -0.011851448565721512, -0.010311205871403217, 0.044496241956949234, -0.028513094410300255, 0.017590519040822983, -0.010136525146663189, -0.003635191358625889, 0.012445592321455479, 0.03331565856933594, 0.008773747831583023, 0.011641733348369598, -0.00551880057901144, -0.005704862531274557, 0.0041260081343352795, -0.007480509579181671, -0.002457349793985486, -0.05921519920229912, 0.018939903005957603, 0.01956271380186081, 0.04260815307497978, -0.018279079347848892, -0.018150707706809044, -0.021778475493192673, 7.55894589330167e-33, -0.03585099056363106, -0.02297479845583439, -0.018107455223798752, 0.006654917262494564, 0.00806422345340252, -0.016287270933389664, 0.025067724287509918, -0.010052367113530636, -0.022939302027225494, 0.029757317155599594, -0.02137015201151371, -0.008278871886432171, 0.0014077549567446113, 0.00849160086363554, 0.04863923788070679, -0.025576507672667503, -0.005578006152063608, -0.03466389328241348, 0.039200253784656525, -0.006496130023151636, 0.036898206919431686, 0.026012064889073372, 0.031667791306972504, 0.023169415071606636, -0.015666624531149864, 0.03885488957166672, -0.024324283003807068, -0.01214220467954874, -0.011919895187020302, -0.00027202616911381483, -0.02265569567680359, -0.005911891348659992, 0.01259169727563858, -0.023327307775616646, -0.02738032303750515, 0.029436247423291206, 0.0009139455505646765, -0.0432262197136879, 0.0036929466295987368, -0.0015902743907645345, -0.0006693690083920956, -0.007149276789277792, 0.00010616980580380186, 0.013015619479119778, 0.010580658912658691, 0.025485634803771973, 0.01616908609867096, -0.01702219247817993, 0.00003144900983897969, 0.010487079620361328, 0.009554877877235413, 0.005151926074177027, -0.016738208010792732, -0.0008954163640737534, -0.01984858326613903, -0.018170377239584923, -0.015217388980090618, -0.002665010979399085, -0.003202370135113597, 0.036333609372377396, 0.0037459249142557383, 0.004817344713956118, -0.011771013960242271, 0.024815350770950317, -0.0241696834564209, 0.022465495392680168, -0.029611550271511078, 0.009515129961073399, 0.0332338847219944, -0.015305833891034126, -0.012927486561238766, 0.013784362003207207, 0.034584082663059235, 0.019043605774641037, -0.0021691375877708197, -0.02801610343158245, -0.024757128208875656, 0.005291429348289967, 0.02114781178534031, 0.019484907388687134, 0.0217448640614748, -0.003053349442780018, 0.025270747020840645, 0.012956615537405014, -0.01795387826859951, 0.010774984024465084, 0.014108615927398205, 0.0247164499014616, -0.030117981135845184, -0.02211248129606247, -0.03806469216942787, 0.03051382675766945, 0.028362242504954338, 0.011538675054907799, 0.00990936066955328, -1.3566259227104638e-8, -0.00884691346436739, 0.046665649861097336, 0.0011395920300856233, 0.011445985175669193, -0.013133996166288853, 0.023389756679534912, 0.012375607155263424, 0.023221759125590324, -0.03718855604529381, 0.007973088882863522, 0.04991920292377472, 0.007138402201235294, 0.007704918272793293, 0.005085262935608625, 0.0024377014487981796, -0.016258368268609047, -0.015242937952280045, -0.015857042744755745, 0.019241614267230034, -0.006748167797923088, 0.008749740198254585, 0.017712589353322983, -0.010695639997720718, 0.006244069896638393, 0.011616899631917477, -0.007234892807900906, 0.01061806920915842, -0.05717160180211067, -0.012490098364651203, -0.0017372316215187311, -0.003174590179696679, -0.039370957762002945, -0.013182264752686024, 0.031974442303180695, -0.020566556602716446, -0.03622838482260704, -0.00571840675547719, 0.03627016022801399, 0.01267132256180048, 0.01756029576063156, -0.012606940232217312, -0.018713699653744698, 0.0017352101858705282, -0.007670139893889427, -0.006183476187288761, -0.03057512454688549, -0.02372557483613491, -0.016734210774302483, 0.0119867455214262, -0.03750818595290184, 0.03216717019677162, -0.004576196428388357, -0.009195181541144848, 0.029748504981398582, 0.011348400264978409, -0.019037172198295593, -0.009333591908216476, -0.04440755769610405, -0.030024588108062744, 0.017550215125083923, 0.014165225438773632, 0.022536907345056534, -0.011323225684463978, -0.013758483342826366 ]
coding-another-outside-in-example
https://markhneedham.com/blog/2010/04/18/coding-another-outside-in-example
false
2010-04-18 21:19:23
Late integration: Some thoughts
[ "software-development", "testing" ]
[ "Software Development" ]
John Daniels has http://jd-syntropy.blogspot.com/2010/03/why-you-should-start-with-end-to-end.html[an interesting post summarising GOOSgaggle], an event run a few weeks ago where people met up to talk about the ideas in 'http://www.amazon.co.uk/Growing-Object-Oriented-Software-Guided-Signature/dp/0321503627/ref=sr_1_1?ie=UTF8&s=books&qid=1271313406&sr=8-1[Growing Object Oriented Software, Guided by Tests]'. It's an interesting post and towards the end he states the following: ____ Given these two compelling justifications for starting with end-to-end tests, why is it that many people apparently don't start there? We came up with two possibilities, although there may be many others: *So rather than taking the correct -- and brave -- option of loudly declaring progress on your project to be blocked, you restrict yourself to creating those parts of the system that are within your control.* http://www.amazon.co.uk/Fifth-Discipline-Peter-M-Senge/dp/1905211201/ref=sr_1_1?ie=UTF8&s=books&qid=1271619479&sr=8-1[systems thinking]*we didn't have sufficient leverage to change the system* ____
null
null
[ 0.02219286747276783, 0.006555960513651371, -0.0033436017110943794, 0.025791795924305916, 0.08438888937234879, 0.004251845646649599, 0.04371187835931778, 0.029759570956230164, 0.00999775156378746, -0.03843288868665695, -0.023721428588032722, 0.0012131592957302928, -0.060888972133398056, 0.02299543097615242, -0.024511054158210754, 0.06330972164869308, 0.07965775579214096, -0.004211608786135912, 0.03014434687793255, 0.010165387764573097, 0.02686099149286747, 0.0749167948961258, 0.0011112018255516887, 0.030351217836141586, 0.032511401921510696, 0.011361434124410152, -0.012608164921402931, -0.004053694196045399, -0.06290005892515182, -0.018233055248856544, 0.037719011306762695, -0.005297171417623758, 0.009312087669968605, -0.008081607520580292, 0.024906594306230545, -0.010077981278300285, -0.03279828280210495, 0.02339988201856613, 0.006516290362924337, 0.004138760268688202, -0.06531058251857758, 0.04377063736319542, -0.019494876265525818, -0.002683149417862296, -0.043638069182634354, -0.00426124082878232, -0.03387072682380676, 0.009824401699006557, -0.0006625713431276381, -0.019472956657409668, -0.06864133477210999, 0.05135694518685341, -0.0049659330397844315, -0.00935009028762579, -0.007538866717368364, 0.03572892025113106, 0.018153896555304527, -0.0507291741669178, 0.013849965296685696, -0.038650259375572205, -0.005789630115032196, -0.020173262804746628, -0.0018950969679281116, 0.03935053572058678, 0.02737247757613659, -0.036610350012779236, -0.007220395375043154, 0.04683571308851242, -0.03531252220273018, -0.002888340037316084, -0.015122826211154461, 0.009727219119668007, -0.0030287939589470625, -0.016079820692539215, 0.016258621588349342, -0.061781685799360275, 0.009239732287824154, 0.05172421410679817, 0.008806046098470688, 0.03249524161219597, -0.031177271157503128, 0.027401484549045563, 0.02485901676118374, 0.013796315528452396, -0.017315154895186424, -0.04872797802090645, -0.0049526202492415905, -0.017900176346302032, -0.04870523512363434, 0.06149810552597046, 0.015175169333815575, -0.052891846746206284, 0.025004198774695396, 0.022760163992643356, -0.0013793724356219172, -0.00007196036312961951, 0.026734383776783943, 0.02511485107243061, -0.013381876051425934, -0.004357259254902601, -0.018281161785125732, -0.01853187195956707, 0.002668901113793254, 0.015314210206270218, -0.0783524438738823, -0.019140977412462234, -0.015636559575796127, -0.011849995702505112, -0.015339938923716545, -0.004032394848763943, -0.03642655536532402, 0.029564084485173225, -0.02410861663520336, 0.006477314047515392, -0.06420522928237915, 0.08456327021121979, -0.0065347179770469666, -0.04986856132745743, 0.010660813190042973, 0.015812071040272713, 0.03986154496669769, 0.024037662893533707, -0.01922789216041565, 0.08651461452245712, 0.0009183291695080698, 0.017112700268626213, -0.035583313554525375, 0.0570356622338295, -0.03396374732255936, -0.07588972896337509, -0.006384727545082569, 0.05245598778128624, -0.02095063030719757, -0.017945818603038788, 0.003882496152073145, -0.015309600159525871, 0.029186872765421867, 0.015980800613760948, 0.020940449088811874, 0.04792206361889839, -0.012224315665662289, -0.05850336328148842, 0.01189113687723875, 0.01776987686753273, 0.021898703649640083, 0.013210444711148739, 0.011517959646880627, -0.015250691212713718, -0.05258606746792793, 0.005826560314744711, -0.011310787871479988, 0.033703580498695374, 0.024925176054239273, -0.0408124178647995, 0.03461730480194092, 0.10033205896615982, 0.037090279161930084, 0.018332961946725845, -0.02333720587193966, 0.026769127696752548, 0.055699367076158524, 0.03770609572529793, 0.02500438503921032, 0.015392507426440716, 0.005475067999213934, -0.011608232744038105, 0.006282242480665445, 0.04224827513098717, 0.009220568463206291, 0.021631799638271332, -0.061569321900606155, -0.04069782793521881, 0.05252141132950783, -0.061899036169052124, -0.015429188497364521, 0.027145525440573692, 0.09123402833938599, 0.026960691437125206, 0.028320925310254097, 0.009122554212808609, -0.08994270861148834, 0.023209068924188614, 0.015206294134259224, 0.02340097539126873, 0.0038532239850610495, -0.019352836534380913, 0.058754805475473404, 0.018940355628728867, 0.01340777613222599, 0.039133161306381226, -0.0684521272778511, -0.09719491004943848, -0.01764649897813797, -0.028479550033807755, 0.04554048180580139, -0.007664232049137354, 0.006440788507461548, 0.06671465188264847, -0.0025640390813350677, 0.05474833771586418, 0.022686516866087914, -0.004796099383383989, 0.011189175769686699, -0.055831123143434525, -0.03692364692687988, 0.060238663107156754, 0.016329914331436157, -0.004036066122353077, -0.03702593222260475, 0.018022360280156136, -0.02546769753098488, -0.024893173947930336, 0.04117140546441078, -0.01824362762272358, 0.028146522119641304, 0.0315483883023262, 0.049469199031591415, -0.050844304263591766, 0.04408326745033264, -0.04434867948293686, -0.013317232020199299, -0.01108196284621954, -0.01324603334069252, 0.020093804225325584, 0.005918357986956835, 0.11109195649623871, 0.0578213632106781, -0.02507045306265354, -0.03638741374015808, 0.021195052191615105, 0.025537915527820587, -0.057991620153188705, 0.005507480353116989, 0.001375961466692388, -0.0028888944070786238, 0.007775321137160063, -0.06524216383695602, -0.058975860476493835, 0.016384350135922432, -0.05568335950374603, 0.016401223838329315, 0.06301657110452652, -0.024213509634137154, 0.062471654266119, 0.004364460706710815, -0.020503979176282883, 0.016239766031503677, -0.009137172251939774, -0.0590502955019474, 0.01276775449514389, -0.006643251050263643, -0.01199520193040371, 0.037866175174713135, -0.011118440888822079, -0.035277873277664185, -0.03290063887834549, -0.033288102596998215, 0.012102164328098297, 0.03667125478386879, 0.06870865821838379, -0.010760080069303513, 0.04952976107597351, -0.023389603942632675, 0.028504112735390663, -0.0025452058762311935, -0.04502009600400925, -0.035965871065855026, -0.032296884804964066, 0.003834292059764266, 0.030512850731611252, -0.013343578204512596, 0.0016440865583717823, 0.019981687888503075, -0.0035356387961655855, -0.013983262702822685, -0.0067545524798333645, 0.04594932869076729, 0.008103555999696255, -0.018203558400273323, -0.038664840161800385, -0.02622671239078045, 0.04320834204554558, -0.05846593156456947, -0.010623916983604431, 0.004885719623416662, -0.07371501624584198, 0.06432583928108215, -0.07199110835790634, -0.045693978667259216, -0.002692482201382518, 0.025269238278269768, 0.04829324781894684, 0.007252806331962347, 0.024347633123397827, 0.06904050707817078, 0.019738389179110527, 0.0008541046408936381, 0.003458927618339658, 0.01743084378540516, 0.03887216001749039, 0.015404907986521721, 0.0007617453229613602, 0.04199535399675369, 0.009725633077323437, 0.0015899301506578922, -0.041398484259843826, 0.04385208711028099, -0.016159748658537865, -0.27981579303741455, 0.02511480823159218, 0.001830675289966166, -0.044693320989608765, 0.02527547813951969, 0.0014091732446104288, 0.0060883089900016785, -0.05497564375400543, -0.01880890130996704, 0.01555606722831726, -0.04073835909366608, -0.0542927086353302, -0.0027760013472288847, 0.06925636529922485, 0.0059294793754816055, 0.03304097801446915, 0.04187425598502159, -0.037551432847976685, 0.0025666439905762672, 0.055392321199178696, -0.017809879034757614, -0.0733589306473732, 0.014245974831283092, 0.0552888885140419, 0.032468948513269424, 0.05413579195737839, -0.0954885184764862, 0.053317662328481674, -0.05243778973817825, 0.015535679645836353, -0.018986640498042107, -0.004012005403637886, -0.017676467075943947, -0.02269046939909458, -0.02200835384428501, -0.01734725572168827, 0.04413007199764252, 0.017708437517285347, -0.01975371316075325, -0.0036197700537741184, -0.01585426740348339, -0.03222425654530525, -0.016063231974840164, 0.020363036543130875, 0.060182683169841766, -0.006296443287283182, -0.06025243550539017, -0.021669041365385056, -0.04280860349535942, 0.07672090083360672, -0.03538038209080696, -0.02234242856502533, -0.005251271650195122, 0.031916867941617966, 0.002093737246468663, -0.016993844881653786, 0.004245228599756956, -0.014774464070796967, -0.040075283497571945, -0.012740532867610455, -0.01282674539834261, -0.03730897977948189, -0.014622742310166359, -0.05327627807855606, -0.0010042336070910096, -0.05645369738340378, -0.06535393744707108, -0.02776099182665348, 0.07584702968597412, 0.013579266145825386, -0.023266328498721123, 0.024960163980722427, 0.0036195768043398857, -0.10249432176351547, -0.002423596568405628, -0.02375788241624832, -0.020647378638386726, -0.004284398630261421, 0.01782052032649517, 0.04474104568362236, -0.03253883123397827, -0.041859615594148636, 0.03670632839202881, 0.026847587898373604, 0.04051322117447853, -0.014057734981179237, 0.04418112337589264, 0.0024344876874238253, -0.016660453751683235, 0.026993872597813606, 0.06836853176355362, 0.00547404820099473, -0.031498588621616364, -0.04108872264623642, 0.031152021139860153, 0.00890024472028017, 0.026314998045563698, -0.003781148698180914, 0.009573470801115036, 0.02426818385720253, 0.008488398045301437, -0.07821909338235855, 0.022764213383197784, -0.007362595293670893, -0.013660310767591, -0.01897958479821682, -0.06758774816989899, 0.02132214419543743, 0.05896056070923805, 0.01787399873137474, -0.004531495273113251, -0.014618799090385437, 0.0159382876008749, -0.03936585783958435, -0.06097252294421196, -0.013712739571928978, 0.0042514256201684475, 0.05397014692425728, -0.011663582175970078, -0.01816900633275509, -0.0472617968916893, 0.01318925991654396, -0.00626929197460413, -0.009639730677008629, -0.04118252918124199, -0.03384013473987579, -0.008625559508800507, -0.006659261882305145, 0.016951095312833786, 0.02468401938676834, -0.028327252715826035, 0.048437755554914474, 0.029577871784567833, -0.04333014041185379, 0.000325807835906744, -0.03603455051779747, -0.05734534561634064, -0.035301465541124344, 0.010197607800364494, 0.0028991452418267727, -0.008571158163249493, 0.017760762944817543, 0.012431303039193153, 0.016837963834404945, 0.035497959703207016, 0.014807788655161858, 0.04191432148218155, -0.006639592349529266, 0.047881584614515305, 0.010641801171004772, 0.028053129091858864, -0.07943561673164368, 0.04162048548460007, -0.04252489656209946, -0.00925543811172247, -0.03624996915459633, 0.024831978604197502, -0.017631256952881813, -0.02230570651590824, -0.013042381033301353, 0.010967873968183994, -0.0573008693754673, -0.043461594730615616, -0.03516684100031853, 0.016199905425310135, 0.07829117029905319, -0.03023439645767212, 0.020094936713576317, -0.0315389409661293, -0.021149413660168648, 0.03628358244895935, 0.01687590777873993, -0.017887502908706665, 0.007442725356668234, 0.019648419693112373, 0.0006458447896875441, -0.013936528004705906, -0.00094781001098454, 0.05441201478242874, -0.005158280022442341, 0.0025062463246285915, -0.026342984288930893, 0.003792047267779708, 0.013945582322776318, 0.04250304773449898, -0.014614591374993324, -0.0008517304668202996, -0.013625524938106537, -0.018594861030578613, -0.016515402123332024, -0.05486008897423744, -0.0012361309491097927, 0.013815967366099358, 0.027961404994130135, -0.04199135676026344, -0.08476345241069794, 0.03825144097208977, 0.02055726945400238, 0.009650086052715778, 0.008291388861835003, 0.0013882028870284557, 0.0065613482147455215, -0.0271272175014019, 0.02049953304231167, 0.07699878513813019, -0.07086995989084244, 0.004449500702321529, -0.01220792531967163, 0.021658077836036682, 0.031010687351226807, -0.000026623327357810922, -0.044368255883455276, -0.016707932576537132, -0.016961174085736275, 0.000639067031443119, -0.06991343945264816, -0.03344216197729111, -0.021824507042765617, 0.01136835664510727, -0.001150292344391346, -0.008415140211582184, 0.001865247031673789, -0.016273504123091698, -0.012832817621529102, -0.022132426500320435, 0.0251040980219841, -0.036764152348041534, 0.014999411068856716, 0.03751731663942337, -0.02808120846748352, -0.01160513237118721, -0.04150203987956047, 0.005989988334476948, 0.00616493821144104, -0.03240659832954407, -0.02163228765130043, -0.028570862486958504, 0.018681600689888, -0.012761598452925682, 0.03692854195833206, 0.005142502952367067, -0.017091525718569756, -0.043895017355680466, -0.02695465460419655, -0.05066296458244324, 0.020472925156354904, -0.02781761810183525, -0.01645086519420147, 0.019472220912575722, 0.04708126559853554, 0.020615071058273315, 0.04153214767575264, -0.02431604079902172, -0.022153882309794426, 0.037634145468473434, -0.06448233872652054, -0.03426540270447731, -0.02441888302564621, -0.05538417398929596, 0.007094901986420155, 0.025242874398827553, 0.027947623282670975, -0.03168994188308716, 0.039453428238630295, 0.033814117312431335, 0.050144847482442856, 0.03534123674035072, -0.007222594693303108, 0.03898056969046593, -0.06480664759874344, 0.003806580090895295, -0.0924043357372284, 0.004509603604674339, 0.02699335105717182, 0.019094137474894524, -0.020624591037631035, 0.005917195230722427, -0.03619401156902313, 0.029072729870676994, -0.08226145058870316, -0.010260322131216526, 0.04417234659194946, -0.006993867456912994, -0.012737149372696877, 0.010726138949394226, -0.07819882035255432, 0.028423426672816277, 0.016143271699547768, -0.04837462306022644, -0.019874481484293938, -0.014928138814866543, 0.03995528072118759, 0.005456599872559309, 0.029893917962908745, -0.031646449118852615, -0.007946460507810116, 0.08125462383031845, 0.010780422016978264, 0.004377244506031275, 0.0339399129152298, -0.02273348718881607, 0.03884631022810936, 0.04587850347161293, 0.01528563816100359, -0.03744176775217056, 0.005047478713095188, -0.010699907317757607, -0.06524097174406052, 0.026888519525527954, 0.026441829279065132, -0.01838376745581627, -0.03228042274713516, 0.057972051203250885, 0.02188275381922722, -0.024815933778882027, -0.04671768471598625, 0.015938647091388702, -0.055898841470479965, 0.0012156142620369792, -0.022631611675024033, -0.003971586469560862, -0.04663901403546333, 0.0471203587949276, -0.0015649993438273668, 0.008799264207482338, 0.05664631351828575, -0.006555899046361446, -0.021846605464816093, -0.011899218894541264, 0.08885425329208374, 0.07979776710271835, 0.037030722945928574, 0.016690777614712715, 0.06894587725400925, -0.025723552331328392, -0.04116803780198097, 0.01965205743908882, -0.017262207344174385, -0.021521011367440224, -0.016954852268099785, 0.02029099315404892, 0.05126354843378067, 0.00006611564458580688, 0.05501110479235649, -0.032909903675317764, -0.011073079891502857, -0.002487125340849161, 0.030973488464951515, -0.0010841339826583862, 0.0603831484913826, 0.013427149504423141, 0.0010911781573668122, -0.018843846395611763, -0.04913082718849182, 0.02499529905617237, -0.04108823835849762, -0.005430072080343962, 0.02021254226565361, -0.006605684291571379, 0.0003624341916292906, 0.01923840120434761, 0.030865496024489403, 0.09419271349906921, -0.03338155895471573, 0.016603773459792137, 0.001040426199324429, 0.03245930373668671, 0.004230283200740814, 0.008266325108706951, -0.003814998082816601, -0.014258571900427341, -0.003829452209174633, -0.0029487675055861473, -0.012499870732426643, -0.02162315510213375, -0.020641101524233818, 0.04755803942680359, -0.010086100548505783, 0.007291845977306366, 0.01344247069209814, -0.0033999760635197163, -0.03609633818268776, -0.05210501328110695, -0.048508260399103165, -0.03682020306587219, -0.045785266906023026, -0.003806965658441186, 0.0027581332251429558, -0.0006371699855662882, -0.03109389916062355, -0.024242402985692024, -0.015216478146612644, -0.03244588151574135, 0.030278218910098076, -0.06910964846611023, -0.02809920161962509, 0.03157941997051239, 0.021136559545993805, 0.027542224153876305, 0.009819502010941505, 0.05642378330230713, 0.0021651166025549173, 0.00016990836593322456, -0.028319068253040314, 0.023656293749809265, 0.03746362030506134, -0.009377438575029373, 0.019869012758135796, -0.08484996110200882, 0.04185072332620621, 0.012081727385520935, -0.026525773108005524, -0.06605349481105804, 0.03630189225077629, 0.02117922529578209, -0.00420265831053257, 0.05572868138551712, -0.021048473194241524, 0.00943116843700409, -0.026978421956300735, -0.004758525174111128, -0.010866697877645493, -0.003461349755525589, 0.04764422029256821, -0.02575511857867241, 0.0791691467165947, 0.04301942139863968, -0.008430501446127892, -0.051235638558864594, -0.01443407591432333, 0.010040133260190487, 0.009311530739068985, -0.029375864192843437, -0.013831811025738716, -0.016452141106128693, -0.08939776569604874, -0.025422951206564903, 0.027360616251826286, -0.022137990221381187, -0.039032094180583954, 0.01784488558769226, 0.03780274838209152, -0.02172856405377388, 0.0338292196393013, -0.030122876167297363, 0.014429626986384392, -0.023153962567448616, -0.012884585186839104, -0.0016945118550211191, 0.02300291508436203, -0.007388564758002758, 0.004753147251904011, 0.020805828273296356, -0.04553260654211044, -0.006241519469767809, 0.008527628146111965, 0.05286949500441551, 0.03625882416963577, 0.006468441803008318, -0.013015268370509148 ]
[ -0.1059349849820137, -0.004902909975498915, -0.03642842546105385, -0.04960976913571358, 0.012287022545933723, -0.022950783371925354, -0.03167778253555298, 0.01985486038029194, -0.008774886839091778, -0.032150913029909134, 0.011951935477554798, -0.011322924867272377, -0.012266936711966991, -0.02915184572339058, 0.074107825756073, 0.0030825359281152487, -0.0013283401494845748, -0.07325392216444016, 0.03642760217189789, 0.030842822045087814, 0.02297971211373806, -0.011055604554712772, -0.04693298041820526, -0.031687892973423004, -0.000300710613373667, 0.042752355337142944, 0.04531188681721687, -0.055641114711761475, 0.003551643108949065, -0.17653870582580566, -0.00030255847377702594, 0.006545764859765768, 0.038899604231119156, -0.03498038277029991, 0.0073206014931201935, 0.06501075625419617, 0.030490022152662277, -0.004205879755318165, -0.026756038889288902, 0.026658426970243454, 0.004870196804404259, 0.008235897868871689, -0.026102526113390923, -0.03372675180435181, 0.03319979086518288, 0.018015770241618156, -0.0004224878503009677, -0.04036608338356018, -0.014509465545415878, 0.018977303057909012, -0.05841193348169327, -0.014916927553713322, -0.01638234220445156, -0.029927551746368408, -0.017137283459305763, 0.025522887706756592, 0.033576056361198425, 0.06469510495662689, -0.0002598088758531958, -0.008577901870012283, 0.0013505852548405528, -0.024884862825274467, -0.13986347615718842, 0.07648380100727081, 0.055113185197114944, 0.05740877240896225, -0.02411055378615856, -0.03125818073749542, -0.003124186536297202, 0.09198933839797974, 0.011181957088410854, -0.01392370741814375, -0.03902065008878708, 0.02458394505083561, -0.0045581175945699215, 0.012599694542586803, 0.0024048546329140663, 0.03338830918073654, 0.03495611995458603, -0.06694403290748596, -0.02207936905324459, -0.003147182986140251, -0.007744582369923592, -0.0024840470869094133, -0.06115439906716347, 0.02356754057109356, -0.006566611584275961, 0.043711572885513306, 0.01193333975970745, 0.05562252178788185, 0.043451644480228424, -0.0096350759267807, 0.050426121801137924, -0.01308528147637844, -0.08209525793790817, -0.04100358113646507, -0.006907760631293058, 0.01266864687204361, -0.0507439523935318, 0.4563524127006531, -0.015768922865390778, -0.02944100648164749, 0.0749378651380539, 0.035907112061977386, -0.004129874054342508, 0.0237466711550951, 0.026706939563155174, -0.04273895174264908, 0.046730637550354004, -0.03004765696823597, 0.042040999978780746, 0.0157451294362545, 0.07611452788114548, -0.057091858237981796, 0.021899819374084473, 0.024480728432536125, 0.0227165799587965, 0.005249056965112686, -0.000074183706601616, -0.017164697870612144, -0.005849712528288364, 0.02502523921430111, 0.02489333413541317, -0.004600904416292906, -0.005924121476709843, -0.040549442172050476, 0.017159124836325645, 0.041169844567775726, 0.03525037690997124, -0.018639719113707542, 0.026485903188586235, -0.049622394144535065, -0.06645826995372772, -0.002495052758604288, -0.00515001779422164, 0.018530042842030525, 0.02328556776046753, -0.022174902260303497, 0.011409732513129711, 0.043820399791002274, 0.0038745738565921783, 0.00898656900972128, 0.038713499903678894, -0.025549203157424927, -0.01362271886318922, 0.10729862749576569, 0.026738161221146584, -0.03615511208772659, -0.022082209587097168, -0.020734651014208794, 0.008499976247549057, 0.01691015623509884, -0.0356990210711956, -0.06243061646819115, 0.026959097012877464, 0.006754384376108646, 0.10573640465736389, 0.020070848986506462, -0.05469069629907608, -0.008977477438747883, -0.02252635732293129, -0.0036150342784821987, -0.04633779078722, 0.04865722730755806, 0.07279763370752335, -0.09631888568401337, -0.019248006865382195, -0.00258728489279747, 0.027879154309630394, -0.06204196438193321, -0.014567406848073006, 0.0059370556846261024, -0.0173923522233963, -0.015342197380959988, 0.05770858749747276, -0.05577554926276207, -0.04200858622789383, 0.020852211862802505, 0.04095044359564781, 0.02223406359553337, 0.02228849194943905, 0.004221763461828232, -0.04343365132808685, -0.01448801252990961, -0.0510716438293457, -0.08475524187088013, -0.04480605944991112, -0.04402841627597809, -0.036606986075639725, -0.01755441166460514, -0.024980837479233742, -0.0052216537296772, -0.09282723069190979, 0.09742922335863113, -0.0255444273352623, -0.031373392790555954, 0.0037588938139379025, 0.008725459687411785, -0.01985667645931244, -0.01799410581588745, -0.050981637090444565, 0.03586779162287712, -0.048329684883356094, 0.03490744158625603, -0.08629457652568817, 0.06269455701112747, 0.07137782871723175, -0.050470806658267975, 0.10553610324859619, 0.04094049334526062, -0.04304848238825798, -0.038108717650175095, 0.01640503667294979, 0.02864229865372181, -0.006016063503921032, -0.016437726095318794, -0.015645205974578857, 0.01346864178776741, 0.0012220668140798807, 0.02710236795246601, -0.007338950876146555, 0.03292695805430412, -0.026313550770282745, -0.3304276168346405, -0.023127807304263115, -0.031234031543135643, 0.003831555601209402, 0.03378613665699959, -0.060094963759183884, 0.030481010675430298, 0.008104256354272366, -0.04558563604950905, -0.010023288428783417, 0.07150006294250488, -0.019790159538388252, 0.01696723699569702, -0.0628679096698761, 0.002186452504247427, 0.002597660291939974, -0.04866613447666168, -0.039497844874858856, -0.024786420166492462, 0.019625496119260788, -0.015230991877615452, 0.0015494786202907562, -0.035704225301742554, -0.048542607575654984, -0.02325991354882717, -0.06164224073290825, 0.09655427932739258, 0.005453454330563545, 0.0840788334608078, -0.015103207901120186, 0.042271655052900314, 0.017720459029078484, 0.015152796171605587, -0.0974125787615776, 0.0021333792246878147, 0.005757464561611414, 0.0005849291337653995, -0.019902754575014114, 0.04743700474500656, -0.02608562260866165, -0.04433245211839676, 0.03369167074561119, -0.05774899199604988, -0.047048550099134445, -0.05699629336595535, 0.009320540353655815, -0.019493168219923973, -0.015569141134619713, -0.026394935324788094, 0.06905413419008255, 0.009575679898262024, -0.0018374930368736386, 0.004510677419602871, 0.011865196749567986, -0.006493019871413708, -0.03382527083158493, -0.10107477009296417, 0.008061327040195465, 0.017582090571522713, 0.019424166530370712, 0.021444346755743027, 0.088064044713974, 0.006837139371782541, -0.049585916101932526, 0.00009788352326722816, 0.02212418057024479, -0.016335753723978996, 0.0043217819184064865, 0.05255676433444023, -0.02591865323483944, -0.00845402106642723, 0.11376749724149704, -0.03079678677022457, -0.031988032162189484, 0.01880890689790249, 0.03707734867930412, -0.008546560071408749, 0.016607698053121567, -0.004439233336597681, -0.010411635041236877, 0.013347163796424866, -0.03600408881902695, 0.01210307888686657, -0.026940571144223213, -0.0034214851912111044, 0.029416125267744064, -0.018708089366555214, -0.05330575257539749, 0.05383404344320297, 0.02230330929160118, -0.014089209958910942, 0.014440068043768406, -0.026483383029699326, -0.06290949881076813, 0.09501679986715317, 0.008371394127607346, -0.23127980530261993, 0.01254562009125948, 0.06635378301143646, 0.06407587975263596, -0.0007099074427969754, 0.06569883972406387, 0.04053399711847305, -0.04505692422389984, 0.015408148989081383, 0.027930377051234245, 0.032229259610176086, 0.03692707046866417, 0.009350338950753212, 0.009236026555299759, 0.041452448815107346, -0.004933733027428389, 0.04859783127903938, -0.008335745893418789, 0.017966022714972496, -0.021015891805291176, -0.008228256367146969, 0.001994904363527894, 0.13859064877033234, 0.01067125890403986, 0.015637710690498352, 0.014112197794020176, 0.0010498272022232413, 0.029174596071243286, 0.05228200927376747, 0.006027803756296635, -0.0017806864343583584, 0.005268800538033247, 0.00485395360738039, -0.0019451339030638337, 0.02917158417403698, -0.0748373493552208, -0.015675948932766914, 0.025349242612719536, 0.02595609612762928, -0.008452513255178928, 0.020277881994843483, -0.006309421267360449, -0.012017294764518738, 0.018392415717244148, 0.06440785527229309, 0.009501922875642776, -0.001347496174275875, -0.018957126885652542, -0.03159536421298981, -0.018310422077775, -0.023565275594592094, -0.03710096701979637, -0.0028847225476056337, 0.011329923756420612, 0.02574978582561016, 0.09172657132148743, 0.012010250240564346, -0.014315814711153507, -0.016824768856167793, -0.009052960202097893, -0.006428544409573078, -0.006848004646599293, 0.12276449799537659, 0.04950038343667984, 0.04004131257534027 ]
[ -0.0001636833476368338, -0.0024074544198811054, 0.0019110740395262837, -0.0031422420870512724, 0.014022955670952797, -0.024600893259048462, -0.015136251226067543, 0.02894905023276806, -0.01555185578763485, 0.01982053741812706, -0.01623142510652542, 0.02169327437877655, -0.0033679762855172157, 0.0032987664453685284, -0.0004041224019601941, 0.0209491029381752, -0.00006602954090340063, -0.026556016877293587, 0.03125869110226631, 0.00034177087945863605, -0.017202364280819893, 0.03062993660569191, -0.011378190480172634, -0.006931465119123459, -0.03313213214278221, 0.05202881619334221, -0.03682873025536537, -0.026831692084670067, 0.023380251601338387, -0.13173791766166687, -0.009406410157680511, -0.02969418652355671, -0.003326319856569171, -0.02718527428805828, 0.03078516013920307, 0.009382892400026321, 0.0199129581451416, 0.008589506149291992, 0.01652090810239315, -0.017396340146660805, 0.03708363696932793, -0.006514080800116062, 0.01794266887009144, 0.020923366770148277, -0.004698699805885553, -0.0006732714828103781, -0.0018502502935007215, -0.04318762198090553, -0.025001533329486847, -0.05441119149327278, -0.03928537294268608, -0.03719627484679222, -0.015790395438671112, -0.0065415045246481895, 0.03214015066623688, 0.006007564254105091, 0.03907645493745804, 0.002382022561505437, -0.007631567772477865, -0.021948086097836494, -0.011422931216657162, 0.0017929461318999529, -0.0592241995036602, -0.037958912551403046, -0.0002562293957453221, -0.009384289383888245, -0.003859110176563263, 0.00013387070794124156, -0.014702534303069115, 0.01880272850394249, -0.024326803162693977, 0.043566081672906876, -0.000050236059905728325, 0.014288871549069881, 0.024280861020088196, 0.010189879685640335, -0.004686842206865549, 0.017658710479736328, 0.052431415766477585, -0.03790916129946709, -0.029978565871715546, 0.031571611762046814, -0.004227271769195795, -0.0056136599741876125, -0.007181697525084019, 0.0035889032296836376, 0.012439069338142872, -0.006055899430066347, 0.037724219262599945, 0.049798090010881424, -0.012956585735082626, 0.01928955689072609, -0.0325152613222599, 0.01892876997590065, -0.08151901513338089, -0.020988374948501587, -0.02597414329648018, -0.055967122316360474, 0.010499203577637672, 0.8618077635765076, -0.017881987616419792, 0.008276491425931454, 0.03566572815179825, 0.005354739725589752, 0.02177138440310955, 0.005120533984154463, -0.0275292806327343, -0.0278010256588459, 0.03582252189517021, -0.050544071942567825, 0.01138363964855671, 0.01470286026597023, 0.026872461661696434, -0.015374734066426754, 0.023245899006724358, 0.021341759711503983, -0.013970463536679745, 0.02763291634619236, -0.003584507154300809, 0.003863763529807329, 0.03732183203101158, 0.005162210203707218, -0.02620718628168106, 0.005253704264760017, 0.02953699603676796, -0.15189018845558167, -0.021740948781371117, -8.96958466469451e-33, 0.015861723572015762, -0.04196721315383911, 0.003722981084138155, 0.018057191744446754, 0.001535992487333715, 0.015991954132914543, 0.023164968937635422, 0.05055434629321098, -0.01767028495669365, -0.008020974695682526, -0.021855749189853668, -0.043955184519290924, -0.023688852787017822, -0.028543731197714806, 0.06437236815690994, -0.006156810559332371, -0.012905677780508995, 0.034261059015989304, -0.04359175264835358, 0.02253318578004837, 0.03581622242927551, 0.021404854953289032, -0.027227958664298058, -0.02811676822602749, 0.038264330476522446, 0.010831655003130436, 0.00555014843121171, 0.024370310828089714, 0.005928210448473692, -0.03570147976279259, -0.027533957734704018, 0.0070466455072164536, -0.04695744812488556, -0.018895622342824936, -0.0058632949367165565, -0.046894051134586334, -0.01697966270148754, -0.018168454989790916, 0.018700433894991875, -0.03654737025499344, -0.001910670893266797, 0.005609762854874134, -0.04023142531514168, 0.0018538181902840734, -0.0038290510419756174, -0.0270373672246933, 0.014602605253458023, -0.004940457176417112, 0.027260176837444305, -0.0018626950914040208, -0.0018890297506004572, 0.011055986396968365, -0.011926134116947651, -0.018672311678528786, -0.03140542283654213, 0.021518521010875702, -0.017741994932293892, 0.03261740878224373, -0.0013845824869349599, -0.0016149436123669147, 0.015140379779040813, 0.01014073844999075, -0.0250968299806118, 0.02681289240717888, -0.02825171686708927, -0.03198658302426338, -0.0028836189303547144, -0.0012948659714311361, 0.03311051055788994, 0.030054444447159767, -0.03069264627993107, -0.02281537838280201, -0.03340687230229378, 0.015772420912981033, -0.0052775307558476925, -0.03046555258333683, -0.004650518763810396, 0.04350567236542702, -0.001112628378905356, 0.04039416089653969, 0.017752306535840034, 0.008091436699032784, -0.012757185846567154, -0.042706578969955444, 0.013770773075520992, 0.013179033063352108, -0.007077384740114212, -0.011749369092285633, -0.018227120861411095, 0.008295564912259579, -0.012285898439586163, 0.002410440007224679, 0.006673459894955158, 0.017511950805783272, -0.03606978803873062, 8.868642760737492e-33, 0.0008443680126219988, -0.030198102816939354, 0.0014875561464577913, 0.008807419799268246, 0.012336183339357376, -0.00125512620434165, -0.0026947371661663055, -0.01584622636437416, -0.049462851136922836, 0.042029522359371185, -0.011339584365487099, 0.014716246165335178, -0.004131723195314407, 0.022055434063076973, 0.012922825291752815, -0.047744400799274445, 0.0165024995803833, -0.012406527996063232, 0.04794835299253464, -0.022301174700260162, -0.0007550201844424009, 0.007366419769823551, 0.01423005573451519, -0.014092063531279564, 0.03812433406710625, 0.03651484102010727, -0.02077541872859001, 0.02435370534658432, 0.013805089518427849, 0.00880703516304493, 0.02070203796029091, 0.005112180020660162, 0.012254509143531322, 0.01445463951677084, -0.020430175587534904, 0.007831273600459099, -0.00693740788847208, -0.028958698734641075, 0.0048831491731107235, 0.026212826371192932, 0.03937466815114021, -0.0005702229682356119, 0.02867402695119381, 0.02980085462331772, 0.0008712578564882278, 0.013383506797254086, 0.003770307172089815, 0.010140770114958286, -0.016204960644245148, 0.012774885632097721, -0.028984196484088898, 0.0285002700984478, 0.03238295391201973, -0.006582246161997318, -0.020388973876833916, -0.03044712543487549, -0.0166332870721817, 0.019361821934580803, 0.000404028978664428, 0.012077358551323414, -0.009914595633745193, 0.0065724351443350315, -0.010249615646898746, -0.004247589968144894, -0.03230910003185272, 0.0030190758407115936, 0.015671992674469948, 0.02849583327770233, -0.004125269129872322, -0.02657894231379032, -0.020475266501307487, 0.03005235083401203, -0.008259477093815804, 0.040704719722270966, 0.0016973884776234627, -0.01250801607966423, -0.041872911155223846, -0.044625233858823776, -0.00783671997487545, -0.007464973721653223, -0.004062192514538765, -0.01983717642724514, 0.005358029156923294, 0.03119627758860588, -0.006962597835808992, 0.018960297107696533, -0.035180021077394485, 0.006664983928203583, 0.006493368651717901, 0.02210552990436554, 0.0018928353674709797, -0.012970332987606525, 0.013964478857815266, 0.006880505010485649, -0.010030470788478851, -1.4091138034189044e-8, 0.015096498653292656, 0.0038498244248330593, -0.005181840155273676, 0.00673063425347209, 0.0223033856600523, 0.029152018949389458, -0.01637277379631996, 0.0393577516078949, -0.031113365665078163, 0.029720263555645943, 0.03854827955365181, -0.021332791075110435, 0.006829094607383013, 0.034306835383176804, -0.010019398294389248, -0.02209644205868244, 0.008822020143270493, -0.007774372585117817, 0.033101048320531845, 0.005796313285827637, 0.029367877170443535, 0.050956737250089645, -0.025672199204564095, -0.0022737146355211735, 0.0013919755583629012, -0.010418164543807507, 0.012714825570583344, -0.07797350734472275, 0.011190676130354404, 0.0033532793167978525, 0.02997882291674614, -0.011578538455069065, -0.027041982859373093, 0.05659763887524605, -0.01482559833675623, -0.0025461912155151367, -0.019417153671383858, 0.04235203191637993, 0.010354545898735523, 0.019939906895160675, 0.014885054901242256, 0.015151317231357098, -0.00973812397569418, -0.021191252395510674, -0.03388293460011482, 0.002359828446060419, -0.03712296485900879, 0.007216205354779959, -0.013321813195943832, -0.029910821467638016, 0.03734344244003296, -0.024500349536538124, 0.012314937077462673, 0.012991763651371002, 0.011823452077805996, 0.01623436249792576, -0.007035849615931511, -0.012325984425842762, -0.0372481606900692, 0.004750762600451708, 0.0054708668030798435, 0.020491966977715492, -0.01604788936674595, -0.013886908069252968 ]
late-integration-some-thoughts
https://markhneedham.com/blog/2010/04/18/late-integration-some-thoughts
false
2010-04-27 22:34:22
Listening to your tests: An example
[ "coding" ]
[ "Coding" ]
I was recently reading a blog post by Esko Luontola where he talks about http://blog.orfjackal.net/2010/04/direct-and-indirect-effects-of-tdd.html[the direct and indirect effects of TDD] and one particularly interesting point he makes is that driving our code with a TDD approach helps to amplify the problems caused by writing bad code. ____ if the code is not maintainable, it will be hard to change. Also if the code is not testable, it will be hard to write tests for it. If the code would not be written iteratively and no tests would be written for it, life would be much easier to the developer. In other words, TDD increases the pain caused by bad code, because it's not possible to avoid changing the code, nor avoid writing tests for it. ____ This is something Steve Freeman and Nat Pryce talk about in http://www.growing-object-oriented-software.com/[their book] and we recently had an example of this which really stemmed from a http://www.markhneedham.com/blog/2010/04/18/coding-another-outside-in-example/[failure to drive this particular piece of code from the outside in]. We'd reached the stage where one object was taking in 8 different parameters in the constructor and then only used 2 of them in any one path through the code. The code was pretty bad but it was even more noticeable how much of a mess we'd made when we had to write a new test. This is a rough example of what the test fixture had begun to look like: [source,csharp] ---- [TestFixture] public class BadObjectTests { private double parameter1 = 0.10; private double parameter2 = 0.20; private double parameter3 = 0.30 [Test] public void ATestGoneABitWrong() { var badObject = CreateBadObject(); var result = badObject.CalculateSomething() Assert.That(result, Is.EqualTo(parameter1)); } private BadObject CreateBadObject() { return new BadObject(parameter1, parameter2, parameter3...); } } ---- As a general guideline it's good if we're able to keep the context of a test all in one place but since the 'BadObject' had become increasingly difficult to construct we'd pulled that out into another method and extracted all its parameters as fields in the test fixture. The alternative was to have all 8 parameters created in each test and then construct the 'BadObject' each time and in retrospect that would actually have made it more obvious that we were doing something wrong. With that second approach we would undoubtably start http://blog.iancartwright.com/2009/04/test-code-is-just-code.html[copy/pasting tests] which would provide another signal that we need to look at the design of the code and make it easier to test. In this case the solution was to create several smaller objects which actually used all the parameters being passed in. I think we ended up with around 4 objects instead of 1 and each had simple tests that were easy to write.
null
null
[ 0.01885315217077732, 0.007155921310186386, -0.02153998427093029, 0.03151175379753113, 0.06552759557962418, 0.002903006039559841, 0.05085399001836777, 0.04726659879088402, 0.010530117899179459, -0.021841783076524734, -0.0015192290302366018, 0.006729360669851303, -0.06891602277755737, 0.003025518963113427, -0.03710657358169556, 0.06491942703723907, 0.07232960313558578, -0.035425204783678055, 0.03665580600500107, 0.0032903961837291718, 0.036462828516960144, 0.06261759996414185, -0.01637505367398262, 0.04645168036222458, 0.04242153465747833, 0.03395771607756615, 0.01764759048819542, -0.0008230284438468516, -0.07501769810914993, -0.02513580396771431, 0.028121288865804672, 0.024318842217326164, 0.002008977811783552, -0.010427093133330345, 0.0012480635195970535, 0.003321463940665126, -0.019345371052622795, -0.0008132192306220531, 0.010996752418577671, 0.025784188881516457, -0.07952670753002167, 0.021612973883748055, -0.013181288726627827, 0.0065941051580011845, -0.05895256996154785, 0.006029503885656595, -0.027268538251519203, 0.004270103760063648, -0.021449102088809013, -0.0024794533383101225, -0.07023525983095169, 0.0534321591258049, -0.03606222942471504, 0.0206313319504261, -0.019035208970308304, 0.06387101858854294, 0.014343930408358574, -0.07750868052244186, 0.028104888275265694, -0.07096065580844879, -0.0002866527356673032, -0.011724215932190418, -0.008340362459421158, 0.025887923315167427, 0.02379906177520752, 0.0016130863223224878, -0.02566392906010151, 0.033853691071271896, -0.045960452407598495, -0.015947580337524414, -0.020419498905539513, -0.025421256199479103, -0.02298840880393982, -0.02657994069159031, 0.018991554155945778, -0.04952424019575119, -0.022364608943462372, 0.04800178483128548, 0.017712298780679703, 0.04713770002126694, -0.014640925452113152, 0.0019654615316540003, 0.01722833886742592, -0.009050886146724224, 0.00879004504531622, -0.022074997425079346, 0.006211117375642061, 0.002952961716800928, -0.03554743155837059, 0.06573929637670517, 0.024927282705903053, -0.044412434101104736, 0.007948013953864574, 0.041766636073589325, -0.014340575784444809, 0.006174616049975157, 0.028483716771006584, -0.0036529083736240864, -0.014636966399848461, -0.005674772430211306, -0.004428699146956205, -0.02822546847164631, 0.03344373777508736, 0.02161307819187641, -0.0761389434337616, 0.008488974533975124, -0.01984386146068573, -0.033902574330568314, -0.002657448872923851, 0.03308705613017082, -0.04190920293331146, 0.03786333650350571, -0.031002284958958626, -0.010647385381162167, -0.07759816944599152, 0.058736369013786316, -0.0032184896990656853, -0.012952080927789211, 0.00883727241307497, 0.03132753074169159, 0.028466124087572098, 0.00887817982584238, -0.0010130114387720823, 0.08745688945055008, -0.0029773651622235775, 0.04705149680376053, -0.029751107096672058, 0.059427451342344284, -0.017456479370594025, -0.061646733433008194, -0.020659295842051506, 0.04425671696662903, -0.01946919411420822, 0.015610983595252037, 0.018812330439686775, -0.04031938314437866, -0.0008476527291350067, -0.020903483033180237, 0.004226525779813528, 0.06043583154678345, -0.028063056990504265, -0.04302031546831131, 0.007369777653366327, 0.0005849362351000309, -0.007074293214827776, 0.005020780023187399, -0.004073551390320063, -0.002854700665920973, 0.0024577404838055372, 0.028021743521094322, 0.03168676421046257, 0.05862836912274361, 0.02579926885664463, -0.04684550687670708, 0.009401462972164154, 0.07882363349199295, 0.008242633193731308, 0.009590314701199532, -0.0006562452181242406, 0.05437825247645378, 0.05233624204993248, 0.024501744657754898, 0.016069527715444565, 0.04428555816411972, 0.023203127086162567, 0.0015712380409240723, -0.009614000096917152, 0.037515416741371155, -0.022257506847381592, -0.005314933601766825, -0.07450231164693832, -0.0349721685051918, 0.04788874089717865, -0.056734923273324966, -0.023713355883955956, 0.04347502812743187, 0.06417054682970047, -0.0027336659841239452, 0.051878515630960464, 0.005451449658721685, -0.07942696660757065, 0.01195241417735815, 0.024570830166339874, 0.017001526430249214, 0.0016526852268725634, -0.008242043666541576, 0.06309172511100769, 0.031565114855766296, -0.0201826523989439, 0.04586514085531235, -0.0634368434548378, -0.08703892678022385, -0.013896445743739605, -0.02087901346385479, 0.07414672523736954, -0.041673529893159866, -0.015591002069413662, 0.07312275469303131, 0.04049394279718399, 0.05533616989850998, 0.019041938707232475, 0.0013752314262092113, 0.02238408476114273, -0.0318770669400692, -0.0194377563893795, 0.04642251133918762, 0.06383917480707169, 0.0017376815667375922, -0.05713540315628052, 0.01586860604584217, 0.007380006834864616, -0.003533888142555952, 0.030710024759173393, -0.01599646732211113, 0.021533634513616562, 0.015139897353947163, 0.040789321064949036, -0.014971147291362286, 0.07608617097139359, -0.07608712464570999, -0.023571273311972618, 0.0037516180891543627, -0.003781110979616642, -0.0010134570766240358, -0.007203811313956976, 0.11523755639791489, 0.0388212651014328, -0.04841283708810806, -0.023184318095445633, 0.003737341845408082, 0.006296500097960234, -0.01885356940329075, -0.0016282309079542756, -0.02108542062342167, 0.01695510931313038, 0.015785088762640953, -0.06008462607860565, 0.002029154682531953, 0.02804091013967991, -0.03293822333216667, 0.025097867473959923, 0.06421197205781937, -0.004166943021118641, 0.047690268605947495, -0.0329936221241951, -0.02156480774283409, 0.011133418418467045, -0.014893771149218082, -0.05419720709323883, -0.0171222984790802, 0.014266930520534515, -0.014138900674879551, 0.052192725241184235, -0.017175717279314995, -0.030070947483181953, -0.03816891834139824, -0.03198206052184105, 0.012793108820915222, 0.035823822021484375, 0.053372517228126526, -0.014040491543710232, 0.04474451392889023, 0.0008885918650776148, -0.0018508315552026033, 0.014127733185887337, -0.05541552975773811, -0.026113241910934448, 0.013802429661154747, 0.008160663768649101, 0.03867429494857788, -0.013329774141311646, 0.020570147782564163, 0.026528868824243546, 0.02340433932840824, -0.025445273146033287, -0.008183300495147705, 0.036924272775650024, 0.02237057127058506, -0.047409091144800186, -0.01955038122832775, -0.04939239099621773, 0.02559800259768963, -0.0267026424407959, -0.04417295753955841, 0.005001457873731852, -0.07714998722076416, 0.04180436208844185, -0.07732554525136948, -0.07532837241888046, 0.02410547435283661, 0.007735461462289095, 0.04322633147239685, -0.0051713790744543076, 0.020403379574418068, 0.07158222794532776, -0.0015059786383062601, -0.00301501271314919, -0.005631679203361273, 0.020593544468283653, 0.015072866342961788, 0.019600316882133484, -0.0003548609674908221, 0.007595405448228121, 0.002073835115879774, -0.004766042344272137, -0.025463584810495377, 0.013592977076768875, 0.009265647269785404, -0.27776607871055603, 0.03602433577179909, 0.005936967674642801, -0.045216154307127, 0.03815586119890213, -0.005159909371286631, 0.008336744271218777, -0.04679400473833084, -0.029857156798243523, 0.05428704991936684, -0.0294785276055336, -0.028409752994775772, -0.03223985806107521, 0.06258589774370193, -0.005486644338816404, -0.002732465509325266, 0.014612151309847832, -0.02949891798198223, -0.004309892654418945, 0.05897762253880501, 0.011745946481823921, -0.07726242393255234, -0.010582135058939457, 0.025751492008566856, 0.03065601922571659, 0.044817231595516205, -0.09593930840492249, 0.044508494436740875, -0.037999365478754044, -0.0229256022721529, 0.002661724342033267, 0.00015033628733363003, 0.012775189243257046, -0.02617676928639412, -0.022499341517686844, -0.00819140300154686, 0.00665198964998126, 0.016975602135062218, -0.02350136823952198, 0.026910889893770218, -0.0429132804274559, -0.05281095206737518, -0.0043710884638130665, 0.011328027583658695, 0.07718485593795776, 0.009567820467054844, -0.03804397210478783, -0.002007199451327324, -0.0407942458987236, 0.0801353007555008, -0.025884045287966728, -0.018569685518741608, 0.008006099611520767, 0.027271024882793427, -0.03948649391531944, -0.03546827286481857, 0.026800502091646194, -0.005784012842923403, -0.0380096435546875, -0.02544548176229, -0.01803295686841011, -0.022714288905262947, -0.012748973444104195, -0.042119596153497696, 0.002757901092991233, -0.053940195590257645, -0.048022858798503876, -0.0018700659275054932, 0.0656605213880539, 0.021416839212179184, -0.014389697462320328, 0.00999288260936737, 0.013585729524493217, -0.1152070090174675, -0.015321704559028149, -0.02873709797859192, -0.030433062463998795, -0.042309537529945374, -0.007244874257594347, 0.059338003396987915, -0.021186426281929016, -0.049080003052949905, 0.05149785801768303, 0.018929479643702507, 0.031036660075187683, -0.005888344254344702, 0.028574418276548386, 0.013505751267075539, -0.008903436362743378, 0.0008579045534133911, 0.08128003776073456, -0.0073904311284422874, -0.008795887231826782, -0.040839407593011856, 0.005785663612186909, 0.026219243183732033, 0.04094727337360382, -0.0096505181863904, 0.00594923784956336, 0.03350111469626427, -0.008325557224452496, -0.04677154868841171, 0.05449039116501808, -0.030289076268672943, -0.014366387389600277, -0.03516949713230133, -0.0644584447145462, 0.06143776327371597, 0.015345703810453415, -0.008927755057811737, -0.0014613886596634984, -0.027874095365405083, -0.008669582195580006, -0.06413796544075012, -0.05264870077371597, -0.027207573875784874, 0.01597285456955433, 0.045367397367954254, -0.023023972287774086, -0.022625798359513283, -0.043204016983509064, 0.015752241015434265, 0.0049936408177018166, -0.010478862561285496, -0.06133313849568367, -0.024896176531910896, -0.00742647098377347, -0.02482398971915245, 0.008511672727763653, 0.03591733053326607, -0.013550547882914543, 0.056774307042360306, 0.019038410857319832, -0.021047955378890038, -0.0021959426812827587, 0.0021495516411960125, -0.036959875375032425, -0.022970113903284073, -0.007320945616811514, -0.01414007879793644, 0.03110499680042267, 0.0022065506782382727, 0.0063116648234426975, 0.015684334561228752, 0.053291723132133484, -0.014109546318650246, 0.04307450354099274, -0.015707779675722122, 0.001701724948361516, 0.02007058635354042, 0.021655844524502754, -0.07831992954015732, 0.029167916625738144, -0.04294056072831154, -0.06200013682246208, -0.028436776250600815, 0.034997884184122086, -0.02915974333882332, -0.03302140533924103, -0.03360096737742424, 0.021027635782957077, -0.03742077946662903, -0.0471668541431427, -0.023024681955575943, 0.019045360386371613, 0.06728801131248474, -0.022851772606372833, 0.018488917499780655, -0.010508928447961807, -0.03342992439866066, -0.015203936956822872, -0.007968074642121792, -0.04597882181406021, 0.02452017180621624, 0.003843102138489485, -0.01734759286046028, -0.013416624628007412, -0.01041922066360712, 0.04952337592840195, 0.018152285367250443, 0.020491620525717735, -0.01861584559082985, 0.025871874764561653, 0.01568828895688057, 0.03954117372632027, -0.013373319059610367, 0.009297050535678864, -0.01989809237420559, -0.014551634900271893, -0.00799020379781723, -0.044044215232133865, -0.03007182665169239, -0.011926154606044292, 0.07066138833761215, -0.040639329701662064, -0.07141930609941483, 0.03314720839262009, 0.01223633624613285, 0.01823682337999344, 0.01401060912758112, 0.014273936860263348, 0.02588493376970291, -0.029255812987685204, 0.025343552231788635, 0.024586671963334084, -0.03965885564684868, 0.02947736717760563, 0.021391451358795166, 0.003843702608719468, 0.013365705497562885, -0.008780640549957752, -0.03267182409763336, -0.03671407327055931, -0.007888417690992355, -0.015780441462993622, -0.03583678975701332, -0.017051929607987404, -0.045267850160598755, 0.000566443195566535, -0.018680330365896225, -0.024521172046661377, -0.005377943627536297, -0.006838156841695309, -0.03247460350394249, -0.019814718514680862, 0.028349708765745163, -0.03742701932787895, -0.0029880411457270384, 0.035079896450042725, -0.03405863419175148, 0.015770751982927322, 0.0046454668045043945, 0.031593095511198044, 0.004477052018046379, -0.022737951949238777, -0.037116020917892456, -0.011929982341825962, 0.023185325786471367, -0.010239857248961926, 0.02625647373497486, 0.0046187215484678745, -0.02331313118338585, -0.015582851134240627, 0.010801475495100021, -0.02765468694269657, 0.02861853316426277, -0.02587900683283806, -0.02880273573100567, 0.02995111048221588, 0.06520308554172516, 0.025983359664678574, 0.054148487746715546, -0.0016463358188048005, -0.016675174236297607, 0.06285356730222702, -0.07939658313989639, -0.011482133530080318, -0.0430871918797493, -0.07196080684661865, 0.0206290315836668, -0.007489655166864395, 0.019178641960024834, -0.02249426394701004, 0.03643494099378586, 0.027405891567468643, 0.03145160153508186, 0.04324055090546608, -0.000998787465505302, 0.04257376864552498, -0.0539834201335907, 0.013973603956401348, -0.07813513278961182, 0.03835869953036308, 0.03948783129453659, 0.02082453854382038, 0.009916165843605995, -0.033006701618433, -0.0357547327876091, 0.03241429105401039, -0.0737183541059494, -0.010276544839143753, 0.025934714823961258, 0.0063692182302474976, -0.02764635719358921, 0.002719143871217966, -0.03620505332946777, 0.016609948128461838, 0.034101031720638275, -0.04579741135239601, -0.02994193695485592, -0.002147398889064789, 0.030624818056821823, 0.04155103117227554, -0.0025347492191940546, -0.03699941188097, 0.01571637950837612, 0.06358319520950317, 0.013291561976075172, 0.038613639771938324, 0.03425433859229088, -0.03057970106601715, 0.040826041251420975, 0.020083948969841003, 0.001638719579204917, -0.006091313902288675, 0.006927222479134798, 0.009104140102863312, -0.06678520143032074, 0.026577776297926903, 0.016799449920654297, -0.03972715884447098, -0.036137714982032776, 0.043929312378168106, 0.02420404553413391, -0.01857607811689377, -0.03318948671221733, 0.000570053409319371, -0.04346838220953941, -0.021298719570040703, -0.016043778508901596, 0.0035442672669887543, -0.038899146020412445, 0.07735210657119751, 0.017268436029553413, -0.015199295245110989, 0.07908564060926437, -0.002140285447239876, -0.02267548441886902, -0.031089719384908676, 0.06676851958036423, 0.07629150152206421, 0.04617654159665108, -0.006976406089961529, 0.05348901078104973, -0.023538535460829735, -0.04923900589346886, 0.027116844430565834, -0.020535482093691826, -0.00867632869631052, -0.036536917090415955, 0.011998414993286133, 0.04846145585179329, 0.004677155055105686, 0.04559515416622162, -0.03725995123386383, 0.0013249660842120647, -0.01556459441781044, 0.034576594829559326, 0.016111640259623528, 0.06703810393810272, 0.0027895227540284395, 0.0017262848559767008, 0.02003038115799427, -0.05301082506775856, 0.011869268491864204, -0.0328100211918354, -0.015070714987814426, 0.005266690161079168, -0.008827609941363335, 0.008432385511696339, 0.015557718463242054, 0.031643327325582504, 0.0797947496175766, -0.02399267442524433, 0.016049101948738098, -0.021524736657738686, 0.02873661182820797, 0.0026215275283902884, -0.02386915124952793, -0.024994347244501114, -0.04450744390487671, -0.01309445034712553, -0.009752107784152031, -0.024720575660467148, -0.030036533251404762, -0.03829140216112137, 0.050569161772727966, -0.006353299133479595, 0.01067605335265398, 0.0345030277967453, 0.01565907523036003, -0.020551199093461037, -0.08500337600708008, -0.05201932042837143, -0.04027582332491875, -0.055951204150915146, -0.017309952527284622, 0.010132038965821266, -0.0036049813497811556, -0.030210938304662704, -0.009338106028735638, -0.018926655873656273, -0.008707072585821152, 0.08172853291034698, -0.027214359492063522, -0.04275152087211609, 0.0508187972009182, 0.026284867897629738, 0.025755057111382484, 0.026017213240265846, 0.035702917724847794, -0.0065016234293580055, -0.0038499352522194386, -0.040167443454265594, -0.03534810245037079, 0.035514067858457565, -0.007419333793222904, 0.014054965227842331, -0.08370744436979294, 0.00421141367405653, 0.019643815234303474, -0.002705678576603532, -0.06901980191469193, 0.04737183079123497, 0.0022483880165964365, 0.0013646415900439024, 0.04287777096033096, -0.037458717823028564, 0.015096064656972885, -0.02599215880036354, 0.0020639330614358187, -0.002809588797390461, 0.026638749986886978, 0.0364433191716671, -0.02459767274558544, 0.07253000140190125, 0.011144292540848255, -0.032472141087055206, -0.0336449071764946, -0.003121212823316455, -0.013342659920454025, 0.002084968611598015, -0.03653980419039726, -0.03789396211504936, -0.035782501101493835, -0.06975220888853073, 0.02046077698469162, 0.02810157835483551, -0.02490856871008873, -0.03562827780842781, 0.013292261399328709, 0.014837118797004223, -0.07775861769914627, 0.02848065458238125, -0.03386087715625763, 0.06453773379325867, -0.035867344588041306, -0.007967478595674038, 0.04196692630648613, 0.030334409326314926, 0.00386065780185163, 0.02083856612443924, 0.02736150473356247, -0.046400267630815506, 0.007682180032134056, -0.011252802796661854, 0.04502236098051071, 0.0254476647824049, -0.00038485805271193385, 0.004842446185648441 ]
[ -0.11037228256464005, -0.01077522523701191, -0.010823089629411697, -0.028485136106610298, 0.04055012762546539, -0.039733659476041794, 0.019238147884607315, 0.021734900772571564, -0.026709148660302162, -0.02605106495320797, -0.016027512028813362, -0.014047708362340927, 0.0007503325468860567, -0.0020124998409301043, 0.06458922475576401, 0.010873590596020222, -0.01532160397619009, -0.04735986888408661, 0.0008890507742762566, 0.01413651928305626, 0.022856805473566055, -0.020954331383109093, -0.016752922907471657, -0.034731000661849976, 0.02109537087380886, 0.04266481101512909, 0.03129255399107933, -0.038222651928663254, -0.0012234954629093409, -0.194346085190773, -0.0006689073052257299, 0.0023046480491757393, 0.027273673564195633, -0.04432452470064163, 0.002132865134626627, 0.03972920775413513, 0.0217659343034029, 0.02291686087846756, -0.0011508450843393803, 0.02408747933804989, 0.008508061990141869, 0.031659238040447235, -0.0652473196387291, -0.0424201637506485, 0.027929887175559998, 0.010462542995810509, 0.00284443493001163, -0.04986792430281639, -0.0012327914591878653, 0.032335314899683, -0.07893415540456772, -0.031208204105496407, -0.020626038312911987, -0.04327469691634178, 0.0022147083654999733, -0.01759897917509079, 0.03953506797552109, 0.08692757040262222, 0.005771429277956486, 0.04138745740056038, 0.031337328255176544, -0.04002257063984871, -0.11957789212465286, 0.07105433195829391, 0.07178913801908493, 0.06427139043807983, -0.03459101542830467, -0.015296485275030136, -0.004107472486793995, 0.1114681214094162, 0.014633839949965477, -0.0159580260515213, -0.012755886651575565, 0.07095213234424591, 0.014211198315024376, 0.00332727562636137, -0.001256353105418384, 0.012151849456131458, 0.05300728231668472, -0.04925568029284477, -0.010456268675625324, -0.01209046971052885, 0.0038202612195163965, 0.0033101197332143784, -0.04357140138745308, -0.012220747768878937, -0.011044167913496494, 0.03922387585043907, 0.05821612849831581, 0.042201727628707886, 0.04420241340994835, -0.0229074377566576, 0.04828665778040886, 0.0007119668880477548, -0.08304385095834732, -0.015688762068748474, 0.004814749117940664, -0.009540792554616928, -0.04369530454277992, 0.3950069844722748, -0.043065618723630905, -0.0428650826215744, 0.050010282546281815, 0.017393244430422783, -0.018042197450995445, 0.005020597018301487, 0.04245719686150551, -0.0597497783601284, 0.009977887384593487, -0.028940683230757713, 0.02562827244400978, 0.010384658351540565, 0.04568510875105858, -0.020143475383520126, -0.008756744675338268, 0.020935658365488052, 0.03511958569288254, 0.0002657174482010305, -0.01824725791811943, 0.03331702947616577, -0.01082226075232029, 0.014149162918329239, 0.031406693160533905, -0.0020081447437405586, 0.0176025852560997, -0.02298140712082386, 0.010745299980044365, 0.08975894749164581, 0.029000621289014816, 0.0006090026581659913, 0.05194751173257828, -0.0484950914978981, -0.07684092223644257, 0.028767213225364685, 0.0056451670825481415, -0.00811848882585764, -0.007372158579528332, -0.03126135095953941, -0.0013404801720753312, 0.036984752863645554, 0.015158582478761673, -0.0009671137086115777, 0.0030897471588104963, 0.00009146887896349654, -0.05043374374508858, 0.081283800303936, 0.009853369556367397, -0.03497384488582611, -0.019082002341747284, -0.05300412327051163, 0.03702525421977043, 0.024451114237308502, -0.012639450840651989, -0.06254784762859344, 0.030606672167778015, 0.01842971332371235, 0.06943973153829575, 0.00657712621614337, -0.03855382651090622, -0.024545546621084213, -0.02659427560865879, -0.008843821473419666, -0.05477525293827057, 0.04768102988600731, 0.0431644432246685, -0.047943536192178726, -0.03281129524111748, 0.010011558420956135, 0.051675643771886826, -0.06800635159015656, -0.015547825954854488, 0.0073765176348388195, -0.038190942257642746, -0.055650148540735245, 0.0175787340849638, -0.03660322725772858, -0.02242807112634182, 0.005939985625445843, 0.051584262400865555, 0.024011416360735893, 0.03867154195904732, 0.016014333814382553, -0.042017314583063126, 0.0048820567317306995, -0.009836528450250626, -0.06218599155545235, -0.043490875512361526, -0.0011260032188147306, -0.03847198933362961, 0.002675746800377965, -0.014175375923514366, -0.02393762208521366, -0.09473375976085663, 0.058313414454460144, -0.03577001392841339, -0.03333815932273865, 0.022382481023669243, -0.013568165712058544, -0.022609850391745567, -0.010632247664034367, -0.013216828927397728, 0.04400858283042908, -0.026109779253602028, 0.030377186834812164, -0.05358009785413742, 0.0741003230214119, 0.06300054490566254, -0.08952657133340836, 0.06382455676794052, 0.04417841136455536, -0.04265950620174408, -0.03816140070557594, 0.02394714578986168, 0.03794518858194351, -0.018508782610297203, -0.012786033563315868, 0.00004722835365100764, 0.031632523983716965, -0.005256860051304102, 0.03833993896842003, -0.007369681261479855, 0.010470032691955566, 0.020186787471175194, -0.35222846269607544, -0.06743323057889938, -0.038970544934272766, -0.025172101333737373, 0.012727970257401466, -0.05587879940867424, -0.025555934756994247, -0.004529140889644623, -0.03329966217279434, -0.0028175339102745056, 0.11198097467422485, -0.020306183025240898, -0.012272884137928486, -0.11665552854537964, 0.004497096408158541, -0.016320358961820602, -0.042487408965826035, -0.04407808184623718, -0.03187311813235283, 0.002440968295559287, -0.008084929548203945, 0.012295483611524105, 0.011630742810666561, -0.08248664438724518, -0.007146622519940138, -0.05405311658978462, 0.09439260512590408, -0.05158774554729462, 0.12249422073364258, -0.021374378353357315, 0.03233972191810608, -0.009134679101407528, 0.03143000602722168, -0.10017769783735275, 0.017718376591801643, -0.018995698541402817, -0.009184785187244415, 0.014708412811160088, 0.021059352904558182, -0.049385346472263336, -0.055270928889513016, 0.01450603548437357, -0.05093526840209961, -0.04244072735309601, -0.061011962592601776, 0.0038818761240690947, -0.041776467114686966, -0.024893222376704216, -0.03157275915145874, 0.0916883647441864, -0.0012740393867716193, -0.003103403141722083, 0.027025310322642326, 0.02950795367360115, 0.017838064581155777, -0.035497844219207764, -0.09223004430532455, 0.026558883488178253, 0.022718409076333046, 0.0032493409235030413, 0.0338086299598217, 0.07343469560146332, 0.025052949786186218, -0.060715459287166595, -0.004711621906608343, 0.012386780232191086, 0.0098287183791399, -0.03388429805636406, 0.05931999534368515, -0.015677880495786667, -0.0032245588954538107, 0.13204634189605713, 0.0077187721617519855, -0.03333471342921257, 0.023916486650705338, 0.021907227113842964, -0.01950586959719658, 0.03615821152925491, 0.014497954398393631, -0.02112477272748947, 0.02184022217988968, 0.0050015016458928585, 0.04806851968169212, -0.023831112310290337, -0.022937923669815063, -0.0005185935879126191, -0.016549888998270035, -0.025658337399363518, 0.0520617701113224, 0.001797447563149035, -0.04328489676117897, -0.020826617255806923, -0.027995355427265167, -0.07276341319084167, 0.06406015157699585, 0.020761417225003242, -0.24091079831123352, -0.011673743836581707, 0.07079130411148071, 0.028071468695998192, -0.015933910384774208, 0.06178383529186249, 0.030714554712176323, -0.05195380002260208, 0.028316562995314598, -0.011119475588202477, -0.006691363174468279, 0.03238799422979355, 0.01003443356603384, -0.004285804927349091, 0.0666232630610466, -0.020026369020342827, 0.06064039468765259, -0.00908403005450964, 0.03635341674089432, -0.007857168093323708, 0.024752430617809296, 0.009039793163537979, 0.16937093436717987, -0.022455958649516106, 0.033166445791721344, 0.0157314520329237, 0.02338627725839615, 0.029761459678411484, 0.0910138264298439, 0.02239658497273922, -0.006955282296985388, 0.012197348289191723, 0.054052211344242096, 0.0184201467782259, 0.023010818287730217, -0.06272328644990921, -0.03473696857690811, 0.011859927326440811, 0.012215951457619667, 0.002067931229248643, 0.021571151912212372, 0.011716270819306374, 0.0005939769325777888, 0.01004850771278143, 0.092491514980793, 0.040620770305395126, -0.0074847121722996235, -0.03710322827100754, -0.04248270392417908, -0.019086776301264763, -0.029826944693922997, -0.02708451636135578, 0.014348112046718597, -0.012422277592122555, 0.010971495881676674, 0.05341746285557747, 0.04731151834130287, -0.006030193995684385, -0.022128455340862274, 0.0025760119315236807, 0.002163431840017438, -0.011103620752692223, 0.0936461016535759, 0.05428273603320122, 0.0479750894010067 ]
[ -0.01041154470294714, -0.005277335178107023, -0.001018413226120174, 0.019365232437849045, -0.022916298359632492, 0.008230263367295265, -0.0026344230864197016, 0.025814322754740715, 0.010108188726007938, 0.025439053773880005, -0.008632998913526535, 0.007679985836148262, -0.008100197650492191, -0.019729606807231903, 0.022931337356567383, 0.022003570571541786, -0.008456914685666561, 0.03312830254435539, 0.019684625789523125, 0.004332063719630241, 0.012429364956915379, 0.010168110951781273, 0.025772232562303543, -0.010596913285553455, -0.011323309503495693, -0.011022884398698807, -0.006048023235052824, -0.013310205191373825, 0.01797892153263092, -0.13164672255516052, 0.007321492303162813, -0.016966529190540314, -0.06174237281084061, 0.03143865615129471, -0.024981869384646416, -0.04341933876276016, 0.0158564243465662, 0.02677146904170513, -0.006007103715091944, -0.007689188234508038, -0.00006555891741300002, 0.0010858495952561498, -0.010754771530628204, -0.013616607524454594, -0.00045691407285630703, -0.037893109023571014, 0.004384925123304129, -0.01423108484596014, -0.02260655350983143, -0.05466474965214729, -0.011558450758457184, -0.01983204483985901, -0.008187312632799149, 0.00043269526213407516, 0.028887344524264336, -0.017567280679941177, 0.009601552039384842, 0.010710961185395718, 0.01687033101916313, 0.021116264164447784, -0.0017380417557433248, 0.014956831932067871, -0.013485305942595005, -0.009186338633298874, -0.013626539148390293, -0.015139250084757805, -0.019108466804027557, 0.0006515770801343024, -0.027192937210202217, 0.008237099274992943, -0.030531469732522964, 0.01281135156750679, -0.0008964640437625349, -0.01236041821539402, 0.008513707667589188, 0.003971788566559553, -0.0026485996786504984, -0.011976420879364014, 0.018505962565541267, -0.025563549250364304, -0.012455708347260952, 0.012967446818947792, 0.0098167285323143, -0.0005196778802201152, 0.02305658534169197, 0.011620174162089825, 0.03210311383008957, 0.004593160003423691, -0.008954605087637901, 0.014562325552105904, 0.0030748837161809206, 0.026520805433392525, 0.0015697772614657879, 0.02808501571416855, -0.09804090112447739, -0.033385295420885086, 0.014590299688279629, -0.02206474542617798, -0.004016932565718889, 0.8700113296508789, -0.01790313422679901, 0.04380834847688675, 0.02389697916805744, 0.01733221672475338, 0.01364839170128107, -0.022315634414553642, 0.028671322390437126, -0.0050138370133936405, 0.033841848373413086, -0.044727545231580734, 0.03081509657204151, 0.039793483912944794, 0.018972311168909073, 0.027676641941070557, -0.007597506511956453, 0.025591794401407242, 0.0006802227580919862, -0.006071407813578844, 0.00722355954349041, 0.013705948367714882, -0.0049204337410628796, -0.030030351132154465, 0.006262826733291149, 0.03416889160871506, 0.0022740999702364206, -0.1675041913986206, -0.001399869448505342, -8.502112601891564e-33, 0.05083835497498512, 0.0059395465068519115, -0.004218534100800753, 0.00433975737541914, 0.018207652494311333, -0.00346248596906662, 0.01634986512362957, 0.025045927613973618, 0.020922187715768814, -0.03822730481624603, 0.0186507236212492, -0.040905922651290894, -0.0041287983767688274, 0.017824426293373108, 0.024207424372434616, -0.01115127932280302, -0.024682549759745598, 0.04014752432703972, 0.02374587021768093, 0.00925727840512991, 0.0030460087582468987, 0.02433694526553154, 0.004731450229883194, -0.005215552635490894, 0.00873273704200983, 0.004522173665463924, 0.011138150468468666, 0.030070561915636063, 0.0016930485144257545, -0.03425595909357071, -0.005176938604563475, 0.01900181919336319, -0.04556560143828392, 0.021845350041985512, 0.01451273262500763, -0.02958914078772068, 0.005011916160583496, 0.02164681814610958, -0.018599029630422592, 0.00333972810767591, -0.05334913358092308, -0.005156992468982935, -0.02489241026341915, -0.006309778429567814, -0.008439963683485985, -0.06340272724628448, -0.017029883340001106, 0.003697898704558611, 0.04152829945087433, -0.023484228178858757, -0.025011327117681503, 0.03280813992023468, 0.01856662705540657, 0.0005287614185363054, 0.006084240972995758, 0.022829823195934296, -0.009891733527183533, -0.014899782836437225, 0.024686183780431747, 0.06288550049066544, 0.03395862132310867, 0.0031529609113931656, -0.04217424616217613, 0.002837837440893054, -0.02649080567061901, -0.030392572283744812, 0.03223814070224762, -0.042151376605033875, 0.03745531663298607, -0.04723040759563446, -0.024425607174634933, -0.01641290821135044, -0.0058167604729533195, -0.014009939506649971, 0.013933922164142132, -0.016886377707123756, 0.00026608584448695183, 0.01762544922530651, 0.013804304413497448, 0.006847376935184002, 0.013069109991192818, -0.01807730458676815, 0.001256411662325263, -0.03570881858468056, 0.023915143683552742, -0.026793699711561203, -0.030204597860574722, -0.013310234993696213, -0.023706723004579544, 0.0029300067108124495, 0.03487759828567505, 0.023613575845956802, -0.02180943451821804, -0.023824770003557205, 0.009203242138028145, 8.895152362400443e-33, -0.010354016907513142, 0.018672309815883636, -0.027606191113591194, 0.020277321338653564, 0.003912856336683035, -0.019369781017303467, 0.0020913463085889816, -0.009051603265106678, -0.03687307983636856, 0.009076319634914398, 0.0005516087985597551, 0.031790513545274734, -0.018581941723823547, 0.03827226907014847, 0.07597126811742783, -0.039976559579372406, 0.020702889189124107, -0.016881555318832397, -0.0060691069811582565, -0.01336980052292347, 0.042977917939424515, 0.0071817743591964245, 0.013468899764120579, -0.012214934453368187, 0.026775414124131203, 0.04119720309972763, -0.03949562460184097, 0.014778917655348778, 0.0024975426495075226, 0.01010306179523468, 0.0069157518446445465, 0.014858154579997063, 0.021391645073890686, -0.00792817771434784, -0.005870476830750704, -0.010226774029433727, 0.006331560201942921, -0.016749951988458633, 0.004101806320250034, 0.007066432386636734, 0.00971450936049223, 0.009808441624045372, 0.01358871441334486, 0.05004611983895302, 0.0030240335036069155, 0.006395012140274048, 0.00578436441719532, -0.008859626017510891, 0.012727674096822739, -0.008286049589514732, -0.005362140946090221, -0.0030571476090699434, 0.007121114991605282, 0.02106504514813423, 0.003691768506541848, -0.022805001586675644, -0.039908576756715775, 0.003287876956164837, 0.012125964276492596, 0.03802948072552681, 0.01699698530137539, 0.023187611252069473, -0.024072036147117615, 0.004545185249298811, -0.010973402298986912, -0.008452228270471096, -0.0262408796697855, -0.009815303608775139, -0.03391864895820618, 0.001251078792847693, -0.03758028894662857, -0.008534973487257957, -0.00893218070268631, 0.029937326908111572, 0.01875198446214199, -0.014421266503632069, -0.022825414314866066, 0.0014901336980983615, -0.004865133203566074, 0.017467400059103966, 0.012868850491940975, -0.028988949954509735, 0.01970759592950344, -0.020982841029763222, -0.018188877031207085, 0.013039223849773407, 0.004515481181442738, 0.018603457137942314, -0.028677375987172127, -0.0189479049295187, -0.03288038447499275, 0.010547240264713764, -0.021765433251857758, 0.010646417737007141, 0.0049261352978646755, -1.3835702361575386e-8, -0.039211709052324295, 0.0009448355995118618, -0.0074013168923556805, 0.027929283678531647, 0.01415375154465437, -0.021152092143893242, -0.030423477292060852, 0.007509837858378887, -0.009033085778355598, -0.004015813115984201, 0.0032543959096074104, 0.013800296001136303, 0.020415659993886948, 0.009157110936939716, 0.020881863310933113, -0.05775529518723488, -0.028475821018218994, -0.009121403098106384, 0.010855112224817276, 0.03316299244761467, 0.0431976392865181, 0.045744527131319046, -0.0047766342759132385, 0.01172393187880516, 0.014484920538961887, -0.00654729176312685, 0.009056895039975643, -0.07239996641874313, -0.017599383369088173, 0.01583409123122692, 0.013187931850552559, -0.02394961751997471, -0.030958788469433784, 0.02507820352911949, -0.04012054577469826, 0.004926633555442095, -0.003436492057517171, 0.01901163160800934, 0.011134550906717777, 0.00649112556129694, -0.007087544072419405, -0.0062984563410282135, 0.025188937783241272, -0.00530356727540493, 0.010763376019895077, -0.0059519438073039055, -0.018675586208701134, -0.014206225983798504, -0.006282780785113573, -0.06603661179542542, 0.01237423624843359, 0.0217643603682518, 0.0038098604418337345, 0.015779176726937294, 0.0027699205093085766, 0.020847484469413757, -0.0007480746135115623, -0.01006858330219984, -0.04005792737007141, 0.01703975349664688, 0.032412052154541016, 0.026992376893758774, -0.019335072487592697, -0.02866271883249283 ]
listening-to-your-tests-an-example
https://markhneedham.com/blog/2010/04/27/listening-to-your-tests-an-example
false
2010-04-29 23:51:17
QTB: thetrainline.com - 'Scale at speed'
[ "qtb" ]
[ "QTB" ]
About 18 months on from the http://www.markhneedham.com/blog/2008/09/24/onshore-or-offshore-the-concepts-are-the-same/[first ThoughtWorks QTB that I saw about offshoring], on Wednesday night I attended the latest QTB in Manchester titled 'http://www.thoughtworks.com/thetrainline.com-qtb[thetrainline.com - Scale at speed]'. The presenters were thetrainline.com's CIO David Jack and the Managing Director of ThoughtWorks India, Mahesh Baxi. They took us on the journey that thetrainline.com have taken while working with ThoughtWorks to re-architect part of their system to allow them to quickly deliver new functionality on the 2,500 websites that their portal technology powers. These were some of the key points that stood out for me: * Early on in the talk David described how they needed to make a decision about whether to *rewrite the system from scratch or build on top of the current one and strategically rewrite parts of it*. The latter option was the chosen one and http://www.magpiebrain.com/2010/01/10/the-great-rewrite/[others] http://blog.objectmentor.com/articles/2009/01/09/the-big-redesign-in-the-sky[seem to be in agreement] that this is the best way to approach the problem. The argument for doing this that I've often heard is that you end up playing catch up with the old system and eventually end up in the situation where you need to re-write the re-write but in this case David suggested that re-writing the whole system was not an option for the business. * David described the early trainline approach to development where it sounded like the main goal was to *get features out to market as quickly as possible*. He spoke about the 'first mover advantage' whereby if you're the only product available to customers then the quality of your offering isn't the most important aspect since you are the only option. James Shore describes this as 'http://jamesshore.com/Blog/CardMeeting/Voluntary-Technical-Debt.html[voluntary technical debt]' and I think we need to at least consider whether it's more important to get quick feedback on our work by getting it into production quickly and perhaps taking some shortcuts along the way. David was quick to point out that at some stage you do need to address that technical debt otherwise you'll end up in a world of pain. I'm not sure how exactly you know where to draw the line with respect to this because it would be very easy to just get into a hacking culture until you get to the stage where it's almost impossible to add any new features to the code base. * A bit of time was spent talking about various *metrics* which were used including looking at the cost per story point delivered. They didn't go into further detail on that but it seems like it's the dangerous area of metrics which are easy to game that Dan North talks about in his 'http://www.vimeo.com/7849591[Our obsession with efficiency]' presentation. I've not really come across a good low level metric which allows you to accurately tell how well a team is doing. The best measure seems to be just looking at whether a team is consistently delivering valuable features to their users. That's often considered a bit wishy washy so it'd be interesting to know if anyone has a better way to measure performance that works well. * They both spoke of the need to *ensure effective communication* between 13 teams operating across 3 different locations (Bangalore, Pune and London) and suggested that rotating people and making extensive use of video conferencing allowed this to be achieved. The rotation included having subject matter experts from thetrainline.com going to India and working with the teams and David suggested that you still need to have a big commitment to a project if you want it to be successful even if it is being done offshore. * In his summary David emphasised the *importance of releasing frequently into production*. In a lot of organisations releasing into production ends up becoming a big deal and so it happens less and less frequently but David suggested that thetrainline.com are releasing new features every 6 weeks and are aiming to get that down to every fortnight. I guess the ultimate is to have http://timothyfitz.wordpress.com/2009/02/10/continuous-deployment-at-imvu-doing-the-impossible-fifty-times-a-day/[continuous delivery as described by Timothy Fitz in his blog post]. Overall this was quite an interesting talk to attend and gave me a bit more insight into some of the similar and different challenges that are faced by projects operating across multiple time zones.
null
null
[ 0.009439666755497456, -0.011401966214179993, 0.022541269659996033, 0.049331702291965485, 0.10599366575479507, 0.01779182069003582, -0.008762107230722904, 0.05601832643151283, 0.02511281706392765, -0.015944918617606163, -0.036306753754615784, 0.007987027987837791, -0.04958083853125572, 0.02286534011363983, -0.009053505025804043, 0.06957082450389862, 0.0520804189145565, -0.006623558700084686, 0.018648426979780197, -0.016894718632102013, 0.040103331208229065, 0.07945837080478668, 0.04102440923452377, 0.017151715233922005, 0.04118083417415619, -0.010941279120743275, 0.01193330530077219, -0.010710710659623146, -0.04791543260216713, -0.016327733173966408, 0.04672827199101448, -0.005990901030600071, 0.0023138225078582764, 0.026729140430688858, 0.026966147124767303, -0.02458372339606285, -0.0183993112295866, 0.019859394058585167, -0.01627979427576065, -0.004868960939347744, -0.08402939140796661, 0.047648727893829346, -0.012149592861533165, 0.024221915751695633, -0.046606969088315964, 0.006811723578721285, -0.029205352067947388, -0.00027898946427740157, 0.010896890424191952, -0.016648530960083008, -0.06865404546260834, 0.039770398288965225, -0.02606288716197014, 0.001575888367369771, -0.00698267063125968, 0.03857188671827316, -0.00014338242181111127, -0.06535980105400085, 0.015081445686519146, -0.03304567188024521, 0.015558096580207348, -0.021113043650984764, 0.004515145905315876, 0.03472006693482399, 0.0332217663526535, -0.03798949718475342, 0.013605301268398762, 0.018654532730579376, -0.030347833409905434, 0.0035055684857070446, -0.00902681052684784, -0.00767733808606863, 0.004824697505682707, 0.011213719844818115, 0.010507866740226746, -0.047489043325185776, -0.008460497483611107, 0.07278385013341904, 0.019906770437955856, 0.034370679408311844, -0.01993759348988533, 0.016429102048277855, -0.003509758971631527, 0.03784528747200966, -0.021147411316633224, -0.06150585040450096, 0.007988563738763332, -0.011881043203175068, -0.06829920411109924, 0.06733464449644089, 0.022426707670092583, -0.03277136757969856, 0.04395046457648277, 0.04811195656657219, -0.022094354033470154, -0.009030095301568508, 0.03235049545764923, 0.014726567082107067, -0.0022331613581627607, -0.01571270450949669, -0.015124051831662655, -0.031126078218221664, -0.007624398451298475, 0.0016826781211420894, -0.05191157013177872, -0.008286237716674805, -0.020223431289196014, 0.005607989616692066, 0.010516495443880558, 0.0067419251427054405, -0.035583287477493286, 0.02603999152779579, -0.00972037110477686, 0.022194983437657356, -0.0792456641793251, 0.05302135646343231, 0.00532813835889101, -0.04356808587908745, -0.026570647954940796, -0.006025007925927639, 0.038706619292497635, 0.024123748764395714, -0.029413124546408653, 0.058023322373628616, 0.03226843103766441, 0.0029407592955976725, -0.03753627464175224, 0.0514252632856369, -0.022793253883719444, -0.06805003434419632, 0.008788052015006542, 0.0559568852186203, -0.04749012365937233, 0.00726360734552145, -0.013398864306509495, -0.029286541044712067, 0.0061325146816670895, -0.009571910835802555, 0.044125646352767944, 0.044212982058525085, 0.0026301960460841656, -0.033377207815647125, 0.013890238478779793, 0.03168782964348793, 0.003841791534796357, 0.00007102613017195836, 0.004123375751078129, -0.02050890028476715, -0.051573529839515686, -0.025570347905158997, -0.017288902774453163, 0.014216667041182518, 0.016004346311092377, -0.04209601879119873, 0.02558969520032406, 0.07338709384202957, 0.05788308382034302, 0.0005762630025856197, -0.017440710216760635, 0.03226508945226669, 0.026603635400533676, 0.034904446452856064, 0.026525871828198433, 0.024521198123693466, 0.010363980196416378, -0.01450907252728939, 0.0034785124007612467, 0.025848187506198883, -0.0005736432503908873, 0.003237622557207942, -0.06596671044826508, -0.04809779301285744, 0.06729893386363983, -0.033744342625141144, -0.03347603231668472, 0.04087969288229942, 0.07195552438497543, 0.0382990688085556, 0.029999932274222374, -0.0009400270064361393, -0.07616668939590454, 0.031773410737514496, 0.021757803857326508, 0.037056103348731995, 0.042346712201833725, -0.03776326775550842, 0.04800621420145035, 0.03132596239447594, 0.005131210666149855, 0.04337378591299057, -0.06456466019153595, -0.06789950281381607, -0.04077516868710518, -0.0110572325065732, 0.025119908154010773, -0.014279668219387531, 0.014251071959733963, 0.08671768754720688, -0.0015044317115098238, 0.05402597412467003, 0.03552395850419998, 0.006846554111689329, 0.014662259258329868, -0.046053603291511536, -0.03853584825992584, 0.076250821352005, 0.03834132105112076, 0.0003210404247511178, -0.0362417958676815, 0.027774348855018616, -0.008480609394609928, -0.019422387704253197, 0.04455418884754181, -0.019187958911061287, 0.033128201961517334, -0.0014498542295768857, 0.06016642600297928, -0.04278203472495079, 0.035053763538599014, -0.03285285830497742, 0.023251719772815704, 0.023426484316587448, -0.025216473266482353, 0.02883896417915821, -0.00047984858974814415, 0.10962269455194473, 0.03534788265824318, -0.05656243488192558, -0.07500720769166946, 0.03324074298143387, 0.016223886981606483, -0.048313774168491364, -0.013706248253583908, -0.01765996217727661, 0.023705171421170235, 0.018756598234176636, -0.06938951462507248, -0.026978854089975357, 0.020925475284457207, -0.037431612610816956, 0.015905262902379036, 0.03215048462152481, -0.014968077652156353, 0.05897051468491554, -0.0007877465686760843, 0.015091697685420513, -0.020235151052474976, -0.027669504284858704, -0.057926490902900696, -0.010159862227737904, 0.011695855297148228, -0.014773149974644184, 0.02963385172188282, -0.01590900868177414, -0.03028019517660141, -0.04692193865776062, -0.0331743061542511, 0.01713663339614868, 0.03127385303378105, 0.07295962423086166, -0.012100009247660637, 0.07529141753911972, 0.003203838597983122, 0.05560264736413956, -0.006869057659059763, -0.03508451581001282, -0.05037456750869751, -0.04254765063524246, 0.023935358971357346, 0.024987593293190002, 0.0076852599158883095, -0.0016366754425689578, -0.002459591953083873, 0.01768835075199604, 0.0012386429589241743, -0.012101027183234692, 0.026545336470007896, -0.010281280614435673, -0.0015610662521794438, -0.012442058883607388, -0.01617288403213024, 0.061742812395095825, -0.047580067068338394, -0.00375969591550529, 0.03921684995293617, -0.08348485082387924, 0.020568573847413063, -0.062654048204422, -0.030443182215094566, -0.000002272553956572665, 0.009958777576684952, 0.024257222190499306, 0.02451859600841999, 0.02102501504123211, 0.05422285571694374, 0.01149495504796505, 0.006549554876983166, -0.016128916293382645, -0.026727980002760887, 0.042556893080472946, 0.006452127825468779, 0.0014785445528104901, 0.041136398911476135, 0.010150696150958538, 0.014142083935439587, -0.053177375346422195, 0.04950717091560364, -0.03208763152360916, -0.29329097270965576, 0.02979973331093788, 0.02019554376602173, -0.040139395743608475, 0.029149696230888367, -0.017081940546631813, 0.017085416242480278, -0.04983067512512207, -0.02429957129061222, 0.006617493461817503, -0.04063243791460991, -0.05863117799162865, -0.02034648321568966, 0.029258616268634796, -0.000727282022126019, 0.0319506861269474, 0.03189370408654213, -0.0400007888674736, 0.012763796374201775, 0.043059900403022766, -0.023639069870114326, -0.09060875326395035, -0.001762104220688343, 0.04031303524971008, 0.04674476757645607, 0.0685398131608963, -0.07510259747505188, 0.03867834061384201, -0.05374791473150253, -0.0013426244258880615, -0.016073502600193024, -0.0014634740073233843, 0.030171027407050133, -0.008253645151853561, -0.01668703556060791, -0.03159623220562935, 0.032229334115982056, -0.0003159627958666533, 0.0189761184155941, -0.009882756508886814, -0.031109612435102463, -0.01690705120563507, 0.004580194130539894, 0.02037898823618889, 0.06691337376832962, 0.0002540950372349471, -0.08614843338727951, -0.008983787149190903, -0.018638651818037033, 0.07633386552333832, -0.02657855488359928, -0.026628710329532623, -0.01909535564482212, 0.031713780015707016, -0.029146961867809296, -0.017550615593791008, -0.03741640970110893, -0.04127966985106468, -0.04625549167394638, -0.012057528831064701, -0.005231652408838272, -0.025479765608906746, -0.014751407317817211, -0.05026061832904816, 0.0007697178516536951, -0.052361879497766495, -0.06809816509485245, -0.005586882587522268, 0.0854932889342308, 0.007872629910707474, -0.04088639095425606, 0.04221658781170845, 0.01354963518679142, -0.10229159891605377, -0.007146138697862625, -0.006517750211060047, -0.01428056601434946, 0.018688037991523743, 0.01678287982940674, 0.014687803573906422, -0.012004553340375423, -0.04256638512015343, 0.02063581347465515, -0.0006658868514932692, 0.028081996366381645, -0.03813006728887558, 0.03110336884856224, 0.0410509817302227, -0.023654108867049217, 0.015544816851615906, 0.0717601552605629, -0.0043035452254116535, -0.03313249349594116, -0.02388615533709526, 0.021965140476822853, -0.0036004388239234686, 0.0017271997639909387, -0.010291073471307755, -0.003776075318455696, 0.012544328346848488, 0.003068053862079978, -0.04768921434879303, 0.01492338813841343, -0.025794174522161484, -0.008532821200788021, -0.008691789582371712, -0.021302631124854088, 0.012726210989058018, 0.007002389058470726, 0.03227817639708519, -0.0003101207548752427, -0.022647563368082047, 0.01576787233352661, -0.044981446117162704, -0.031871944665908813, -0.00441207317635417, -0.016942953690886497, 0.04498743638396263, -0.0038396369200199842, -0.02218726836144924, -0.020871175453066826, 0.006517420988529921, -0.0016868647653609514, 0.001078341156244278, -0.06287944316864014, -0.016664432361721992, -0.015599551610648632, -0.006568404380232096, 0.010749444365501404, 0.029539508745074272, -0.028903845697641373, 0.011179164052009583, 0.019114824011921883, -0.038109563291072845, 0.014308644458651543, -0.03976490721106529, -0.0693691074848175, -0.0380692183971405, 0.021641390398144722, 0.03224450349807739, -0.005653364583849907, 0.04921552166342735, 0.006657202262431383, 0.00873000267893076, 0.047477442771196365, 0.010953851044178009, 0.007585201412439346, -0.019890354946255684, 0.048018086701631546, 0.0018487636698409915, -0.01089375838637352, -0.06006123870611191, 0.015051142312586308, -0.026781966909766197, -0.013605231419205666, -0.0199770275503397, 0.03904822841286659, -0.02771339938044548, -0.02718137390911579, -0.002131004584953189, 0.017586002126336098, -0.04927566275000572, -0.040417108684778214, -0.007076170761138201, 0.04756631702184677, 0.04563431441783905, -0.019505267962813377, 0.017361117526888847, 0.01754949428141117, 0.00140357855707407, 0.00406417902559042, 0.013067304156720638, -0.04454859346151352, -0.0027653397992253304, 0.016724370419979095, 0.013516237959265709, -0.018762772902846336, -0.006259226705878973, 0.05073004215955734, 0.020017193630337715, -0.0031052641570568085, -0.04751221463084221, 0.005584198050200939, 0.03377813473343849, 0.05064110830426216, 0.01680908352136612, -0.002004583366215229, 0.015233609825372696, -0.021545665338635445, -0.02213571034371853, -0.0458388514816761, 0.003107106313109398, -0.0031993116717785597, 0.012605073861777782, -0.03190573304891586, -0.07899440824985504, 0.0682041198015213, 0.02449123002588749, 0.006102028302848339, 0.03000771999359131, -0.013564875349402428, -0.003661820897832513, -0.017948249354958534, 0.037073567509651184, 0.05266542360186577, -0.06216345354914665, -0.012605056166648865, -0.02311578579246998, 0.024563265964388847, 0.015270015224814415, -0.016729751601815224, -0.030894817784428596, -0.009569413959980011, -0.028006499633193016, 0.01746143028140068, -0.06725180894136429, -0.014006220735609531, -0.028015097603201866, 0.032113343477249146, 0.010062075220048428, 0.0023056345526129007, -0.019523177295923233, -0.025008974596858025, -0.00447838194668293, -0.04009542241692543, 0.03503122553229332, -0.047038331627845764, -0.0020247953943908215, -0.010706559754908085, -0.04561837762594223, -0.016152940690517426, -0.03404887765645981, -0.007289422210305929, 0.02784387394785881, -0.022199435159564018, 0.007691519800573587, -0.015801770612597466, -0.007688841782510281, 0.0021528233774006367, 0.043006930500268936, -0.0073472182266414165, -0.03857199102640152, -0.0250846054404974, -0.018666310235857964, -0.04470827803015709, 0.03094792738556862, -0.02382127195596695, 0.017518019303679466, 0.03464086353778839, 0.05722634866833687, 0.007172001525759697, 0.03769117221236229, -0.03566863760352135, -0.02317565120756626, 0.04248001426458359, -0.07304786145687103, -0.02909802459180355, -0.04463394731283188, -0.0642503872513771, 0.015185991302132607, -0.005503733176738024, 0.0415380597114563, -0.04961211234331131, 0.04746171087026596, 0.035799771547317505, 0.027472665533423424, 0.02124645933508873, 0.016751404851675034, 0.030239198356866837, -0.050339601933956146, -0.005538638215512037, -0.09038003534078598, 0.0025737688411027193, 0.04343244805932045, 0.018630266189575195, 0.01677110604941845, 0.019201571121811867, -0.05543103069067001, 0.04450768604874611, -0.0649263858795166, -0.04231464862823486, 0.03609186410903931, -0.008557671681046486, -0.029105596244335175, 0.005648850928992033, -0.0761488825082779, 0.021939542144536972, 0.028407685458660126, -0.05077577009797096, -0.017299581319093704, -0.031319599598646164, 0.04444706439971924, 0.00043874571565538645, 0.034706514328718185, -0.05779198184609413, -0.01827639900147915, 0.05947868898510933, 0.01666920818388462, -0.009925478138029575, 0.0556902252137661, 0.008204756304621696, 0.023530663922429085, 0.017537595704197884, 0.007817750796675682, -0.006530238315463066, 0.02290797047317028, -0.015762198716402054, -0.0682029202580452, 0.056912876665592194, 0.0008666149224154651, -0.015187881886959076, -0.04205792024731636, 0.043238565325737, 0.017451757565140724, -0.01092793233692646, -0.06781085580587387, 0.01582823507487774, -0.057175375521183014, -0.025914855301380157, -0.020045625045895576, -0.004125203471630812, -0.027950163930654526, 0.035410281270742416, 0.0020721089094877243, 0.01688503846526146, 0.07790267467498779, -0.003915969282388687, -0.016049958765506744, -0.015412402339279652, 0.0970100462436676, 0.05460982397198677, 0.05730804428458214, -0.027950230985879898, 0.05516600236296654, -0.01619778387248516, -0.0482085682451725, 0.01640739105641842, -0.003163331188261509, -0.002933960873633623, -0.02737857587635517, 0.021189384162425995, 0.06941448897123337, -0.017856964841485023, 0.06693124771118164, -0.010987631045281887, -0.007489444687962532, -0.004548664670437574, 0.030932052060961723, 0.008791650645434856, 0.06931614875793457, 0.01586620882153511, 0.016812661662697792, -0.023717889562249184, -0.07225661724805832, 0.027996135875582695, -0.03402555361390114, -0.0405413880944252, 0.03962424397468567, -0.0074697681702673435, 0.02007548324763775, -0.0031095168087631464, 0.03279218077659607, 0.07656554877758026, -0.05627451837062836, 0.026980437338352203, -0.026607571169734, 0.036256663501262665, -0.014302446506917477, 0.01530050951987505, -0.0028759066481143236, -0.008291291072964668, -0.0023248118814080954, -0.0229234267026186, -0.028893090784549713, -0.016886219382286072, -0.002645700704306364, 0.026190707460045815, -0.018629148602485657, 0.0019207720179110765, 0.045017488300800323, -0.013562005013227463, -0.04717081040143967, -0.058508485555648804, -0.01831084117293358, -0.052022479474544525, -0.06650017946958542, -0.02273685112595558, 0.017518553882837296, -0.0007370526436716318, -0.03236628696322441, -0.018612148240208626, -0.016959354281425476, -0.04717022925615311, 0.07706690579652786, -0.05078430473804474, -0.007089896127581596, 0.0013731783255934715, 0.00490910978987813, -0.019598335027694702, 0.004805331118404865, 0.04846462234854698, -0.00855063647031784, -0.015398894436657429, -0.01951284520328045, 0.03849243372678757, 0.02300195023417473, -0.0010719392448663712, 0.01521302293986082, -0.08435068279504776, 0.029737016186118126, 0.028144506737589836, 0.000027535086701391265, -0.0675240233540535, 0.031985241919755936, 0.025644874200224876, -0.006417735945433378, 0.04361443221569061, -0.015895793214440346, 0.02762598916888237, -0.034231867641210556, 0.0030537869315594435, 0.006506876554340124, -0.004158914089202881, 0.03440861776471138, -0.01380052138119936, 0.0804360955953598, 0.03845187649130821, 0.006845659576356411, -0.04251710698008537, 0.009854240342974663, 0.013999844901263714, -0.003480342449620366, -0.021574772894382477, -0.031789083033800125, -0.024388065561652184, -0.06884824484586716, -0.03602657467126846, 0.0017759501934051514, -0.02935538999736309, -0.03128949552774429, 0.049674127250909805, 0.02522886171936989, -0.020789099857211113, 0.011789401061832905, -0.05425282567739487, 0.009692586027085781, -0.008693868294358253, -0.011236739344894886, -0.009356695227324963, 0.022046249359846115, 0.033607322722673416, 0.0007480587810277939, 0.031470127403736115, -0.03305771201848984, 0.012841811403632164, -0.0027720353100448847, 0.01705130934715271, 0.036960944533348083, 0.018082784488797188, -0.040447864681482315 ]
[ -0.07626598328351974, -0.02115841768682003, -0.025081433355808258, -0.02429572306573391, 0.03143739327788353, -0.050649017095565796, -0.04747709259390831, 0.02137776091694832, -0.022587168961763382, -0.020149992778897285, 0.011494962498545647, -0.003996962681412697, -0.01855512149631977, -0.007388496305793524, 0.08887314051389694, 0.014854463748633862, -0.0117283184081316, -0.09433240443468094, 0.033322159200906754, 0.030739735811948776, 0.01600738987326622, -0.06298424303531647, -0.05046267807483673, -0.01340471114963293, 0.015627235174179077, -0.0028174531180411577, 0.04442117363214493, -0.0025661704130470753, 0.015741676092147827, -0.16191023588180542, 0.013582151383161545, 0.0012477304553613067, -0.0005546375177800655, 0.00818934477865696, 0.03078574873507023, 0.05865129083395004, 0.007595106493681669, 0.003239041892811656, 0.01784803345799446, 0.03920063003897667, 0.01090278010815382, 0.016169937327504158, -0.03076023980975151, -0.009856858290731907, 0.025007128715515137, 0.01704956218600273, 0.010729360394179821, -0.014578009024262428, -0.018079498782753944, 0.016971595585346222, -0.05486496910452843, -0.014134773053228855, 0.0013271081261336803, -0.040468089282512665, -0.013530286960303783, 0.03266141191124916, 0.019627172499895096, 0.07541985809803009, 0.010759100317955017, 0.015239748172461987, 0.03611772507429123, -0.01523338072001934, -0.18179167807102203, 0.07987789809703827, 0.04077446088194847, 0.04645474627614021, -0.04301267862319946, -0.014645827002823353, -0.026285646483302116, 0.081337571144104, 0.021679062396287918, -0.033539775758981705, -0.037221185863018036, -0.0028893330600112677, 0.015150890685617924, 0.0023895183112472296, -0.006317425053566694, 0.05808868631720543, -0.011697734706103802, -0.046376220881938934, 0.018159950152039528, -0.004177492577582598, -0.05319783836603165, -0.0066461339592933655, -0.06438444554805756, 0.02184394747018814, -0.0065045906230807304, 0.054857444018125534, 0.02257774956524372, 0.03685791417956352, 0.035334184765815735, -0.009762364439666271, 0.04757661744952202, -0.020889822393655777, -0.09125737845897675, -0.019644496962428093, 0.002294122474268079, 0.03856343775987625, -0.041542332619428635, 0.4330440163612366, 0.019503725692629814, -0.00396560737863183, 0.0717356726527214, 0.03662369027733803, -0.0007184211863204837, 0.011456677690148354, -0.015447866171598434, -0.04000493139028549, 0.053380854427814484, -0.005334044340997934, 0.028112877160310745, 0.02684243582189083, 0.0669158473610878, -0.02715774066746235, 0.0019339264836162329, 0.036284297704696655, -0.0032873644959181547, 0.01419021375477314, -0.009326620027422905, -0.010746599175035954, -0.04312692582607269, 0.021123500540852547, 0.02670561522245407, 0.003837321186438203, -0.07323164492845535, -0.04018368571996689, 0.06552135944366455, 0.04952497407793999, 0.002091175876557827, 0.013317041099071503, 0.04192476347088814, -0.07312874495983124, -0.04148884117603302, 0.007958176545798779, 0.016662167385220528, 0.004290458280593157, 0.027109572663903236, -0.020587697625160217, -0.007766230963170528, 0.06076632812619209, -0.015677066519856453, -0.026607271283864975, -0.0034827389754354954, -0.03972025215625763, -0.02478284202516079, 0.09765509516000748, 0.06076870486140251, -0.04606812819838524, -0.01094278134405613, -0.001543416758067906, -0.012390177696943283, 0.00974660087376833, 0.032681550830602646, -0.08809417486190796, 0.027983535081148148, 0.020437680184841156, 0.06585831940174103, 0.009578763507306576, -0.04646284878253937, 0.0033454643562436104, -0.0008371627191081643, -0.02294045127928257, -0.0768500566482544, 0.06570524722337723, 0.06322319805622101, -0.14948928356170654, -0.03809938207268715, -0.005589388310909271, 0.05076226219534874, -0.05450117588043213, -0.02440221980214119, 0.021442340686917305, -0.00251159374602139, -0.007007627747952938, 0.05401526391506195, -0.03546972572803497, -0.029498524963855743, 0.006785138510167599, 0.021125344559550285, 0.02310463786125183, 0.022967316210269928, -0.02109473943710327, -0.04315606877207756, -0.014713125303387642, -0.05204496160149574, -0.08144644647836685, -0.05445514991879463, -0.01579972542822361, -0.03967878594994545, -0.009530431590974331, -0.028221553191542625, 0.009869043715298176, -0.10881689935922623, 0.11034450680017471, -0.027923505753278732, -0.021991044282913208, -0.004743587225675583, 0.006517731584608555, 0.0020581854041665792, -0.02114824950695038, -0.03721732273697853, 0.015013840049505234, -0.07318094372749329, 0.011336385272443295, -0.06714240461587906, 0.06750678271055222, 0.04723196104168892, -0.01067894697189331, 0.08760607987642288, 0.05869246646761894, 0.005556188523769379, -0.020793918520212173, 0.01883297599852085, 0.02096741273999214, 0.020318949595093727, -0.02947203814983368, 0.02355942688882351, 0.02697421796619892, -0.006410182919353247, 0.018277429044246674, -0.008966843597590923, 0.024786049500107765, -0.018278272822499275, -0.35246598720550537, -0.05261772498488426, -0.04362019896507263, 0.00026557044475339353, 0.041459742933511734, -0.06700985133647919, 0.011243214830756187, -0.001867114333435893, -0.006474487017840147, 0.028713898733258247, 0.06482034921646118, -0.01755252666771412, 0.02792704664170742, -0.054300274699926376, -0.009688358753919601, -0.010828055441379547, -0.030057746917009354, 0.008713253773748875, -0.03262415528297424, -0.0067939176224172115, -0.005572463385760784, 0.022747309878468513, -0.05041629448533058, -0.05905686691403389, -0.0016892666462808847, -0.05017278343439102, 0.11429916322231293, -0.020271126180887222, 0.078728087246418, -0.024443993344902992, 0.04933667555451393, -0.0009802558925002813, 0.04132917895913124, -0.11336878687143326, 0.00910597201436758, -0.00521352281793952, 0.056287672370672226, -0.021586045622825623, 0.006395746022462845, -0.014240000396966934, -0.04073338955640793, 0.011365560814738274, -0.05732336640357971, -0.04303042218089104, -0.06089717149734497, 0.007029274012893438, -0.06408368796110153, -0.028971772640943527, -0.032961655408144, 0.06878292560577393, 0.014759858138859272, -0.007458760403096676, 0.008879522792994976, 0.014335747808218002, 0.005477133672684431, -0.027622483670711517, -0.06624805182218552, 0.017857175320386887, 0.00024506630143150687, 0.016192294657230377, 0.009091045707464218, 0.08047469705343246, 0.025864914059638977, -0.026770660653710365, 0.01476538646966219, 0.003577959258109331, 0.009882606565952301, 0.04447261244058609, 0.03048832342028618, -0.0021712067537009716, -0.013344177976250648, 0.07170119136571884, -0.0166602972894907, -0.011462965048849583, 0.0014076856896281242, 0.03195252642035484, -0.016268664970993996, 0.04323984310030937, 0.01924905553460121, -0.007124569732695818, 0.028635414317250252, -0.03167290985584259, 0.035282038152217865, -0.011999763548374176, -0.00849921815097332, 0.036942847073078156, -0.00272961612790823, -0.053810182958841324, 0.05521759018301964, 0.04142541065812111, -0.03173639997839928, 0.007779296953231096, -0.04331101477146149, -0.058604199439287186, 0.07915297895669937, -0.02091301791369915, -0.23389868438243866, 0.0021413746289908886, 0.05547645688056946, 0.02408093400299549, 0.00986133050173521, 0.02762243151664734, 0.04448806494474411, 0.003296253038570285, 0.03992560878396034, 0.03836825489997864, 0.014523463323712349, 0.020261909812688828, 0.016977708786725998, -0.004235963802784681, 0.035637788474559784, -0.03287430480122566, 0.04503258690237999, 0.004444402176886797, 0.0013832914410158992, -0.0020871232263743877, -0.009281693957746029, -0.006316675338894129, 0.13703632354736328, 0.04249521344900131, 0.020878689363598824, 0.0020881970413029194, -0.022339047864079475, 0.024229122325778008, 0.04891451075673103, 0.001582762342877686, 0.0005237464210949838, 0.0038864794187247753, 0.013640884310007095, -0.018597343936562538, 0.014712927863001823, -0.0751790851354599, -0.037929221987724304, 0.04245797172188759, 0.02180524542927742, -0.0003191334835719317, -0.012030304409563541, -0.0004750677908305079, -0.013621081598103046, 0.03838955983519554, 0.07017040997743607, 0.03170085325837135, -0.018138311803340912, -0.04465848580002785, -0.032026756554841995, -0.007718445733189583, -0.04076588153839111, -0.044720910489559174, 0.015468139201402664, -0.004963927902281284, 0.00624882522970438, 0.08187828958034515, 0.012745846062898636, -0.053149111568927765, -0.008525094017386436, 0.001532119233161211, -0.013221892528235912, -0.035965386778116226, 0.08549448102712631, 0.01860310509800911, 0.04813292995095253 ]
[ -0.02927774004638195, 0.005636601243168116, 0.009203147143125534, -0.009366759099066257, -0.0038256593979895115, 0.012260369956493378, -0.010944035835564137, 0.02983185648918152, -0.023232577368617058, -0.00877334363758564, -0.003617663402110338, 0.02136426791548729, 0.0076245395466685295, -0.01861286722123623, 0.015617488883435726, -0.008857489563524723, 0.00813909899443388, -0.046617671847343445, 0.027546346187591553, -0.002427785424515605, -0.012579187750816345, 0.02484137937426567, -0.045086268335580826, -0.02162742428481579, 0.012891403399407864, 0.010745533742010593, -0.01352604478597641, -0.007420515175908804, 0.02665066160261631, -0.14886575937271118, -0.04861876741051674, 0.0039437334053218365, -0.0005200833547860384, -0.024480551481246948, 0.012948318384587765, 0.020310865715146065, -0.0035583435092121363, -0.007421548943966627, -0.011945130303502083, -0.029568463563919067, 0.020807035267353058, -0.017299015074968338, -0.018782472237944603, 0.04263106733560562, 0.020074253901839256, 0.010843535885214806, 0.008266094140708447, -0.019638542085886, -0.026161817833781242, -0.02059485949575901, -0.03567839786410332, -0.03956552967429161, -0.008755010552704334, 0.018078284338116646, 0.004414448514580727, -0.002836085855960846, 0.025133084505796432, 0.017759863287210464, 0.006219841539859772, -0.034026600420475006, 0.009672007523477077, -0.002576899016276002, -0.03707761690020561, -0.025547487661242485, 0.02346452884376049, 0.005842140875756741, -0.0034895949065685272, 0.019707050174474716, -0.04226090386509895, 0.006194685120135546, -0.01776103489100933, 0.0022049236577004194, -0.041502077132463455, 0.0006598698091693223, 0.03450434282422066, -0.004548432305455208, -0.0030631963163614273, 0.02823713608086109, -0.0024511157535016537, -0.037016261368989944, -0.02668975107371807, 0.003998158499598503, 0.005991895217448473, -0.009885926730930805, -0.013340386562049389, -0.02144077606499195, -0.0023951197508722544, 0.005146786570549011, 0.03795693814754486, 0.009057126939296722, -0.005471604410558939, 0.015804940834641457, -0.011288640089333057, 0.008910786360502243, -0.10504910349845886, -0.02347775734961033, -0.041511062532663345, -0.018123431131243706, -0.017299320548772812, 0.8540684580802917, 0.027820227667689323, 0.03604421764612198, 0.028917795047163963, 0.00810704380273819, -0.0163009911775589, 0.02118859440088272, 0.006566029507666826, 0.018625885248184204, 0.03612971678376198, -0.05349646136164665, 0.011393725872039795, 0.0547633171081543, -0.00018342242401558906, -0.013668962754309177, 0.011124668642878532, 0.023482948541641235, 0.0032616148237138987, 0.003599318442866206, -0.014203500933945179, -0.006456257775425911, 0.014119614847004414, 0.012507864274084568, 0.015072229318320751, 0.0015255784383043647, -0.008489242754876614, -0.17911922931671143, -0.029419830068945885, -8.304697876562561e-33, 0.014891278930008411, -0.000657702679745853, -0.0008398335194215178, -0.002538659144192934, 0.009914145804941654, -0.02930554375052452, 0.029579179361462593, 0.021593593060970306, -0.019181333482265472, -0.009299022145569324, -0.0225501861423254, -0.022884853184223175, -0.0005813258467242122, -0.016469541937112808, 0.035336751490831375, -0.03977803513407707, -0.02933708019554615, -0.00017279628082178533, 0.014593375846743584, 0.013102817349135876, 0.06773184984922409, 0.027776993811130524, -0.009903340600430965, 0.00041001898352988064, 0.029598329216241837, -0.0013853455893695354, 0.012396207079291344, 0.021148888394236565, 0.0003927231300622225, -0.03566548228263855, -0.004444423131644726, 0.01404204498976469, -0.0008972345967777073, -0.020570790395140648, -0.03531014919281006, -0.031790003180503845, -0.03443527594208717, -0.010200191289186478, -0.017808612436056137, -0.010648776777088642, -0.015509027987718582, -0.0032958302181214094, -0.03998999670147896, 0.004909313749521971, -0.0019310775678604841, 0.0017794206505641341, 0.024286339059472084, 0.011556342244148254, 0.015168238431215286, -0.017488950863480568, -0.01053264457732439, -0.0007664754521101713, 0.0076028830371797085, 0.011425693519413471, -0.029579050838947296, 0.028768030926585197, -0.010292972438037395, 0.0065086232498288155, -0.004959378857165575, 0.024546915665268898, 0.02450248971581459, -0.007040037307888269, -0.02126985974609852, 0.046570610255002975, -0.040668830275535583, 0.027980826795101166, 0.03640289232134819, 0.02242240495979786, -0.005764592904597521, 0.0021388756576925516, -0.06489305943250656, -0.00809433776885271, 0.01434954721480608, 0.006767321843653917, -0.012992299161851406, -0.00991501472890377, -0.0220123752951622, 0.020178677514195442, -0.03129967674612999, 0.04827228561043739, -0.009766544215381145, -0.0007729867356829345, -0.01744634471833706, -0.015346514992415905, 0.014148925431072712, 0.010163899511098862, 0.043663378804922104, -0.03979448974132538, 0.012315851636230946, 0.04112400487065315, 0.016225721687078476, 0.029059002175927162, -0.009350361302495003, 0.003927531186491251, 0.005879504606127739, 8.46760155711936e-33, 0.014980258420109749, -0.007173872087150812, -0.009358164854347706, 0.0033640775363892317, 0.001432526158168912, -0.022967100143432617, 0.03458265960216522, 0.016183745115995407, -0.054742492735385895, 0.023643504828214645, -0.014219071716070175, 0.02017727866768837, -0.04764889180660248, 0.013655546121299267, 0.029114149510860443, -0.032259318977594376, 0.018712328746914864, -0.01856258697807789, 0.038893263787031174, 0.008639411069452763, 0.03417157754302025, -0.0042151943780481815, -0.009396529756486416, -0.003633480053395033, 0.02204659767448902, 0.075360506772995, -0.036858126521110535, 0.033181581646203995, -0.01779402606189251, -0.007045539561659098, -0.008645214140415192, -0.033242374658584595, 0.029868602752685547, -0.005029446445405483, -0.046080898493528366, 0.025412119925022125, -0.013883570209145546, -0.004986324347555637, 0.006150947883725166, 0.009580918587744236, 0.029127659276127815, 0.008031589910387993, -0.0029855147004127502, 0.03161928802728653, -0.0015279339859262109, -0.000012615587365871761, -0.023007456213235855, -0.05197058618068695, -0.018373802304267883, 0.019924545660614967, 0.01659100316464901, 0.03520242124795914, 0.026729105040431023, 0.011288571171462536, 0.006800025701522827, -0.02634839341044426, -0.0006803997093811631, 0.017853647470474243, -0.005709408316761255, 0.031773198395967484, 0.01549559272825718, 0.015123635530471802, -0.025751035660505295, -0.008005437441170216, 0.004019308369606733, -0.02401283197104931, 0.03964843228459358, 0.010350610129535198, -0.002594888908788562, -0.00896636676043272, -0.03538152948021889, 0.021229537203907967, 0.006801487412303686, 0.05690602958202362, -0.016505002975463867, -0.012025119736790657, -0.02072407864034176, 0.018002858385443687, -0.012035584077239037, 0.00509217381477356, -0.0031207448337227106, 0.012290622107684612, 0.011654261499643326, 0.006252717226743698, -0.014590837992727757, 0.015173659659922123, -0.009411721490323544, 0.03292115777730942, 0.02346487157046795, -0.029661765322089195, 0.0037141842767596245, -0.043314795941114426, 0.004730045795440674, 0.01666749082505703, -0.0004383234481792897, -1.3808546306393055e-8, -0.017766114324331284, -0.0019021343905478716, -0.010468401946127415, 0.007406094577163458, 0.022474246099591255, 0.0005715860752388835, 0.0010752050438895822, 0.022290682420134544, -0.02733655273914337, 0.0011749420082196593, 0.0291643887758255, -0.017493383958935738, -0.023828187957406044, 0.028843209147453308, 0.0070213633589446545, -0.05470827966928482, -0.023271093145012856, 0.00831683911383152, 0.018238475546240807, 0.0001795599382603541, 0.03512714430689812, 0.06828973442316055, 0.0015791034093126655, 0.012372255325317383, 0.02156752161681652, -0.018837613984942436, -0.00978824868798256, -0.08145146071910858, 0.006878538057208061, 0.0014296341687440872, -0.009903939440846443, -0.02135496400296688, -0.02584269270300865, 0.03183404728770256, -0.019389692693948746, -0.022847216576337814, 0.016395017504692078, 0.015737876296043396, 0.010824687778949738, 0.00833826418966055, -0.029067514464259148, 0.015693102031946182, -0.011538200080394745, -0.02743900939822197, 0.021286332979798317, -0.013618466444313526, -0.05352148041129112, -0.003957928158342838, 0.029239822179079056, -0.03075237385928631, 0.02741490676999092, -0.002097130985930562, 0.04730449616909027, 0.030524224042892456, 0.022089892998337746, 0.0003672857128549367, -0.014974352903664112, 0.010165870189666748, -0.040641896426677704, -0.003665200900286436, 0.03580569475889206, 0.007836107164621353, -0.0017912668408825994, -0.029633119702339172 ]
qtb-thetrainline-com-scale-at-speed
https://markhneedham.com/blog/2010/04/29/qtb-thetrainline-com-scale-at-speed
false
2010-04-17 12:16:46
Functional C#: Using custom delegates to encapsulate Funcs
[ "c" ]
[ ".NET" ]
One of the problems that I've frequently run into when writing C# code in a more functional way is that we can often end up with 'Funcs' all over the place which don't really describe what concept they're encapsulating. We had some code similar to this where it wasn't entirely obvious what the Func being stored in the dictionary was actually doing: [source,csharp] ---- public class Calculator { private Dictionary<string, Func<double, double, double>> lookups = new Dictionary<string, Func<double, double, double>>(); public Blah() { lookups.Add("key", (input1, input2) => (input1 * 0.1) / input2); } ... } ---- https://twitter.com/christianralph[Christian] pointed out that we can create a named delegate (something I had completely forgotten!) so that it's a bit more obvious what exactly we're storing in the dictionary just by looking at the code. We'd then end up with this code: [source,csharp] ---- public class Calculator { private delegate double PremiumCalculation(double input1, double input2); private Dictionary<string, PremiumCalculation> lookups = new Dictionary<string, PremiumCalculation >(); public Calculator() { lookups.Add("key", (input1, input2) => (input1 * 0.1) / input2); } ... } ---- Now it's pretty clear from just reading the declaration of 'lookups' what it's being used for without needing to go further into the code to understand that. This is just a simple example but the problem becomes more obvious the more angle brackets we end up with in our dictionary definition and pulling those Funcs out makes the code much easier to understand.
null
null
[ 0.00369539693929255, -0.02526244707405567, -0.023590339347720146, 0.028328603133559227, 0.06434863805770874, 0.02963733859360218, 0.017006326466798782, 0.004714277107268572, -0.01424043532460928, -0.005692131817340851, -0.006314476486295462, 0.010093331336975098, -0.07040700316429138, 0.008424794301390648, -0.03645339608192444, 0.06477396190166473, 0.1039588674902916, -0.029065338894724846, 0.009162033908069134, -0.025712229311466217, 0.0052526346407830715, 0.07137466967105865, -0.00037153606535866857, 0.020180977880954742, 0.011284993030130863, 0.05651978403329849, -0.020116688683629036, -0.006791940424591303, -0.0507180280983448, -0.0031815827824175358, 0.04507358372211456, 0.052676260471343994, 0.00880219042301178, -0.024487992748618126, 0.013553831726312637, -0.02532012015581131, -0.003516625612974167, -0.007002095691859722, 0.01564602367579937, 0.03892357647418976, -0.06818976998329163, 0.007447472307831049, -0.010365736670792103, 0.015069248154759407, -0.0528714694082737, -0.020080380141735077, -0.033607713878154755, -0.01123301312327385, -0.06896962225437164, -0.014609366655349731, -0.06039760634303093, 0.012988836504518986, -0.05057140439748764, -0.004346534144133329, -0.011437809094786644, 0.06844430416822433, 0.008897037245333195, -0.07661151140928268, 0.016445886343717575, -0.057537976652383804, -0.0041533177718520164, -0.0000421180811827071, 0.019674653187394142, 0.04062317684292793, 0.02017637901008129, -0.0099081601947546, -0.020266719162464142, 0.048028476536273956, -0.05575926601886749, -0.018964823335409164, -0.0014588205376639962, 0.025134989991784096, -0.02530425786972046, 0.006264906842261553, -0.00244450313039124, -0.027590908110141754, -0.006910010240972042, 0.03357643634080887, 0.049675434827804565, 0.04798049479722977, 0.0216938816010952, 0.019509591162204742, 0.015281314961612225, 0.010803776793181896, 0.013856410048902035, -0.013514714315533638, -0.038394417613744736, -0.007129552308470011, -0.02254236675798893, 0.04545864835381508, 0.0067505743354558945, -0.02022366225719452, 0.0018328886944800615, 0.018473660573363304, -0.01726841926574707, 0.011023635044693947, 0.005632773973047733, -0.03816781938076019, 0.0055845207534730434, 0.008693786337971687, -0.024800678715109825, -0.012293187901377678, 0.016271652653813362, 0.0031182218808680773, -0.06190589442849159, 0.0001419933105353266, -0.02254454419016838, -0.018639547750353813, 0.020051810890436172, 0.008911754935979843, -0.0410735197365284, 0.0226058941334486, -0.03605131059885025, -0.010727652348577976, -0.07071458548307419, 0.01577676087617874, 0.01621914654970169, -0.00398996751755476, -0.016982978209853172, 0.011195770464837551, 0.0466071218252182, 0.04424336552619934, -0.01873200014233589, 0.0803259089589119, 0.0058970521204173565, 0.030649352818727493, -0.017300046980381012, 0.07755158096551895, 0.014458105899393559, -0.06823419034481049, -0.03461569920182228, 0.03452232480049133, -0.026754548773169518, -0.0008436768548563123, -0.01213492825627327, -0.03335006907582283, -0.02321685291826725, 0.03506193682551384, 0.03236307203769684, 0.04093904420733452, -0.004227114841341972, -0.04989062622189522, 0.01669449917972088, -0.03461131453514099, -0.004615978337824345, 0.009861811995506287, -0.022408561781048775, 0.0012536538997665048, 0.0016240059630945325, 0.055711936205625534, 0.02328225038945675, 0.05529891327023506, 0.05036521330475807, -0.05243997648358345, 0.030245231464505196, 0.05479000136256218, 0.005179490428417921, 0.024378348141908646, -0.0048583452589809895, 0.02671617455780506, 0.03258799389004707, 0.016037892550230026, 0.006547377910465002, 0.05595935881137848, 0.0092451311647892, -0.0002838828368112445, 0.018129294738173485, 0.07161866873502731, -0.019149959087371826, -0.01802833564579487, -0.0506279356777668, -0.019909827038645744, 0.04097486659884453, -0.04534154385328293, -0.020447131246328354, 0.042123910039663315, 0.062419138848781586, 0.011555488221347332, 0.07422782480716705, -0.003286800580099225, -0.06704278290271759, 0.017346810549497604, 0.008094625547528267, -0.019147397950291634, -0.0008114396478049457, 0.020954744890332222, 0.05959701910614967, 0.018523452803492546, -0.011147452518343925, 0.011175151914358139, -0.050501372665166855, -0.079054094851017, -0.062206704169511795, -0.019093535840511322, 0.06912323832511902, -0.02810639888048172, -0.019846679642796516, 0.07188085466623306, 0.02687806263566017, 0.06466486304998398, 0.02330573834478855, -0.019191252067685127, 0.025244200602173805, -0.0014044900890439749, -0.032253630459308624, 0.038262419402599335, 0.04462593421339989, 0.01492202840745449, -0.04263176769018173, 0.01029913779348135, -0.011791327968239784, -0.008835378102958202, 0.04768168181180954, -0.009736689738929272, 0.027652068063616753, 0.0015067611820995808, 0.015265852212905884, -0.011789312586188316, 0.032333917915821075, -0.06605883687734604, 0.0015584289794787765, -0.0042279381304979324, 0.015820709988474846, -0.005286460276693106, 0.005092104431241751, 0.12829776108264923, 0.061357710510492325, -0.024616137146949768, -0.0548941008746624, -0.009847155772149563, 0.0008487150771543384, -0.06458888202905655, -0.009549176320433617, -0.05456529185175896, -0.011479249224066734, -0.005482818465679884, -0.04452149569988251, -0.002238915767520666, 0.00510568730533123, -0.021854816004633904, 0.016407117247581482, 0.06859712302684784, -0.031268052756786346, 0.04299266263842583, 0.001846992876380682, -0.0134483827278018, 0.006519873160868883, -0.030100474134087563, -0.05248231068253517, -0.0052246819250285625, 0.018712501972913742, -0.013921413570642471, 0.0708622857928276, -0.02350168116390705, 0.005222761537879705, 0.011086445301771164, -0.030989080667495728, -0.002119528828188777, 0.011132463812828064, 0.05810736492276192, 0.008732172660529613, 0.07473612576723099, -0.039034757763147354, -0.006086221896111965, -0.00747717497870326, -0.05550815910100937, 0.003655332839116454, 0.014948733150959015, 0.038014791905879974, 0.04471416026353836, 0.017896579578518867, -0.006061828229576349, 0.026860009878873825, -0.004626498091965914, -0.03989651799201965, -0.02077457681298256, 0.050679706037044525, -0.002107638865709305, -0.07205231487751007, -0.06675983965396881, -0.057001445442438126, 0.04344742000102997, -0.03480853512883186, -0.029170064255595207, 0.0013167938450351357, -0.07452084124088287, 0.04709502309560776, -0.07817751914262772, -0.05490535870194435, -0.02066812291741371, 0.03827521950006485, 0.021519986912608147, -0.016381695866584778, 0.020695876330137253, 0.08110838383436203, 0.01669926382601261, 0.005845469888299704, -0.015129727311432362, -0.0120814498513937, 0.019260575994849205, -0.015825748443603516, 0.03102254867553711, 0.045781563967466354, -0.0005102750728838146, -0.00009481635788688436, -0.04360591992735863, 0.02790002152323723, -0.0057955277152359486, -0.262222558259964, 0.028778469190001488, -0.020852193236351013, -0.029579374939203262, 0.03474891558289528, -0.011494778096675873, 0.009562146849930286, -0.04523206874728203, -0.018761880695819855, 0.04488487169146538, -0.045719295740127563, -0.04759461432695389, -0.03878569230437279, 0.02533145062625408, -0.003347847145050764, -0.00014247055514715612, -0.004767222795635462, -0.05954882130026817, 0.0008259886526502669, 0.05361485108733177, -0.0019205101998522878, -0.05430721491575241, 0.0047937436029314995, 0.053154438734054565, 0.023808179423213005, 0.031298086047172546, -0.062083639204502106, 0.030073203146457672, -0.03926090896129608, 0.00008242116746259853, -0.03728843107819557, 0.020993206650018692, 0.03134928271174431, -0.053487420082092285, -0.023649226874113083, -0.04883147403597832, 0.006532427854835987, 0.013439626432955265, -0.03907668963074684, 0.018211113288998604, -0.029550321400165558, -0.06537264585494995, 0.0005875694914720953, -0.021203355863690376, 0.08207665383815765, -0.00647224485874176, -0.05061125382781029, -0.015456377528607845, -0.08007597923278809, 0.07777424901723862, -0.02128121256828308, -0.04458283260464668, -0.004658075049519539, 0.06039709970355034, -0.01802317053079605, -0.03996295481920242, 0.03320044279098511, -0.012002293951809406, -0.04078543558716774, -0.0274767205119133, 0.003943076357245445, -0.0507916621863842, -0.007207294460386038, -0.06037694588303566, 0.0019138021161779761, -0.054959967732429504, -0.06343887746334076, -0.005401032045483589, 0.04500925540924072, 0.042460981756448746, -0.02191518433392048, -0.0046291048638522625, -0.011335015296936035, -0.10383269190788269, 0.007349875755608082, -0.024744778871536255, -0.029531102627515793, -0.026959028095006943, 0.027896365150809288, 0.04304146394133568, -0.023098569363355637, -0.06117985397577286, 0.04608095437288284, 0.023243915289640427, 0.0076103173196315765, -0.003102176357060671, 0.01673208363354206, -0.005396382883191109, -0.03855819255113602, 0.0012609664117917418, 0.08062537014484406, 0.013264547102153301, -0.001042321091517806, -0.05467281863093376, 0.006853566970676184, 0.02529580146074295, 0.04384084790945053, -0.023479100316762924, 0.022685781121253967, 0.03382435813546181, 0.0331457257270813, -0.01731646992266178, 0.016705840826034546, -0.04686224088072777, 0.008016864769160748, -0.041365791112184525, -0.060517817735672, 0.027029667049646378, 0.03199353441596031, -0.0017054275376722217, 0.0002234952407889068, -0.021331937983632088, -0.01013612188398838, -0.047483786940574646, -0.024880915880203247, -0.03660965710878372, 0.01850379817187786, 0.02975364960730076, 0.0063363551162183285, -0.017544198781251907, -0.04762838035821915, 0.024727990850806236, 0.022836774587631226, 0.011446778662502766, -0.08360568434000015, -0.04833003878593445, -0.02514597959816456, -0.008629347197711468, 0.001599444542080164, 0.03321962431073189, 0.0008816297049634159, 0.04857930541038513, 0.006686772685497999, -0.047100480645895004, 0.02051798440515995, 0.019180696457624435, 0.018715957179665565, -0.04131297767162323, -0.04228890314698219, -0.02785651944577694, 0.01206748653203249, -0.009187725372612476, -0.0029689131770282984, 0.011123405769467354, 0.05682476609945297, 0.013204201124608517, 0.04520382359623909, 0.03947062790393829, -0.0017402904340997338, 0.0064224847592413425, -0.010542074218392372, -0.055660489946603775, 0.03344488516449928, -0.04373618960380554, -0.006036404985934496, -0.013401069678366184, 0.027710825204849243, -0.02473118156194687, -0.0251418799161911, -0.020476676523685455, 0.036070454865694046, -0.0311590489000082, -0.029868751764297485, -0.04547453671693802, 0.013772514648735523, 0.07016613334417343, -0.03392881527543068, 0.03710033372044563, -0.02439788356423378, 0.010333475656807423, 0.02253253385424614, 0.0469561442732811, -0.04439264535903931, 0.0313510000705719, 0.0022585608530789614, -0.016304276883602142, -0.004419372882694006, 0.02274066023528576, 0.03402600809931755, 0.019882915541529655, 0.03390246629714966, -0.02940608561038971, 0.026775382459163666, -0.012293538078665733, 0.050954002887010574, 0.00645599327981472, -0.026897257193922997, -0.00260722148232162, -0.034060269594192505, -0.013724694959819317, -0.027854949235916138, -0.02184661477804184, -0.03320474922657013, 0.02502182126045227, -0.029430478811264038, -0.05925017595291138, -0.006420399993658066, 0.03766864910721779, 0.01736581325531006, 0.015187622979283333, 0.01612904667854309, 0.03838477283716202, -0.000832250458188355, 0.02069311961531639, 0.054370928555727005, -0.04141674190759659, 0.042985014617443085, 0.0031880526803433895, 0.04137783870100975, 0.033217012882232666, 0.023881912231445312, -0.020650725811719894, -0.028275074437260628, -0.044043295085430145, -0.004565258044749498, -0.02303973026573658, -0.04485258087515831, -0.0237145833671093, 0.008914157748222351, -0.00697499280795455, -0.005086526274681091, -0.012550718151032925, 0.003661253023892641, -0.028986185789108276, -0.007589080836623907, 0.0032992842607200146, -0.02687411941587925, 0.008199268020689487, 0.007333528250455856, -0.035385869443416595, -0.009241119027137756, -0.008340406231582165, 0.03228731080889702, 0.017638584598898888, -0.011678832583129406, -0.04647068306803703, -0.08238288015127182, 0.021596454083919525, -0.036829154938459396, 0.053487904369831085, -0.010676192119717598, -0.009336117655038834, -0.009609770029783249, -0.005903881508857012, -0.057982612401247025, 0.019995925948023796, 0.002561199711635709, -0.0201560091227293, 0.023462627083063126, 0.030688297003507614, 0.0005700710462406278, 0.06267908960580826, 0.007859704084694386, -0.004752819426357746, 0.07243112474679947, -0.070184126496315, -0.019659703597426414, -0.02454484812915325, -0.04134231060743332, 0.007821259088814259, 0.009930350817739964, 0.030842913314700127, -0.04867719113826752, 0.05622480809688568, 0.043756432831287384, 0.01823974773287773, 0.019407715648412704, 0.004857146181166172, 0.04125824570655823, -0.030866004526615143, 0.006276736035943031, -0.07489088177680969, 0.01840796507894993, 0.04629545286297798, 0.02438679151237011, -0.040423616766929626, -0.017426202073693275, -0.020470349118113518, 0.05419869348406792, -0.06896314769983292, -0.013671000488102436, 0.04250742867588997, -0.009674735367298126, 0.011814258992671967, -0.01525167003273964, -0.05186568945646286, 0.016826510429382324, 0.030821140855550766, -0.028141086921095848, -0.03998260945081711, -0.04151734709739685, 0.06579381972551346, 0.025004660710692406, 0.018750783056020737, -0.029267501085996628, -0.03624655678868294, 0.06337103247642517, 0.03569747507572174, 0.03691792115569115, 0.060121964663267136, -0.03736281394958496, 0.024443743750452995, 0.018423492088913918, -0.04617652669548988, -0.009630009531974792, 0.011905171908438206, 0.01419935841113329, -0.06943748146295547, 0.004018865525722504, 0.02981305867433548, -0.01726577989757061, -0.057920489460229874, 0.07270744442939758, 0.0032689454965293407, 0.0021155131980776787, -0.04916438087821007, 0.03353499621152878, -0.034583453088998795, -0.023724932223558426, -0.03541714325547218, 0.003197470912709832, -0.015390154905617237, 0.0567324161529541, 0.010292235761880875, -0.02889379672706127, 0.053649794310331345, -0.010397299192845821, -0.0014343521324917674, -0.002283488167449832, 0.09203538298606873, 0.0811394602060318, 0.062492601573467255, -0.009427439421415329, 0.04812229424715042, -0.028428317978978157, -0.05656062439084053, -0.0014827511040493846, -0.030088042840361595, 0.0075372084975242615, -0.01123349741101265, 0.008825658820569515, 0.071934774518013, 0.03275522217154503, 0.05807969346642494, -0.058668188750743866, -0.007540191989392042, -0.015552745200693607, 0.040885720402002335, 0.012995520606637001, 0.025600027292966843, 0.010945224203169346, 0.0005912870983593166, 0.010409130714833736, -0.05647777020931244, 0.04259003326296806, -0.015457195229828358, -0.02760547399520874, -0.002967667765915394, -0.005525148008018732, 0.005898956675082445, 0.0011403642129153013, 0.02720049023628235, 0.07084529846906662, -0.009695341810584068, 0.0039308699779212475, 0.006826622877269983, 0.03312429413199425, 0.015336176380515099, -0.0016144500114023685, -0.019290301948785782, -0.03109617531299591, -0.010403502732515335, 0.01824392005801201, -0.024469375610351562, -0.035206545144319534, -0.0022104724775999784, 0.038841478526592255, -0.0240124873816967, 0.00989599246531725, -0.020354807376861572, 0.042684901505708694, -0.02428966946899891, -0.05940647050738335, -0.053072262555360794, -0.02548740804195404, -0.05435800924897194, -0.02986905351281166, 0.04547395557165146, -0.008884208276867867, -0.018229376524686813, -0.019345279783010483, -0.018853306770324707, 0.005439976695924997, 0.030692948028445244, -0.023510469123721123, -0.021436739712953568, 0.01728127896785736, 0.015454057604074478, 0.05828151851892471, 0.053529612720012665, 0.016542445868253708, -0.014095798134803772, -0.018829675391316414, -0.046296462416648865, -0.024114208295941353, 0.04791742190718651, 0.01700913906097412, 0.005984931718558073, -0.0914624035358429, 0.02229115180671215, 0.021479355171322823, 0.012750199064612389, -0.0820142850279808, 0.01985815539956093, 0.012022501789033413, -0.015481982380151749, 0.04357625171542168, -0.021248819306492805, -0.00042981907608918846, -0.008060895837843418, -0.020647024735808372, 0.02451694943010807, 0.03450280800461769, 0.03624900430440903, -0.026654327288269997, 0.06977351009845734, 0.027204984799027443, 0.006310993805527687, -0.02745390310883522, -0.029290424659848213, -0.01966673880815506, 0.016361011192202568, -0.028556611388921738, -0.015846772119402885, -0.031134070828557014, -0.04096407815814018, 0.004545748699456453, 0.02773495763540268, -0.02586986869573593, -0.03260577470064163, 0.022502882406115532, 0.038483697921037674, -0.035745974630117416, 0.04631408303976059, -0.012015223503112793, 0.010227818042039871, -0.02196701616048813, -0.0037352165672928095, 0.0279260091483593, 0.034447260200977325, 0.0035730707459151745, 0.018357720226049423, 0.00441749906167388, -0.034509237855672836, -0.017492877319455147, -0.021960897371172905, 0.02147607132792473, 0.038046013563871384, -0.027701525017619133, 0.055265724658966064 ]
[ -0.12019305676221848, -0.015010776929557323, -0.019944842904806137, -0.02524179220199585, 0.0020593032240867615, -0.05302480608224869, 0.06295309215784073, 0.0025399664882570505, -0.013654807582497597, -0.0074613397009670734, -0.0010044114897027612, -0.02691478095948696, 0.007323139812797308, 0.027339942753314972, 0.07837335020303726, 0.0025749774649739265, -0.027003131806850433, -0.021212521940469742, -0.009375681169331074, 0.04707513004541397, 0.05003557354211807, -0.015440594404935837, -0.05252602696418762, -0.012383194640278816, 0.01258993148803711, 0.019651511684060097, 0.006927837152034044, -0.044976189732551575, 0.003980429843068123, -0.19922517240047455, -0.0018053202657029033, -0.012314775958657265, 0.046079397201538086, -0.01710221916437149, -0.010699796490371227, 0.0247561726719141, 0.04160904139280319, 0.0711757019162178, -0.008543548174202442, 0.04883190244436264, -0.0019483142532408237, 0.03405538201332092, -0.04564033821225166, 0.003040661569684744, 0.043090034276247025, -0.008616211824119091, -0.003404204733669758, -0.022492971271276474, -0.028928527608513832, 0.0411112904548645, -0.04149395972490311, -0.021001877263188362, -0.046204060316085815, -0.023628320544958115, -0.038303960114717484, 0.018038857728242874, 0.038807664066553116, 0.04880087077617645, 0.03624163195490837, 0.01119239255785942, 0.001319635659456253, -0.011968106962740421, -0.10561877489089966, 0.10743581503629684, 0.022400980815291405, 0.046368472278118134, 0.013593746349215508, -0.017647074535489082, 0.013003692962229252, 0.07500660419464111, 0.053347256034612656, -0.03575030341744423, -0.02405913546681404, 0.049268078058958054, 0.009015817195177078, -0.06867761164903641, 0.007751885801553726, 0.03908490017056465, 0.0628807470202446, -0.0160613302141428, -0.04145227372646332, 0.008406970649957657, 0.042156316339969635, -0.017003661021590233, -0.006391188129782677, -0.0009503603796474636, 0.0012805132428184152, 0.027695992961525917, 0.05967872217297554, 0.0054442398250103, 0.02980135940015316, -0.026298830285668373, 0.027501098811626434, 0.01262813899666071, -0.08151888847351074, -0.02041330561041832, -0.00881049782037735, 0.019546419382095337, -0.0653565376996994, 0.4259699583053589, -0.0479334220290184, -0.0231682900339365, 0.03236642852425575, -0.006987058091908693, -0.004499777220189571, 0.006497783586382866, -0.0019631243776530027, -0.03562619164586067, 0.004020105116069317, -0.05440857633948326, -0.004047776106745005, 0.008312740363180637, 0.0338587611913681, -0.03339259698987007, -0.010958115570247173, -0.011917847208678722, 0.0012532437685877085, 0.018111702054739, -0.0127286771312356, 0.0006848028860986233, 0.009294594638049603, -0.0034779426641762257, 0.03147321939468384, 0.024790026247501373, 0.029118921607732773, 0.005421553738415241, 0.028012262657284737, 0.04265224561095238, 0.03367020934820175, -0.008417141623795033, 0.06700834631919861, -0.01750936172902584, -0.07871691137552261, -0.0005980811547487974, 0.034091316163539886, -0.004296461585909128, 0.021411199122667313, -0.04159609228372574, -0.0018693646416068077, -0.017172211781144142, -0.0023312086705118418, 0.002477256814017892, 0.03339441493153572, -0.010453720577061176, -0.02166772074997425, 0.12416835129261017, -0.027061907574534416, -0.02096124179661274, -0.0043127331882715225, -0.003270946443080902, -0.0005137713742442429, 0.029741277918219566, -0.005852106027305126, -0.04985939711332321, 0.01666160859167576, 0.02302762307226658, 0.10144233703613281, -0.03114314004778862, -0.02103511057794094, -0.05129067599773407, -0.04772384092211723, 0.0008046817965805531, -0.0497187115252018, 0.0061102500185370445, 0.0425349585711956, -0.10315167158842087, -0.007689810823649168, 0.0025876450818032026, -0.006859931163489819, -0.10228618234395981, -0.004899872001260519, 0.03125805780291557, -0.06456611305475235, -0.0073608881793916225, 0.03541884943842888, -0.002314426004886627, -0.06973157078027725, -0.002825206844136119, 0.07369876652956009, 0.013472339138388634, -0.0064833988435566425, 0.005479748826473951, -0.07684604078531265, -0.009788653813302517, -0.034316908568143845, -0.08891031891107559, -0.04086293652653694, -0.026543572545051575, -0.01826556958258152, 0.024754511192440987, -0.024686269462108612, -0.03964071348309517, -0.08717424422502518, 0.08002007007598877, -0.055005140602588654, -0.015000905841588974, 0.045019835233688354, -0.02175735868513584, 0.008772955276072025, -0.01954778842628002, -0.00406113313511014, 0.03378506004810333, -0.012985613197088242, 0.06705930829048157, -0.005810009781271219, 0.021455084905028343, 0.033944420516490936, -0.06153373420238495, 0.04210618510842323, 0.026224035769701004, -0.03563930466771126, -0.018039705231785774, -0.0042941877618432045, -0.013411281630396843, -0.019812101498246193, -0.045858126133680344, 0.005328974220901728, 0.034181781113147736, 0.01512551587074995, 0.01008142251521349, -0.056927844882011414, -0.06059389188885689, 0.01409442350268364, -0.3374956250190735, -0.017821744084358215, -0.001284166588447988, -0.018450750038027763, 0.020616132766008377, -0.07516653090715408, 0.011912007816135883, -0.01311485655605793, -0.045227084308862686, 0.0007818948943167925, 0.06674286723136902, -0.016612965613603592, 0.01462564617395401, -0.07001207023859024, 0.025095006451010704, 0.030141474679112434, -0.03776189312338829, -0.07159675657749176, -0.02306175045669079, 0.03880079463124275, 0.021014606580138206, 0.03231368213891983, -0.029164118692278862, -0.056113600730895996, -0.006627754308283329, -0.0442645363509655, 0.07550884783267975, -0.039567846804857254, 0.11254359036684036, -0.008738597854971886, 0.05050456151366234, -0.01405123807489872, -0.010191242210566998, -0.07635771483182907, 0.010046839714050293, -0.026996513828635216, -0.04641337692737579, 0.0034041181206703186, -0.0006811778875999153, -0.010335458442568779, -0.040213558822870255, 0.023026129230856895, -0.048164114356040955, -0.032523032277822495, 0.011635866947472095, 0.013298049569129944, -0.035710278898477554, -0.006589285563677549, -0.003527646651491523, 0.09251748770475388, -0.005853002425283194, -0.003180762752890587, 0.013051525689661503, 0.03047952428460121, 0.021408958360552788, -0.02015030011534691, -0.07424599677324295, -0.01594880037009716, -0.026863660663366318, 0.02983511984348297, 0.02928585559129715, 0.03856251388788223, 0.047442082315683365, -0.03751720115542412, -0.012491511180996895, 0.02912757359445095, 0.0102482158690691, -0.02280663140118122, 0.042219407856464386, -0.045480042695999146, -0.029650133103132248, 0.11913004517555237, -0.0012528529623523355, -0.0029547957237809896, 0.006936323828995228, 0.04983582720160484, -0.013865438289940357, 0.020655682310461998, 0.009929441846907139, 0.0021913673263043165, -0.0027404811698943377, 0.028315920382738113, 0.022213678807020187, -0.0231326911598444, 0.03807802498340607, -0.0032254355028271675, -0.026327820494771004, 0.04573537036776543, 0.03110439144074917, -0.04333047568798065, -0.0343654565513134, 0.012668144889175892, -0.001423773355782032, -0.03236476704478264, 0.0624736025929451, -0.00991223007440567, -0.25830090045928955, 0.01840355433523655, 0.1123947724699974, 0.053220584988594055, 0.0036833828780800104, 0.02129504084587097, 0.04368213936686516, -0.06641034781932831, 0.01660901866853237, -0.0007166945724748075, 0.032608672976493835, 0.0325782336294651, 0.008927312679588795, -0.005716622341424227, -0.0021445094607770443, -0.028810720890760422, 0.03607383742928505, -0.017321569845080376, 0.028516225516796112, 0.01451947446912527, 0.05363607034087181, 0.024263540282845497, 0.18792583048343658, -0.004623937886208296, 0.046921633183956146, -0.013374497182667255, 0.028510773554444313, 0.04200911894440651, 0.10256234556436539, 0.007427142933011055, 0.04224592447280884, -0.012440312653779984, 0.05457126349210739, -0.011115162633359432, 0.03461180254817009, -0.09250142425298691, -0.007735349237918854, 0.021068278700113297, 0.016285208985209465, 0.011106672696769238, -0.014959702268242836, 0.007295927964150906, -0.06789666414260864, 0.004331385716795921, 0.08519315719604492, 0.01437863614410162, 0.010577070526778698, -0.03465759754180908, -0.028606602922081947, -0.001226753811351955, -0.025248181074857712, -0.015082931146025658, 0.00013942676014266908, -0.04731905460357666, 0.0006383859436027706, 0.02712531015276909, 0.014858368784189224, -0.028311222791671753, -0.021874001249670982, 0.028861554339528084, -0.009679960086941719, -0.010436389595270157, 0.09989192336797714, 0.028998475521802902, 0.02809637412428856 ]
[ -0.017731906846165657, 0.04703124240040779, -0.03186210244894028, -0.021837078034877777, -0.036382075399160385, 0.013407010585069656, 0.016972914338111877, 0.0005151848308742046, -0.0019183576805517077, 0.015834135934710503, -0.0036998384166508913, -0.00011805289977928624, 0.010148435831069946, -0.032058652490377426, 0.028611034154891968, -0.025249188765883446, -0.031394124031066895, -0.02638448029756546, 0.0020279288291931152, 0.006498152390122414, 0.0018026818288490176, 0.0201448705047369, 0.017548320814967155, 0.0015566986985504627, -0.008189558051526546, 0.00046863785246387124, -0.008950648829340935, 0.00039201468462124467, 0.005571274086833, -0.09632939100265503, -0.026350637897849083, -0.035568397492170334, -0.02543444186449051, 0.00014094710058998317, -0.018475797027349472, 0.00037310057086870074, 0.005308227613568306, 0.035913996398448944, -0.014894863590598106, -0.04338078945875168, -0.03281034901738167, -0.0036221996415406466, -0.022829288616776466, 0.022059621289372444, 0.012683790177106857, 0.012495506554841995, 0.015641001984477043, 0.01124884095042944, 0.007744269445538521, -0.019748505204916, -0.012982681393623352, 0.007319310214370489, -0.01299931202083826, 0.016919372603297234, 0.04283579811453819, 0.026850026100873947, -0.04693260043859482, -0.019425958395004272, 0.03016502782702446, -0.006811141036450863, -0.023380907252430916, 0.011148153804242611, -0.019778791815042496, -0.011934641748666763, 0.019828764721751213, -0.014387957751750946, -0.0005531291244551539, 0.006350777577608824, 0.003244425170123577, -0.03541740030050278, 0.0019698806572705507, 0.018977422267198563, 0.02047250233590603, -0.03758491203188896, 0.023841284215450287, -0.036171384155750275, -0.022838329896330833, -0.026304803788661957, 0.040502890944480896, -0.022274812683463097, -0.01405574195086956, -0.01854359544813633, -0.010886228643357754, 0.018992455676198006, 0.05216559022665024, -0.011006694287061691, -0.011809524148702621, -0.019504578784108162, -0.004840151872485876, 0.007155654486268759, -0.010432811453938484, 0.032651256769895554, 0.03617094084620476, 0.006303184665739536, -0.04475965350866318, 0.007970767095685005, -0.0013424389762803912, -0.020557526499032974, -0.003730013035237789, 0.8532409071922302, -0.04617127403616905, 0.0073459516279399395, 0.039693497121334076, -0.009954807348549366, 0.022376207634806633, -0.01146951038390398, -0.01798669993877411, -0.0011145544704049826, 0.07921832799911499, -0.05369075760245323, 0.03221224620938301, 0.027368174865841866, 0.01108524575829506, 0.00312844873405993, 0.0020842428784817457, 0.03584381937980652, 0.021368101239204407, 0.015340704470872879, 0.0015681374352425337, -0.016090627759695053, -0.019382603466510773, -0.011988460086286068, -0.020905371755361557, 0.004411065019667149, 0.012587439268827438, -0.18973955512046814, 0.006776824127882719, -7.92629375540539e-33, 0.0229636263102293, 0.0026293073315173388, -0.010048529133200645, 0.011341906152665615, 0.02802916429936886, 0.006269501987844706, 0.04056273028254509, -0.00657124537974596, -0.00987769104540348, -0.03938590735197067, 0.02644464001059532, -0.00836692750453949, -0.010192451998591423, 0.009850523434579372, 0.04001126065850258, -0.028128545731306076, 0.009676273912191391, 0.042849842458963394, 0.03205108642578125, -0.020611587911844254, 0.019989099353551865, 0.03399817645549774, 0.0608954094350338, -0.032702550292015076, -0.0026886318810284138, 0.0238569937646389, 0.0084219416603446, -0.013816412538290024, -0.0033712403383105993, -0.03512820601463318, 0.01657421886920929, 0.01550720538944006, -0.006919672712683678, -0.026067377999424934, 0.0490746945142746, -0.016839422285556793, 0.030556214973330498, -0.000596033176407218, -0.013288446702063084, -0.05238630622625351, -0.07640597224235535, 0.006658503785729408, 0.014955291524529457, 0.009021966718137264, -0.03699306771159172, -0.030590511858463287, -0.01714198850095272, -0.013310863636434078, 0.04177572950720787, 0.00865649152547121, -0.00860858615487814, 0.010261238552629948, 0.002387099899351597, -0.0015832041390240192, -0.038867682218551636, 0.027407053858041763, -0.022339073941111565, -0.016655627638101578, 0.004465070553123951, 0.01980312168598175, -0.011826559901237488, 0.006829820107668638, -0.015143095515668392, 0.030541352927684784, -0.03633248060941696, -0.027931848540902138, -0.02131936512887478, -0.04470299929380417, 0.04889678582549095, -0.01570168323814869, -0.04327612742781639, 0.011302987113595009, -0.026079261675477028, -0.04199254885315895, 0.022724559530615807, -0.0012764597777277231, -0.005197813734412193, -0.0417075976729393, -0.013776795007288456, 0.007564095314592123, 0.03427359461784363, -0.005245252512395382, 0.029451584443449974, 0.0015173563733696938, 0.02196483314037323, -0.009677145630121231, -0.014446141198277473, -0.034780289977788925, 0.031485531479120255, 0.019566617906093597, 0.011716388165950775, 0.014084183610975742, -0.018841031938791275, -0.023496363312005997, -0.023350326344370842, 6.813977083152015e-33, -0.0067232768051326275, -0.022134797647595406, -0.028149964287877083, 0.018683046102523804, -0.00878645945340395, 0.007107614539563656, 0.006852783728390932, -0.03563950955867767, -0.017840208485722542, -0.010068690404295921, 0.018530048429965973, 0.04737201705574989, -0.0026831687428057194, 0.035847652703523636, 0.049337588250637054, -0.012524154968559742, 0.0035112074110656977, 0.034205254167318344, 0.045093510299921036, -0.015395527705550194, -0.001108577474951744, -0.022202756255865097, 0.011626822873950005, -0.0323157012462616, 0.003013615496456623, 0.031029725447297096, -0.046785399317741394, 0.010033939965069294, 0.03157956153154373, 0.005633815657347441, -0.009635222144424915, 0.00926279742270708, 0.009684261865913868, -0.03214094042778015, 0.0003732548502739519, 0.0040511940605938435, 0.017315734177827835, -0.018020672723650932, 0.026410752907395363, 0.01841817982494831, 0.061564136296510696, -0.040472548454999924, 0.00594121590256691, 0.016933556646108627, 0.011705317534506321, -0.030717525631189346, 0.012129243463277817, 0.01567848026752472, 0.027888448908925056, 0.047534577548503876, 0.031083831563591957, -0.008308226242661476, -0.05833115428686142, 0.030704734846949577, 0.006041279993951321, -0.008432668633759022, 0.0016758214915171266, 0.004975354298949242, -0.014448214322328568, -0.008925662375986576, -0.022137707099318504, 0.011253341101109982, -0.032302577048540115, 0.010811682790517807, -0.006340297404676676, 0.023830953985452652, -0.018935777246952057, -0.03494924306869507, 0.01043949369341135, 0.007996493019163609, -0.010855591855943203, -0.011393032968044281, 0.00037787400651723146, -0.0076709347777068615, -0.027913518249988556, -0.003469310002401471, -0.015232023783028126, -0.006139221601188183, 0.0011738886823877692, 0.014228911139070988, 0.028773993253707886, 0.012750225141644478, 0.04764505848288536, -0.026823198422789574, -0.02197844907641411, -0.004428903106600046, 0.029546836391091347, 0.008337294682860374, 0.004080099985003471, -0.027685221284627914, -0.0015627017710357904, -0.0032052560709416866, 0.0034681411925703287, 0.011840488761663437, -0.007670894265174866, -1.3193207415440611e-8, -0.042212534695863724, 0.05886727571487427, -0.0238292645663023, 0.01381400041282177, 0.020700883120298386, 0.006576220039278269, -0.026336483657360077, -0.03418885916471481, -0.009145405143499374, -0.04230649024248123, 0.03595779091119766, 0.018837034702301025, -0.00565790431573987, -0.04605713114142418, 0.02987266518175602, -0.008083303458988667, -0.049000050872564316, -0.017373429611325264, 0.004809314385056496, 0.015043236315250397, 0.014939951710402966, 0.04620097205042839, 0.00010101005318574607, 0.00450171297416091, -0.04142607003450394, -0.021890217438340187, -0.0061610909178853035, -0.06291498243808746, 0.013620419427752495, 0.011538231745362282, -0.00040492674452252686, -0.014745227061212063, -0.009035945869982243, 0.00258856569416821, -0.010938022285699844, -0.01735442504286766, -0.023312365636229515, 0.005962313152849674, 0.025197777897119522, 0.02413502335548401, -0.011487411335110664, -0.013438940979540348, 0.0036108065396547318, -0.015353715047240257, 0.008123663254082203, -0.021927306428551674, -0.003442751243710518, -0.0155501589179039, 0.017716137692332268, 0.00885791890323162, -0.01165069080889225, 0.05039006844162941, 0.005546652711927891, -0.005792499519884586, 0.0021223132498562336, 0.039018575102090836, -0.009180178865790367, -0.04770248755812645, -0.060517944395542145, 0.017963964492082596, 0.025835582986474037, 0.006057830061763525, -0.038135696202516556, -0.01332904864102602 ]
functional-c-using-custom-delegates-to-encapsulate-funcs
https://markhneedham.com/blog/2010/04/17/functional-c-using-custom-delegates-to-encapsulate-funcs
false
2010-04-17 10:33:16
C#: Java-ish enums
[ "net" ]
[ ".NET" ]
We've been writing quite a bit of code on my current project trying to encapsulate user selected values from drop down menus where we then want to go and look up something in another system based on the value that they select. Essentially we have the need for some of the things that a Java Enum would give us but which a C# one doesn't! Right now we have several classes similar to the following in our code base to achieve this: [source,csharp] ---- public class CustomerType { public static readonly CustomerType Good = new CustomerType("Good", "GoodKey"); public static readonly CustomerType Bad = new CustomerType("Bad", "BadKey"); private readonly string displayValue; private readonly string key; private static readonly CustomerType[] all = new[] { Good, Bad }; private CustomerType(string displayValue, string key) { this.displayValue = displayValue; this.key = key; } public static CustomerType From(string customerType) { return all.First(c => c.displayValue == customerType); } public static string[] Values { get { return all.Select(c => c.DisplayValue).ToArray(); } } public string DisplayValue { get { return displayValue; } } public string Key { get { return key; } } } ---- To get values to display in drop downs on the screen we call the following property in our controllers: [source,csharp] ---- CustomerType.Values ---- And to map from user input to our type we do this: [source,csharp] ---- CustomerType.From("Good") ---- Right now that will blow up if you trying to parse a value that doesn't have an instance associated with it. https://twitter.com/christianralph[Christian] came up with the idea of storing each of the public static fields in an array and then using 'First' inside the 'From' method to select the one that we want. We previously had a somewhat over complicated dictionary with the display value as the key and type as the value and looked it up that way. So far this does all that we need to do and the only annoying thing is that if we add a new instance then we need to manually add it to the 'all' array. An alternative would be to do that using reflection which I think would work but it's simple enough like this so we haven't taken that approach yet.
null
null
[ 0.005313674919307232, -0.00689343549311161, -0.02149796672165394, 0.037583086639642715, 0.09260105341672897, 0.022587653249502182, 0.010122156701982021, 0.025807302445173264, 0.0011939621763303876, -0.018792441114783287, -0.009924053214490414, 0.02115451730787754, -0.06954402476549149, 0.02580181695520878, -0.014203628525137901, 0.06181447207927704, 0.08151660114526749, -0.030314510688185692, 0.04260788857936859, -0.003385250922292471, -0.024369824677705765, 0.061156049370765686, -0.010324410162866116, 0.034212756901979446, 0.03928525745868683, 0.025416012853384018, -0.021746478974819183, 0.007354842498898506, -0.0503573939204216, 0.0036472599022090435, 0.039550621062517166, 0.027785716578364372, 0.017041286453604698, -0.0017956240335479379, 0.008527531288564205, -0.02704942785203457, 0.0012054749531671405, 0.004690398927778006, 0.0006931413663551211, 0.007378380745649338, -0.055267397314310074, 0.02769041433930397, 0.007039519026875496, 0.009980876930058002, -0.028382444754242897, 0.010033631697297096, -0.0404757484793663, -0.004822319373488426, -0.047750987112522125, -0.009359847754240036, -0.04607588052749634, 0.012334593571722507, -0.06423304229974747, 0.015784353017807007, 0.001791994203813374, 0.05056218430399895, 0.020722586661577225, -0.0669461339712143, 0.01191712822765112, -0.056545622646808624, 0.014993341639637947, 0.004633137956261635, 0.019080884754657745, 0.0440269336104393, 0.024474652484059334, 0.0033579354640096426, -0.009362058714032173, 0.044771477580070496, -0.0348956361413002, -0.027295509353280067, -0.007584747858345509, 0.016000891104340553, 0.008315736427903175, -0.004982684273272753, 0.02346785180270672, -0.027646087110042572, -0.010893532074987888, 0.05182095989584923, 0.007637806236743927, 0.05143308266997337, -0.010811669752001762, 0.019887303933501244, 0.03567129746079445, 0.0003246001142542809, 0.01859886385500431, -0.034686073660850525, -0.03239382058382034, 0.010384713299572468, -0.023335034027695656, 0.03693752363324165, 0.02405363880097866, 0.007276874501258135, 0.0025235519278794527, 0.04578877612948418, 0.010325160808861256, 0.0006602974026463926, 0.009297464042901993, -0.012595421634614468, -0.02381730265915394, -0.00992494821548462, -0.01594209298491478, -0.02037448063492775, 0.03933557868003845, -0.007814399898052216, -0.07054651528596878, -0.005898638628423214, -0.0380462110042572, -0.007080527488142252, 0.021871767938137054, 0.022842034697532654, -0.04536439850926399, 0.0009502327302470803, -0.026542028412222862, 0.004183612298220396, -0.04854636266827583, 0.04012693837285042, 0.007845628075301647, 0.005285304505378008, 0.020219864323735237, 0.03134617954492569, 0.05803610756993294, 0.026245228946208954, -0.02771446295082569, 0.07966138422489166, -0.009576652199029922, 0.01898506097495556, -0.039498817175626755, 0.071961909532547, -0.003236778313294053, -0.08638552576303482, -0.010058285668492317, 0.03900465369224548, -0.01346355676651001, -0.004317475948482752, -0.008051028475165367, -0.01422191597521305, -0.001796582480892539, 0.01003224216401577, 0.04588591307401657, 0.051493071019649506, -0.03571333363652229, -0.06795205175876617, 0.025649849325418472, -0.019996091723442078, -0.0033008330501616, 0.0228489488363266, -0.019271789118647575, -0.012393835932016373, -0.017270684242248535, 0.08440329879522324, 0.018741492182016373, 0.03964227810502052, 0.05071147531270981, -0.034470416605472565, -0.015781816095113754, 0.0723269060254097, 0.0014189749490469694, 0.010587148368358612, -0.024283472448587418, 0.017101172357797623, 0.032368361949920654, 0.018188495188951492, 0.017006149515509605, 0.04163331538438797, 0.02210579626262188, 0.011719057336449623, 0.010098014958202839, 0.07043662667274475, -0.0361146405339241, -0.01822478696703911, -0.04299497231841087, -0.04407577961683273, 0.024567987769842148, -0.054399628192186356, -0.011004342697560787, 0.044842083007097244, 0.04969529062509537, 0.00829834770411253, 0.06635797768831253, -0.014439200051128864, -0.07092834264039993, 0.003743184031918645, 0.007022053934633732, -0.016924971714615822, 0.010131262242794037, 0.01499823946505785, 0.0460958294570446, 0.021300042048096657, 0.00945828203111887, 0.01861492358148098, -0.05430491268634796, -0.07402832806110382, -0.057298693805933, -0.012906212359666824, 0.06420799344778061, -0.028993001207709312, -0.004808166529983282, 0.08280915021896362, 0.02231525257229805, 0.05537563934922218, 0.03615459427237511, -0.02527588978409767, 0.016928644850850105, -0.03527215123176575, -0.04214499145746231, 0.009232972748577595, 0.04541309177875519, 0.012646331451833248, -0.015573781915009022, 0.009984455071389675, -0.010271445848047733, -0.00663374550640583, 0.04368910193443298, -0.01067533902823925, 0.04876698926091194, -0.0006671707378700376, 0.014302527531981468, -0.04148701950907707, 0.03937264531850815, -0.07784435153007507, 0.040991462767124176, 0.005096239037811756, -0.0035589111503213644, -0.02313646860420704, 0.004622066393494606, 0.1422543078660965, 0.036292243748903275, -0.02458805963397026, -0.046686168760061264, 0.028639668598771095, 0.01682218350470066, -0.04920467734336853, 0.011387605220079422, -0.05648251622915268, -0.0059917038306593895, -0.012243739329278469, -0.05174877867102623, -0.0295596644282341, -0.001011851942166686, -0.011261959560215473, 0.01507026981562376, 0.06868033856153488, -0.04144600033760071, 0.04562649130821228, 0.007413066923618317, -0.021807221695780754, -0.0032713247928768396, -0.015446541830897331, -0.03287303075194359, 0.0025698768440634012, 0.01530653890222311, -0.015106589533388615, 0.04665317013859749, -0.02685990184545517, -0.022353775799274445, -0.004377016797661781, -0.0363079272210598, -0.00926915556192398, -0.012069033458828926, 0.07270289212465286, -0.009267411194741726, 0.07290706783533096, -0.023710206151008606, -0.003979893866926432, -0.017042754217982292, -0.04919727146625519, 0.01802521012723446, 0.02299237623810768, 0.018605325371026993, 0.04796691983938217, 0.0014228359796106815, -0.0018275064649060369, 0.01980293169617653, 0.010688181035220623, -0.03693253546953201, -0.022456208243966103, 0.04329797253012657, -0.008524461649358273, -0.04162536561489105, -0.043182581663131714, -0.03567478060722351, 0.017195312306284904, -0.03373953327536583, -0.06232988089323044, 0.0051311166025698185, -0.08310739696025848, 0.05303947627544403, -0.0726911649107933, -0.06013473868370056, -0.002005144953727722, 0.04591193050146103, 0.018545404076576233, -0.008369472809135914, 0.03132496774196625, 0.09565792232751846, -0.0021352034527808428, 0.0031906855292618275, 0.03439855948090553, -0.0011974434601143003, 0.028815671801567078, -0.02408500760793686, 0.029307134449481964, 0.03954495117068291, -0.008029000833630562, -0.0025321305729448795, -0.05434609204530716, 0.03227591514587402, -0.011239026673138142, -0.2693651616573334, 0.02979828231036663, -0.024960629642009735, -0.04523748531937599, 0.015192662365734577, -0.023943057283759117, 0.01605571247637272, -0.05077775567770004, 0.022165808826684952, 0.0483924001455307, -0.028362276032567024, -0.04361342638731003, -0.05106300115585327, 0.03789074346423149, 0.016953717917203903, 0.003219194710254669, 0.011388535611331463, -0.04176170751452446, -0.0007188771269284189, 0.043971337378025055, -0.0018553896807134151, -0.07549020648002625, 0.008571124635636806, 0.0758311077952385, 0.006620464846491814, 0.07326947152614594, -0.0696861669421196, 0.03945538401603699, -0.010940885171294212, -0.01208513230085373, -0.007794113364070654, -0.012972785159945488, 0.006455949041992426, -0.03519701585173607, -0.026472752913832664, -0.030813025310635567, -0.00016827341460157186, 0.015313509851694107, -0.01792784593999386, 0.024576056748628616, -0.055259231477975845, -0.057206351310014725, -0.02911703661084175, -0.005420614033937454, 0.06339224427938461, -0.034361571073532104, -0.05486056208610535, -0.014806664548814297, -0.05598260834813118, 0.07046312093734741, -0.02946113795042038, -0.02722783386707306, 0.0027136036660522223, 0.04207524284720421, -0.021473007276654243, -0.009259195066988468, 0.0289397481828928, 0.014967226423323154, -0.06283573061227798, -0.02465631440281868, -0.002798456698656082, -0.058891233056783676, -0.008745063096284866, -0.04357979819178581, -0.003068004734814167, -0.072102390229702, -0.06544967740774155, 0.018515566363930702, 0.06207402050495148, 0.048883333802223206, -0.024903347715735435, -0.009066449478268623, 0.026526369154453278, -0.10922688245773315, 0.017710745334625244, -0.029814960435032845, -0.012092722579836845, -0.05496484413743019, -0.006581442430615425, 0.02656365931034088, -0.013617271557450294, -0.02980421483516693, 0.05402887612581253, 0.026523984968662262, 0.006231198087334633, -0.0140210697427392, 0.01854771375656128, -0.0155984777957201, -0.013057231903076172, 0.0000012983540500499657, 0.08655931800603867, -0.008224873803555965, 0.029637236148118973, -0.06576928496360779, 0.017952371388673782, 0.025368183851242065, 0.039871323853731155, -0.02671075239777565, 0.01321083027869463, 0.012769609689712524, 0.055663544684648514, -0.032972220331430435, 0.019276587292551994, -0.025510752573609352, -0.002263727830722928, -0.03246786445379257, -0.05428813770413399, 0.023941271007061005, 0.025811895728111267, 0.006856644060462713, -0.01010488998144865, -0.024210870265960693, -0.022517090663313866, -0.054770056158304214, -0.01923637092113495, -0.02957155555486679, 0.012208124622702599, 0.03318611904978752, 0.004021290689706802, -0.026125609874725342, -0.0429714098572731, 0.007682169787585735, 0.0345829576253891, -0.005318055860698223, -0.07231028378009796, -0.04536307975649834, -0.02004515565931797, -0.010983922518789768, -0.008786091580986977, 0.005222226493060589, -0.0008066107984632254, 0.03698936849832535, -0.007522671949118376, -0.03669679909944534, 0.002805357566103339, -0.0002692818525247276, -0.0021585850045084953, -0.04003152251243591, -0.02231614850461483, -0.009179799817502499, 0.020208090543746948, -0.028227435424923897, 0.015342398546636105, 0.02126399241387844, 0.0451669804751873, -0.002346839290112257, 0.04078599065542221, 0.009949780069291592, 0.011635544709861279, 0.029713449999690056, -0.021447794511914253, -0.06625241041183472, 0.017542662099003792, -0.04142262786626816, -0.04839915782213211, -0.013510417193174362, 0.013552969321608543, -0.02539203129708767, -0.038003504276275635, -0.03814401850104332, 0.033187586814165115, -0.0438203439116478, -0.04983561858534813, -0.03200867399573326, 0.013549772091209888, 0.04923870041966438, -0.009806700982153416, 0.049425430595874786, -0.028881752863526344, 0.0011919349199160933, 0.02278931997716427, 0.01197360921651125, -0.03323724865913391, 0.034236840903759, -0.010788772255182266, -0.0254422128200531, 0.018695760518312454, 0.002785877790302038, 0.04789876565337181, 0.030332325026392937, 0.04006298631429672, -0.023003801703453064, 0.006766516249626875, -0.03256060928106308, 0.04678821936249733, 0.027444902807474136, -0.02295597828924656, -0.0018041766015812755, -0.019207730889320374, -0.01916978880763054, -0.03869695961475372, -0.028761031106114388, -0.05533445626497269, 0.029276927933096886, -0.0373450368642807, -0.06180664896965027, -0.01208861917257309, -0.009831300005316734, 0.047872696071863174, 0.024283817037940025, 0.017062775790691376, 0.015624843537807465, -0.02205018326640129, 0.015880776569247246, 0.059251077473163605, -0.030321303755044937, 0.04361804574728012, 0.005563283804804087, 0.008921896107494831, 0.037613075226545334, 0.011892522685229778, -0.04880391061306, 0.0021972721442580223, -0.03206687793135643, -0.015782082453370094, -0.04566771164536476, -0.046468645334243774, -0.0310598723590374, -0.015704259276390076, -0.016912754625082016, -0.03643329069018364, 0.0017746798694133759, 0.02122018113732338, -0.03790074586868286, -0.009467404335737228, 0.008137241937220097, -0.03738020360469818, -0.009570554830133915, 0.03530508652329445, -0.021587759256362915, -0.010533805936574936, 0.0008725911611691117, 0.025863995775580406, 0.021146003156900406, -0.028508324176073074, -0.022013794630765915, -0.07333593815565109, 0.021078146994113922, -0.0019132132874801755, 0.08794145286083221, -0.01185296755284071, -0.020866531878709793, -0.028332939371466637, -0.02368408814072609, -0.024736743420362473, 0.026749717071652412, -0.01808752864599228, -0.024447495117783546, 0.03988338261842728, 0.03266652300953865, 0.025902066379785538, 0.02928130142390728, 0.00019103195518255234, -0.0147611815482378, 0.07991998642683029, -0.05354087054729462, -0.017934871837496758, -0.013654985465109348, -0.06271874904632568, -0.00009793368371902034, 0.014292857609689236, 0.029718806967139244, -0.02490401454269886, 0.06719107180833817, 0.042148761451244354, 0.0029608954209834337, 0.017078598961234093, -0.008681079372763634, 0.04371140897274017, -0.028463365510106087, 0.037620145827531815, -0.07121746242046356, 0.055189814418554306, 0.05241810157895088, 0.017976006492972374, -0.01622786745429039, -0.027495814487338066, -0.04159556329250336, 0.028049174696207047, -0.06976853311061859, -0.033591318875551224, 0.026436062529683113, -0.006204370874911547, 0.00010745546023827046, 0.004015288315713406, -0.044242072850465775, 0.03306955471634865, 0.03694187477231026, -0.03104999288916588, -0.06779573112726212, -0.03084532916545868, 0.06430058181285858, 0.022557631134986877, 0.016069913282990456, -0.04591335728764534, 0.012384454719722271, 0.06462256610393524, 0.010426213033497334, 0.0503530353307724, 0.0569353885948658, -0.041816044598817825, 0.051731497049331665, 0.02008862793445587, -0.02452201023697853, -0.005661848001182079, 0.014620712026953697, 0.027540266513824463, -0.047461941838264465, -0.030046546831727028, 0.017419369891285896, -0.02710956707596779, -0.07576548308134079, 0.07733599841594696, 0.021105963736772537, -0.016005294397473335, -0.044318877160549164, 0.02409687638282776, -0.017041370272636414, -0.017054466530680656, -0.03659282252192497, 0.016898173838853836, -0.020063087344169617, 0.08239494264125824, 0.018080051988363266, -0.019502904266119003, 0.07381964474916458, -0.00385427288711071, 0.005351959727704525, 0.008107523433864117, 0.06738730520009995, 0.06783455610275269, 0.048874661326408386, -0.018600773066282272, 0.056878551840782166, -0.017303956672549248, -0.05190190300345421, 0.010963368229568005, -0.03153327852487564, -0.007535511162132025, -0.00728650251403451, -0.0030930140055716038, 0.05078679695725441, -0.0011936851078644395, 0.055899474769830704, -0.05361287295818329, -0.006307827774435282, -0.006591930519789457, 0.04697073996067047, 0.0062498305924236774, 0.027739549055695534, 0.009835782460868359, 0.024652566760778427, 0.009557918645441532, -0.019344978034496307, 0.03581331670284271, -0.013968235813081264, -0.03367995098233223, -0.00581976817920804, -0.013917853124439716, 0.026758061721920967, -0.006415529642254114, 0.038710616528987885, 0.06660757213830948, -0.02143285423517227, -0.011289193294942379, 0.0008897050865925848, 0.022108597680926323, -0.0029776310548186302, -0.036144133657217026, -0.01482092309743166, -0.02063887193799019, -0.019875429570674896, -0.0013456180458888412, -0.0010277788387611508, -0.041408244520425797, -0.009187130257487297, 0.022156918421387672, -0.005913896951824427, 0.03654171898961067, 0.009665039367973804, 0.02922009862959385, -0.06155041232705116, -0.04896082356572151, -0.09020256996154785, -0.01855715736746788, -0.06762079149484634, -0.03334243968129158, 0.02673071064054966, 0.003522399580106139, -0.005217086523771286, -0.010800568386912346, -0.006218162830919027, 0.0020776265300810337, 0.04254154488444328, -0.01248842105269432, -0.028035270050168037, 0.02349291928112507, 0.010731654241681099, 0.053770408034324646, 0.05422959849238396, 0.032437171787023544, -0.025405535474419594, -0.012394607998430729, -0.04084260016679764, -0.032137010246515274, 0.0550018735229969, 0.0016046685632318258, 0.010769540444016457, -0.0815296471118927, 0.026653818786144257, 0.0089271180331707, 0.001093001919798553, -0.0550152063369751, -0.017944367602467537, -0.009266373701393604, -0.012219708412885666, 0.06127707660198212, 0.000528444885276258, -0.015068710781633854, -0.01079289149492979, -0.010504609905183315, 0.018010690808296204, 0.02402646280825138, 0.02717825584113598, -0.02496201917529106, 0.07446350902318954, 0.034841954708099365, -0.0044875433668494225, -0.022248635068535805, 0.0014906690921634436, -0.014302457682788372, 0.01039845310151577, -0.04920236021280289, -0.02842605486512184, -0.047910597175359726, -0.03284197300672531, 0.01048184372484684, 0.007079773116856813, -0.014644426293671131, -0.021317701786756516, -0.012157764285802841, 0.05577962473034859, -0.048720069229602814, 0.0160341989248991, -0.022790690883994102, 0.032015152275562286, -0.013233410194516182, -0.015220328234136105, 0.01205489318817854, 0.02737024985253811, -0.021836498752236366, -0.002967658219859004, 0.01043722778558731, -0.01655905693769455, -0.01600002869963646, -0.013455554842948914, 0.022268500179052353, 0.045347366482019424, -0.009760208427906036, 0.030188018456101418 ]
[ -0.08840906620025635, 0.0032234417740255594, -0.050451185554265976, -0.05463159456849098, 0.01296775508671999, -0.031964369118213654, 0.04698717221617699, 0.026498982682824135, 0.033177170902490616, -0.00435422221198678, -0.01927204057574272, -0.01872423104941845, 0.01149225514382124, -0.014691006392240524, 0.09328164160251617, -0.0007544952095486224, -0.02638861909508705, -0.028829678893089294, -0.030665500089526176, 0.05110786482691765, 0.030086806043982506, -0.03821469843387604, -0.061892855912446976, -0.047883208841085434, 0.009789013303816319, 0.005730513483285904, 0.026873912662267685, -0.0615544356405735, -0.0019446529913693666, -0.184879332780838, -0.012772556394338608, 0.007499892730265856, 0.036642078310251236, 0.0013615123461931944, -0.0015326138818636537, 0.010459463112056255, 0.026490293443202972, 0.024211395531892776, 0.006299928762018681, 0.05901139974594116, 0.021024150773882866, 0.021515578031539917, -0.05746364966034889, -0.018579931929707527, 0.036685168743133545, -0.018136121332645416, 0.011837401427328587, -0.033978115767240524, 0.003580839140340686, 0.010832260362803936, -0.045867208391427994, 0.0076098358258605, -0.023330330848693848, -0.01047480758279562, -0.012107175774872303, 0.022221967577934265, 0.04790132865309715, 0.04165016859769821, 0.009158632718026638, 0.03577803075313568, -0.013012115843594074, -0.045793548226356506, -0.11043283343315125, 0.10695954412221909, 0.018058674409985542, 0.047094929963350296, 0.0031990758143365383, -0.029681093990802765, -0.01197818759828806, 0.05444828420877457, 0.04517252370715141, -0.027016427367925644, -0.030045775696635246, 0.05403433367609978, 0.017421651631593704, -0.04553026705980301, -0.02274557389318943, 0.005287793930619955, 0.046749379485845566, -0.014310726895928383, -0.07628491520881653, -0.019545691087841988, 0.022961394861340523, 0.012556510977447033, -0.03323504701256752, 0.038170136511325836, 0.0066635203547775745, 0.01768762245774269, 0.03355666622519493, 0.008134091272950172, 0.033893294632434845, -0.03624489903450012, -0.005614618305116892, 0.02896120585501194, -0.08008984476327896, -0.02061387710273266, -0.007975541986525059, -0.017921334132552147, -0.03789912909269333, 0.4169144630432129, -0.007502866443246603, -0.05414828285574913, 0.02628096006810665, -0.02814921922981739, -0.005806623958051205, 0.005001413635909557, -0.011921497993171215, -0.04179234802722931, 0.011088329367339611, -0.04006561264395714, -0.02286752313375473, 0.018988974392414093, 0.03841324895620346, -0.04258016124367714, -0.03358280658721924, 0.025095608085393906, 0.0162021666765213, -0.00041563762351870537, 0.0024721056688576937, -0.011044810526072979, 0.01735016517341137, 0.006069640628993511, 0.014026002958416939, 0.025270866230130196, 0.014650697819888592, -0.036673057824373245, 0.007072850130498409, 0.048669517040252686, 0.021156659349799156, 0.02075561136007309, 0.05862432345747948, -0.04079224169254303, -0.08411271870136261, -0.01607922464609146, 0.010314181447029114, 0.025758380070328712, 0.05412694439291954, -0.01671685092151165, 0.014095373451709747, 0.021525472402572632, -0.01752757839858532, -0.03061860240995884, 0.02129308506846428, -0.0505521222949028, -0.05824179947376251, 0.1176370158791542, 0.008989843539893627, -0.021114099770784378, -0.02963024377822876, -0.03629617765545845, -0.007987299002707005, 0.05096706002950668, -0.010291668586432934, -0.03268889710307121, 0.00331184733659029, 0.0346296951174736, 0.10471723973751068, -0.022683754563331604, -0.034597352147102356, -0.058022938668727875, -0.023615969344973564, -0.008882173337042332, -0.024059059098362923, 0.0511045828461647, 0.0453849732875824, -0.09893810003995895, -0.02427174523472786, 0.01388886384665966, 0.005014563445001841, -0.08721786737442017, -0.02526707388460636, 0.029527533799409866, -0.07532014697790146, 0.011844675056636333, 0.08769223839044571, 0.006412091199308634, -0.0515732504427433, -0.005222616717219353, 0.04114197567105293, 0.03008303977549076, -0.025658229365944862, 0.03293749690055847, -0.06844427436590195, -0.02460574358701706, -0.022487521171569824, -0.07961566001176834, -0.04212462157011032, -0.0037006919737905264, -0.019860481843352318, -0.006640395615249872, -0.018213234841823578, -0.032456330955028534, -0.07536299526691437, 0.07560407370328903, -0.03804491087794304, -0.020182933658361435, 0.02786780148744583, -0.017421016469597816, 0.039751481264829636, -0.010743463411927223, 0.03666037693619728, 0.05388178303837776, -0.02782323956489563, 0.055472854524850845, -0.044852688908576965, 0.03086312673985958, 0.049933891743421555, -0.04345579072833061, 0.058726392686367035, 0.004986317828297615, -0.040699440985918045, 0.012351243756711483, -0.007565790321677923, 0.03296875208616257, -0.0008034054189920425, -0.03580201789736748, 0.014143777079880238, 0.03935952112078667, 0.055167268961668015, -0.004664297681301832, -0.031785715371370316, -0.03244337812066078, -0.0027738611679524183, -0.3416461944580078, 0.008515316992998123, -0.012753312475979328, -0.028245218098163605, -0.008743598125874996, -0.04793798550963402, 0.015584004111588001, -0.03597251698374748, -0.01789182610809803, -0.015969961881637573, 0.09562119096517563, -0.039736583828926086, 0.0028622366953641176, -0.05888522416353226, 0.0059922244399785995, 0.01968022808432579, -0.0341637022793293, -0.06168237328529358, -0.018654566258192062, 0.029759658500552177, 0.007686828263103962, 0.019785987213253975, -0.01765940897166729, -0.03514137491583824, 0.02035311795771122, -0.044643305242061615, 0.0866665244102478, -0.034478310495615005, 0.11148178577423096, -0.040047358721494675, 0.04841766506433487, 0.002383871003985405, -0.0030283245723694563, -0.06234581768512726, -0.0041132038459181786, -0.03985578939318657, -0.045315541326999664, 0.025206761434674263, 0.013813198544085026, 0.0032203998416662216, -0.036963704973459244, -0.0023670631926506758, -0.04934222996234894, -0.04887986183166504, 0.029110155999660492, -0.03196996822953224, -0.0022816932760179043, -0.018899017944931984, 0.00835167896002531, 0.09265659004449844, -0.010661456733942032, -0.01563480868935585, 0.015717875212430954, 0.03581509739160538, 0.003145912429317832, -0.020451096817851067, -0.02757898159325123, -0.013409964740276337, 0.010130633600056171, 0.007144746836274862, 0.047395821660757065, 0.0588228702545166, 0.026713795959949493, -0.04337012767791748, 0.0022726913448423147, 0.016083741560578346, -0.006239769980311394, -0.0036689722910523415, 0.06781461834907532, -0.07006306201219559, -0.05201268941164017, 0.06819964945316315, 0.0025426733773201704, 0.0026691050734370947, 0.03794700279831886, 0.0695706158876419, -0.0352817066013813, 0.024195894598960876, 0.009505797177553177, 0.014587264508008957, -0.007220075931400061, 0.029298627749085426, 0.046582598239183426, -0.010080787353217602, 0.00731315603479743, 0.04433468356728554, -0.0033677408937364817, 0.007629235275089741, 0.020660309121012688, -0.04511965066194534, -0.026762891560792923, -0.021849844604730606, -0.013027018867433071, -0.0786120668053627, 0.04547116532921791, -0.0144368726760149, -0.27148494124412537, 0.03609456494450569, 0.07513508945703506, 0.04910467565059662, 0.02403276413679123, 0.012661352753639221, 0.029198918491601944, -0.06404665112495422, -0.006260347086936235, 0.012860440649092197, 0.018161514773964882, 0.00743897957727313, 0.005183402914553881, -0.031174486503005028, 0.030608637258410454, -0.017453767359256744, 0.05390636995434761, -0.012132867239415646, 0.03319355100393295, 0.025126557797193527, 0.044369183480739594, 0.005551929119974375, 0.1857263743877411, 0.02727741375565529, 0.0444830022752285, 0.0099383145570755, 0.02390066161751747, 0.006558897905051708, 0.09080126136541367, 0.05089414492249489, 0.04901564121246338, -0.005475745070725679, 0.10602344572544098, 0.017159458249807358, 0.03469754382967949, -0.11558248102664948, -0.0045810965821146965, 0.048403192311525345, 0.010436587035655975, -0.010483553633093834, -0.016276614740490913, 0.03586211055517197, -0.07244428247213364, -0.02365991659462452, 0.08525408804416656, 0.012826167978346348, 0.011486655101180077, -0.028610650449991226, -0.025494076311588287, -0.010241474024951458, -0.042386095970869064, -0.025855986401438713, 0.00844234973192215, -0.04382852092385292, -0.004807809367775917, 0.05014152079820633, -0.0022775265388190746, -0.033512916415929794, -0.00456556212157011, 0.034689661115407944, 0.013129184953868389, 0.016766823828220367, 0.07024845480918884, 0.014656455256044865, 0.04077423736453056 ]
[ 0.0026885056868195534, 0.03834867477416992, -0.025685524567961693, 0.008292797021567822, -0.01894436962902546, 0.0164328720420599, 0.042786870151758194, 0.03750327229499817, -0.011738177388906479, -0.011049254797399044, 0.011342181824147701, -0.016458265483379364, 0.0363847054541111, -0.05294263735413551, 0.03484557569026947, -0.029869137331843376, 0.0193780604749918, -0.013801946304738522, 0.0244971364736557, 0.01052789855748415, -0.03588951379060745, 0.008021051064133644, 0.004959425423294306, -0.013154708780348301, -0.03077632747590542, 0.01284728106111288, 0.03153771534562111, -0.016061827540397644, 0.004743607249110937, -0.11013616621494293, -0.05547989159822464, -0.008945353329181671, -0.0041276151314377785, 0.011053245514631271, -0.04198504984378815, -0.007685238495469093, 0.04398451745510101, 0.06453964114189148, 0.016879083588719368, -0.027650879696011543, -0.0475275032222271, 0.002430920023471117, -0.024190053343772888, 0.01605488546192646, 0.0014101177221164107, -0.023158958181738853, 0.001907160971313715, -0.0051086232997477055, -0.02558513544499874, 0.032857079058885574, -0.03272813931107521, 0.00846633967012167, 0.023091623559594154, 0.009191597811877728, 0.0292250607162714, -0.019728733226656914, -0.04335762932896614, -0.037595026195049286, 0.014069760218262672, 0.009170197881758213, 0.011511431075632572, -0.02163080871105194, -0.01163594238460064, 0.008491101674735546, 0.03166716545820236, 0.010900277644395828, -0.004449746105819941, -0.04232456535100937, -0.02050652913749218, -0.05267513543367386, 0.028476810082793236, -0.011484281159937382, 0.015561465173959732, 0.006399242207407951, -0.03329239785671234, -0.013415765948593616, 0.03639441728591919, -0.04786410182714462, 0.03473177179694176, -0.02353208139538765, -0.016403615474700928, 0.007708082441240549, -0.026951389387249947, 0.03182566538453102, -0.0008303800714202225, -0.013465936295688152, -0.00035238414420746267, -0.020573928952217102, -0.025162648409605026, 0.024208778515458107, -0.013359676115214825, -0.007749078795313835, 0.01265756506472826, 0.00391375133767724, -0.0562584213912487, 0.013338509015738964, -0.020205993205308914, -0.041456807404756546, -0.00488707609474659, 0.8459051251411438, -0.03335649147629738, 0.04059363156557083, 0.06046650931239128, 0.003743759822100401, -0.002841084497049451, -0.04591928422451019, 0.022514590993523598, 0.010749592445790768, -0.013058972544968128, -0.010063732974231243, -0.014391930773854256, -0.005228479392826557, 0.019965089857578278, 0.027193976566195488, 0.01425190456211567, 0.014184098690748215, 0.033028289675712585, -0.01388844195753336, -0.01991492509841919, 0.008490786887705326, 0.0040285163559019566, 0.0012414063094183803, -0.021098699420690536, -0.005208869930356741, 0.0019361923914402723, -0.14063657820224762, 0.01847798191010952, -7.97282496459872e-33, 0.03380827605724335, -0.009831825271248817, 0.03226796165108681, 0.023679040372371674, 0.04840075597167015, 0.030852671712636948, 0.0038171191699802876, 0.030293211340904236, 0.036927301436662674, -0.026529088616371155, 0.02411900833249092, -0.007898310199379921, 0.006355469115078449, -0.007512871641665697, 0.030821310356259346, -0.012235993519425392, 0.007099656853824854, 0.02305908128619194, -0.020662249997258186, -0.015544642694294453, 0.03504573926329613, 0.027567623183131218, 0.03538954257965088, -0.029742488637566566, -0.013144105672836304, 0.020515263080596924, -0.010442433878779411, 0.043828804045915604, 0.023886948823928833, -0.0411706417798996, 0.039347097277641296, 0.014856678433716297, -0.005421015899628401, -0.005633690860122442, 0.029520591720938683, -0.043986253440380096, 0.012533022090792656, 0.006344460882246494, 0.002344086766242981, -0.067751444876194, -0.05770163983106613, 0.018314948305487633, 0.0010226350277662277, 0.020462766289711, -0.040484365075826645, -0.04187588766217232, -0.009255434386432171, 0.01869962364435196, 0.015698140487074852, 0.02246043086051941, -0.005811043083667755, 0.027495048940181732, -0.02058495581150055, -0.007566755171865225, -0.04810154438018799, 0.030176807194948196, -0.022125212475657463, -0.011419089511036873, -0.0030830393079668283, 0.012191085144877434, -0.011057357303798199, 0.008980784565210342, 0.00706161092966795, -0.009553264826536179, -0.005781459156423807, -0.006899116560816765, 0.009671139530837536, -0.05986976623535156, 0.02238704264163971, -0.040752556174993515, -0.020474331453442574, 0.03882521763443947, -0.019444694742560387, -0.00423920014873147, 0.006248756777495146, -0.029168469831347466, -0.011608751490712166, 0.0055181547068059444, 0.003693315666168928, -0.014811619184911251, -0.0020096965599805117, -0.011143356561660767, 0.022408224642276764, 0.021576564759016037, 0.020333226770162582, -0.0008666522335261106, -0.00911669246852398, 0.017106695100665092, 0.02703016623854637, -0.017567243427038193, 0.02238195389509201, 0.0667419582605362, -0.016163045540452003, -0.030477328225970268, -0.007286698557436466, 7.055114320859853e-33, 0.012215973809361458, -0.03174431249499321, -0.03204360976815224, 0.009721062146127224, 0.0026018465869128704, 0.008161772973835468, -0.00630195252597332, 0.045674461871385574, -0.03658779338002205, 0.01995190419256687, -0.004326682072132826, 0.02229616977274418, -0.015758812427520752, 0.017797688022255898, 0.06544174998998642, 0.013347364962100983, 0.02137024700641632, -0.026658739894628525, 0.018503068014979362, -0.04283670336008072, 0.01237326581031084, -0.02524683065712452, 0.0029421839863061905, 0.014327815733850002, -0.0074807945638895035, 0.05406087264418602, -0.043157897889614105, 0.011384014040231705, -0.018198102712631226, 0.0009248457499779761, -0.0136630954220891, 0.03783819451928139, 0.01820104382932186, -0.04134846851229668, -0.0165556613355875, -0.012358095496892929, -0.011741779744625092, -0.013527873903512955, 0.003934735897928476, 0.02406158111989498, 0.010022478178143501, -0.03231289982795715, 0.019331326708197594, -0.0037247794680297375, 0.019759828224778175, -0.026280337944626808, 0.021749045699834824, -0.014303299598395824, 0.022926433011889458, 0.019256364554166794, 0.03249245136976242, -0.020635785534977913, -0.036024488508701324, 0.014324946328997612, 0.00622158870100975, -0.00836077332496643, -0.02370300516486168, -0.021536855027079582, -0.02561204694211483, 0.010185480117797852, 0.003917289897799492, -0.002023231703788042, 0.005309531930834055, 0.026419712230563164, -0.022623756900429726, -0.04762179031968117, -0.018741674721240997, -0.04685257002711296, -0.008143769577145576, -0.04838666692376137, -0.019842999055981636, -0.05358043313026428, 0.004664165433496237, -0.011556658893823624, 0.02172110229730606, -0.04611188545823097, -0.004643739201128483, -0.013157442212104797, 0.031199928373098373, -0.007301439065486193, 0.04444952681660652, -0.01876390539109707, 0.03416438773274422, 0.022889362648129463, -0.013700705021619797, -0.00946386344730854, 0.0000026581878955767024, -0.028537612408399582, -0.01208576001226902, -0.01103915087878704, -0.050014033913612366, -0.011621744371950626, 0.013238430954515934, -0.0036167833022773266, 0.006284236442297697, -1.3223921513372261e-8, -0.03756163641810417, 0.005668405909091234, 0.00037429624353535473, 0.027404000982642174, 0.02201830968260765, -0.018559779971837997, -0.05947871133685112, -0.0473024807870388, 0.02494819276034832, -0.003351159393787384, -0.007501133717596531, 0.020187068730592728, 0.0030297283083200455, 0.017115231603384018, 0.008907847106456757, -0.02531544491648674, -0.012410284020006657, -0.0444103442132473, 0.021827848628163338, 0.03989885002374649, 0.007195279002189636, 0.014183570630848408, -0.015505848452448845, 0.009235620498657227, 0.05433998629450798, -0.000023267291908268817, 0.010663729161024094, -0.0663948580622673, 0.030957065522670746, 0.0224272683262825, 0.01768435165286064, -0.028096122667193413, 0.0099716205149889, -0.02549242042005062, -0.030660264194011688, -0.0029449204448610544, -0.026160171255469322, 0.025486527010798454, 0.03261971473693848, 0.025708111003041267, 0.022556133568286896, -0.013314815238118172, -0.020743759348988533, -0.029139859601855278, -0.015019921585917473, 0.002895063254982233, -0.0044292849488556385, 0.0646737739443779, 0.00040484697092324495, -0.01025308109819889, -0.0545794852077961, 0.010770861059427261, 0.049969639629125595, -0.011860758997499943, -0.00626904284581542, 0.006689779460430145, 0.028177542611956596, -0.009140036068856716, 0.005942102521657944, 0.01731453835964203, 0.0290377214550972, -0.014642959460616112, -0.058742448687553406, -0.009555075317621231 ]
c-java-ish-enums
https://markhneedham.com/blog/2010/04/17/c-java-ish-enums
false
2010-04-10 11:43:23
Mercurial: Early thoughts
[ "mercurial" ]
[ "Version Control" ]
We're using http://mercurial.selenic.com/[Mercurial] as our source control system on the project I'm working on at the moment and since I've not yet used a distributed source control system on a team I thought it'd be interesting to note some of my initial thoughts. One of the neat things about having a local repository and a central one is that you can check in lots of times locally and then push those changes to the central repository when you want everyone else to get the changes that you've made. So far we've been pushing much more frequently than would usually be the case using something like http://subversion.tigris.org/[Subversion]. For example I checked in after doing some tidy up on unused references whereas with Subversion I'd probably have included that as part of another checkin. It actually makes development more fun and reminds me of http://www.markhneedham.com/blog/2009/08/24/rock-scissors-paper-tdd-as-if-you-meant-it/[a kata I did while checking in almost every minute last year]. We're all still very much learning Mercurial but these are some of the commands that we've found ourselves using a lot so far: * To check if there are any changes to pull from the central repository: ~~~text hg incoming hg in ~~~ * To check if we have any changes that we haven't pushed to the central repository: ~~~text hg outgoing hg out ~~~ * To add any unversioned files and remove any missing files: ~~~text hg addremove ~~~ * To remove a file from the repository and from the file system: ~~~text hg remove /file/name ~~~ * To remove a file from the repository on the next commit but not remove it from the file system: ~~~text hg forget /file/name ~~~ * To pull any changes from the remote repository and update your repository with them: ~~~text hg pull -u ~~~ This one only completely works if you don't have any changes locally on the files you're pulling in. Otherwise you'll need to do a 'hg merge' afterwards. It seems like there's a lot more merging to do when using Mercurial than with Subversion which we're still getting used to but seems to be more natural as we use Mercurial more. * To undo committing a file locally: ~~~text hg rollback hg ci -X /file/to/not/commit -m"message and so on" ~~~ I've found http://hgbook.red-bean.com/read/[Mercurial: The Definitive Guide] by Bryan Sullivan and Joel's http://hginit.com/[hginit] to be useful resources for learning more about this tool.
null
null
[ -0.0021341557148844004, 0.01176446583122015, -0.007928791455924511, 0.05662219598889351, 0.068797767162323, -0.009796565398573875, 0.009734446182847023, 0.036468520760536194, 0.0118481470271945, -0.027933111414313316, -0.01552470214664936, 0.0029776073060929775, -0.07664595544338226, 0.017324578016996384, -0.030256912112236023, 0.05768643319606781, 0.06329315155744553, 0.01300020981580019, 0.00286511960439384, 0.008094829507172108, 0.01459583267569542, 0.08583763241767883, -0.007913034409284592, 0.021889621391892433, -0.0010559795191511512, 0.025171490386128426, 0.02325127273797989, -0.0013814166886731982, -0.06661976128816605, -0.01472578477114439, 0.051885202527046204, -0.02387436293065548, 0.0001254872913705185, -0.021348923444747925, 0.013333206996321678, -0.01699959672987461, -0.05126587674021721, 0.017976349219679832, 0.0151057755574584, -0.0035011479631066322, -0.05139748379588127, 0.04562800005078316, -0.029298914596438408, 0.013249759562313557, -0.039706338196992874, 0.030408620834350586, -0.044435784220695496, 0.005256180185824633, -0.008846891112625599, -0.008787973783910275, -0.04741622507572174, 0.01106423418968916, -0.038864731788635254, -0.022425297647714615, -0.0101100392639637, 0.040530696511268616, 0.03164300322532654, -0.0798577219247818, 0.008570456877350807, -0.014764346182346344, -0.02461886778473854, -0.008740805089473724, -0.012056133709847927, 0.0611257441341877, 0.03574813902378082, -0.021716870367527008, 0.006247574929147959, 0.03818897902965546, -0.026432519778609276, 0.003460394684225321, 0.014538337476551533, 0.014945680275559425, -0.04273839667439461, -0.012920936569571495, 0.036881931126117706, -0.027658481150865555, -0.007162772584706545, 0.03716659173369408, 0.0257212333381176, 0.06535852700471878, -0.02418503351509571, 0.019512314349412918, 0.005022050812840462, 0.0023904028348624706, -0.0029518886003643274, -0.029803019016981125, -0.030011579394340515, -0.018441995605826378, -0.06681039929389954, 0.07463405281305313, -0.003039867617189884, -0.07786568254232407, 0.037693411111831665, 0.014703502878546715, 0.01820933073759079, 0.004557191394269466, 0.03255501016974449, 0.0222410149872303, 0.013778047636151314, -0.005458231084048748, -0.03476736322045326, 0.0031595632899552584, -0.020496061071753502, -0.011515934951603413, -0.06686046719551086, -0.0047891526482999325, -0.038278911262750626, -0.017599569633603096, -0.011378221213817596, -0.03443624824285507, -0.0007574808550998569, 0.026744123548269272, 0.007302862126380205, 0.023112358525395393, -0.04995854198932648, 0.08888944983482361, 0.0025526368990540504, -0.08264841884374619, 0.004751194734126329, 0.0063533540815114975, 0.05035436525940895, 0.0379202701151371, -0.013284925371408463, 0.06542280316352844, 0.027741335332393646, 0.031399358063936234, -0.012643813155591488, 0.031111344695091248, -0.025034060701727867, -0.10312863439321518, 0.009236429817974567, 0.07125938683748245, -0.011810596100986004, 0.0025132789742201567, 0.0019478058675304055, -0.030468109995126724, -0.019239922985434532, -0.011515728197991848, 0.04861067980527878, 0.00994027964770794, -0.01844905875623226, -0.008793828077614307, -0.010783613659441471, 0.019485650584101677, 0.02955223061144352, 0.01833266392350197, -0.009754743427038193, -0.03303505852818489, -0.056217581033706665, 0.016214316710829735, 0.019917691126465797, 0.021914588287472725, 0.042544782161712646, -0.04835815355181694, 0.022002065554261208, 0.07454793900251389, 0.03429224342107773, -0.004195710178464651, -0.03312342241406441, 0.011687807738780975, 0.042073804885149, 0.044878821820020676, 0.02910325862467289, 0.0330406092107296, -0.023435747250914574, -0.03193005174398422, -0.021974503993988037, 0.03386322408914566, 0.038040123879909515, -0.0023780616465955973, -0.05309760570526123, -0.07464020699262619, 0.054981619119644165, -0.06059213727712631, 0.00014518846001010388, 0.0535040907561779, 0.08250126242637634, 0.07432036101818085, 0.032587360590696335, -0.005225127097219229, -0.08501708507537842, 0.03716035559773445, 0.003526761895045638, 0.036447636783123016, 0.006182590965181589, -0.021767593920230865, 0.07645658403635025, 0.015661165118217468, 0.02282874286174774, 0.015132295899093151, -0.09085497260093689, -0.06458812952041626, -0.004903529305011034, 0.01463067252188921, 0.044785987585783005, -0.01038126926869154, 0.0025716994423419237, 0.06031683459877968, 0.0000497582477692049, 0.024875272065401077, 0.019316578283905983, 0.030465764924883842, 0.02562492899596691, -0.07128623872995377, -0.034856732934713364, 0.0241262074559927, 0.004973683971911669, -0.0015351928304880857, -0.052832797169685364, -0.0082016596570611, -0.020042287185788155, 0.014551498927175999, 0.06845556199550629, -0.035611189901828766, 0.048215314745903015, 0.048370927572250366, 0.006362343207001686, -0.03352048248052597, 0.050717905163764954, -0.03141507878899574, -0.012531251646578312, 0.007920168340206146, -0.013282553292810917, 0.0239688903093338, 0.011051478795707226, 0.09119988232851028, 0.054918065667152405, -0.05229329317808151, -0.021570835262537003, 0.02161550708115101, 0.01675565540790558, -0.04045155271887779, -0.010316334664821625, -0.0029794429428875446, -0.0001041204304783605, -0.011361814104020596, -0.04844518378376961, -0.03357453644275665, 0.013196338899433613, -0.010798045434057713, 0.008522724732756615, 0.05447995662689209, -0.026986142620444298, 0.06566699594259262, 0.01257496140897274, -0.013544633984565735, -0.01242211926728487, -0.018363501876592636, -0.07504404336214066, 0.01695440523326397, 0.03023594804108143, -0.0239484291523695, 0.00971769355237484, -0.040312379598617554, 0.014201835729181767, -0.0340440534055233, -0.02500411495566368, 0.007307484745979309, 0.006964871659874916, 0.07632444053888321, -0.00817123893648386, 0.027439313009381294, -0.0013429585378617048, 0.018061213195323944, -0.021147755905985832, -0.024459360167384148, -0.038091935217380524, -0.013869021087884903, -0.010423013009130955, 0.03251751512289047, -0.0009465476032346487, 0.016256358474493027, -0.010676964186131954, -0.010543144308030605, 0.008934037759900093, -0.024953506886959076, 0.0012213285081088543, -0.009390306659042835, -0.026264553889632225, -0.05214088782668114, -0.004406861029565334, 0.03328686207532883, -0.04801023751497269, 0.0010936399921774864, -0.021553652361035347, -0.040663640946149826, 0.07859443128108978, -0.08455928415060043, -0.057239387184381485, -0.01489518117159605, 0.011020572856068611, 0.014179281890392303, 0.005340952891856432, 0.04562241584062576, 0.055381227284669876, 0.0036547030322253704, 0.028925087302923203, 0.0049174027517437935, 0.0451199933886528, 0.05965762957930565, 0.018805989995598793, -0.0217504370957613, 0.041581157594919205, -0.002008366398513317, -0.02621888741850853, -0.04688744246959686, 0.05086551234126091, -0.03531898558139801, -0.27544277906417847, 0.04396022856235504, 0.020983057096600533, -0.052695248275995255, 0.03032790496945381, -0.010466402396559715, -0.0044894739985466, -0.05370377376675606, -0.024380208924412727, 0.03180667385458946, -0.02561243437230587, -0.03843114897608757, 0.03654149919748306, 0.035557497292757034, -0.008709831163287163, 0.012145553715527058, 0.028104575350880623, -0.045767538249492645, 0.013912741094827652, 0.035792119801044464, -0.02968769706785679, -0.043088506907224655, 0.029700089246034622, 0.036041419953107834, 0.01464112475514412, 0.047816626727581024, -0.06841093301773071, 0.07968685775995255, -0.059451669454574585, 0.010245928540825844, 0.022742269560694695, 0.0010861073387786746, -0.007985420525074005, -0.0036560306325554848, -0.014560217969119549, -0.009921723045408726, 0.020736750215291977, 0.03553596884012222, -0.012721553444862366, 0.004980528727173805, -0.009395373985171318, -0.005585221573710442, -0.012080262415111065, 0.007834348827600479, 0.07105515152215958, -0.030211279168725014, -0.06395669281482697, -0.022484837099909782, -0.03016641177237034, 0.09301496297121048, -0.02012726105749607, -0.04242797568440437, 0.0012381700798869133, 0.02900409698486328, -0.02353310026228428, -0.021429210901260376, -0.016755538061261177, 0.006459407042711973, -0.035779014229774475, -0.009611550718545914, -0.02482982538640499, -0.03615818917751312, -0.0337066724896431, -0.052292950451374054, 0.005844663362950087, -0.05640924721956253, -0.06756890565156937, -0.01578391343355179, 0.05990412086248398, -0.004113198257982731, -0.029876047745347023, 0.00838352832943201, -0.029052898287773132, -0.10719197988510132, -0.014080001041293144, -0.016103042289614677, -0.06649040430784225, -0.031396977603435516, 0.02590118907392025, 0.04550297558307648, -0.043839313089847565, -0.03687136992812157, 0.03434482961893082, 0.024313082918524742, 0.0013694025110453367, 0.0005899388925172389, 0.05009355768561363, 0.014997902326285839, -0.02288745529949665, -0.021039428189396858, 0.06794717162847519, -0.05445258691906929, -0.04106726124882698, 0.002748114988207817, 0.009049132466316223, 0.015940910205245018, 0.0049050902016460896, -0.010295786894857883, 0.034968215972185135, 0.05551357939839363, 0.06086103245615959, -0.03174930810928345, 0.02489365264773369, -0.026757825165987015, -0.010395428165793419, 0.018033983185887337, -0.05225856974720955, 0.003200993174687028, 0.03434380888938904, 0.040477901697158813, -0.019713060930371284, -0.019471600651741028, 0.035954345017671585, -0.050465911626815796, -0.055746324360370636, -0.014929015189409256, -0.0020540824625641108, 0.02653581090271473, 0.008785638958215714, -0.0075247036293148994, -0.02654690481722355, 0.0067634801380336285, 0.014106543734669685, 0.001719220425002277, -0.027579236775636673, -0.01975366473197937, -0.012099890038371086, 0.004007447976619005, 0.032703518867492676, 0.024127984419465065, -0.017736759036779404, 0.02971244789659977, 0.026519732549786568, -0.04080435633659363, 0.025916628539562225, -0.022055722773075104, -0.05835782364010811, -0.0076621719636023045, -0.02018003910779953, 0.02003186009824276, -0.03513140231370926, 0.018394960090517998, -0.018651207908988, 0.03788648918271065, 0.041610509157180786, -0.01556748989969492, 0.05039747431874275, -0.012836511246860027, 0.01599080115556717, -0.015512985177338123, 0.0229976624250412, -0.07691013067960739, 0.008454203605651855, -0.04021402448415756, -0.018325429409742355, -0.03969594091176987, 0.04416432976722717, -0.013795789331197739, -0.013996834866702557, -0.016893776133656502, -0.013880384154617786, -0.07888458669185638, -0.005306852515786886, -0.011033294722437859, -0.01177539024502039, 0.06130807474255562, -0.009727559983730316, -0.005492216441780329, -0.02174427919089794, -0.014116276055574417, 0.012066632509231567, 0.055270299315452576, -0.04915231838822365, -0.006746420171111822, 0.013867354020476341, 0.002429736079648137, -0.02122528664767742, 0.012666565366089344, 0.044822562485933304, 0.0029312779661267996, -0.0076941740699112415, -0.004641118925064802, 0.01062228437513113, -0.0031507660169154406, 0.03820348158478737, -0.012604392133653164, 0.005144047550857067, 0.014644140377640724, -0.041191499680280685, -0.021145349368453026, -0.015129543840885162, 0.01623624563217163, -0.016141656786203384, 0.005376025568693876, -0.033186811953783035, -0.07879894226789474, 0.015144610777497292, 0.0010876280721276999, 0.02849716693162918, 0.011012009344995022, -0.011063383892178535, 0.018116287887096405, -0.03615727648139, 0.04131337255239487, 0.07676776498556137, -0.05941260978579521, 0.011937269940972328, 0.01268109492957592, -0.00589674012735486, -0.016515210270881653, 0.00891843717545271, -0.045620210468769073, -0.045948609709739685, -0.02286333404481411, 0.016238709911704063, -0.045749496668577194, -0.03995509818196297, -0.04795122519135475, 0.012041287496685982, -0.00264661549590528, -0.04209717735648155, -0.000025763203666429035, -0.014506001956760883, 0.023349065333604813, -0.05034584179520607, -0.014727838337421417, 0.025880223140120506, -0.005848159082233906, 0.013601681217551231, -0.02141907438635826, 0.02239605225622654, -0.017441198229789734, 0.0539640411734581, 0.01806446723639965, -0.016851847991347313, 0.0002948799228761345, 0.006277022417634726, -0.010135357268154621, -0.04975292831659317, 0.031306177377700806, 0.007527815643697977, 0.01533307135105133, -0.01870677061378956, -0.019706187769770622, -0.05565059185028076, -0.002528256503865123, -0.026827335357666016, -0.013889971189200878, 0.0008010668680071831, 0.05975383520126343, 0.0037620889488607645, 0.0378449372947216, -0.005051557440310717, -0.020080741494894028, 0.038204580545425415, -0.07128839939832687, -0.040713291615247726, -0.03542653098702431, -0.02530263178050518, 0.0008983121369965374, 0.02572399191558361, 0.01200485322624445, -0.05142004042863846, 0.01561709400266409, 0.03919036686420441, 0.010974179953336716, 0.024614833295345306, 0.009677245281636715, 0.02571805752813816, -0.06298268586397171, -0.03747323527932167, -0.08228146284818649, 0.01646173559129238, 0.004782897885888815, -0.023535246029496193, -0.008239611983299255, -0.003456745995208621, -0.03454519435763359, 0.033008161932229996, -0.04688885807991028, -0.02511710301041603, 0.05046040937304497, 0.010239656083285809, 0.00893159955739975, 0.01277531124651432, -0.07824666053056717, 0.017361139878630638, 0.03984016552567482, -0.040503405034542084, -0.009617331437766552, -0.05198327451944351, 0.04375893622636795, 0.003179445629939437, 0.04774818569421768, -0.018182583153247833, 0.012523283250629902, 0.0713067278265953, 0.02539513073861599, -0.0055404421873390675, 0.05285128206014633, -0.004450805950909853, 0.03381834179162979, 0.05271784961223602, 0.014630219899117947, 0.0014208758948370814, 0.022549506276845932, -0.015892934054136276, -0.02886335551738739, 0.04158112779259682, -0.002504976000636816, 0.00024211168056353927, -0.018531261011958122, 0.06189839914441109, 0.04190589487552643, -0.034968532621860504, -0.07254727929830551, 0.030886413529515266, -0.05833939090371132, 0.005336900241672993, -0.006750954780727625, -0.024227816611528397, -0.0549832247197628, 0.04551982507109642, -0.008936267346143723, 0.005724412854760885, 0.0652727484703064, -0.007571438793092966, 0.00157183688133955, 0.0011455441126599908, 0.07710212469100952, 0.08492526412010193, 0.06664647161960602, -0.003477470250800252, 0.053318820893764496, -0.011360709555447102, -0.03781813010573387, 0.026984181255102158, 0.008297748863697052, -0.014970230869948864, -0.027054619044065475, 0.016704412177205086, 0.041702598333358765, -0.04461507499217987, 0.0593680776655674, -0.0034101963974535465, 0.009036543779075146, -0.010373969562351704, 0.012325234711170197, 0.014826774597167969, 0.06717228889465332, 0.012960109859704971, -0.00941076222807169, -0.019635172560811043, -0.02264035865664482, 0.008000773377716541, -0.03771520406007767, -0.005737530067563057, 0.01783539168536663, -0.009526960551738739, 0.030698087066411972, 0.029188141226768494, 0.0028302764985710382, 0.0738140121102333, -0.018139805644750595, 0.02534949965775013, -0.008483748883008957, 0.03898611664772034, 0.001035309280268848, 0.0013084891252219677, -0.015464646741747856, -0.025130819529294968, 0.012608424760401249, -0.026135927066206932, -0.01835835538804531, 0.009811476804316044, -0.02280067466199398, 0.04164425656199455, 0.00503053842112422, 0.00749323982745409, 0.032615236937999725, -0.0029760366305708885, -0.023115942254662514, -0.011755167506635189, -0.0584343858063221, -0.05633421242237091, -0.022208672016859055, -0.01250472292304039, 0.0392264723777771, 0.012889634817838669, -0.04095983877778053, 0.00085469736950472, -0.012741694226861, -0.04998086392879486, 0.020392024889588356, -0.08150158822536469, -0.027403509244322777, 0.006843303330242634, 0.04191262647509575, 0.012315621599555016, 0.01616683229804039, 0.06396811455488205, 0.0024141145404428244, -0.027586759999394417, -0.008118461817502975, 0.02065383456647396, 0.05619645118713379, -0.0013371397508308291, 0.028135079890489578, -0.07816565036773682, 0.041760630905628204, 0.02183436043560505, -0.0007267073378898203, -0.05985572561621666, 0.010674036107957363, -0.011088511906564236, -0.043482378125190735, 0.06388101726770401, 0.005044240038841963, 0.012989816255867481, -0.02791808545589447, -0.0018371372716501355, -0.014178602024912834, 0.012257917784154415, 0.05888327211141586, 0.009822639636695385, 0.092459537088871, 0.017372306436300278, -0.0071343425661325455, -0.08150554448366165, 0.007039015181362629, -0.0038497361820191145, -0.002651213901117444, -0.01829827018082142, -0.031155899167060852, -0.009919445961713791, -0.08310272544622421, -0.03916558623313904, -0.023006659001111984, -0.01731680892407894, -0.029627611860632896, 0.0030386720318347216, 0.008002456277608871, -0.05370859056711197, 0.022502753883600235, -0.043752189725637436, 0.02289695292711258, 0.00024735534680075943, -0.029628975316882133, -0.010386566631495953, 0.01852429285645485, 0.014989804476499557, -0.007352947723120451, 0.05517460033297539, -0.038008544594049454, -0.002232887549325824, 0.014693845063447952, 0.03729713708162308, 0.0342930443584919, 0.03603903949260712, 0.00987121183425188 ]
[ -0.07684369385242462, 0.010621324181556702, -0.02574433572590351, -0.007979349233210087, 0.11317011713981628, -0.05277227610349655, -0.041122350841760635, 0.024029215797781944, -0.01786132901906967, -0.01810799352824688, -0.002112175803631544, -0.02338206022977829, 0.007853742688894272, -0.04081350564956665, 0.09170946478843689, -0.006488688290119171, -0.034774355590343475, -0.02662021294236183, 0.03936142846941948, 0.0042075514793396, -0.026436900720000267, -0.01842726394534111, -0.03502955660223961, -0.014766343869268894, 0.0038416788447648287, 0.045863986015319824, 0.007476123049855232, -0.047922927886247635, -0.031037811189889908, -0.22376108169555664, 0.011349901556968689, 0.013984748162329197, 0.007334916852414608, -0.008417262695729733, -0.00383390998467803, 0.06213071569800377, 0.051865894347429276, -0.00044727735803462565, -0.03845032677054405, 0.06076451763510704, 0.041566554456949234, 0.03424946591258049, -0.04275256022810936, -0.04371405765414238, -0.01212855614721775, -0.020380467176437378, 0.014710066840052605, -0.018805669620633125, 0.005235147196799517, 0.042598478496074677, -0.018461348488926888, 0.02161787450313568, -0.021031467244029045, -0.010146553628146648, -0.01592867635190487, 0.04294516146183014, 0.04413260892033577, 0.07438644766807556, -0.019646305590867996, 0.0010837187292054296, 0.01756955496966839, -0.002043138025328517, -0.13615083694458008, 0.03687593340873718, 0.04361323267221451, 0.028444062918424606, -0.00514370109885931, -0.009161271154880524, -0.0021402258425951004, 0.08288432657718658, -0.03355446830391884, -0.013405456207692623, -0.05606725811958313, 0.06249283254146576, 0.013289457187056541, -0.04943361505866051, -0.01572967693209648, 0.015261444263160229, 0.025178363546729088, -0.0686967670917511, -0.034972090274095535, -0.020731711760163307, -0.032083623111248016, -0.0163315050303936, -0.02096327394247055, 0.00932183675467968, 0.01624877005815506, 0.084972083568573, 0.016636181622743607, 0.012154407799243927, 0.04849402233958244, -0.019813695922493935, 0.09907910227775574, -0.0006506609497591853, -0.07081761956214905, -0.012865342199802399, 0.007000317331403494, 0.0328594334423542, -0.000891270989086479, 0.4531043767929077, -0.006337575614452362, -0.032535482197999954, 0.05114837363362312, 0.024400757625699043, 0.025523828342556953, 0.05285421013832092, 0.02526157535612583, -0.003523467108607292, 0.019952306523919106, -0.0014671416720375419, 0.02137705869972706, 0.00010907279647653922, 0.051120661199092865, -0.044117193669080734, 0.05163942649960518, 0.008226308040320873, 0.004179682582616806, 0.02214869298040867, -0.033464159816503525, 0.006819709669798613, -0.013740109279751778, 0.02000000886619091, 0.038353364914655685, 0.030607659369707108, 0.05073060095310211, 0.00667636888101697, 0.027913963422179222, 0.017800014466047287, 0.04267147555947304, 0.03763759508728981, 0.021437890827655792, -0.024421347305178642, -0.08212798833847046, -0.020027216523885727, -0.012109916657209396, 0.01941114477813244, 0.015990812331438065, -0.03000888228416443, -0.018334610387682915, 0.03733128309249878, -0.03575429692864418, 0.004106730688363314, 0.015708185732364655, -0.04912811145186424, -0.05960971117019653, 0.0983215719461441, 0.00026523854467086494, -0.01593794673681259, -0.005843805149197578, -0.08186519891023636, -0.018412336707115173, 0.02450600266456604, 0.016231972724199295, -0.03456898406147957, 0.010326104238629341, -0.010925950482487679, 0.06851775199174881, -0.03107813559472561, -0.04965510219335556, 0.01781013049185276, -0.006649957504123449, -0.03261895477771759, -0.029413839802145958, 0.08485584706068039, 0.040253207087516785, -0.09107464551925659, -0.011600506491959095, 0.0018865664023905993, 0.07085472345352173, -0.04575580731034279, -0.03975779935717583, 0.04616491124033928, 0.006770513951778412, -0.02972441539168358, 0.079436756670475, -0.03971090540289879, -0.03667834773659706, 0.004745357669889927, 0.03618888929486275, 0.018725484609603882, 0.01688925176858902, 0.04310501366853714, -0.057043179869651794, 0.0235005971044302, -0.04854723811149597, -0.09141729027032852, -0.05332280695438385, 0.009618408046662807, -0.034150220453739166, 0.007186305243521929, -0.034514691680669785, -0.003417189931496978, -0.03324207663536072, 0.05883795768022537, -0.019184866920113564, -0.005137866362929344, -0.011498861014842987, -0.00556048471480608, -0.008734096772968769, -0.023573366925120354, 0.0034871771931648254, 0.081971175968647, -0.024004656821489334, 0.0024513525422662497, -0.08760194480419159, 0.027260396629571915, 0.026626894250512123, -0.04118230938911438, 0.04781649634242058, 0.006781373172998428, -0.019763145595788956, 0.013894873671233654, 0.026536064222455025, 0.026943035423755646, 0.0051881358958780766, -0.0031564245000481606, 0.019552916288375854, -0.0007698896806687117, 0.025529611855745316, 0.041942957788705826, 0.006190779153257608, 0.0020839327480643988, -0.03166693449020386, -0.34267157316207886, -0.02955234982073307, -0.03986269235610962, -0.013100795447826385, 0.030990151688456535, -0.06983520835638046, 0.024183671921491623, -0.02745160087943077, -0.027567701414227486, -0.017174186185002327, 0.08115477114915848, -0.02401592582464218, -0.00359703553840518, -0.07823128998279572, -0.01741877570748329, 0.035714972764253616, -0.009865155443549156, -0.019301479682326317, -0.03659609332680702, -0.023509103804826736, 0.0010514011373743415, -0.04614422470331192, -0.013031459413468838, -0.029762189835309982, -0.013474141247570515, -0.01490444503724575, 0.07412132620811462, 0.01510431058704853, 0.09200220555067062, -0.02582605369389057, 0.028332838788628578, -0.008832210674881935, 0.01870379038155079, -0.13391469419002533, -0.00730280764400959, 0.014154022559523582, -0.0022735774982720613, -0.003525790758430958, 0.027130739763379097, -0.02113507129251957, -0.011509236879646778, 0.003627220867201686, -0.06082545965909958, -0.04756110906600952, -0.015782656148076057, -0.01200697012245655, -0.03497597202658653, -0.015165324322879314, -0.016107812523841858, 0.019892480224370956, -0.0007632671622559428, 0.015205218456685543, -0.0022033965215086937, 0.030588652938604355, -0.006632962264120579, -0.007314215414226055, -0.0470137745141983, -0.007997908629477024, 0.04612283408641815, -0.019567890092730522, 0.023994283750653267, 0.0947488397359848, 0.026540888473391533, -0.06009456142783165, 0.021784530952572823, -0.0014907262520864606, -0.0068665663711726665, 0.011811736971139908, 0.0629018247127533, -0.03236596658825874, -0.009738318622112274, 0.0846223309636116, -0.01508087757974863, -0.01188709493726492, -0.011791669763624668, 0.027790607884526253, -0.03264763206243515, -0.010396512225270271, -0.023539908230304718, -0.0398639552295208, 0.029112670570611954, -0.014846946112811565, 0.030585838481783867, -0.0043668909929692745, -0.02924979105591774, 0.057035259902477264, -0.015260769985616207, -0.06803980469703674, 0.024593699723482132, 0.04059506580233574, -0.003446937305852771, -0.015455732122063637, -0.00857201125472784, -0.06913089007139206, 0.05776684358716011, 0.014877877198159695, -0.24482007324695587, 0.025726541876792908, 0.062486276030540466, 0.02871273085474968, -0.026158418506383896, 0.018535835668444633, 0.053076766431331635, -0.06346731632947922, 0.013491849415004253, 0.025253618136048317, 0.043637827038764954, 0.042840372771024704, 0.005333075765520334, -0.011254670098423958, 0.01876351423561573, 0.0008031732868403196, 0.048788510262966156, 0.012637372128665447, 0.007285417523235083, -0.007375752553343773, -0.013065913692116737, -0.030091051012277603, 0.15621209144592285, 0.015207706019282341, 0.02772502787411213, 0.014678193256258965, -0.0053575774654746056, 0.003444472560659051, 0.06379706412553787, 0.025674860924482346, 0.013289429247379303, 0.01353443693369627, 0.027398644015192986, -0.002832249039784074, 0.014398526400327682, -0.024711765348911285, -0.012368644587695599, 0.03891522437334061, -0.012786627747118473, -0.0075956531800329685, -0.04931117594242096, 0.02068050019443035, -0.041031841188669205, 0.019505750387907028, 0.06947163492441177, -0.0692240446805954, -0.0002991683722939342, -0.027965528890490532, -0.06446263194084167, -0.017670689150691032, -0.0418451651930809, -0.016850348562002182, 0.02449776977300644, -0.02047153003513813, 0.017140265554189682, 0.06838446110486984, -0.0030831575859338045, -0.037585679441690445, -0.005980979185551405, 0.006776851136237383, 0.020395899191498756, -0.014116181060671806, 0.12698793411254883, -0.013587317429482937, 0.0331556536257267 ]
[ 0.022027552127838135, 0.026770690456032753, -0.02056833542883396, 0.020533515140414238, 0.030075756832957268, -0.0056024291552603245, -0.021746136248111725, 0.011188696138560772, 0.00858704000711441, 0.014677424915134907, 0.0328759029507637, 0.0026878134813159704, 0.05242195725440979, -0.0319235660135746, 0.01923263818025589, -0.0339445061981678, -0.0023269986268132925, -0.009715422987937927, 0.03921127691864967, -0.003648815443739295, -0.05186709389090538, -0.002727312268689275, 0.035438261926174164, 0.030067021027207375, 0.009159006178379059, 0.011738043278455734, -0.04819078370928764, 0.015592276118695736, 0.015370231121778488, -0.13704554736614227, -0.011053510010242462, -0.006077690981328487, -0.000056190310715464875, 0.004958054982125759, 0.01695154793560505, 0.03356284648180008, 0.011696218512952328, 0.014650517143309116, -0.05535908043384552, 0.0023148120380938053, 0.031937118619680405, 0.008768448606133461, -0.01045945193618536, -0.0038911020383238792, -0.02180102840065956, -0.03565467149019241, -0.024022603407502174, -0.03282322734594345, -0.02628532238304615, 0.00045101065188646317, -0.016835089772939682, -0.033709894865751266, 0.0012041948502883315, -0.014693757519125938, -0.016578545793890953, 0.00461542559787631, 0.017946476116776466, 0.0062378086149692535, 0.05441068857908249, -0.01725819520652294, 0.00297043239697814, -0.005853349342942238, -0.06734171509742737, -0.03986842930316925, 0.00748175336048007, -0.03760154917836189, 0.028396660462021828, 0.016651993617415428, -0.00875808484852314, -0.014238934032619, -0.008195726200938225, 0.00033555322443135083, -0.023570869117975235, -0.01503817830234766, -0.007227920461446047, -0.018499581143260002, 0.023152383044362068, -0.02299039252102375, 0.003516929456964135, -0.013185151852667332, -0.051760561764240265, 0.004106540232896805, 0.008243270218372345, -0.0023125228472054005, -0.023299161344766617, 0.007176926825195551, -0.0007705663447268307, -0.00930495373904705, 0.04475164785981178, 0.006707203108817339, 0.0352160669863224, 0.018081331625580788, 0.009412538260221481, -0.04225116968154907, -0.05817408114671707, -0.011010882444679737, 0.027925245463848114, 0.004721766337752342, 0.026569725945591927, 0.8342375755310059, 0.050679609179496765, 0.01774580217897892, 0.01001941692084074, -0.035522591322660446, 0.029144614934921265, 0.028354424983263016, -0.0008123407606035471, 0.028871282935142517, 0.004674786236137152, -0.03202499449253082, 0.02825171686708927, -0.004113585688173771, -0.008387009613215923, -0.019982529804110527, 0.017783336341381073, 0.05845914036035538, 0.04336842894554138, 0.003972863778471947, -0.03629288449883461, -0.003232593648135662, 0.03140261769294739, -0.00046232709428295493, 0.008698660880327225, -0.006372080650180578, 0.03111671283841133, -0.17312149703502655, -0.04034198448061943, -7.072091398021604e-33, 0.0413527637720108, 0.002336349803954363, -0.01940981112420559, 0.0003170615527778864, 0.005250140558928251, -0.02078210562467575, 0.0001142508554039523, 0.04391413554549217, -0.025621280074119568, -0.022603536024689674, -0.026873162016272545, -0.03584824502468109, -0.02060060389339924, -0.03166556358337402, 0.013345496729016304, -0.03983655944466591, -0.013037166558206081, 0.04435233399271965, -0.043716199696063995, 0.021086720749735832, 0.022109732031822205, 0.02185671031475067, 0.0037603459786623716, 0.0056417821906507015, 0.016986962407827377, 0.026668518781661987, 0.0233177300542593, 0.01348962727934122, 0.02289709821343422, -0.04915325716137886, 0.025575954467058182, 0.017308495938777924, 0.019377604126930237, 0.0019612708128988743, -0.0026952638290822506, -0.03513310104608536, -0.04884132742881775, 0.010842647403478622, -0.017718788236379623, -0.026734674349427223, 0.015080216340720654, 0.028143225237727165, -0.05201103165745735, -0.018325628712773323, 0.0034958154428750277, -0.015971358865499496, 0.0345856249332428, -0.01652670092880726, 0.023685434833168983, -0.02342662774026394, 0.009620388969779015, 0.01680517941713333, -0.00794259738177061, -0.016897309571504593, -0.010084257461130619, 0.05280453339219093, 0.0206462349742651, 0.026329483836889267, 0.004781406372785568, 0.0013778847642242908, 0.005328882951289415, 0.008732406422495842, -0.03613419458270073, 0.050452712923288345, 0.01962899975478649, 0.018243882805109024, -0.021872539073228836, 0.023945670574903488, 0.0420040600001812, -0.0016029588878154755, -0.055887527763843536, 0.0100020132958889, -0.012501223012804985, 0.0006245265249162912, 0.03640183433890343, -0.004206199198961258, -0.02058660052716732, 0.02129031904041767, 0.0299957524985075, 0.021101055666804314, -0.03670867905020714, 0.007166465278714895, -0.02053174562752247, -0.0007190767209976912, -0.0075555117800831795, 0.020322298631072044, 0.008962907828390598, 0.002382574835792184, -0.03928491473197937, 0.007932132109999657, 0.05410158261656761, 0.02386026456952095, 0.01617499068379402, -0.04250683635473251, -0.05163613706827164, 7.634572791729761e-33, -0.021985722705721855, -0.007077097427099943, -0.0044344044290483, 0.017858561128377914, 0.007418740540742874, 0.03143126145005226, -0.0313018299639225, 0.012529418803751469, -0.05821923911571503, 0.0043962858617305756, 0.015212683007121086, 0.016018036752939224, -0.022493405267596245, 0.020223524421453476, 0.020578958094120026, 0.008795848116278648, 0.032404571771621704, -0.006166423205286264, -0.019633669406175613, 0.016919905319809914, 0.015663960948586464, -0.004947568289935589, 0.028307994827628136, 0.0035036937333643436, 0.06335730105638504, 0.019294511526823044, -0.01438941154628992, -0.019032785668969154, 0.024686316028237343, -0.016525784507393837, -0.007274386007338762, -0.037422023713588715, -0.0019136297050863504, -0.019024644047021866, 0.004360484890639782, 0.016302943229675293, -0.021220875903964043, 0.03767896816134453, -0.023853540420532227, 0.014200772158801556, -0.016645262017846107, -0.00971840787678957, -0.007660242263227701, 0.0347101204097271, -0.025246791541576385, 0.008898244239389896, -0.005257004406303167, 0.025596266612410545, -0.03172825649380684, 0.04085143283009529, -0.01031519379466772, -0.012283672578632832, 0.025637615472078323, -0.016248933970928192, 0.021798361092805862, -0.014716713689267635, -0.022524366155266762, 0.01340753398835659, -0.03847861289978027, -0.007631260901689529, -0.03792475163936615, 0.025969257578253746, -0.02437449060380459, 0.022609736770391464, -0.04875829443335533, 0.012865861877799034, -0.04936974495649338, 0.01819000020623207, -0.01985172927379608, -0.010558676905930042, 0.0140990586951375, 0.01991773396730423, -0.03813653811812401, -0.015515446662902832, 0.025786124169826508, -0.031860679388046265, 0.0027288903947919607, 0.004180509131401777, 0.005035873502492905, 0.025971820577979088, -0.0067718918435275555, 0.03095519356429577, -0.013835206627845764, -0.004498299211263657, -0.0012824056902900338, 0.011021532118320465, -0.03873473033308983, 0.024574842303991318, 0.05977238714694977, 0.015919154509902, -0.009148461744189262, -0.03925197198987007, -0.0009716714848764241, 0.01734481006860733, 0.0008314938168041408, -1.2793901937868668e-8, -0.003920278511941433, -0.005800883285701275, -0.027245009317994118, 0.03572934865951538, 0.03581862896680832, 0.008750881999731064, -0.033945608884096146, -0.009335123002529144, -0.04528922587633133, 0.037596698850393295, 0.027357514947652817, -0.001304139383137226, -0.011956045404076576, -0.026451351121068, -0.009256972000002861, -0.039477359503507614, 0.03172888979315758, 0.027029266580939293, 0.022115245461463928, -0.003612653585150838, 0.019957097247242928, 0.022974157705903053, -0.017474330961704254, 0.05344214662909508, 0.020719196647405624, -0.014413691125810146, -0.0036080614663660526, -0.07113148272037506, 0.004647435620427132, -0.021165432408452034, 0.05045661702752113, -0.022669946774840355, -0.07595380395650864, 0.027629869058728218, -0.01348616648465395, -0.01775924116373062, 0.010393722914159298, 0.01600210927426815, 0.014786983840167522, 0.02954280935227871, 0.02183431200683117, 0.005946363788098097, -0.021394934505224228, -0.02712179161608219, -0.05279368907213211, -0.013716332614421844, -0.03361685201525688, -0.010355289094150066, 0.007939348928630352, -0.03705202043056488, 0.016072992235422134, -0.019983774051070213, 0.015393787063658237, 0.04019362851977348, 0.032891370356082916, 0.03198286145925522, 0.066793292760849, -0.013541311956942081, -0.012228290550410748, 0.017116867005825043, 0.02984081208705902, 0.010888077318668365, -0.006358269602060318, -0.03118608519434929 ]
mercurial-early-thoughts
https://markhneedham.com/blog/2010/04/10/mercurial-early-thoughts
false
2010-04-10 11:21:30
Coding: Maybe vs Null Object patterns
[ "coding" ]
[ "Coding" ]
On the project I'm currently working on my colleague http://christianralph.blogspot.com/[Christian Blunden] has introduced a version of the http://www.haskell.org/all_about_monads/html/maybemonad.html[Maybe] type into the code base, a concept that originally derives from the world of functional programming. The code looks a bit like this: [source,csharp] ---- public interface Maybe<T> { bool HasValue(); T Value(); } ---- [source,csharp] ---- public class Some<T> : Maybe<T> { private readonly T t; public Some(T t) { this.t = t; } public bool HasValue() { return true; } public T Value() { return t; } } ---- [source,csharp] ---- public class None<T> : Maybe<T> { public bool HasValue() { return false; } public T Value() { throw new NotImplementedException(); } } ---- We would then use it in the code like this: [source,csharp] ---- public FooRepository { public Maybe<Foo> Find(int fooId) { var foo = LookUpFooFromDatabase(); if(foo == null) { return new None<Foo>(); } return new Some<Foo>(foo); } ---- [source,csharp] ---- var maybeFoo = fooRepository.Find(1); if(maybeFoo.HasValue()) { // do something with it } // fail in misery ---- The benefit we get from using this pattern is that we're explicitly defining in the contract of 'FooRepository.Find' that the method might not return a 'Foo' rather than leaving the callee to work out whether or not they need to check for a null value. It's effectively the http://msdn.microsoft.com/en-us/library/1t3y8s4s(VS.80).aspx[Nullable pattern] except we can use it for reference types and not just primitives. An alternative approach which http://twitter.com/dermotkilroy[Dermot] pointed out is the http://en.wikipedia.org/wiki/Null_Object_pattern[null object pattern]. Typically when using that pattern we would treat the result of calling 'FooRepository.Find' the same regardless of whether we get a real 'Foo' or not. That pattern would work quite well if we have to show a list of items in a grid, for example, and just showed blank cells if there isn't a real 'Foo'. In our case we want to distinguish between whether we did or did not find a 'Foo' because the application behaves differently if we can't find one. Therefore in this case the null object pattern doesn't work so well.
null
null
[ 0.013081049546599388, -0.006925902795046568, -0.031939245760440826, 0.029923219233751297, 0.07288409024477005, 0.011062764562666416, 0.03409700095653534, 0.018987255170941353, 0.00128886045422405, -0.02169613726437092, -0.0127564100548625, -0.004145422019064426, -0.06973827630281448, 0.026943689212203026, -0.014046592637896538, 0.055703915655612946, 0.07144182175397873, -0.03511538356542587, 0.012398971244692802, -0.002545856637880206, -0.01781635731458664, 0.0800936222076416, -0.015094726346433163, 0.02929128333926201, 0.048016227781772614, 0.028678400442004204, 0.021971004083752632, 0.005836056545376778, -0.05634785816073418, 0.009341550059616566, 0.059978533536195755, 0.03155503794550896, -0.0034178439527750015, -0.030316922813653946, -0.0004936391487717628, -0.011534084565937519, 0.015511197037994862, 0.0054951743222773075, -0.007695853244513273, 0.01833629608154297, -0.08439893275499344, 0.03361073508858681, -0.003073468105867505, 0.02495252899825573, -0.05153125151991844, -0.014615523628890514, -0.029338493943214417, 0.00953863374888897, -0.04485262930393219, -0.016006186604499817, -0.07747390866279602, 0.018711112439632416, -0.04695962741971016, 0.006253777537494898, -0.01643185503780842, 0.0520755760371685, 0.01602155715227127, -0.07695549726486206, 0.021029697731137276, -0.0618484690785408, -0.007586285937577486, -0.028092417865991592, 0.02854009158909321, 0.020594239234924316, 0.00678945891559124, -0.011347987689077854, -0.03552776575088501, 0.038234952837228775, -0.04775809124112129, -0.03175204247236252, -0.009915194474160671, 0.0013755749678239226, -0.02779253013432026, -0.0005976283573545516, 0.02522578462958336, -0.047603633254766464, -0.018270649015903473, 0.04662264510989189, 0.020832110196352005, 0.04949221387505531, -0.015052197501063347, 0.010647594928741455, 0.047025714069604874, 0.004826758988201618, 0.026049360632896423, -0.034127309918403625, -0.015262355096638203, 0.010070386342704296, -0.033672213554382324, 0.06034829467535019, 0.03363792598247528, -0.033480893820524216, -0.009634517133235931, 0.016841597855091095, 0.013387534767389297, 0.028936157003045082, 0.01403403002768755, -0.008485562168061733, 0.025149736553430557, 0.002809061435982585, -0.027873016893863678, -0.026162492111325264, 0.0196917075663805, -0.009691491723060608, -0.0705876424908638, -0.015338897705078125, -0.0306965671479702, -0.02628401294350624, -0.0010847115190699697, 0.012733141891658306, -0.03082607500255108, 0.02354269102215767, -0.015634609386324883, 0.021861735731363297, -0.06701985001564026, 0.062435492873191833, 0.000053901851060800254, -0.0034979681950062513, -0.0077234841883182526, 0.031562622636556625, 0.04193250089883804, 0.01073437463492155, -0.003119315719231963, 0.077792689204216, 0.03355022519826889, 0.03914745897054672, -0.028355970978736877, 0.059816740453243256, 0.0048340074717998505, -0.08317331969738007, -0.003941234201192856, 0.059427060186862946, -0.012945468537509441, -0.008104423992335796, -0.015733111649751663, -0.010191606357693672, -0.020935524255037308, 0.009260511957108974, 0.043075766414403915, 0.043423593044281006, -0.028647953644394875, -0.04269032925367355, 0.04271700233221054, -0.027969419956207275, 0.018651198595762253, -0.005703317001461983, 0.007802928332239389, -0.0038573676720261574, 0.003719200612977147, 0.05196836590766907, 0.028838306665420532, 0.04081027954816818, 0.05144684389233589, -0.04374147951602936, 0.025703199207782745, 0.06652989238500595, 0.013806150294840336, 0.011418748646974564, 0.013846056535840034, 0.011002196930348873, 0.049175988882780075, 0.053909916430711746, 0.0054109469056129456, 0.031063787639141083, 0.007745598442852497, 0.011194226332008839, -0.012648995034396648, 0.04703556373715401, -0.004928900394588709, -0.012703566811978817, -0.04799140617251396, -0.03559790179133415, 0.048498403280973434, -0.04320891574025154, 0.005264247767627239, 0.010883604176342487, 0.08511442691087723, -0.0014948671450838447, 0.058508358895778656, -0.010265754535794258, -0.06920056790113449, 0.016623515635728836, -0.0009681948577053845, -0.0002642712788656354, -0.011567206121981144, 0.0131766302511096, 0.05776908993721008, 0.023841528221964836, 0.009711644612252712, 0.032016463577747345, -0.07130242884159088, -0.07098981738090515, -0.049358613789081573, -0.008273551240563393, 0.07572119683027267, -0.019026003777980804, -0.026593487709760666, 0.0600232370197773, 0.0016642912523820996, 0.04639158770442009, 0.04099501296877861, -0.00814359076321125, 0.016247577965259552, 0.006766510661691427, -0.048803359270095825, 0.05693211406469345, 0.04166682809591293, 0.012499511241912842, -0.05796319618821144, -0.00017265722271986306, -0.00023242359748110175, -0.011952387169003487, 0.041416194289922714, -0.0161293838173151, 0.0337449386715889, 0.008022766560316086, 0.01097205188125372, -0.036434758454561234, 0.047298185527324677, -0.061740487813949585, 0.034019213169813156, 0.006681306287646294, -0.0023564668372273445, -0.013363167643547058, 0.002489084377884865, 0.10501981526613235, 0.06863650679588318, -0.049735408276319504, -0.02030901052057743, 0.036373745650053024, 0.013966132886707783, -0.01954699121415615, 0.01986028254032135, -0.03887580335140228, 0.018538322299718857, -0.00020430311269592494, -0.0121395792812109, -0.004649404436349869, 0.00864840392023325, -0.034599047154188156, 0.02016957476735115, 0.06690412759780884, -0.020000996068120003, 0.045906685292720795, -0.01840718649327755, -0.05552496761083603, 0.0016654025530442595, -0.032807983458042145, -0.06815630197525024, 0.018550505861639977, 0.025969479233026505, -0.006739544216543436, 0.05850116163492203, -0.016618337482213974, -0.023100199177861214, -0.017299067229032516, -0.05524752289056778, 0.01318308711051941, 0.027819188311696053, 0.06702395528554916, -0.0015119046438485384, 0.0169532410800457, -0.03504811227321625, -0.007067288737744093, 0.0026924018748104572, -0.04784746468067169, -0.0006050335359759629, -0.0006917204009369016, 0.038126878440380096, 0.03278692811727524, 0.01783072203397751, 0.00391600513830781, 0.033588044345378876, -0.007207871414721012, -0.02592545375227928, -0.02429160848259926, 0.02989080175757408, -0.002315685385838151, -0.05235724896192551, -0.044325366616249084, -0.0543886199593544, 0.04714677110314369, -0.051094792783260345, -0.046092454344034195, 0.004966973327100277, -0.06571928411722183, 0.06983086466789246, -0.07056725025177002, -0.053893815726041794, -0.009597290307283401, 0.02680707909166813, 0.04184601828455925, -0.008608647622168064, 0.027895310893654823, 0.07579071819782257, -0.004596190061420202, 0.029793450608849525, 0.01702001504600048, 0.004655040334910154, 0.018788794055581093, -0.008661050349473953, 0.02857360988855362, 0.041049227118492126, 0.009677603840827942, 0.009987220168113708, -0.027383873239159584, 0.044726427644491196, -0.002256026491522789, -0.26810237765312195, 0.019260860979557037, -0.01122537162154913, -0.04378218203783035, 0.04356570169329643, -0.008476797491312027, 0.004036820959299803, -0.04253862053155899, -0.017905153334140778, 0.03718353062868118, -0.011829357594251633, -0.026874031871557236, -0.03937080129981041, 0.04231036826968193, -0.002973299939185381, -0.007818116806447506, -0.02359762042760849, -0.03367915004491806, -0.0008379946229979396, 0.048208385705947876, -0.028881490230560303, -0.04843103885650635, 0.013367132283747196, 0.02547623962163925, 0.014955750666558743, 0.03465213254094124, -0.08933094143867493, 0.05612668767571449, -0.029901651665568352, -0.03495686501264572, -0.013689669780433178, -0.004337715450674295, 0.011204412207007408, -0.04153348132967949, -0.017177624627947807, -0.01060765516012907, 0.007724015042185783, 0.03698929771780968, -0.005808540619909763, 0.057525452226400375, -0.04361728951334953, -0.041521139442920685, -0.0220183078199625, -0.0018994477577507496, 0.08917725831270218, -0.017970692366361618, -0.07943389564752579, -0.021768569946289062, -0.05223933607339859, 0.06633314490318298, -0.0473809614777565, -0.03905243054032326, -0.004711986053735018, 0.05260010436177254, -0.015005557797849178, -0.036525387316942215, 0.005715183913707733, -0.018947482109069824, -0.061207160353660583, -0.03819935768842697, -0.016818474978208542, -0.04062679037451744, -0.014747273176908493, -0.047767575830221176, -0.01715059019625187, -0.06570413708686829, -0.07205800712108612, -0.006547608878463507, 0.05484788492321968, 0.011210591532289982, -0.011418879963457584, -0.016728201881051064, 0.0065991501323878765, -0.11853140592575073, -0.030208012089133263, -0.03388421982526779, -0.031338609755039215, -0.0423540361225605, 0.028508760035037994, 0.04676562920212746, -0.015968751162290573, -0.050605662167072296, 0.0509653240442276, 0.017434488981962204, 0.04959680140018463, -0.007312986068427563, 0.033401746302843094, -0.02107689157128334, -0.04610523208975792, -0.0015877574915066361, 0.06477442383766174, 0.0033046486787497997, -0.00835476629436016, -0.04365191236138344, -0.0005501502892002463, 0.01302342675626278, 0.03604000061750412, -0.025108041241765022, 0.015873227268457413, 0.032836783677339554, 0.059248730540275574, -0.04364019259810448, 0.022781305015087128, -0.025961939245462418, -0.02908352203667164, -0.029031822457909584, -0.06051250174641609, 0.04553196579217911, 0.03836899995803833, 0.0055376081727445126, -0.007464227732270956, -0.03432611748576164, -0.011230590753257275, -0.0660124346613884, -0.033667292445898056, -0.0182126946747303, -0.002677001291885972, 0.029454294592142105, 0.00343493209220469, -0.005434542428702116, -0.03397548943758011, -0.0027130856178700924, 0.018540488556027412, 0.007447194308042526, -0.07540827244520187, -0.03654881566762924, -0.021458204835653305, -0.01663832738995552, 0.009746110998094082, 0.028833067044615746, -0.022609034553170204, 0.034749194979667664, -0.005929112900048494, -0.033945176750421524, 0.02719169668853283, 0.0046491464599967, -0.023298941552639008, -0.035157427191734314, -0.0221313014626503, -0.03983977809548378, -0.009737393818795681, -0.004151780623942614, 0.02520022541284561, 0.029834778979420662, 0.04783986881375313, -0.0010369560914114118, 0.009692895226180553, 0.026526497676968575, 0.014454323798418045, 0.024214841425418854, -0.012316032312810421, -0.053145769983530045, 0.03096533566713333, -0.034464262425899506, -0.04009473696351051, -0.04502096027135849, 0.042688578367233276, -0.027995537966489792, -0.020212313160300255, -0.033818770200014114, 0.03257150202989578, -0.048971906304359436, -0.03385042026638985, -0.03582479804754257, 0.00850397814065218, 0.07133612036705017, -0.0255503561347723, 0.04539717361330986, -0.04261591285467148, -0.019935498014092445, 0.012483160011470318, 0.010471194051206112, -0.022020123898983, 0.035618625581264496, -0.010046370327472687, 0.0024516636040061712, -0.017251592129468918, 0.03119734115898609, 0.02983791194856167, 0.02826516516506672, -0.0059297657571733, -0.02724740281701088, 0.0024218494072556496, 0.008226476609706879, 0.045882925391197205, 0.0005537310498766601, 0.021053118631243706, 0.0002862446999642998, -0.01703835092484951, -0.024613365530967712, -0.034928809851408005, -0.011748499237000942, -0.02847391553223133, 0.03093142621219158, -0.04481518268585205, -0.07839053869247437, 0.021265661343932152, -0.0004525312688201666, 0.03959893062710762, 0.012008392252027988, 0.024194546043872833, 0.012316388078033924, -0.014428947120904922, 0.015520524233579636, 0.059986311942338943, -0.051106732338666916, 0.032920412719249725, 0.015453619882464409, 0.014952459372580051, 0.01892213150858879, 0.020957564935088158, -0.05328553169965744, -0.006301599554717541, 0.0008262008777819574, -0.02105829119682312, -0.036687031388282776, -0.029269196093082428, -0.00448415894061327, 0.0026340587064623833, -0.006590876262634993, -0.02332516387104988, -0.009132856503129005, 0.0005286090890876949, -0.02938305214047432, -0.018064768984913826, -0.006440920755267143, -0.04498246684670448, -0.022609451785683632, 0.036506883800029755, -0.046629648655653, 0.016171354800462723, -0.016849951818585396, 0.019329501315951347, 0.010311218909919262, -0.00749730970710516, -0.029597003012895584, -0.05265188589692116, 0.007937670685350895, -0.0162831898778677, 0.04155946522951126, -0.008489420637488365, -0.022378340363502502, -0.0039839353412389755, -0.03886410593986511, -0.044152796268463135, 0.025919876992702484, 0.006040011532604694, -0.011541539803147316, 0.01504768431186676, 0.03776923567056656, -0.012962977401912212, 0.04606293886899948, -0.0009179069311358035, -0.010395224206149578, 0.07568597048521042, -0.034993890672922134, -0.03119669295847416, -0.01077183336019516, -0.04529838636517525, 0.009891338646411896, 0.016092749312520027, 0.03397304192185402, -0.030873702839016914, 0.03410723805427551, 0.05144345387816429, 0.028780922293663025, 0.05216343700885773, 0.00617216108366847, 0.06572085618972778, -0.03255331516265869, -0.014424542896449566, -0.0823277160525322, 0.009907721541821957, 0.03471233323216438, 0.02182510495185852, -0.03131486102938652, -0.04443139210343361, 0.0033004821743816137, 0.03050653077661991, -0.05412878096103668, -0.026750655844807625, 0.0434143990278244, -0.012164167128503323, 0.0028415797278285027, 0.02219381369650364, -0.05404549464583397, 0.03400047868490219, 0.02205010876059532, -0.014732305891811848, -0.046248726546764374, -0.0447528250515461, 0.041140489280223846, 0.03174080327153206, 0.01927119493484497, -0.04877026379108429, 0.0028233788907527924, 0.061113156378269196, 0.02927888184785843, 0.034129273146390915, 0.06500833481550217, -0.01990097388625145, 0.038506802171468735, 0.019348958507180214, -0.020598668605089188, -0.01669602282345295, -0.0015296641504392028, -0.005651493556797504, -0.06846186518669128, 0.0069383541122078896, 0.011497831903398037, -0.03460485115647316, -0.056981440633535385, 0.04852990433573723, 0.0051380968652665615, -0.008931592106819153, -0.026079636067152023, 0.015222623012959957, -0.02089899592101574, -0.008701181970536709, -0.021116025745868683, -0.0009807938477024436, -0.03820103034377098, 0.06410623341798782, 0.015099357813596725, 0.005327392835170031, 0.06508643925189972, 0.0009324318962171674, 0.00045604308252222836, -0.02714812010526657, 0.0995660051703453, 0.07704714685678482, 0.039812251925468445, -0.010835660621523857, 0.06285828351974487, -0.04053138568997383, -0.037647899240255356, 0.014603459276258945, -0.00519981374964118, -0.014038482680916786, -0.01506150234490633, 0.01912766881287098, 0.08420936018228531, 0.007301941514015198, 0.051984939724206924, -0.05156165733933449, -0.0108804265037179, -0.016462471336126328, 0.038473792374134064, 0.037427015602588654, 0.044156841933727264, 0.028907762840390205, 0.02487637847661972, 0.02468818426132202, -0.036182768642902374, 0.03651537746191025, -0.027808833867311478, -0.008878135122358799, -0.01241869106888771, 0.005265372339636087, 0.016040286049246788, 0.02298383042216301, 0.02415330708026886, 0.06713627278804779, -0.006108867935836315, 0.009432568214833736, -0.0031012443359941244, -0.00825502909719944, -0.008903952315449715, -0.020080437883734703, -0.029605403542518616, -0.04470400884747505, 0.003341031726449728, 0.004261632449924946, -0.003028538776561618, -0.013557951897382736, -0.042084380984306335, 0.03317217528820038, -0.012848847545683384, 0.010531422682106495, -0.0032819658517837524, -0.000842639128677547, -0.019129879772663116, -0.0651969388127327, -0.04249081015586853, -0.02532191202044487, -0.07363099604845047, -0.012661656364798546, 0.012836120091378689, -0.020345620810985565, -0.025912078097462654, -0.027300626039505005, 0.0014057743828743696, -0.02493191696703434, 0.06303290277719498, -0.029942305758595467, -0.016913123428821564, 0.024715473875403404, 0.017747964709997177, 0.031704217195510864, 0.033199846744537354, 0.03415165841579437, -0.021551048383116722, -0.0005429058219306171, -0.03867357224225998, -0.026147468015551567, 0.04157916456460953, 0.0007118646171875298, 0.028375616297125816, -0.07764193415641785, 0.024415386840701103, 0.007604037411510944, 0.027256853878498077, -0.09079728275537491, -0.0017371864523738623, 0.007351462263613939, -0.00002855822822311893, 0.016814490780234337, -0.01794048771262169, -0.006727962754666805, -0.011594768613576889, 0.006074828095734119, 0.02152165025472641, 0.02650456503033638, 0.054712504148483276, -0.03971322625875473, 0.08149437606334686, 0.010374082252383232, -0.0030442001298069954, -0.03120477870106697, 0.007944919168949127, -0.04635518789291382, 0.029265262186527252, -0.040909767150878906, -0.03135937079787254, -0.032643795013427734, -0.06607872992753983, -0.007388788741081953, 0.013586441054940224, -0.024327846243977547, -0.04197375848889351, 0.02318968065083027, 0.06517872959375381, -0.08292128145694733, 0.05284162610769272, -0.03399575129151344, 0.04842929169535637, -0.02155379392206669, -0.026972437277436256, 0.020820682868361473, 0.030444204807281494, 0.011213120073080063, 0.020916219800710678, 0.032832518219947815, -0.03395269066095352, -0.015183291397988796, -0.008737909607589245, 0.021897144615650177, 0.04797379672527313, 0.0004448074323590845, 0.03230232372879982 ]
[ -0.10566151887178421, -0.025354186072945595, -0.04921986535191536, -0.02445622906088829, 0.003725664922967553, -0.032153088599443436, 0.028034431859850883, 0.048295848071575165, 0.01436621230095625, -0.03093474917113781, -0.008406957611441612, -0.05089351534843445, 0.00621821079403162, -0.004409732297062874, 0.093684621155262, 0.011446839198470116, -0.02451770380139351, -0.005064545199275017, -0.020525088533759117, 0.007617271970957518, 0.09084621071815491, -0.03557882830500603, -0.05423939600586891, -0.041658926755189896, 0.013830417767167091, 0.03598037362098694, 0.05750831589102745, -0.03603581711649895, 0.03299266844987869, -0.19830159842967987, -0.01784912683069706, -0.009812501259148121, 0.035598061978816986, -0.04316498339176178, 0.015858009457588196, 0.04811255261301994, -0.004039148800075054, -0.004532263148576021, -0.0408327691257, 0.08172113448381424, 0.025535481050610542, 0.037639319896698, -0.038607221096754074, -0.03930125758051872, 0.01873297058045864, 0.002012553857639432, -0.01798601821064949, -0.008404253050684929, -0.03641067072749138, 0.002892263699322939, -0.09412002563476562, 0.002920597093179822, 0.00403211684897542, -0.017612356692552567, -0.017807694151997566, 0.04347081854939461, 0.06747554987668991, 0.08797537535429001, 0.024114927276968956, 0.017921214923262596, 0.016618456691503525, -0.006159710697829723, -0.10907354950904846, 0.09162162989377975, 0.0343964509665966, 0.05489456281065941, -0.014278119429945946, -0.04566922411322594, -0.009199369698762894, 0.07815976440906525, 0.04453733190894127, -0.02241523377597332, -0.02107761800289154, 0.06778306514024734, 0.02602238394320011, -0.03154513239860535, 0.012885062955319881, 0.0012948681833222508, 0.05874454975128174, -0.02563580498099327, -0.05917532369494438, -0.0376894474029541, -0.017824610695242882, 0.011495167389512062, -0.020353106781840324, 0.03367052227258682, -0.01916024461388588, 0.0588703528046608, 0.022684382274746895, 0.004167454782873392, 0.021716691553592682, -0.028662195429205894, 0.004657988902181387, 0.0005772805889137089, -0.07384725660085678, 0.03076244704425335, -0.014370228163897991, 0.012320315465331078, -0.02518291212618351, 0.42572078108787537, -0.026380378752946854, -0.007564834784716368, 0.037880778312683105, 0.026482239365577698, 0.005138692911714315, 0.000829793862067163, -0.0128563791513443, -0.0600406713783741, 0.02167128212749958, -0.060404788702726364, -0.021965118125081062, -0.03137138858437538, 0.06620324403047562, -0.059960346668958664, -0.006615191698074341, 0.004465585574507713, 0.05340156704187393, -0.012275401502847672, -0.019325975328683853, 0.0030727984849363565, -0.005312121938914061, 0.0031032878905534744, 0.023163430392742157, 0.03083699382841587, -0.004978843964636326, -0.02175302244722843, 0.012899000197649002, 0.050225257873535156, 0.023559657856822014, 0.05102180689573288, 0.05221804231405258, -0.05593981593847275, -0.04480290785431862, -0.019281739369034767, 0.024818336591124535, 0.0007391981198452413, 0.01718720607459545, -0.02662481926381588, 0.0016123823588714004, 0.00860931258648634, -0.009889158420264721, -0.046533141285181046, -0.0015100141754373908, -0.006959904450923204, -0.05063435062766075, 0.10463004559278488, -0.010612021200358868, -0.022577788680791855, -0.00756469089537859, -0.04185645282268524, -0.009240614250302315, 0.03653014451265335, -0.0011827534763142467, -0.08522263914346695, 0.01925426349043846, 0.00911478791385889, 0.037828657776117325, -0.013106496073305607, -0.04722411930561066, 0.011247431859374046, -0.031356893479824066, -0.029022516682744026, -0.05250978469848633, 0.059563130140304565, -0.003625271376222372, -0.047306716442108154, -0.03377532586455345, -0.008285987190902233, 0.03472714498639107, -0.06324424594640732, 0.014581660740077496, 0.01778532937169075, -0.021201390773057938, 0.0009345234138891101, 0.040458835661411285, 0.00518972659483552, -0.03033483773469925, -0.011300661601126194, 0.03038070909678936, 0.03493836894631386, -0.020673975348472595, 0.012550391256809235, -0.06618427485227585, 0.02588517963886261, -0.01567653939127922, -0.060773979872465134, -0.044303473085165024, -0.007973121479153633, -0.03730474039912224, -0.016106227412819862, -0.005716996733099222, -0.009151733480393887, -0.06384606659412384, 0.05988616868853569, -0.0230772253125906, -0.02306715026497841, 0.038651127368211746, 0.007759197615087032, -0.009021198377013206, 0.015611890703439713, -0.012179352343082428, 0.061517588794231415, -0.009289263747632504, 0.018164945766329765, -0.057428307831287384, -0.005968854296952486, 0.03595636785030365, -0.0645228922367096, 0.0683603510260582, 0.04173548147082329, -0.003987770061939955, 0.014149066992104053, -0.030972635373473167, 0.040796805173158646, 0.0013234461657702923, -0.014942237176001072, 0.02047969214618206, -0.000016877758753253147, 0.01892215386033058, 0.006508860271424055, -0.04520755633711815, -0.037148524075746536, -0.03864254057407379, -0.3485627770423889, -0.05061211809515953, -0.013365201652050018, -0.03006140887737274, 0.01150063518434763, -0.08318682014942169, -0.000303220353089273, -0.022106755524873734, -0.030782628804445267, 0.017932303249835968, 0.0630454570055008, -0.012055100873112679, -0.022384755313396454, -0.0549788624048233, -0.012518098577857018, 0.008390314877033234, -0.023473266512155533, -0.0442749485373497, -0.03376482054591179, 0.02123354561626911, -0.014223211444914341, 0.0105325011536479, 0.01591719500720501, -0.08365532755851746, -0.031166039407253265, -0.03986341506242752, 0.10112617909908295, 0.015895873308181763, 0.11550655215978622, -0.03785103186964989, 0.050650570541620255, -0.05418243259191513, 0.005235467571765184, -0.0758911743760109, -0.0020863404497504234, -0.03178757429122925, -0.017891857773065567, -0.03077165223658085, 0.06468657404184341, -0.02777992933988571, -0.03283385932445526, 0.011036747135221958, -0.058772388845682144, -0.0382511243224144, -0.0152079863473773, 0.016278572380542755, -0.009297152981162071, -0.04070362076163292, -0.013085923157632351, 0.09252168238162994, 0.022048333659768105, -0.011566474102437496, -0.00476097734645009, 0.042817018926143646, -0.013987820595502853, -0.0032747862860560417, -0.027046119794249535, -0.03539609536528587, 0.0231589674949646, -0.013588295318186283, 0.04044026881456375, 0.09781108051538467, 0.03429607301950455, -0.015438463538885117, 0.0010211528278887272, -0.019765455275774002, -0.018139729276299477, -0.005135390441864729, 0.0220625177025795, -0.04795501381158829, -0.02891954965889454, 0.09550195187330246, -0.026046616956591606, -0.009832048788666725, 0.01618083193898201, 0.07769710570573807, -0.01068955659866333, 0.0006214231252670288, 0.012654262594878674, 0.03647884726524353, 0.044452592730522156, 0.008101263083517551, 0.01714901626110077, -0.041204921901226044, -0.03139147907495499, 0.036052219569683075, -0.02486065775156021, -0.006805224809795618, 0.07187994569540024, -0.009796752594411373, -0.022250067442655563, 0.022888490930199623, 0.021068155765533447, -0.06301052868366241, 0.07361399382352829, -0.021760420873761177, -0.2696903347969055, 0.023179469630122185, 0.0425424724817276, 0.04396986961364746, -0.010635009966790676, 0.02383062243461609, 0.04603450000286102, -0.050073541700839996, -0.052024006843566895, -0.004172454122453928, 0.04125290364027023, 0.033333733677864075, 0.0331120491027832, 0.021469086408615112, 0.03253672644495964, -0.021357515826821327, 0.058900102972984314, -0.002540442394092679, -0.00501503748819232, -0.005070602521300316, 0.006855935789644718, 0.008477742783725262, 0.1965157836675644, 0.0033719935454428196, 0.032422203570604324, 0.026097780093550682, 0.02072456106543541, 0.027518700808286667, 0.07337760180234909, 0.035734374076128006, 0.0009329032618552446, 0.012135406024754047, 0.06400370597839355, 0.0011748761171475053, 0.06137053295969963, -0.04170281067490578, -0.008963705971837044, 0.02190067619085312, 0.011987993493676186, -0.0140694510191679, -0.03235768526792526, 0.030237914994359016, -0.032775502651929855, 0.03469258174300194, 0.07446862757205963, 0.020875515416264534, -0.010678152553737164, -0.02344844490289688, -0.025029076263308525, 0.020038457587361336, -0.01823478378355503, -0.007652792148292065, 0.0037212755996733904, -0.016875531524419785, 0.01113694254308939, 0.05501534417271614, 0.008870996534824371, -0.020464813336730003, -0.03841257095336914, -0.007575568277388811, -0.0015528607182204723, -0.0030369518790394068, 0.10086008906364441, 0.040474992245435715, 0.02489549294114113 ]
[ 0.003403435694053769, 0.0338415764272213, -0.019615639001131058, 0.022980740293860435, -0.006457796320319176, 0.024569669738411903, -0.00008222014002967626, 0.006422719452530146, 0.009289869107306004, -0.0010983084794133902, -0.015651827678084373, -0.039810650050640106, 0.03598576784133911, -0.022261228412389755, 0.008627516217529774, 0.031399380415678024, -0.011278994381427765, -0.013804537244141102, 0.013341967016458511, 0.007007072679698467, -0.020021051168441772, 0.049630772322416306, -0.006370754446834326, 0.008780012838542461, -0.0033111704979091883, -0.0012792057823389769, -0.02950519323348999, -0.027810469269752502, 0.03287070244550705, -0.11480644345283508, -0.04535606503486633, -0.014404719695448875, -0.03523964807391167, -0.007759159430861473, -0.025650030001997948, 0.01683947630226612, 0.02743873931467533, 0.028865162283182144, -0.004859331529587507, 0.007333550602197647, -0.02558513544499874, 0.011151245795190334, -0.00438092602416873, 0.0013968374114483595, -0.012084495276212692, -0.033462438732385635, 0.0065201884135603905, -0.04089232534170151, -0.013199687004089355, -0.02685132995247841, -0.02910761721432209, -0.007950251922011375, 0.022420620545744896, 0.026168661192059517, 0.0014189901994541287, -0.007001233287155628, 0.004896175116300583, -0.02901751548051834, -0.010072960518300533, -0.008389837108552456, -0.009164352901279926, -0.0015311635797843337, -0.018764270469546318, -0.009890884160995483, 0.006218004506081343, 0.01228422112762928, 0.006845379248261452, -0.021140241995453835, -0.019175618886947632, -0.02217450737953186, -0.04401802644133568, 0.009325853548943996, -0.02430114708840847, 0.02384589985013008, -0.0068218158558011055, -0.010336571373045444, 0.042327772825956345, -0.03267768770456314, 0.015536116436123848, 0.0025234180502593517, -0.008007858879864216, 0.004963084124028683, 0.006886414717882872, 0.02686787024140358, 0.010638857260346413, -0.008531813509762287, 0.019113939255475998, 0.015808256343007088, 0.04614328593015671, 0.007211252581328154, -0.014437060803174973, 0.01833418384194374, -0.0013537119375541806, 0.0038777338340878487, -0.046924952417612076, 0.01707996428012848, -0.0022909168619662523, -0.03039262630045414, -0.003429926000535488, 0.8519635796546936, -0.02770426496863365, 0.02994505502283573, 0.02452036365866661, -0.0035690716467797756, 0.013421449810266495, -0.011904039420187473, -0.006461004260927439, 0.031241808086633682, 0.03307235613465309, -0.04881332069635391, 0.026515785604715347, -0.00836913287639618, 0.028331277891993523, -0.001195483491756022, -0.009629118256270885, 0.03299795836210251, 0.04266663268208504, -0.027080638334155083, -0.035256143659353256, 0.01644759438931942, 0.01513436995446682, -0.02130734547972679, 0.006144445389509201, 0.0239239651709795, 0.030997827649116516, -0.1927357167005539, 0.023205304518342018, -7.530213872631697e-33, 0.07803270220756531, -0.004905803129076958, 0.00923104863613844, 0.006643321830779314, 0.051817744970321655, 0.00904826819896698, 0.03537509962916374, 0.009100005961954594, -0.017889944836497307, -0.04820618778467178, 0.025978682562708855, -0.030426694080233574, -0.023129800334572792, -0.013450291939079762, 0.03607579693198204, -0.01527385599911213, 0.013224921189248562, 0.02568923495709896, 0.007195145823061466, -0.014980074018239975, 0.029822252690792084, 0.041520312428474426, 0.019116496667265892, -0.024144867435097694, 0.007756785489618778, 0.02420118637382984, 0.007300580386072397, 0.011321359314024448, -0.008086830377578735, -0.05030694603919983, 0.008285940624773502, 0.020816214382648468, -0.02848341129720211, -0.037851810455322266, 0.03837766870856285, -0.04782332479953766, -0.00367564894258976, 0.02006114460527897, -0.034697435796260834, -0.01714812032878399, -0.027278229594230652, 0.04053589329123497, -0.022619694471359253, 0.013408897444605827, -0.0009623936493881047, -0.052061524242162704, -0.002518286230042577, -0.006902662105858326, 0.03294381871819496, 0.039704855531454086, 0.016535602509975433, 0.04376744478940964, 0.005898278672248125, 0.0024359046947211027, -0.026847025379538536, -0.005722811445593834, -0.043468281626701355, -0.010062489658594131, -0.004389446694403887, 0.0181282926350832, 0.020648695528507233, -0.020340928807854652, -0.032476525753736496, 0.016828270629048347, -0.020084215328097343, -0.011747322976589203, -0.002190367551520467, -0.03206310793757439, 0.02974911406636238, -0.017321784049272537, -0.027887731790542603, -0.005930716171860695, -0.015370053239166737, -0.021114246919751167, -0.004655412398278713, -0.03216971084475517, -0.022894078865647316, -0.03492547199130058, 0.01243305392563343, -0.00032845616806298494, 0.017354506999254227, -0.01924809440970421, 0.016422197222709656, -0.006025093141943216, -0.02094161882996559, -0.005368426907807589, 0.03806014358997345, 0.005029449239373207, -0.008514770306646824, -0.038213301450014114, 0.033235855400562286, 0.057566363364458084, -0.01784759759902954, -0.03935287520289421, 0.013315933756530285, 7.356331809522187e-33, -0.013059960678219795, -0.02670178934931755, -0.018862228840589523, 0.011754481121897697, -0.027074389159679413, -0.004971849266439676, 0.001953425584360957, 0.027261467650532722, -0.026003774255514145, 0.017759619280695915, 0.014758303761482239, 0.03229176625609398, -0.01717732660472393, 0.02347617968916893, 0.0466025248169899, -0.022656066343188286, 0.004887176677584648, -0.03304608538746834, 0.007917467504739761, 0.013909419998526573, 0.03894234448671341, 0.013596794568002224, -0.01062699779868126, 0.001023143413476646, 0.03899974375963211, 0.06128353253006935, -0.05032635107636452, 0.02252732403576374, -0.0050317649729549885, -0.007353732828050852, -0.0008010806050151587, -0.002896717982366681, 0.007696698419749737, -0.04747554659843445, 0.006045156624168158, 0.009891594760119915, -0.0014674601843580604, 0.025602879002690315, 0.04163377732038498, 0.029639126732945442, 0.0504656583070755, -0.023433130234479904, 0.013593832962214947, 0.02915678173303604, -0.017976950854063034, 0.0007422224152833223, -0.018346216529607773, -0.004772887099534273, 0.03798188641667366, 0.007618156727403402, 0.03012729063630104, -0.016763588413596153, -0.0019760369323194027, -0.0026215643156319857, 0.02031261846423149, -0.020021818578243256, -0.032396938651800156, -0.008807603269815445, -0.03711686283349991, 0.009134674444794655, -0.01650567166507244, 0.027671417221426964, -0.036801960319280624, 0.02145335264503956, -0.03166232630610466, 0.016546767204999924, -0.053306836634874344, -0.03237176686525345, -0.027013670653104782, -0.014016191475093365, -0.03250898793339729, 0.0017962512793019414, -0.0026262840256094933, -0.00776993203908205, 0.013543032109737396, -0.011439533904194832, 0.006807565223425627, -0.01785898208618164, 0.012723179534077644, 0.012214143760502338, 0.010556037537753582, -0.006673124153167009, 0.04896599054336548, -0.02507869154214859, -0.005988027900457382, -0.022161658853292465, -0.006420230492949486, -0.0033260267227888107, -0.0034417989663779736, 0.0031286198645830154, -0.02705952152609825, -0.01331575307995081, 0.01957041583955288, -0.0068341507576406, 0.017273705452680588, -1.3170614820978699e-8, -0.010081024840474129, -0.029279503971338272, -0.01814744621515274, 0.029565948992967606, 0.031072096899151802, 0.020616747438907623, -0.01905406266450882, -0.05504230409860611, 0.0030330282170325518, 0.015804149210453033, 0.01707255281507969, 0.014884836040437222, -0.0025311289355158806, 0.009567560628056526, 0.047798775136470795, -0.04515008628368378, -0.007172856945544481, -0.043218277394771576, 0.006167810410261154, 0.008294239640235901, -0.006978550460189581, 0.012204872444272041, -0.011922012083232403, -0.010909635573625565, 0.034783877432346344, -0.00764495600014925, 0.03044729121029377, -0.07992062717676163, -0.001583104720339179, 0.03084372915327549, 0.008661054074764252, -0.022259732708334923, -0.04869051277637482, 0.02484600804746151, -0.03737610578536987, 0.019512703642249107, -0.017109232023358345, 0.022103821858763695, -0.003219898557290435, -0.01458277739584446, 0.021407457068562508, -0.027246518060564995, -0.006946159526705742, -0.021305711939930916, 0.0030877073295414448, -0.010045911185443401, -0.015121123753488064, 0.010832652449607849, 0.04593696817755699, -0.02203715406358242, 0.00875142216682434, 0.0104490602388978, 0.030770285055041313, 0.0211066622287035, 0.00027996141579933465, -0.0014595836400985718, 0.041682880371809006, -0.01066112145781517, -0.030078107491135597, -0.003529527923092246, 0.03566528111696243, -0.018460774794220924, -0.0055015054531395435, -0.02876936085522175 ]
coding-maybe-vs-null-object-patterns
https://markhneedham.com/blog/2010/04/10/coding-maybe-vs-null-object-patterns
false
2010-04-21 07:21:55
Lured in by the complexity
[ "software-development" ]
[ "Software Development" ]
We recently ran into an interesting problem when running the website we're building on our 'user replica machine' where you can access the application via a web browser running on Citrix. The problem we were having was that the result of a post redirect get request that we were making via the http://jquery.malsup.com/form/[jQuery Form plugin] was failing to update the fragment of the page correctly. It looked like it was replacing it with the original HTML. We're running on Internet Explorer 6 on that machine but it was working fine on that browser on a couple of our development machines. We decided to temporarily change the code to not do a post request get and instead just to return the new page straight from the POST. Everything updated correctly using that approach. Having come up with all sorts of grand theories on how the problem was somehow related to the fact that we were running through Citrix we somewhat came to/were somewhat guided on the internal mailing list by http://iansrobinson.com/[Ian Robinson] that the page was probably just getting cached, either by http://msdn.microsoft.com/en-us/library/aa383928%28VS.85%29.aspx[WinINet] or the corporate proxy, because we hadn't put a http://tools.ietf.org/html/rfc2616#section-14.9.2['no-store' directive] in the headers of the response. ____ no-store The purpose of the no-store directive is to prevent the inadvertent release or retention of sensitive information (for example, on backup tapes). The no-store directive applies to the entire message, and MAY be sent either in a response or in a request. If sent in a request, a cache MUST NOT store any part of either this request or any response to it. If sent in a response, a cache MUST NOT store any part of either this response or the request that elicited it. This directive applies to both non- shared and shared caches. "MUST NOT store" in this context means that the cache MUST NOT intentionally store the information in non-volatile storage, and MUST make a best-effort attempt to remove the information from volatile storage as promptly as possible after forwarding it. Even when this directive is associated with a response, users might explicitly store such a response outside of the caching system (e.g., with a "Save As" dialog). History buffers MAY store such responses as part of their normal operation. ____ http://stackoverflow.com/questions/1160105/asp-net-mvc-disable-browser-cache[JKG posted some code] defining an attribute that we can place on actions that we don't want to be cached in an ASP.NET MVC application: [source,csharp] ---- public class NoCache : ActionFilterAttribute, IActionFilter { public override void OnResultExecuting(ResultExecutingContext filterContext) { filterContext.HttpContext.Response.Cache.SetExpires(DateTime.UtcNow.AddDays(-1)); filterContext.HttpContext.Response.Cache.SetValidUntilExpires(false); filterContext.HttpContext.Response.Cache.SetRevalidation(HttpCacheRevalidation.AllCaches); filterContext.HttpContext.Response.Cache.SetCacheability(HttpCacheability.NoCache); filterContext.HttpContext.Response.Cache.SetNoStore(); base.OnResultExecuting(filterContext); } public override void OnResultExecuted(ResultExecutedContext filterContext) { base.OnResultExecuted(filterContext); } } ---- We put that code in and the page started refreshing correctly. http://chrisleishman.com/[Chris Leishman] pointed out that another approach would be to make use of 'http://en.wikipedia.org/wiki/HTTP_ETag[ETags]' on the response header so that the page would only be retrieved from the server if it had actually changed. Either way we found it amusing that we automatically assumed something complicated was going wrong when actually it was anything but!
null
null
[ 0.0016505243256688118, -0.031812507659196854, 0.0012607048265635967, 0.05690690129995346, 0.08924749493598938, -0.007503492757678032, 0.00397101603448391, 0.03700386360287666, 0.029325662180781364, -0.029288962483406067, -0.024672381579875946, 0.0005866027204319835, -0.0569431371986866, 0.022522885352373123, -0.017564691603183746, 0.06885842978954315, 0.0666593611240387, 0.009308981709182262, 0.025305962190032005, 0.007096624001860619, 0.010864781215786934, 0.06207769364118576, 0.008361860178411007, 0.04286516457796097, 0.03528948873281479, 0.03257377818226814, -0.0006173285073600709, -0.005591612309217453, -0.08382347226142883, -0.0157608762383461, 0.028943711891770363, 0.029758522287011147, -0.021244274452328682, -0.0027729442808777094, 0.03696262091398239, -0.019249657168984413, -0.003993044141680002, 0.028769342228770256, -0.00671697361394763, 0.027618758380413055, -0.06749171018600464, 0.03778085112571716, -0.017505893483757973, 0.017637483775615692, -0.039428748190402985, 0.027977073565125465, -0.031071582809090614, 0.009044294245541096, -0.007797679398208857, -0.03687974438071251, -0.05919218063354492, 0.04165811091661453, -0.014303306117653847, -0.009342057630419731, 0.003220413811504841, 0.04976273700594902, -0.021343067288398743, -0.05735860392451286, 0.007949326187372208, -0.06697648018598557, -0.0026950452011078596, -0.008046001195907593, 0.014677929691970348, 0.01623588427901268, -0.005603413097560406, -0.0423474982380867, 0.010066615417599678, 0.06506948918104172, -0.04262325540184975, -0.020228438079357147, 0.01186539325863123, 0.020862869918346405, -0.0034469689708203077, 0.0018904975149780512, 0.008536809124052525, -0.025396881625056267, -0.006018870044499636, 0.05639344081282616, 0.0196075439453125, 0.05698617175221443, -0.02248646318912506, 0.011585390195250511, 0.020074140280485153, 0.021246042102575302, -0.007360734511166811, -0.0635475292801857, -0.041989099234342575, 0.01756349951028824, -0.044262513518333435, 0.07323839515447617, 0.04179992899298668, -0.048473060131073, 0.032121241092681885, 0.031287770718336105, -0.01460049394518137, -0.010181684978306293, 0.007176503539085388, -0.011298065073788166, -0.00000524862798556569, -0.012033287435770035, -0.05284056067466736, 0.013042234815657139, -0.004485546611249447, 0.00027225035591982305, -0.06580426543951035, 0.008359041064977646, -0.028303230181336403, -0.03016187995672226, 0.009964007884263992, -0.027178291231393814, 0.003353620646521449, 0.02638125792145729, -0.024491870775818825, 0.000784525356721133, -0.0662546306848526, 0.07116140425205231, 0.0054240538738667965, -0.06495250761508942, 0.006502219010144472, 0.03747711330652237, 0.07899262011051178, 0.02072574943304062, -0.015615390613675117, 0.0649770125746727, 0.041229017078876495, 0.02919999696314335, 0.011082563549280167, 0.02054968848824501, -0.02347031980752945, -0.07629751414060593, 0.006343647837638855, 0.05932987853884697, -0.013361510820686817, -0.0010664928704500198, -0.0059361704625189304, -0.00021443006698973477, -0.0018377993255853653, -0.0198142621666193, 0.07944200932979584, 0.003632135456427932, -0.01570887491106987, -0.030353114008903503, -0.007496379315853119, 0.008736971765756607, 0.05189927667379379, 0.0011960837291553617, -0.007238522171974182, -0.043374255299568176, -0.030369726940989494, 0.031233463436365128, 0.019865214824676514, 0.030079368501901627, 0.045441679656505585, -0.0511164590716362, -0.001164836692623794, 0.0733191967010498, 0.03682796657085419, 0.006468711420893669, -0.026464683935046196, 0.013617205433547497, 0.027391966432332993, 0.03163409233093262, -0.00008040788816288114, 0.048879075795412064, 0.003930850885808468, -0.004369732458144426, -0.03442290797829628, 0.06465151906013489, 0.011080757714807987, -0.00014451149036176503, -0.08009877800941467, -0.05635595694184303, 0.05718797817826271, -0.0418536402285099, -0.01019976008683443, 0.0707242339849472, 0.08089476823806763, 0.03102092631161213, 0.03004702739417553, -0.02865925244987011, -0.06552672386169434, 0.02917107567191124, 0.013904066756367683, 0.01998179778456688, 0.013987250626087189, 0.003276076866313815, 0.08310328423976898, 0.052929144352674484, 0.013160127215087414, 0.03575759753584862, -0.07817892730236053, -0.05776112899184227, -0.028930386528372765, -0.006469596643000841, 0.06611231714487076, -0.030196044594049454, -0.0020177497062832117, 0.0892588198184967, 0.03237733617424965, 0.0588437020778656, 0.000805912131909281, -0.018163025379180908, 0.041810981929302216, -0.05766919627785683, -0.054270751774311066, 0.027664395049214363, 0.03842878341674805, 0.0072692204266786575, -0.03552335873246193, 0.00018341299437452108, -0.01885554939508438, -0.012217599898576736, 0.0244221780449152, -0.006169755943119526, 0.030137479305267334, -0.014034193009138107, 0.055228341370821, -0.03267212584614754, 0.041529715061187744, -0.06155430153012276, 0.044549841433763504, 0.01617567054927349, -0.016150882467627525, 0.014656517654657364, 0.0017623120220378041, 0.12521938979625702, 0.04488499462604523, -0.020783353596925735, -0.028374474495649338, 0.03196002170443535, 0.018102046102285385, -0.06523878872394562, -0.012493939138948917, -0.001324895303696394, -0.0050411950796842575, 0.026877088472247124, -0.037322741001844406, -0.01967286504805088, 0.01001073606312275, -0.057562001049518585, -0.005246696062386036, 0.04304355010390282, 0.00914524495601654, 0.06554262340068817, -0.01035389956086874, -0.04130520671606064, -0.006380282808095217, -0.017399806529283524, -0.04965025931596756, -0.00616126973181963, 0.017611904069781303, -0.0076065389439463615, 0.025634560734033585, -0.03242337331175804, -0.0065645482391119, -0.041313569992780685, -0.025364529341459274, 0.03547314554452896, 0.03722767531871796, 0.06220969557762146, -0.023146800696849823, 0.05608116835355759, 0.02511470392346382, 0.013832863420248032, 0.0012518331641331315, -0.038901083171367645, -0.01895994134247303, -0.017951637506484985, -0.0032829572446644306, 0.020241335034370422, 0.03139249607920647, -0.010611358098685741, -0.002608896465972066, -0.0002749408595263958, 0.001710004871711135, -0.011322545818984509, 0.037945520132780075, 0.007365328725427389, -0.005575011949986219, -0.012844009324908257, -0.0007334691472351551, 0.04713686928153038, -0.05019328370690346, -0.014149998314678669, 0.005180693231523037, -0.0751500055193901, 0.023440906777977943, -0.08561496436595917, -0.07795951515436172, -0.015742957592010498, 0.015050983056426048, 0.008477332070469856, -0.0057723643258214, 0.017619546502828598, 0.048226065933704376, 0.033641330897808075, -0.0006401851424016058, 0.009568877518177032, 0.02754676714539528, 0.010457375086843967, 0.01137147843837738, -0.023992445319890976, 0.021360445767641068, 0.005843790248036385, 0.014964752830564976, -0.06603313237428665, 0.020871922373771667, -0.023671293631196022, -0.2852894961833954, 0.05738288536667824, 0.04588146507740021, -0.01459850836545229, 0.049680620431900024, -0.0129126887768507, 0.022227047011256218, -0.05485789477825165, -0.014106526039540768, 0.004212276078760624, -0.004777571186423302, -0.03699538856744766, 0.00790116935968399, 0.0389544777572155, -0.018746372312307358, 0.03245893865823746, 0.025085797533392906, -0.03468875214457512, 0.014946522191166878, 0.004068128298968077, -0.0010287167970091105, -0.07867597788572311, 0.03350020572543144, 0.015182041563093662, 0.04239712283015251, 0.05479389429092407, -0.06729310005903244, 0.0364554226398468, -0.03935622423887253, -0.025200363248586655, 0.031054126098752022, -0.007551152259111404, 0.004929637536406517, -0.022781237959861755, -0.03662421181797981, -0.007635022047907114, 0.048177123069763184, 0.01733914390206337, 0.01467933226376772, -0.0170291680842638, -0.013407194055616856, -0.016607113182544708, 0.003177472623065114, 0.009867542423307896, 0.07813054323196411, -0.014266110956668854, -0.07233114540576935, 0.011246261186897755, -0.03458070382475853, 0.07112423330545425, -0.026263391599059105, -0.029796253889799118, -0.020268378779292107, 0.07130623608827591, -0.0034908202942460775, -0.014879940077662468, -0.022810228168964386, -0.025142841041088104, -0.04323331639170647, -0.06142754852771759, 0.015312869101762772, -0.033312615007162094, -0.021706735715270042, -0.035160377621650696, 0.023160722106695175, -0.048384565860033035, -0.05498043820261955, -0.014480523765087128, 0.07434972375631332, 0.0244399756193161, -0.032591868191957474, 0.01409875601530075, -0.0072115822695195675, -0.10445033013820648, 0.00040352149517275393, -0.035874143242836, -0.025334233418107033, 0.013481806963682175, -0.006218801252543926, 0.03459252789616585, -0.03892581909894943, -0.02160586789250374, -0.005590950604528189, 0.02512100525200367, 0.02731980010867119, -0.0355212539434433, 0.0628645047545433, -0.0020197948906570673, -0.02538922242820263, 0.009469571523368359, 0.07308147102594376, -0.019286882132291794, -0.036089688539505005, -0.04372880980372429, 0.005626078229397535, 0.009965079836547375, 0.008459934964776039, 0.028222739696502686, 0.005140393972396851, 0.041464876383543015, 0.019296133890748024, -0.03662643954157829, 0.03145003691315651, -0.04693219065666199, 0.02822045423090458, -0.002479890361428261, -0.03553546220064163, 0.011730530299246311, 0.021231403574347496, 0.019324883818626404, -0.01684986986219883, -0.03165185824036598, -0.001572207547724247, -0.06002189218997955, -0.02509067952632904, 0.00250680441968143, 0.004940946586430073, 0.01964028738439083, -0.00079135358100757, -0.03243798017501831, -0.03251020610332489, 0.027885643765330315, 0.011204082518815994, 0.009369727224111557, -0.045808229595422745, -0.034277256578207016, 0.0036574879195541143, 0.010669657960534096, -0.0010886172531172633, 0.01597686856985092, -0.0042901490814983845, 0.019695734605193138, 0.007385939825326204, -0.03583857789635658, 0.03049754723906517, -0.011406227946281433, -0.012768575921654701, -0.03496144711971283, 0.00564642995595932, 0.013212518766522408, -0.015212295576930046, 0.020688021555542946, 0.0024991934187710285, 0.042374372482299805, 0.060419902205467224, 0.03589856997132301, 0.03362761065363884, 0.004136683419346809, 0.02474631555378437, 0.002101830905303359, -0.012816298753023148, -0.068922258913517, 0.014271172694861889, -0.04988451674580574, -0.03738744184374809, -0.0032078891526907682, 0.030850637704133987, -0.016311774030327797, -0.04909893870353699, -0.011825661174952984, 0.0015482435701414943, -0.07472436875104904, -0.026191849261522293, -0.0010078579653054476, -0.03239769861102104, 0.03980441391468048, 0.010727751068770885, 0.00811985693871975, -0.0010922161163762212, -0.0032658507116138935, -0.008793449029326439, 0.03645917400717735, -0.03210354968905449, 0.012865791097283363, 0.012230883352458477, -0.010734660550951958, -0.008231410756707191, 0.012571616098284721, 0.03620989993214607, 0.003074716543778777, 0.006176998373121023, -0.00584003608673811, 0.028894415125250816, 0.024741655215620995, 0.0394316092133522, -0.006867777090519667, -0.007718262728303671, 0.029682165011763573, -0.020541846752166748, -0.03182082995772362, -0.027135971933603287, -0.011286736465990543, -0.022611038759350777, -0.0075986431911587715, 0.010999070480465889, -0.0837780237197876, 0.03902626037597656, -0.0010375898564234376, 0.025074275210499763, 0.03874538093805313, 0.012465538457036018, 0.016976069658994675, -0.03323788195848465, 0.03309030458331108, 0.02007279545068741, -0.04752388224005699, 0.004287532530725002, -0.0023848884738981724, 0.021870605647563934, 0.007288966793566942, -0.02467474341392517, -0.05031796917319298, -0.02173861488699913, -0.007560946047306061, 0.03911672905087471, -0.05830870196223259, -0.037156134843826294, -0.02171071246266365, 0.01666957139968872, -0.013834662735462189, -0.006689564324915409, -0.00833903532475233, 0.012035032734274864, -0.005143293645232916, -0.023740138858556747, 0.0069520180113613605, -0.004909170791506767, -0.014826430007815361, -0.002611033618450165, -0.024245798587799072, 0.015125912614166737, -0.019737303256988525, 0.02380889095366001, -0.00415125722065568, -0.023647887632250786, -0.022489327937364578, -0.043730728328228, -0.0018442212603986263, -0.010646151378750801, 0.059851400554180145, -0.03972999379038811, -0.011572930961847305, -0.023717636242508888, 0.010423905216157436, -0.02646445482969284, 0.02875368669629097, -0.007983767427504063, -0.0188165083527565, 0.03975576534867287, 0.057200346142053604, 0.003070601960644126, 0.01223825290799141, 0.012740001082420349, -0.03941500931978226, 0.051521580666303635, -0.0724000334739685, -0.02273239754140377, -0.040562279522418976, -0.056347329169511795, 0.03110097162425518, 0.01622708886861801, 0.008211864158511162, -0.04483398422598839, 0.021147485822439194, 0.02166816033422947, 0.002165090525522828, 0.017824968323111534, -0.006576217710971832, 0.01880725473165512, -0.02086685597896576, -0.006356760393828154, -0.08144079148769379, 0.03946604207158089, 0.029758665710687637, -0.0036100081633776426, -0.010164232924580574, 0.01154197845607996, -0.04127213731408119, 0.026651522144675255, -0.07957051694393158, -0.04087432101368904, 0.04461031034588814, -0.011285778135061264, -0.03228823095560074, 0.0010784869082272053, -0.07571146637201309, 0.0291338749229908, 0.028525810688734055, -0.04548538103699684, -0.023700378835201263, -0.03498905152082443, 0.08565828949213028, 0.015367036685347557, -0.0031383950263261795, -0.0544699989259243, -0.008063115179538727, 0.03294562175869942, 0.012799913994967937, -0.007415519095957279, 0.05718052014708519, -0.009379351511597633, 0.012892031110823154, 0.03618921712040901, -0.015106592327356339, 0.01599389873445034, 0.010970711708068848, 0.0037661429960280657, -0.06981450319290161, 0.02082025445997715, -0.008953692391514778, -0.026547756046056747, -0.043936509639024734, 0.06670357286930084, 0.0020152139477431774, -0.006126817781478167, -0.06653714925050735, 0.022120630368590355, -0.05253640562295914, -0.04869682341814041, -0.023775793612003326, 0.005245725158601999, -0.035764314234256744, 0.06574300676584244, 0.01579323783516884, 0.016414886340498924, 0.06951486319303513, 0.014696555212140083, -0.0007001042831689119, -0.006628172006458044, 0.07210215926170349, 0.08964662253856659, 0.0215468667447567, 0.01574023813009262, 0.08378326147794724, -0.004669985268265009, -0.03673805668950081, 0.005062773358076811, -0.05704228952527046, -0.044512610882520676, -0.030639801174402237, 0.03063662350177765, 0.05172712728381157, -0.04494364932179451, 0.06159218028187752, -0.02882417105138302, -0.001450813957490027, 0.019208794459700584, 0.045122914016246796, 0.03337610512971878, 0.038561709225177765, 0.03421079367399216, 0.008908296003937721, -0.0071346512995660305, -0.03303922712802887, 0.023148374632000923, -0.002992575755342841, -0.039488550275564194, 0.0055513689294457436, -0.008193491958081722, 0.012098347768187523, -0.01768752746284008, 0.009346939623355865, 0.05092983692884445, -0.037313640117645264, 0.0005425027338787913, 0.0006238882197067142, 0.016272319480776787, 0.011823735199868679, 0.029619328677654266, -0.023945173248648643, -0.021038658916950226, -0.007336911745369434, -0.036817315965890884, -0.027426470071077347, -0.006571400910615921, -0.01522783562541008, 0.06059151887893677, -0.019103141501545906, -0.004494994413107634, 0.016982536762952805, -0.005688367411494255, -0.0380399264395237, -0.03556451201438904, -0.06953606754541397, -0.017890220507979393, -0.06680834293365479, -0.011338927783071995, 0.026255019009113312, 0.008565202355384827, -0.04084509238600731, -0.03663302958011627, -0.009728477336466312, -0.01560266688466072, 0.04029584676027298, -0.033671729266643524, -0.03720693290233612, 0.04821525886654854, 0.0020562508143484592, 0.02963726595044136, 0.03855310007929802, 0.03712565079331398, -0.003074777079746127, -0.004853520076721907, -0.031614549458026886, -0.0066682747565209866, 0.04883328080177307, 0.0024219669867306948, -0.017248256132006645, -0.08567868918180466, 0.035273801535367966, 0.03148045018315315, -0.011139631271362305, -0.06760179251432419, 0.005346104968339205, 0.02348686382174492, -0.043729882687330246, 0.06688760221004486, -0.032354701310396194, 0.0008668043301440775, -0.03197665885090828, -0.017860813066363335, 0.00525908637791872, 0.013932040892541409, 0.03181178867816925, -0.0008657609578222036, 0.09233533591032028, 0.05232655256986618, -0.02855021134018898, -0.04013211280107498, 0.009540206752717495, -0.01611892692744732, -0.012367049232125282, -0.021161740645766258, -0.03138556703925133, -0.033144399523735046, -0.07459846138954163, -0.06027382239699364, 0.026339160278439522, -0.020725281909108162, -0.024804802611470222, -0.0059186494909226894, 0.004563557915389538, -0.0530640110373497, -0.009111812338232994, -0.0489436499774456, 0.014407285489141941, -0.02703581564128399, -0.011874801479279995, -0.00874612107872963, 0.018364984542131424, 0.015438107773661613, -0.038345370441675186, 0.0374506451189518, -0.030874811112880707, 0.00645682867616415, -0.018469128757715225, 0.04251604154706001, 0.06420449912548065, -0.024199865758419037, 0.003027504775673151 ]
[ -0.09514500200748444, -0.007818305864930153, -0.038014911115169525, -0.010893085971474648, 0.03023775853216648, -0.0432400107383728, -0.014087076298892498, 0.015364663675427437, 0.001618285197764635, -0.02793959714472294, 0.006673726253211498, -0.011513668112456799, -0.014895664528012276, 0.02597283385694027, 0.07570827752351761, 0.011661732569336891, -0.00745216803625226, -0.06674515455961227, -0.025863615795969963, 0.044238489121198654, 0.029462173581123352, -0.036798059940338135, -0.04145613685250282, -0.030743036419153214, -0.03497009351849556, -0.0014620149740949273, 0.04106072336435318, -0.0152113176882267, -0.021986285224556923, -0.18564796447753906, 0.013239070773124695, -0.055628057569265366, 0.008315414190292358, -0.023577524349093437, 0.03335582837462425, 0.010254091583192348, 0.03849050775170326, 0.005546584725379944, 0.021230529993772507, 0.043397147208452225, 0.02455807849764824, 0.033513907343149185, -0.06469128280878067, 0.007197102997452021, 0.05591936036944389, 0.011059259995818138, -0.004204869270324707, -0.03476618975400925, 0.001290623564273119, 0.009157272055745125, -0.02532513625919819, 0.016031842678785324, -0.001819490804336965, -0.024829866364598274, -0.007047045044600964, 0.048322759568691254, 0.03057304210960865, 0.060187406837940216, -0.003991635516285896, 0.026813941076397896, 0.027822770178318024, -0.0214134082198143, -0.12165158241987228, 0.09417309612035751, 0.039011236280202866, 0.043592941015958786, -0.04164912924170494, -0.04295632615685463, -0.023808494210243225, 0.07550065964460373, -0.014600827358663082, -0.031055588275194168, -0.07191883027553558, 0.04689944162964821, 0.03309500962495804, -0.0025631145108491182, 0.02572719380259514, 0.06099238991737366, 0.03969587758183479, -0.0478423610329628, -0.02218598872423172, -0.03060898184776306, -0.015979107469320297, 0.0015040036523714662, -0.04613850265741348, 0.0007142635877244174, -0.004505363758653402, 0.05877973884344101, 0.034599076956510544, 0.012005056254565716, 0.03499695286154747, -0.015746764838695526, 0.05522248148918152, -0.014905435964465141, -0.0903460681438446, 0.0027648292016237974, -0.012773849070072174, 0.04967750981450081, -0.05489040166139603, 0.43827173113822937, 0.01559758372604847, 0.011014340445399284, 0.0656408816576004, 0.014264832250773907, 0.006238694768399, -0.005190900526940823, 0.021044285967946053, -0.0346401073038578, 0.019100520759820938, -0.02754230797290802, 0.023664969950914383, 0.004172233864665031, 0.06809795647859573, -0.03222622722387314, 0.028071485459804535, 0.000999998301267624, 0.010397189296782017, -0.005701739341020584, -0.007082941941916943, -0.019283901900053024, -0.026155883446335793, 0.01928482949733734, 0.04564386233687401, 0.011484986171126366, 0.024257540702819824, -0.020932018756866455, 0.032331470400094986, 0.06449805200099945, 0.0019081648206338286, 0.02784573659300804, 0.016180118545889854, -0.05118547007441521, -0.04426151514053345, 0.0036066884640604258, -0.00720102759078145, 0.004130552988499403, 0.01969265565276146, -0.03346395492553711, 0.01043042540550232, 0.023841623216867447, -0.036592841148376465, -0.017875051125884056, 0.020227255299687386, -0.007556678727269173, -0.019764067605137825, 0.10508563369512558, 0.050680357962846756, -0.037173353135585785, -0.046547602862119675, -0.046501751989126205, -0.009561615064740181, 0.0498906746506691, 0.009429119527339935, -0.07283011823892593, -0.005596053320914507, 0.034142810851335526, 0.0418204702436924, 0.004335764329880476, -0.04170465096831322, -0.011744129471480846, -0.015580630861222744, -0.04033339023590088, -0.05163509026169777, 0.07056615501642227, 0.049496013671159744, -0.11060464382171631, -0.03833388164639473, -0.005957517772912979, 0.032510146498680115, -0.04325671121478081, -0.0057897320948541164, 0.008596742525696754, -0.05132754519581795, -0.028680533170700073, 0.04459540545940399, -0.04614674672484398, -0.04456182196736336, -0.0021768256556242704, 0.01140961516648531, -0.008477031253278255, -0.02629677765071392, 0.010608041658997536, -0.07057138532400131, 0.013872778974473476, -0.033646270632743835, -0.08060479164123535, -0.060328930616378784, 0.007330529857426882, -0.006704840809106827, 0.024423327296972275, -0.0474541075527668, -0.027136461809277534, -0.0751224160194397, 0.059043414890766144, -0.0011814014287665486, 0.004460850730538368, 0.000654457719065249, 0.022704822942614555, -0.0010377420112490654, -0.03568663075566292, 0.04783374443650246, 0.017370309680700302, -0.032391250133514404, 0.04613950476050377, -0.08043455332517624, 0.06028050556778908, 0.03903370723128319, -0.04615245386958122, 0.08372990041971207, 0.045111555606126785, -0.033287473022937775, -0.02176574058830738, -0.008653136901557446, 0.03502076119184494, 0.015268172137439251, -0.019671039655804634, 0.010199849493801594, 0.003944500349462032, 0.0481887012720108, 0.03990873694419861, 0.0013942016521468759, 0.023625312373042107, 0.0010462861973792315, -0.3532554507255554, -0.03878893703222275, -0.050498660653829575, 0.012622163631021976, 0.02188774384558201, -0.07299605011940002, 0.03520209342241287, 0.0009378880495205522, -0.027705611661076546, 0.023159073665738106, 0.08543034642934799, -0.005430780351161957, 0.015478963032364845, -0.05199267342686653, 0.00867768470197916, 0.004082408733665943, -0.02645282633602619, -0.025307610630989075, -0.03386770933866501, -0.006114142946898937, -0.01512418407946825, -0.024404365569353104, -0.03308742120862007, -0.07248257845640182, 0.017559662461280823, -0.0038719256408512592, 0.1113244891166687, 0.04461982473731041, 0.06100866571068764, -0.05251339450478554, 0.054153427481651306, 0.021319914609193802, 0.018964966759085655, -0.12082600593566895, 0.008327352814376354, -0.01823149062693119, 0.003803508123382926, -0.0024003037251532078, 0.03413016349077225, 0.0012913689715787768, -0.06703467667102814, 0.0039597079157829285, -0.03759728744626045, -0.046001289039850235, -0.012375338934361935, 0.01342584565281868, -0.03630417212843895, -0.00007181471301009879, -0.0367833748459816, 0.0680699348449707, 0.01750398799777031, -0.016490837559103966, -0.0008768122061155736, 0.05112862214446068, 0.021447518840432167, -0.03124452568590641, -0.021040618419647217, -0.028110580518841743, 0.0036716575268656015, -0.0071241166442632675, 0.030513742938637733, 0.043655119836330414, 0.02094748243689537, -0.0639042928814888, 0.013396240770816803, 0.028806596994400024, -0.011344249360263348, -0.0021265640389174223, 0.05852977931499481, -0.05359649658203125, -0.03669733926653862, 0.12224256992340088, 0.007656787522137165, -0.003148634685203433, -0.0003539835743140429, 0.03222786262631416, -0.03105945512652397, 0.029709462076425552, 0.012754145078361034, 0.008062164299190044, 0.03234246373176575, -0.004894176963716745, 0.06502612680196762, -0.02943749912083149, -0.005833068862557411, 0.05128159001469612, -0.06603476405143738, -0.03542374446988106, 0.046659402549266815, -0.006651026196777821, -0.020327799022197723, -0.004968099761754274, -0.05750957131385803, -0.09933143109083176, 0.0789082795381546, -0.020876655355095863, -0.24630071222782135, 0.005020633805543184, 0.07476156949996948, 0.05906921252608299, 0.005543779116123915, 0.04014129564166069, 0.011300013400614262, -0.031274471431970596, 0.01113180723041296, 0.052080024033784866, 0.01565653271973133, 0.03255366533994675, -0.01606694795191288, -0.029454434290528297, 0.020344646647572517, -0.010939772240817547, 0.002477902453392744, 0.004881958477199078, -0.012774283066391945, 0.008087988942861557, 0.018950538709759712, -0.034399114549160004, 0.13673290610313416, 0.03651059418916702, -0.02029951475560665, 0.03245633840560913, -0.0017988078761845827, 0.04713880270719528, 0.06288834661245346, -0.004416541662067175, -0.021821727976202965, 0.0038412148132920265, 0.0392305888235569, -0.006390347145497799, 0.022261658683419228, -0.09394059330224991, -0.0345911979675293, 0.045960262417793274, 0.02153596840798855, -0.0043532969430089, -0.024752654135227203, -0.0014816117472946644, -0.008493850007653236, 0.03867344930768013, 0.06025129184126854, 0.010009127669036388, 0.030451925471425056, 0.005850321613252163, -0.030687231570482254, -0.008674669079482555, -0.04329518601298332, -0.05078231915831566, 0.0233754925429821, 0.0072575402446091175, -0.0010079232743009925, 0.05914310738444328, 0.02369013987481594, -0.06725118309259415, 0.007604782935231924, 0.032919991761446, 0.009990370832383633, 0.02472853846848011, 0.1062643975019455, -0.019721006974577904, 0.02088325284421444 ]
[ -0.01804661937057972, 0.007574732415378094, -0.01640579290688038, 0.0005052050692029297, -0.029186228290200233, 0.002383347600698471, -0.002477685222402215, -0.02560073509812355, -0.0052442713640630245, -0.012414942495524883, -0.0017096723895519972, 0.010207525454461575, 0.017502466216683388, -0.044782526791095734, -0.0012048574863001704, -0.0033329620491713285, -0.0004727899795398116, -0.011953772976994514, 0.017312845215201378, 0.01503816805779934, -0.043231621384620667, 0.007939252071082592, -0.0006999137112870812, -0.00901495199650526, -0.017817268148064613, 0.010188697837293148, -0.020496701821684837, -0.0128838662058115, 0.01814415119588375, -0.13974738121032715, -0.006230357568711042, -0.05165661498904228, -0.01608569733798504, 0.009705888107419014, -0.024134915322065353, 0.026719147339463234, 0.024744955822825432, 0.03961499035358429, -0.00530425738543272, -0.018088776618242264, 0.013924280181527138, -0.00025657963124103844, -0.03841852769255638, 0.04707053676247597, 0.0015231103170663118, -0.004837298300117254, -0.044985126703977585, -0.018557682633399963, -0.049477797001600266, -0.0169955026358366, -0.023529043421149254, 0.013786603696644306, -0.006959334947168827, 0.0053772092796862125, -0.03042229264974594, -0.036054931581020355, -0.013743437826633453, 0.0014099380932748318, 0.041772518306970596, 0.017699910327792168, 0.03623390570282936, -0.01604556106030941, 0.010270312428474426, -0.051005393266677856, 0.0045548975467681885, -0.014712822623550892, -0.0080846743658185, -0.005155977327376604, -0.030344633385539055, -0.007459203712642193, -0.056375086307525635, 0.012125919573009014, -0.03283976763486862, -0.037901394069194794, 0.004364207852631807, 0.010889683850109577, -0.021682916209101677, 0.007040237542241812, -0.01797899790108204, -0.007584128994494677, 0.00003285892671556212, -0.014409595169126987, 0.02524532750248909, 0.016859114170074463, 0.010145379230380058, -0.005551490001380444, 0.027481425553560257, -0.007095577660948038, 0.03252509981393814, -0.015215428546071053, -0.046989817172288895, 0.027479151263833046, 0.018848128616809845, 0.046954285353422165, -0.08189597725868225, -0.009764444082975388, 0.0038781592156738043, 0.009174064733088017, -0.022853368893265724, 0.8322138786315918, 0.019399214535951614, 0.04560374841094017, 0.038555752485990524, 0.047358058393001556, -0.025010772049427032, -0.05184493586421013, 0.011304114013910294, -0.00934405904263258, 0.04185723513364792, -0.038623470813035965, -0.006389867048710585, 0.028657840564846992, -0.009362375363707542, -0.005741620436310768, 0.020358771085739136, -0.003835042705759406, 0.01754896342754364, 0.009715783409774303, -0.012588978745043278, 0.021488724276423454, 0.03951646760106087, 0.031007159501314163, 0.004012387245893478, -0.0062172324396669865, 0.018745113164186478, -0.17420010268688202, 0.01950710453093052, -7.579051254804547e-33, -0.002795839449390769, 0.011774406768381596, 0.03723872825503349, 0.037229932844638824, 0.03381354734301567, -0.04166929051280022, 0.003292231820523739, 0.04993613809347153, -0.017221087589859962, -0.05221175774931908, 0.01683998666703701, -0.013295202516019344, -0.0017351560527458787, -0.005098581779748201, 0.029729273170232773, -0.011168013326823711, 0.003845072351396084, 0.038135744631290436, 0.04966837540268898, -0.04079044982790947, 0.02551637776196003, 0.023949509486556053, 0.028028294444084167, -0.005975970532745123, -0.0039625451900064945, -0.0011146094184368849, -0.005401243921369314, 0.005198901519179344, -0.041396237909793854, -0.06862672418355942, 0.0010905178496614099, 0.020304614678025246, 0.0017135574016720057, -0.000579433748498559, -0.017763925716280937, -0.028704127296805382, 0.0010671605123206973, -0.01650497317314148, -0.01821420155465603, -0.014786288142204285, -0.028329871594905853, -0.0011722862254828215, 0.021000314503908157, -0.022302458062767982, -0.03696911782026291, -0.0356082022190094, -0.012052868492901325, -0.018050575628876686, 0.032550934702157974, 0.029030365869402885, 0.02152467891573906, 0.011133686639368534, -0.009264790453016758, -0.002797221066430211, -0.03333912044763565, 0.031160401180386543, -0.011081424541771412, 0.008239434100687504, 0.040122535079717636, -0.006066770758479834, 0.058404985815286636, -0.032229118049144745, -0.01767362840473652, -0.010201206430792809, -0.036398474127054214, -0.02017945796251297, 0.02519879676401615, 0.027445917949080467, -0.003167941002175212, -0.005753607954829931, -0.025423092767596245, 0.02460276149213314, 0.0008805486722849309, -0.018070489168167114, 0.005603850353509188, -0.0023643055465072393, -0.02656303346157074, 0.022510923445224762, 0.007279606070369482, 0.025132540613412857, 0.04486721381545067, -0.024168089032173157, -0.03934739902615547, -0.005890380125492811, -0.027145611122250557, -0.011493791826069355, 0.01598210260272026, -0.0012816789094358683, 0.017089856788516045, 0.03761659190058708, 0.04872019588947296, -0.002128994558006525, -0.01991555653512478, -0.013407981023192406, -0.014320166781544685, 6.872965593728185e-33, -0.0013341746525838971, -0.040764421224594116, -0.03514077141880989, -0.002408108673989773, 0.016694333404302597, 0.0269313994795084, 0.019772015511989594, 0.017415545880794525, -0.045156724750995636, 0.01896183378994465, -0.01146903820335865, 0.007630037143826485, 0.004726557061076164, 0.02918194979429245, -0.003689429722726345, 0.016804374754428864, 0.024959543719887733, -0.03465081751346588, 0.05632982403039932, -0.013486762531101704, 0.018132710829377174, 0.0218509454280138, -0.011206450872123241, 0.0339696928858757, -0.00023769315157551318, 0.04506263509392738, -0.006206262391060591, 0.0014005746925249696, 0.004056849051266909, -0.02839035540819168, 0.0058050379157066345, -0.003308802843093872, 0.020970845595002174, -0.02013690583407879, 0.0020941479597240686, 0.005669960752129555, 0.0019946179818361998, 0.0037444240879267454, 0.017545543611049652, 0.007784214802086353, 0.013282425701618195, 0.0059205275028944016, 0.011790607124567032, 0.02518971636891365, 0.05763085559010506, 0.026674188673496246, 0.013607338070869446, -0.028216492384672165, 0.03372828662395477, 0.07951882481575012, 0.03185318782925606, 0.03481640666723251, -0.010479658842086792, -0.005867155734449625, -0.007906032726168633, -0.012634254060685635, -0.043903570622205734, 0.005700650159269571, -0.020763808861374855, -0.022005684673786163, -0.015260584652423859, -0.015118569135665894, -0.04566800966858864, 0.014096055179834366, -0.025646237656474113, 0.00726582296192646, -0.055391766130924225, 0.0187965240329504, 0.011329852044582367, -0.047947075217962265, -0.021880170330405235, -0.012452066875994205, 0.007910649292171001, 0.0010107862763106823, 0.030967846512794495, -0.05423181131482124, 0.04369307681918144, -0.02298053540289402, -0.010937725193798542, 0.030024364590644836, 0.0005938479444012046, 0.0017069613095372915, 0.018051505088806152, -0.033718496561050415, -0.004377102013677359, 0.0038138197269290686, -0.016174251213669777, -0.00874542910605669, -0.02519228495657444, -0.04573296383023262, 0.01783324033021927, -0.0018253374146297574, -0.0227168221026659, -0.005654689855873585, 0.009578651748597622, -1.2840348340148466e-8, -0.02454562485218048, -0.003930738195776939, 0.011301020160317421, -0.0012703449465334415, 0.01627434603869915, -0.0031034862622618675, 0.0005372261512093246, -0.006337387021631002, -0.012135087512433529, -0.0016629142919555306, 0.03906220570206642, -0.04777723178267479, 0.021827038377523422, 0.021000124514102936, -0.0034138986375182867, -0.026614539325237274, -0.050459589809179306, -0.009803835302591324, 0.043314412236213684, -0.027787553146481514, -0.03162090480327606, 0.052781231701374054, 0.014950514771044254, -0.004993758630007505, 0.03617282584309578, 0.0030569033697247505, 0.018492693081498146, -0.08118470013141632, -0.002948309760540724, 0.004820395726710558, -0.03706344589591026, -0.027414292097091675, -0.012636316940188408, -0.016572147607803345, -0.04040132090449333, -0.025474583730101585, 0.01361711136996746, 0.01468388456851244, 0.02591882273554802, -0.01974101923406124, 0.03599473834037781, -0.01986812986433506, -0.023225942626595497, -0.01350804977118969, 0.008977564983069897, 0.049558188766241074, -0.061159566044807434, 0.01500546745955944, 0.025480840355157852, -0.05327867344021797, 0.012942778877913952, 0.006702897138893604, 0.06225883960723877, 0.05102328583598137, 0.021411767229437828, -0.01484644040465355, 0.007486038841307163, 0.013472402468323708, 0.04500466585159302, 0.010031182318925858, 0.037673745304346085, 0.03154681622982025, -0.027272475883364677, -0.012003927491605282 ]
lured-in-by-the-complexity
https://markhneedham.com/blog/2010/04/21/lured-in-by-the-complexity
false
2010-04-07 23:36:16
Velocity as a goal
[ "agile" ]
[ "Agile" ]
Grant Joung wrote a post a while ago about http://grantjoung.blogspot.com/2010/03/are-velocity-goals-really-good-thing.html[velocity goals] and whether they're a good or bad idea, a topic which seems to come up from time to time on agile teams. My colleague Danilo Sato previously wrote about http://www.dtsato.com/blog/2009/07/12/velocity-gone-wrong-3-used-as-a-performance-measure/[the dangers of using velocity as a performance measure] because it's something that's directly within our control and can therefore be gamed: ____ Value should be measured at the highest level possible, so that it doesn't fall into one team's (or individual's) span of control. People tend to behave according to how they're measured and if this metric is easy to game, it will be gamed. \... Velocity doesn't satisfy my criteria for a good performance measure. Quite the opposite, it's a very easy metric to game ____ Danilo suggests that we should look to use metrics which are outside of our immediate control but which we can score high on if we focus on doing a good job. He cites the 'net promoter score' (that measures how much your custumer is willing to recommend you to a friend) as an example of this. Dan North gave a really good presentation titled 'http://www.markhneedham.com/blog/2009/12/07/our-obsession-with-efficiency-dan-north/[Our obsession with efficiency]' where he covers similar ground and touches on the gaming of performance measures. From my experience having velocity as a goal doesn't make any difference to the motivation of the team which is often cited as the reason for referring to it as a target. In all the teams I've worked on people are giving their best effort anyway so they can only really have an impact on the velocity by doing one of the following: . Working longer hours . Cutting corners on quality (by less testing perhaps) . Finding a smarter way of working With the 1st idea we now have an inaccurate representation of how much work we can actually complete in a given time period so our future planning is now made more difficult unless we insist that people work long hours all the time which is a recipe for disaster. With the 2nd we will eventually suffer when there are more defects later on in our process and we have to come back and re-work those bits of the system. The 3rd is good but then again I don't imagine that we would need to have a velocity goal in order to start doing that - we should be working smart by default. I recently came across an interesting paper titled 'http://hbswk.hbs.edu/item/6114.html[Goals gone wild]' which suggests that goal setting can actually be detrimental and that we should be more careful about how we use them: ____ The use of goal setting can degrade employee performance, shift focus away from important but nonspecified goals, harm interpersonal relationships, corrode organizational culture, and motivate risky and unethical behaviors. We argue that, in many situations, the damaging effects of goal setting outweigh its benefits. ____ Setting velocity as a goal is a prime example of what the authors call a *narrow goal*: ____ With goals, people narrow their focus. This intense focus can blind peopleto important issues that appear unrelated to their goal ____ As Danilo points out what we really want to do is to get some features that our users want to use into production with as few defects as possible so that they actually work. Our underlying goal might therefore be to make the lives of our users easier through their use of the website we're building. This is much more difficult to measure which is perhaps why the number of points completed becomes the focus when in reality that's not what anyone cares about. It seems more to signify a lack of trust between the two parties. In reality I haven't noticed that people on the teams I've worked on pay that much attention to whether velocity is considered a target or not. People just do their job and *we pretty much always have the same velocity each week regardless*.
null
null
[ 0.016674892976880074, 0.018094506114721298, 0.01514504011720419, 0.02644755132496357, 0.06547554582357407, -0.003090985119342804, 0.02590996026992798, 0.043567098677158356, 0.02053084596991539, -0.03650910407304764, 0.007562014739960432, -0.0030553629621863365, -0.04008546099066734, 0.017178218811750412, -0.03454650565981865, 0.07039017975330353, 0.045452095568180084, 0.010150072164833546, 0.01927134580910206, -0.004729836247861385, 0.017911728471517563, 0.06145931035280228, 0.04091178625822067, 0.04737855866551399, 0.05995569005608559, 0.0152262719348073, 0.009107224643230438, 0.013966474682092667, -0.04567936435341835, -0.006517378613352776, 0.03268134966492653, 0.005278995726257563, 0.014083817601203918, -0.0162341445684433, 0.025721946731209755, -0.027080602943897247, -0.011589016765356064, 0.043468162417411804, 0.01636134274303913, -0.0027534079272300005, -0.06408660113811493, 0.04000543802976608, -0.04487748444080353, 0.013610443100333214, -0.031362906098365784, 0.017969459295272827, -0.01335183810442686, -0.0031912121921777725, -0.006406501866877079, 0.006712310016155243, -0.05368618667125702, 0.03723263740539551, -0.003082428826019168, -0.0030825475696474314, -0.02191278338432312, 0.034252144396305084, 0.007130563259124756, -0.05847208946943283, -0.015207493677735329, -0.0665505975484848, -0.00830630213022232, -0.017731642350554466, -0.002532566897571087, 0.02883116714656353, 0.044591035693883896, -0.02677777223289013, 0.02353893592953682, 0.024517115205526352, -0.0182320736348629, 0.013365712948143482, -0.034685149788856506, 0.019443178549408913, -0.005742026027292013, -0.01169192511588335, 0.008937962353229523, -0.07912597805261612, 0.012966286391019821, 0.06512407213449478, 0.032735083252191544, 0.04265929386019707, -0.007275385782122612, 0.001935959211550653, 0.013851641677320004, 0.03895917162299156, -0.043045420199632645, -0.031079597771167755, 0.02646670863032341, -0.030758822336792946, -0.05290086939930916, 0.07451973855495453, 0.002046162262558937, -0.05400244891643524, 0.041771821677684784, 0.03352265805006027, -0.011176705360412598, -0.01324659027159214, 0.03889146074652672, 0.01968413218855858, -0.015726765617728233, -0.0453774556517601, -0.03899065777659416, -0.03365178406238556, -0.007703691255301237, 0.02997945249080658, -0.07774662971496582, -0.026128683239221573, -0.005509703885763884, -0.0028818862047046423, -0.01702490821480751, 0.010923952795565128, -0.02847517840564251, 0.011670886538922787, -0.014572951011359692, -0.006045688409358263, -0.06240515410900116, 0.05855322256684303, 0.029323147609829903, -0.052190981805324554, -0.006052455399185419, 0.007268283050507307, 0.042449213564395905, 0.007023816462606192, -0.008200637996196747, 0.06511067599058151, -0.0007380093447864056, 0.02380826696753502, -0.019057374447584152, 0.04622584581375122, -0.010392621159553528, -0.055227406322956085, 0.0012439487036317587, 0.05957794934511185, -0.04521665722131729, 0.003414824837818742, 0.009252973832190037, -0.050953458994627, 0.012637699954211712, -0.017575640231370926, 0.009590530768036842, 0.05022972449660301, -0.008601117879152298, -0.044339023530483246, 0.02451498806476593, 0.018259840086102486, 0.03687860444188118, -0.016712017357349396, -0.00023317773593589664, -0.03936706855893135, -0.06258576363325119, -0.02017100341618061, 0.014817199669778347, 0.016818517819046974, 0.02221616357564926, -0.0346025712788105, 0.024319475516676903, 0.07977962493896484, 0.05315348878502846, 0.0052855233661830425, -0.02121180109679699, 0.045053672045469284, 0.03263602405786514, 0.021913323551416397, 0.01608426868915558, 0.0011897246586158872, 0.021002396941184998, -0.005016855895519257, 0.02215694822371006, 0.047666996717453, -0.01345943845808506, -0.003242308972403407, -0.0405668243765831, -0.034548304975032806, 0.05161662399768829, -0.028483442962169647, -0.011458231136202812, 0.05014616996049881, 0.05802461504936218, 0.06314875930547714, 0.0322791188955307, 0.008299164474010468, -0.07972504198551178, 0.03139496594667435, 0.03374703973531723, 0.030657848343253136, 0.039198387414216995, -0.03402915969491005, 0.04901805892586708, 0.004036096390336752, -0.003247322980314493, 0.04381223022937775, -0.0773620679974556, -0.08617773652076721, -0.009036710485816002, -0.020427435636520386, 0.037931520491838455, -0.057727206498384476, 0.02303106151521206, 0.06930647045373917, 0.017611825838685036, 0.05709056556224823, 0.017577718943357468, 0.003361653769388795, 0.023075953125953674, -0.04589785635471344, -0.04588586464524269, 0.07775493711233139, 0.029319776222109795, 0.016223443672060966, -0.05587678402662277, 0.019255146384239197, -0.01411327812820673, -0.008395966142416, 0.03093087486922741, -0.02305637113749981, 0.020783595740795135, -0.0023951916955411434, 0.061472535133361816, 0.0008365268004126847, 0.04536082595586777, -0.04820160195231438, 0.0041059935465455055, 0.00837698020040989, -0.010134441778063774, 0.033783964812755585, -0.012124735862016678, 0.10634802281856537, 0.06256131827831268, -0.041991349309682846, -0.06432238221168518, 0.027702629566192627, 0.012834073975682259, -0.015053246170282364, -0.0034123219083994627, -0.000584015971980989, 0.000752149848267436, 0.007360443938523531, -0.05207239091396332, -0.05038123205304146, 0.02226394973695278, -0.05713624134659767, 0.005403061397373676, 0.058744166046381, 0.009966750629246235, 0.0809929147362709, -0.015590722672641277, 0.004296836443245411, 0.007722702343016863, -0.0031903772614896297, -0.061441171914339066, 0.013670667074620724, -0.005979692097753286, -0.019404668360948563, 0.048168182373046875, -0.008811336942017078, -0.020267309620976448, -0.03713732212781906, -0.024019408971071243, 0.008424483239650726, 0.060477256774902344, 0.06192529574036598, 0.017273465171456337, 0.05928639695048332, -0.007508456707000732, 0.02036837860941887, 0.005016072653234005, -0.0587012805044651, -0.04151460528373718, -0.030477453023195267, -0.0025172135792672634, 0.02448626607656479, 0.020949240773916245, 0.025961309671401978, 0.013175316154956818, 0.002738308161497116, -0.029260961338877678, 0.007185177877545357, 0.030705232173204422, 0.00712711364030838, -0.014548818580806255, -0.017645295709371567, -0.008293035440146923, 0.060983508825302124, -0.03719425946474075, 0.01016114093363285, 0.019506078213453293, -0.09270351380109787, 0.034970447421073914, -0.057590387761592865, -0.021117720752954483, -0.0007981495000422001, -0.0026656968984752893, 0.04052881896495819, 0.0033578055445104837, 0.022845037281513214, 0.056063249707221985, 0.017291704192757607, 0.010771158151328564, 0.011619103141129017, 0.0077448198571801186, 0.03647899255156517, 0.009042290970683098, -0.02066744677722454, 0.05444391071796417, -0.009195319376885891, -0.005583919584751129, -0.07344233989715576, 0.033371686935424805, -0.042986951768398285, -0.28111910820007324, 0.03557194396853447, 0.001463462831452489, -0.020385850220918655, 0.009992944076657295, -0.0030621180776506662, 0.01776093989610672, -0.045796483755111694, -0.04396471008658409, 0.02582661435008049, -0.04393106326460838, -0.03510115668177605, -0.0008605764014646411, 0.044132500886917114, 0.033720020204782486, 0.014210636727511883, 0.04256676882505417, -0.04030138999223709, 0.000644493498839438, 0.04099326208233833, -0.02649715729057789, -0.0724104568362236, -0.020587239414453506, 0.0324644073843956, 0.049796245992183685, 0.0678342953324318, -0.06823038309812546, 0.027464311569929123, -0.08037882298231125, -0.0014424188993871212, 0.014943907968699932, 0.01576286368072033, 0.005878643598407507, -0.03983018547296524, 0.0024636921007186174, -0.03261188790202141, 0.03790461644530296, -0.010089673101902008, -0.000828482850920409, -0.0017268502851948142, -0.029068004339933395, -0.017634432762861252, -0.015110576525330544, 0.03049781173467636, 0.06767527759075165, 0.02439872920513153, -0.05607573315501213, 0.009895817376673222, -0.006720752455294132, 0.06970339268445969, -0.009519875980913639, -0.016984812915325165, -0.02419770322740078, 0.036668501794338226, -0.03922164440155029, -0.036288853734731674, 0.012997783720493317, -0.03761793300509453, -0.03102920763194561, -0.01878242753446102, -0.016015755012631416, -0.020020700991153717, -0.009665016084909439, -0.018667589873075485, -0.02190185710787773, -0.060257259756326675, -0.053874701261520386, -0.002172948559746146, 0.039984330534935, -0.01634100265800953, -0.04175463318824768, -0.005691638682037592, -0.008174658752977848, -0.09800124913454056, -0.01819353923201561, -0.0022831177338957787, -0.022215479984879494, 0.020380813628435135, 0.002186613390222192, 0.043384358286857605, -0.03551797568798065, -0.0713573470711708, 0.013278701342642307, 0.018658628687262535, 0.0226201880723238, -0.0003182105137966573, 0.06479687988758087, 0.019845716655254364, -0.005313214845955372, 0.0024455508682876825, 0.05205903947353363, -0.014323016628623009, -0.022091131657361984, -0.007486960384994745, 0.01621602103114128, -0.001329987426288426, 0.007777610793709755, -0.013740570284426212, 0.0027152039110660553, 0.0256859939545393, -0.017372850328683853, -0.06925979256629944, 0.018692446872591972, -0.021070940420031548, -0.015074809081852436, -0.012176260352134705, -0.035634130239486694, 0.016413232311606407, 0.053056128323078156, 0.01939965784549713, 0.030360283330082893, -0.028489308431744576, 0.016840800642967224, -0.02000994049012661, -0.01896596886217594, -0.03254753351211548, 0.009838039055466652, 0.061662089079618454, -0.00570145808160305, 0.009721726179122925, -0.06407858431339264, 0.00898273941129446, -0.03260013833642006, -0.01693424955010414, -0.05593836307525635, 0.010948525741696358, -0.012589438818395138, -0.023915614932775497, 0.018557867035269737, 0.014953452162444592, -0.01923164539039135, 0.039640188217163086, 0.030679356306791306, -0.019651317968964577, 0.01939559169113636, -0.04969996213912964, -0.0894462838768959, -0.03297538682818413, 0.00020647906058002263, -0.020374586805701256, -0.01942039094865322, 0.023230502381920815, 0.004339147359132767, 0.021800026297569275, 0.03383924067020416, 0.02592094987630844, 0.013441737741231918, -0.02110927738249302, 0.03737557679414749, 0.030427634716033936, 0.02513919770717621, -0.07788914442062378, 0.04068302735686302, -0.0629311054944992, 0.0008432491449639201, -0.023366613313555717, 0.026526812463998795, -0.004298738669604063, -0.019166383892297745, -0.02174859121441841, 0.003458751831203699, -0.04705971106886864, -0.06332278251647949, -0.03587765246629715, 0.03341769054532051, 0.06360779702663422, -0.01222030259668827, -0.003141400869935751, -0.020312238484621048, -0.02007458359003067, 0.025882713496685028, -0.011621123179793358, -0.04187036678195, 0.00026038940995931625, -0.01940171793103218, -0.006636098958551884, -0.0018717657076194882, -0.008050108328461647, 0.04632728546857834, -0.004093277733772993, 0.008212308399379253, -0.018366025760769844, 0.007770851720124483, 0.005625555291771889, 0.03154250234365463, 0.031931594014167786, 0.01255082432180643, -0.007376108318567276, -0.014745090156793594, 0.0053819273598492146, -0.03903892636299133, -0.010106372646987438, 0.0028978073969483376, 0.0024069345090538263, -0.034637533128261566, -0.05503154546022415, 0.06893248856067657, 0.023725925013422966, -0.0008910518372431397, 0.025508400052785873, 0.000056058303016470745, -0.013731290586292744, -0.025454193353652954, 0.012144899927079678, 0.061711013317108154, -0.06363244354724884, -0.005650950130075216, -0.012226120568811893, 0.016299623996019363, 0.00488591892644763, -0.017899256199598312, -0.0288032665848732, -0.01636189967393875, -0.015473926439881325, 0.02476406656205654, -0.08150508999824524, -0.013209349475800991, -0.04644414409995079, 0.003042503958567977, 0.00829274021089077, 0.01157445926219225, -0.015796935185790062, -0.05033740773797035, -0.02136746607720852, -0.02553829923272133, 0.0032311815302819014, -0.04806200787425041, -0.0015415077796205878, 0.031006382778286934, -0.03438630327582359, -0.012885999865829945, -0.041964903473854065, 0.006430264096707106, 0.02814917080104351, -0.021962570026516914, 0.027120312675833702, -0.038520924746990204, 0.010607837699353695, -0.0031989088747650385, 0.03375403210520744, -0.018900027498602867, -0.031968917697668076, -0.02904088795185089, -0.016213316470384598, -0.0419878326356411, -0.0005948289181105793, -0.03879743814468384, -0.001888820668682456, 0.016939297318458557, 0.06618086993694305, 0.02609189786016941, 0.006900711916387081, -0.027149071916937828, -0.029202742502093315, 0.029964229092001915, -0.07102242112159729, -0.013000736013054848, -0.02411823533475399, -0.03737437352538109, -0.0027803354896605015, 0.0002954827214125544, 0.010947701521217823, -0.05255667865276337, 0.03323700278997421, 0.004201892297714949, 0.0492103137075901, 0.05603781342506409, 0.01449945755302906, -0.0007263174629770219, -0.06625371426343918, -0.007913599722087383, -0.09115079045295715, -0.0027736364863812923, 0.01906820759177208, 0.0010994637850672007, 0.003011545864865184, 0.02118672989308834, -0.0244876928627491, 0.040761612355709076, -0.08016861230134964, -0.028491616249084473, 0.04525858536362648, -0.006130123045295477, -0.0250494834035635, 0.026769576594233513, -0.07329832762479782, 0.01925724931061268, 0.017586270347237587, -0.04508990794420242, -0.012371241115033627, -0.009379377588629723, 0.0339953638613224, -0.009775038808584213, 0.02588268183171749, -0.057699862867593765, -0.018958963453769684, 0.10082299262285233, -0.00028636385104618967, -0.011499234475195408, 0.046972259879112244, -0.007398875430226326, 0.04966425895690918, 0.03529202938079834, 0.009257428348064423, -0.0056117805652320385, -0.011170215904712677, -0.007565760053694248, -0.04634661599993706, 0.040145568549633026, 0.005144205410033464, -0.03667081519961357, -0.046024005860090256, 0.06018994003534317, 0.011810839176177979, -0.025412220507860184, -0.055897679179906845, 0.006357124075293541, -0.029531463980674744, 0.011503166519105434, 0.0014915585052222013, -0.003288344480097294, -0.06654386222362518, 0.055793218314647675, 0.014794489368796349, 0.02324935421347618, 0.05563942715525627, -0.00296713225543499, -0.022687457501888275, 0.006459888536483049, 0.11021019518375397, 0.07766149193048477, 0.06212994083762169, 0.0020382606890052557, 0.0742148905992508, -0.015770820900797844, -0.043698932975530624, 0.012985600158572197, -0.00024982052855193615, -0.02117680199444294, -0.012294882908463478, 0.028504595160484314, 0.048085227608680725, -0.010304826311767101, 0.05847462639212608, -0.007978365756571293, -0.05041098967194557, 0.01638202555477619, 0.031023865565657616, 0.005020582117140293, 0.05620403587818146, -0.009584981016814709, 0.025137940421700478, -0.025021497160196304, -0.04732293263077736, 0.01999901793897152, -0.03192383423447609, 0.008941598236560822, 0.020426321774721146, -0.016960199922323227, 0.03475230559706688, 0.010955927893519402, -0.004083645064383745, 0.08611417561769485, -0.058769624680280685, 0.038483526557683945, -0.017700837925076485, 0.01278458721935749, -0.016121024265885353, -0.003512656083330512, -0.009902064688503742, -0.0031950899865478277, -0.013852261006832123, -0.021710628643631935, -0.01613365299999714, -0.020236816257238388, -0.009729836136102676, 0.04018756374716759, -0.018889080733060837, 0.016308821737766266, 0.02959311753511429, -0.01859826222062111, -0.02667076140642166, -0.049705103039741516, -0.03401186689734459, -0.03535712882876396, -0.058620549738407135, -0.003452214878052473, 0.04786254093050957, -0.00454396428540349, -0.029980063438415527, 0.0050582573749125, -0.005673964973539114, -0.044282909482717514, 0.0345282144844532, -0.04605608060956001, -0.03447091206908226, 0.028487198054790497, 0.02157186158001423, 0.04188701510429382, 0.022198962047696114, 0.06030137091875076, -0.01252029649913311, 0.0002666941727511585, -0.025181179866194725, 0.021529346704483032, 0.028381232172250748, -0.008106736466288567, 0.012921503745019436, -0.06687052547931671, 0.003372562350705266, 0.04751583933830261, -0.040925219655036926, -0.07498077303171158, 0.039101485162973404, 0.005380476824939251, -0.015171047300100327, 0.06509695947170258, -0.012730053626000881, 0.0037887324579060078, -0.07118265330791473, -0.006592141930013895, -0.014365705661475658, -0.009660686366260052, 0.034542255103588104, -0.03714057803153992, 0.08008365333080292, 0.022434158250689507, -0.031859319657087326, -0.04828762635588646, -0.009291410446166992, -0.014162014238536358, 0.0022498243488371372, -0.01895093359053135, -0.03159241005778313, -0.025163160637021065, -0.10368143767118454, -0.018029609695076942, 0.035621240735054016, -0.014910898171365261, -0.03498772904276848, 0.03894907608628273, 0.023547625169157982, -0.015160897746682167, -0.001171930693089962, -0.03899451345205307, 0.04176829755306244, -0.017763562500476837, -0.004197894129902124, -0.014622929506003857, 0.03642371669411659, -0.009325651451945305, 0.0008991836803033948, 0.02680850960314274, -0.06352201104164124, 0.028084417805075645, -0.0004602052504196763, 0.00018619527691043913, 0.056390855461359024, 0.01960139535367489, 0.015253613702952862 ]
[ -0.0918496772646904, -0.004147026222199202, -0.023152656853199005, -0.01863582246005535, 0.018373528495430946, -0.02681124210357666, 0.009566136635839939, 0.018071182072162628, 0.014951057732105255, 0.010682189837098122, 0.015898318961262703, -0.05600864067673683, -0.019974807277321815, -0.02595820277929306, 0.03063553012907505, 0.0015349711757153273, -0.0035146623849868774, -0.0569143183529377, 0.017099175602197647, 0.018012259155511856, -0.00743529899045825, -0.06351955980062485, -0.018105903640389442, -0.016377422958612442, 0.04188583418726921, 0.03129880130290985, -0.0014759139157831669, -0.045413319021463394, -0.008532515726983547, -0.17536292970180511, -0.005517810583114624, -0.010004672221839428, 0.042718466371297836, -0.019792549312114716, -0.03204968571662903, 0.06879156082868576, 0.01579553447663784, 0.0295393206179142, 0.020445890724658966, 0.03812062367796898, 0.03693446144461632, 0.025078004226088524, -0.033207155764102936, -0.018946973606944084, 0.03360277786850929, 0.028721164911985397, 0.014940823428332806, -0.03531155735254288, -0.02891422249376774, 0.03607649356126785, -0.027559004724025726, -0.022927850484848022, -0.032811958342790604, -0.0013413704000413418, 0.016151009127497673, 0.041790831834077835, 0.030742602422833443, 0.03728824481368065, 0.013856055215001106, -0.009574131108820438, 0.028874559327960014, -0.042830366641283035, -0.15400029718875885, 0.05461575463414192, 0.0345657542347908, 0.03796730190515518, -0.0570513978600502, 0.0114089110866189, -0.047432977706193924, 0.08537179976701736, 0.0046964907087385654, -0.027458716183900833, -0.00017411094449926168, 0.014379466883838177, 0.04399746656417847, 0.028292689472436905, 0.012403249740600586, 0.008662769570946693, 0.036389268934726715, -0.025016197934746742, 0.004615240264683962, -0.015581822954118252, -0.0625179335474968, -0.03923851251602173, -0.025067230686545372, 0.009842989034950733, 0.0005912969936616719, 0.05570632219314575, 0.05483630672097206, 0.029864007607102394, 0.03657472878694534, 0.0057876636274158955, 0.018488595262169838, 0.0027253322768956423, -0.057169508188962936, -0.024534039199352264, -0.0005276654846966267, 0.015397443436086178, -0.06607184559106827, 0.4477100074291229, -0.01433544047176838, 0.010300502181053162, 0.0433746799826622, 0.05916954204440117, 0.024840421974658966, 0.0034377153497189283, 0.002377929398790002, -0.04729229956865311, 0.029758676886558533, 0.005644971504807472, 0.048402268439531326, 0.038675859570503235, 0.038347117602825165, -0.03235962986946106, 0.0215770211070776, 0.04252227395772934, -0.0249446090310812, 0.026310710236430168, -0.0003417401749175042, -0.013411220163106918, -0.024494295939803123, 0.014096393249928951, 0.03885941579937935, -0.008531017228960991, -0.029089627787470818, -0.032985176891088486, 0.026773596182465553, 0.06701605021953583, 0.022048234939575195, -0.007385161239653826, 0.0445677675306797, -0.057692185044288635, -0.06933916360139847, 0.008824188262224197, -0.0015738856745883822, 0.013170773163437843, 0.05886352062225342, -0.016877997666597366, -0.009359045885503292, 0.058420438319444656, 0.014457390643656254, 0.002272152341902256, 0.04559560492634773, -0.06379693001508713, -0.033092841506004333, 0.1427893340587616, 0.05642575025558472, -0.04708050563931465, 0.000852962548378855, -0.028879880905151367, -0.032534562051296234, 0.00600756099447608, -0.02547689713537693, -0.043554503470659256, -0.005255999509245157, 0.004325503017753363, 0.06807979196310043, -0.00747636565938592, -0.06495220214128494, -0.014043895527720451, -0.039591819047927856, -0.02673357166349888, -0.07317573577165604, 0.036320965737104416, 0.08184826374053955, -0.08632561564445496, -0.023266475647687912, 0.011096845380961895, 0.009304331615567207, -0.06485269963741302, -0.03167514503002167, 0.004521384835243225, -0.029841816052794456, -0.004594390746206045, 0.0709085762500763, -0.01923963613808155, -0.033231668174266815, 0.013091239146888256, 0.02323177084326744, -0.006015854422003031, 0.05466187372803688, 0.033442456275224686, -0.005784523673355579, -0.023198816925287247, -0.016821717843413353, -0.047710806131362915, -0.05926520749926567, -0.020403146743774414, -0.04618671163916588, 0.013553847558796406, -0.03834140673279762, -0.04123286157846451, -0.06632700562477112, 0.11480280011892319, -0.03126300126314163, -0.014612221159040928, 0.03748706728219986, 0.00033084218739531934, -0.053801994770765305, -0.03181296959519386, -0.09557362645864487, -0.0108562670648098, -0.015240577049553394, 0.044282466173172, -0.06461592018604279, 0.05118289962410927, 0.03671231120824814, -0.0662524476647377, 0.0760725811123848, 0.03485354408621788, -0.04136111959815025, -0.05968131497502327, -0.01665673777461052, 0.0297547634691, -0.01976693607866764, 0.021008020266890526, 0.0009274535696022213, 0.009788759052753448, 0.0027063710149377584, 0.04032103717327118, -0.006042399909347296, 0.045576635748147964, -0.019493678584694862, -0.3395366668701172, -0.04533153772354126, -0.046785734593868256, 0.010847032070159912, 0.03632326051592827, -0.009397934190928936, -0.007641630247235298, 0.008424054831266403, -0.03221704810857773, 0.0019104781094938517, 0.08336729556322098, -0.03683333098888397, -0.023989537730813026, -0.10236474126577377, 0.010470637120306492, 0.0030005977023392916, -0.07123701274394989, -0.038170766085386276, -0.018328610807657242, -0.020822754129767418, 0.03558044880628586, 0.013065316714346409, -0.05430305376648903, -0.017424752935767174, 0.00597582571208477, -0.04477471858263016, 0.09509172290563583, 0.014275556430220604, 0.07582300156354904, -0.03776175156235695, 0.02328125387430191, 0.02425209805369377, 0.028240110725164413, -0.07097868621349335, 0.01783146522939205, -0.03021811693906784, 0.024448398500680923, -0.05284351855516434, 0.007065232377499342, -0.04239754378795624, -0.0763850212097168, 0.028738105669617653, -0.06434495002031326, -0.01076078787446022, -0.07296931743621826, 0.008037881925702095, -0.006431327201426029, 0.000975405506324023, -0.031130872666835785, 0.08680138736963272, 0.02574821561574936, 0.0011817741906270385, 0.03764079883694649, -0.027361802756786346, 0.03088441677391529, -0.020825691521167755, -0.09670546650886536, 0.05284477397799492, -0.0220207329839468, 0.005163839086890221, -0.008371253497898579, 0.07155267894268036, 0.02968991920351982, -0.04057176038622856, 0.024768205359578133, 0.0014186135958880186, 0.008410713635385036, -0.010246127843856812, 0.032006558030843735, 0.012962191365659237, 0.011063753627240658, 0.07081688195466995, -0.0006872438825666904, -0.026847869157791138, 0.0660819411277771, 0.01936858892440796, -0.03203962370753288, 0.02699439413845539, 0.023809341713786125, -0.014298847876489162, 0.050674330443143845, -0.02530600316822529, 0.02108057774603367, -0.0021946816705167294, -0.0004893533769063652, 0.0019467491656541824, -0.01892143301665783, -0.035682614892721176, 0.021157538518309593, 0.007949351333081722, -0.009168671444058418, -0.009093351662158966, -0.03777841106057167, -0.03972959890961647, 0.06650529056787491, -0.004274269565939903, -0.22515203058719635, 0.029652195051312447, 0.09199010580778122, 0.02307269722223282, 0.010408170521259308, 0.019813494756817818, 0.021447518840432167, -0.07303135097026825, -0.006501238327473402, 0.044429149478673935, 0.00596991553902626, 0.025413313880562782, -0.012436280027031898, -0.00012139597674831748, 0.031441353261470795, -0.003732055425643921, 0.04190392792224884, -0.017971737310290337, 0.05129663273692131, -0.01788325048983097, 0.0464940145611763, -0.002112547168508172, 0.16744615137577057, 0.006054725963622332, 0.019979963079094887, 0.017481308430433273, -0.005876360926777124, -0.0035352176055312157, 0.03396305441856384, 0.0055530741810798645, -0.0027497531846165657, -0.00917219277471304, 0.05393822863698006, 0.018788587301969528, 0.0027799292001873255, -0.07223732769489288, 0.00444808229804039, 0.018779011443257332, 0.005446646828204393, 0.020406484603881836, 0.04785500094294548, -0.017154786735773087, 0.025224799290299416, 0.009892754256725311, 0.08789829909801483, 0.013339812867343426, -0.01729302853345871, -0.04427450895309448, -0.06672319024801254, -0.031056934967637062, -0.039901118725538254, -0.042822226881980896, 0.005693007260560989, -0.018028464168310165, 0.007775913458317518, 0.06432918459177017, 0.04225499555468559, -0.05078405514359474, 0.022798296064138412, 0.0018486849730834365, -0.023107821121811867, 0.004836884327232838, 0.0796138197183609, 0.030725838616490364, 0.04625353217124939 ]
[ 0.011649769730865955, 0.032493386417627335, -0.011692973785102367, 0.005422411020845175, 0.011415878310799599, 0.015287145040929317, -0.04503580555319786, -0.006455192342400551, 0.02353055775165558, -0.02961346134543419, -0.011129863560199738, -0.00466544134542346, -0.05008035525679588, -0.011756109073758125, 0.03278099372982979, -0.03562724590301514, 0.04060303419828415, 0.031636279076337814, 0.012114064767956734, 0.014112679287791252, -0.006078431382775307, 0.04025008901953697, -0.006012167315930128, 0.01919991709291935, -0.03557097539305687, 0.02192971482872963, -0.0485859252512455, 0.01999558135867119, 0.019978400319814682, -0.14809265732765198, -0.022542480379343033, -0.06021873652935028, -0.009250042028725147, 0.029263392090797424, 0.025605227798223495, -0.0025154398754239082, -0.002754932502284646, 0.01605898328125477, -0.019385546445846558, 0.010175347328186035, 0.02436467632651329, -0.028408564627170563, 0.0020095466170459986, 0.0007907641120254993, 0.027247127145528793, 0.054863862693309784, -0.005845518782734871, -0.04663322865962982, -0.010914348065853119, 0.0002831126912496984, -0.04748781397938728, -0.035146504640579224, 0.012835032306611538, -0.020573491230607033, 0.06453928351402283, 0.014042414724826813, 0.03104080818593502, 0.02592669613659382, 0.003964054863899946, -0.04647870734333992, 0.0018989014206454158, -0.028902096673846245, -0.05778878182172775, -0.017969738692045212, -0.04749783128499985, -0.015173224732279778, 0.011312304995954037, 0.03677457198500633, -0.053708892315626144, 0.006920971442013979, 0.030292678624391556, 0.006866181269288063, -0.03232899680733681, -0.0156584233045578, 0.0074781873263418674, -0.015018021687865257, -0.023305661976337433, 0.023920482024550438, 0.027269713580608368, -0.01758209615945816, 0.020604072138667107, -0.006653738673776388, -0.024447863921523094, -0.0015090943779796362, -0.002787841483950615, 0.023586301133036613, -0.0018031391082331538, 0.009963184595108032, 0.04291317239403725, 0.011737805791199207, -0.04403436556458473, 0.031635500490665436, 0.02904317155480385, -0.019838932901620865, -0.041267845779657364, 0.023066719993948936, -0.05221564695239067, -0.03505043312907219, 0.006118118297308683, 0.8072563409805298, -0.011230524629354477, 0.01932213455438614, 0.010803976096212864, 0.061554618179798126, 0.026138251647353172, 0.034719038754701614, -0.009135427884757519, 0.0316673219203949, 0.031376007944345474, 0.010891370475292206, 0.032420072704553604, 0.042476166039705276, 0.026865527033805847, 0.003607631428167224, 0.0027639982290565968, 0.026220140978693962, -0.03603468835353851, 0.018616976216435432, -0.017819255590438843, 0.004542538896203041, 0.007615969981998205, -0.030870921909809113, -0.012236809358000755, -0.007451624143868685, 0.020619982853531837, -0.1708032786846161, 0.03631021827459335, -8.272950712882728e-33, 0.013258174061775208, -0.017604291439056396, -0.00018620892660692334, -0.017151303589344025, 0.00015570080722682178, 0.01612592674791813, 0.018682602792978287, 0.003729618387296796, 0.019772719591856003, -0.051987141370773315, -0.017385995015501976, -0.021094486117362976, -0.017367009073495865, 0.00496743293479085, 0.012922080233693123, -0.03186026215553284, -0.017256490886211395, 0.023999853059649467, -0.00373436720110476, -0.0012925894698128104, 0.05913843214511871, -0.0004705417377408594, -0.06329845637083054, -0.0000036969652228435734, -0.03497076407074928, 0.01534677017480135, -0.011871805414557457, 0.009619276039302349, 0.013025837950408459, -0.0251918938010931, -0.017504265531897545, 0.011188304983079433, -0.02709108591079712, -0.027603937312960625, 0.005259707570075989, -0.015080668032169342, -0.04918636754155159, -0.012250464409589767, -0.008526293560862541, 0.03496352955698967, -0.039688751101493835, -0.004761355929076672, -0.07215382903814316, -0.025593269616365433, -0.07001670449972153, 0.0006526463548652828, 0.043347910046577454, 0.013512775301933289, 0.012380030006170273, -0.016508959233760834, -0.003834493225440383, -0.017003972083330154, 0.020388003438711166, -0.008665367029607296, 0.011667193844914436, 0.01700347103178501, 0.011046295054256916, 0.009631838649511337, -0.06065710633993149, 0.0372248999774456, -0.002210088074207306, 0.0111489687114954, 0.0041816942393779755, -0.011129902675747871, 0.014941614121198654, 0.017060233280062675, -0.030985873192548752, 0.01998124085366726, 0.03585467115044594, -0.028988884761929512, -0.03200681507587433, -0.008975151926279068, -0.028025131672620773, -0.02845742367208004, 0.028536632657051086, -0.027227072045207024, -0.004831692669540644, 0.023972038179636, -0.049534667283296585, 0.02361924573779106, -0.005916418973356485, 0.007593789137899876, -0.01620420068502426, -0.010023222304880619, 0.031952232122421265, -0.015013244934380054, 0.017024125903844833, -0.02246038429439068, -0.0377064123749733, -0.018939778208732605, 0.0357128269970417, 0.022046392783522606, -0.008381872437894344, 0.03942922502756119, -0.02857881784439087, 8.51680848532875e-33, -0.0067658633925020695, 0.016978278756141663, -0.03592996671795845, 0.027922531589865685, 0.040646299719810486, 0.015744509175419807, 0.030227944254875183, 0.0004078586644027382, -0.060081206262111664, 0.02715173549950123, -0.05238805338740349, -0.024168692529201508, -0.03886742144823074, -0.002059268532320857, 0.02995799109339714, -0.01393283810466528, 0.03268938511610031, -0.0550108477473259, 0.004052244126796722, -0.036645397543907166, 0.039284419268369675, -0.011786037124693394, 0.013556077145040035, 0.0042116958647966385, 0.029935890808701515, 0.05016666278243065, 0.006315306760370731, -0.013757849112153053, -0.039103712886571884, 0.02619415707886219, 0.016627879813313484, 0.032901328057050705, 0.007647971622645855, -0.009869147092103958, 0.019004033878445625, 0.0162099227309227, 0.00849934108555317, 0.0018295715562999249, -0.016445498913526535, 0.019907217472791672, -0.00974673219025135, -0.0010152243776246905, 0.008643326349556446, 0.020276129245758057, 0.00439478550106287, 0.03529403358697891, 0.02042113058269024, -0.028758926317095757, -0.00034397264244034886, 0.0635485127568245, 0.004972912836819887, -0.01936686784029007, -0.010693828575313091, 0.05227944627404213, -0.017076319083571434, -0.0057608503848314285, 0.014084636233747005, 0.01036089938133955, 0.014219599775969982, 0.008798161521553993, -0.005375977139919996, 0.00948802474886179, -0.04175033047795296, 0.0710458755493164, -0.007963142357766628, -0.008053995668888092, 0.02208285592496395, 0.004646444693207741, -0.011439562775194645, -0.01891392655670643, -0.05468393862247467, 0.03933706507086754, 0.014397742226719856, 0.05015856400132179, -0.017642568796873093, -0.044162776321172714, -0.019813532009720802, 0.0326601080596447, -0.032996080815792084, 0.02750040963292122, -0.0007873499416746199, 0.03184817358851433, 0.053574785590171814, 0.024400414898991585, -0.05061698332428932, -0.002148308325558901, -0.029641151428222656, 0.008938944898545742, 0.007936450652778149, 0.008390391245484352, 0.010563505813479424, -0.018834499642252922, 0.00858284067362547, 0.03376619890332222, -0.006107423920184374, -1.370791480326261e-8, -0.008888504467904568, 0.0035452665761113167, -0.02963876724243164, -0.009279843419790268, -0.026378033682703972, 0.019423170015215874, -0.01160287857055664, 0.05540865287184715, -0.020530076697468758, 0.011866185814142227, 0.046272534877061844, -0.04612129181623459, 0.001576912240125239, 0.010830359533429146, 0.040225449949502945, -0.028458742424845695, -0.008799949660897255, 0.003811115399003029, 0.0221412256360054, 0.018652882426977158, 0.06369445472955704, 0.07669394463300705, -0.0311494842171669, 0.009843273088335991, 0.03814268112182617, -0.037873584777116776, -0.06782430410385132, -0.06770967692136765, 0.008490212261676788, -0.013078780844807625, 0.029826827347278595, -0.01380715798586607, -0.019100474193692207, 0.010006914846599102, -0.030415548011660576, -0.03604060783982277, 0.003509669564664364, 0.043290115892887115, 0.008138960227370262, 0.04101739078760147, -0.02663617581129074, 0.03934536501765251, -0.023139117285609245, -0.02272852323949337, 0.01801544427871704, -0.013872694224119186, -0.027080031111836433, -0.01055002212524414, -0.02154153771698475, -0.05673927441239357, 0.0043730889447033405, 0.034495871514081955, 0.03001987747848034, 0.036948107182979584, 0.01203269511461258, -0.011261967942118645, -0.050296857953071594, -0.027922701090574265, -0.05070244148373604, -0.029489926993846893, 0.005604214034974575, 0.01619400456547737, 0.0014101543929427862, 0.00034725936711765826 ]
velocity-as-a-goal
https://markhneedham.com/blog/2010/04/07/velocity-as-a-goal
false
2010-04-09 07:09:28
Coding: FindOrCreateUser and similar methods
[ "coding" ]
[ "Coding" ]
One of the general guidelines that I like to follow when writing methods is trying to ensure that it's only doing one thing but on several recent projects I've noticed us breaking this guideline and it feels like the right thing to do. The method in question typically takes in some user details, looks up that user in some data store and then returning it if there is an existing user and creating a new user if not. It would probably look something like this: [source,csharp] ---- public class UserService { public User FindOrCreateUser(string username) { var user = userRepository.FindUserBy(username); if(user == null) { user = CreateUserFrom(username); } return user; } } ---- My initial thought when we wrote it was that it seemed wrong but the method name does clearly describe our requirement so I'm not so sure it's a bad thing. NHibernate has a 'SaveOrUpdate' method which to me seems to cover similar ground although Save/Update are much closer in functionality then Find/Create so maybe that's more justifiable. I'd be interested to know whether you think this type of method is perfectly fine or whether we're very very bad people for writing it!
null
null
[ -0.01652367226779461, -0.02788212150335312, -0.010131753981113434, 0.019459908828139305, 0.0837278664112091, -0.02055705338716507, 0.04595746099948883, -0.006671908311545849, -0.01924722082912922, -0.023800302296876907, 0.002121873199939728, -0.0052243913523852825, -0.0579802505671978, 0.012196202762424946, -0.0172442477196455, 0.05299893394112587, 0.060851339250802994, 0.000005979210527584655, 0.015374808572232723, -0.004821055568754673, -0.0060780649073421955, 0.05910726264119148, -0.006424434017390013, 0.02987341582775116, 0.02865285985171795, 0.057019010186195374, -0.013751168735325336, -0.014450069516897202, -0.062390875071287155, -0.020725436508655548, 0.03560848534107208, 0.012246238067746162, -0.010041099041700363, -0.016639867797493935, 0.025641564279794693, -0.034649018198251724, -0.019616037607192993, 0.015253493562340736, 0.012786176055669785, 0.008638408966362476, -0.07683869451284409, 0.007834598422050476, -0.025951948016881943, 0.007293642032891512, -0.0314936600625515, -0.015299239195883274, -0.01975267007946968, -0.0026382633950561285, -0.01777457445859909, -0.0072713205590844154, -0.05933944880962372, 0.05362425744533539, -0.0277925506234169, 0.02083693817257881, 0.00985719170421362, 0.04480648413300514, 0.03466404974460602, -0.08534067124128342, 0.016309667378664017, -0.04370671510696411, 0.02683132328093052, 0.016533002257347107, -0.017361288890242577, 0.012425906956195831, 0.018155407160520554, -0.010278913192451, 0.005555497948080301, 0.04943232610821724, -0.025762734934687614, -0.013016065582633018, -0.031957585364580154, -0.02115669846534729, 0.0033771577291190624, -0.003877253271639347, -0.007114756386727095, -0.033626824617385864, 0.01321689784526825, 0.05269273370504379, 0.03428739681839943, 0.07639536261558533, 0.007124561816453934, -0.025428280234336853, 0.011292731389403343, 0.004841253161430359, 0.021012499928474426, -0.05980736017227173, -0.012733553536236286, -0.02935781143605709, -0.017893262207508087, 0.05041273310780525, 0.0029661369044333696, -0.05181187018752098, 0.019158421084284782, 0.007952198386192322, -0.01787431910634041, -0.0056874994188547134, 0.03740021958947182, -0.010398484766483307, 0.008606747724115849, 0.0031810682266950607, -0.02728252112865448, -0.023050550371408463, 0.009008308872580528, 0.021990807726979256, -0.07395606487989426, -0.0023418685887008905, -0.03102954290807247, -0.022783124819397926, 0.0022292255889624357, -0.005386126693338156, -0.04430946707725525, 0.04367832839488983, -0.018207618966698647, -0.0025344628375023603, -0.06201861798763275, 0.04687942564487457, 0.021739579737186432, -0.015176570974290371, -0.022878970950841904, 0.05028807744383812, 0.055907268077135086, 0.03387386351823807, 0.0031829476356506348, 0.05824203044176102, -0.015165324322879314, 0.018427373841404915, -0.011059604585170746, 0.06573953479528427, -0.006254742853343487, -0.10288279503583908, 0.013477304019033909, 0.04958246648311615, 0.009172046557068825, 0.022765057161450386, -0.004186005797237158, -0.01240232028067112, -0.02250571921467781, -0.011648546904325485, 0.03412362188100815, 0.022032737731933594, -0.009430869482457638, -0.02853510156273842, 0.019251124933362007, -0.003886345075443387, 0.014221849851310253, 0.028905263170599937, 0.023228304460644722, -0.03506435081362724, -0.011211278848350048, 0.05686542019248009, 0.018852004781365395, 0.09068766236305237, 0.06469558924436569, -0.03335270285606384, 0.01963692158460617, 0.05639632046222687, -0.006576646119356155, 0.009527185931801796, 0.008261274546384811, 0.0031162819359451532, 0.03813401237130165, 0.03190578520298004, 0.016775550320744514, 0.04448046162724495, 0.019677165895700455, -0.01726038008928299, 0.0015657582553103566, 0.053351204842329025, 0.019894463941454887, -0.00053994613699615, -0.07332104444503784, -0.06718800216913223, 0.053411807864904404, -0.057150859385728836, 0.024078186601400375, 0.03855651617050171, 0.06476655602455139, 0.0209314227104187, 0.07179314643144608, 0.011234811507165432, -0.06725803017616272, 0.03263296186923981, 0.006998184137046337, -0.010361045598983765, -0.011110319755971432, 0.016833441331982613, 0.07113706320524216, 0.044646698981523514, 0.004083888605237007, 0.04296398535370827, -0.0670512467622757, -0.04867997020483017, -0.018196627497673035, -0.016848281025886536, 0.04380772262811661, -0.001891910214908421, 0.0038840153720229864, 0.10824501514434814, 0.007627519313246012, 0.04406603425741196, 0.04120126739144325, -0.01490352675318718, 0.004750496707856655, -0.020872334018349648, -0.04716445133090019, 0.0372934564948082, 0.041906390339136124, 0.00958472304046154, -0.04379839822649956, 0.01864546537399292, -0.01979225128889084, 0.0008656153222545981, 0.012097668834030628, 0.02114100567996502, 0.026383502408862114, 0.018458247184753418, 0.031738705933094025, -0.00035260626464150846, 0.08081584423780441, -0.04441794008016586, 0.03416511416435242, 0.0056479801423847675, 0.013194313272833824, -0.0005213387776166201, 0.004129881039261818, 0.11716150492429733, 0.0413237065076828, -0.04389667138457298, -0.045052144676446915, 0.00911889411509037, 0.01777886599302292, -0.0318756178021431, 0.019827527925372124, -0.026434380561113358, -0.009838263504207134, 0.019007762894034386, 0.002121280413120985, -0.006968229077756405, 0.034829962998628616, -0.013765048235654831, 0.024562839418649673, 0.07368979603052139, -0.014742208644747734, 0.04640531912446022, 0.012389851734042168, -0.0107446713373065, -0.025839105248451233, 0.013427384197711945, -0.05852048099040985, 0.015604276210069656, 0.011145086027681828, -0.001913295011036098, 0.07106585800647736, -0.013149798847734928, -0.009282219223678112, -0.018058238551020622, -0.03833433613181114, 0.04432426020503044, 0.003965708427131176, 0.07736343145370483, -0.03128304332494736, 0.055114973336458206, 0.0004976719501428306, -0.005409743636846542, -0.011575260199606419, -0.04859549552202225, 0.0021110393572598696, 0.003435867838561535, 0.0018735983176156878, 0.02618570066988468, 0.036795999854803085, -0.006097755860537291, 0.026996564120054245, 0.01548280194401741, -0.010906241834163666, -0.004966334905475378, 0.04718839377164841, 0.0017305959481745958, -0.022343378514051437, -0.018427502363920212, -0.04612907022237778, 0.028588952496647835, -0.05169267952442169, -0.04835427179932594, 0.02463245391845703, -0.07449343055486679, 0.03916711360216141, -0.07702954113483429, -0.08572583645582199, 0.008813083171844482, 0.03536399081349373, 0.02647479809820652, 0.04843767732381821, 0.02146945521235466, 0.08432120829820633, 0.025392141193151474, -0.0029276309069246054, 0.02488848939538002, 0.005594515707343817, 0.028926583006978035, -0.008149946108460426, -0.0029209558852016926, 0.05659625679254532, -0.025114979594945908, 0.012588358484208584, -0.043980956077575684, 0.03001469373703003, 0.00341044832020998, -0.2578345537185669, 0.025408226996660233, -0.006697034928947687, -0.045061755925416946, 0.04546726867556572, -0.012223268859088421, 0.028959399089217186, -0.013177628628909588, -0.05135887488722801, 0.08384009450674057, -0.013245975598692894, -0.025668825954198837, -0.0009338633972220123, 0.05199220031499863, 0.0016187966102734208, 0.028801223263144493, 0.008858121931552887, -0.02380289137363434, -0.024443132802844048, 0.0591563954949379, -0.031696218997240067, -0.062276341021060944, -0.018996449187397957, 0.050064731389284134, 0.04310700297355652, 0.03677384927868843, -0.040479253977537155, 0.00733976112678647, -0.050822485238313675, -0.02536601386964321, 0.016681190580129623, -0.017030255869030952, -0.0024658292531967163, -0.039245277643203735, -0.03847867622971535, -0.024825595319271088, -0.008510807529091835, 0.05063875764608383, 0.014537300914525986, 0.026185432448983192, -0.06504543125629425, -0.06884622573852539, -0.056116633117198944, 0.014044137671589851, 0.06166611239314079, -0.011794897727668285, -0.06735142320394516, 0.006339795421808958, -0.03601161018013954, 0.05194421857595444, -0.04958466812968254, -0.06915003806352615, 0.00587882986292243, 0.042019929736852646, -0.017322849482297897, -0.030003519728779793, 0.018495740368962288, 0.02152756042778492, -0.07110270857810974, -0.047000665217638016, -0.027503030374646187, -0.057235829532146454, -0.01779823750257492, -0.009993776679039001, -0.02188233844935894, -0.06529004126787186, -0.0634537935256958, -0.019636468961834908, 0.07222472131252289, 0.03478465974330902, -0.01365753822028637, -0.011022732593119144, 0.00181947136297822, -0.10756329447031021, -0.0021682227961719036, -0.044487014412879944, -0.004992940463125706, -0.03330741077661514, -0.05075912922620773, 0.048123132437467575, -0.028705336153507233, -0.018961753696203232, 0.013440013863146305, 0.036608193069696426, 0.016246359795331955, -0.006395490374416113, 0.04686348885297775, -0.017674190923571587, -0.049479033797979355, -0.0017216182313859463, 0.08472274988889694, 0.01905163936316967, 0.00266967318020761, -0.04507732391357422, -0.011192281730473042, 0.04312814399600029, 0.004463138058781624, -0.03101039119064808, 0.015789540484547615, -0.004834023304283619, 0.07837945222854614, -0.04084230586886406, 0.04435700923204422, -0.045732785016298294, -0.005818777717649937, -0.02397746965289116, -0.06631451845169067, 0.047435685992240906, 0.03246614336967468, 0.024798879399895668, -0.03542304039001465, -0.0068321856670081615, 0.001722305896691978, -0.05683969706296921, -0.042896974831819534, -0.04246644303202629, -0.014378088526427746, 0.021188952028751373, -0.020193712785840034, 0.007955741137266159, -0.03718796372413635, 0.015825724229216576, 0.01849263720214367, -0.03197961300611496, -0.07499726116657257, -0.04694538563489914, -0.0037265110295265913, 0.005341234616935253, 0.01658868044614792, 0.018856270238757133, 0.0003856402763631195, 0.019869916141033173, 0.002348190639168024, -0.044746000319719315, 0.02102980762720108, 0.00006061984458938241, -0.025296509265899658, -0.03991253301501274, -0.04754042625427246, -0.007686600089073181, 0.005332826636731625, -0.014005802571773529, 0.021570486947894096, 0.032920416444540024, 0.038331158459186554, -0.004543761722743511, 0.045090366154909134, 0.012169561348855495, -0.0003318418748676777, 0.024335209280252457, -0.004438471980392933, -0.06627419590950012, 0.02849646843969822, -0.04801890626549721, -0.02629219926893711, -0.014553682878613472, 0.04407767578959465, -0.021071771159768105, -0.02031448669731617, -0.013372705318033695, 0.008624997921288013, -0.0635685920715332, -0.03340055048465729, -0.02198195643723011, 0.01782449707388878, 0.07418334484100342, -0.05863473191857338, 0.022759707644581795, -0.04996586963534355, -0.0042334794998168945, 0.03062869794666767, 0.013867650181055069, -0.042593859136104584, 0.03223823010921478, 0.021074919030070305, -0.003899134462699294, -0.012457840144634247, 0.04019082337617874, 0.00166293082293123, 0.013041035272181034, -0.004217043053358793, -0.0025183181278407574, 0.006750698201358318, -0.04497106373310089, 0.047358982264995575, -0.009196181781589985, 0.025200434029102325, 0.0015739998780190945, -0.011251225136220455, -0.018589535728096962, -0.02051909826695919, -0.014899833127856255, -0.010209041647613049, 0.04287546128034592, -0.032273925840854645, -0.0635751262307167, 0.05515610799193382, -0.005672710482031107, 0.015686506405472755, 0.04348202794790268, 0.0310202706605196, -0.00896355789154768, -0.0013324973406270146, 0.016126736998558044, 0.05131134018301964, -0.057920537889003754, 0.00668811472132802, -0.013777376152575016, 0.002299737883731723, 0.04545407369732857, 0.00908118486404419, -0.01877518557012081, -0.014555427245795727, -0.031416427344083786, 0.0009171122801490128, -0.04415304586291313, -0.03177454695105553, -0.035924483090639114, 0.01552191935479641, 0.008673712611198425, -0.015543604269623756, -0.015665335580706596, 0.0065059177577495575, -0.03624989837408066, -0.018843716010451317, 0.006693533156067133, -0.012003442272543907, -0.02669004537165165, 0.002198875183239579, -0.039393845945596695, 0.0047055808827281, -0.015502376481890678, 0.011830329895019531, 0.004171012435108423, -0.04529910534620285, -0.020152820274233818, -0.03579551726579666, 0.022769244387745857, -0.03372911736369133, 0.032594095915555954, -0.001674471888691187, 0.004728090483695269, 0.00013340736040845513, -0.04625481739640236, -0.030127884820103645, 0.013679269701242447, -0.0070097316056489944, -0.011713994666934013, 0.01989312656223774, 0.05071904882788658, 0.0049065956845879555, 0.019144173711538315, -0.01500299759209156, -0.01489056646823883, 0.07190268486738205, -0.040723368525505066, -0.02326718345284462, -0.02449951320886612, -0.05694153532385826, 0.0261029414832592, 0.018390625715255737, 0.02371796779334545, -0.025716833770275116, 0.019456814974546432, 0.03083391673862934, -0.02175060100853443, 0.0366230309009552, 0.025955786928534508, 0.06347884982824326, -0.05192872881889343, -0.017490407451987267, -0.055107686668634415, 0.024393444880843163, 0.017770200967788696, 0.010015767998993397, -0.01652348041534424, -0.043748289346694946, 0.017056507989764214, 0.04684937000274658, -0.0632876455783844, -0.03178350627422333, 0.006856158375740051, -0.005333706736564636, 0.006809871643781662, 0.003147643292322755, -0.045465439558029175, 0.03651784360408783, 0.03899997100234032, -0.018551412969827652, -0.051434483379125595, -0.04505256935954094, 0.062340304255485535, 0.03685762360692024, 0.011145535856485367, -0.042523518204689026, 0.032071683555841446, 0.06087249517440796, 0.018040383234620094, 0.04019644856452942, 0.02659362554550171, -0.04007762297987938, 0.03797081485390663, 0.025666369125247, -0.0058023869059979916, -0.00029416359029710293, -0.0011562573490664363, -0.0013754606479778886, -0.07612316310405731, 0.020905813202261925, -0.0029488105792552233, -0.03600247576832771, -0.04803383722901344, 0.05254334956407547, 0.007594953291118145, -0.020518647506833076, -0.08235608786344528, 0.016171110793948174, -0.009841997176408768, -0.04126133769750595, -0.03336532786488533, -0.012040182016789913, -0.030080171301960945, 0.0713995024561882, 0.01794183999300003, 0.007151085417717695, 0.05473356693983078, -0.046780575066804886, 0.01241515576839447, -0.01345335878431797, 0.07000459730625153, 0.09391412138938904, 0.051910582929849625, -0.018451783806085587, 0.05439203232526779, -0.011454418301582336, -0.04354077950119972, -0.0008480727556161582, -0.04589829221367836, -0.013973007909953594, -0.0015159721951931715, 0.006544372066855431, 0.04399117827415466, 0.00748680904507637, 0.04318580776453018, -0.019682331010699272, -0.0028102092910557985, 0.004790277685970068, 0.027207594364881516, 0.026406096294522285, 0.017567411065101624, 0.015823019668459892, -0.00035022394149564207, 0.0007254700758494437, -0.048665668815374374, -0.002641596831381321, -0.025703923776745796, -0.010579067282378674, 0.02574680931866169, -0.012246083468198776, -0.019234875217080116, -0.00990756880491972, 0.003324530553072691, 0.07129130512475967, -0.019904041662812233, -0.005620585288852453, -0.01774704083800316, 0.0036785395350307226, -0.008073133416473866, -0.015644410625100136, -0.0031324313022196293, -0.03403528034687042, 0.015891171991825104, -0.016722656786441803, -0.012481643818318844, 0.010612339712679386, -0.05108913034200668, 0.03895379602909088, -0.009471841156482697, 0.0055697462521493435, -0.006281174253672361, 0.01796494424343109, -0.046991072595119476, -0.02522243931889534, -0.05361985042691231, -0.022155672311782837, -0.045965686440467834, 0.007947691716253757, 0.02048187330365181, -0.04404471442103386, -0.04377643018960953, -0.0039826263673603535, -0.004036118742078543, -0.015878209844231606, 0.05964071676135063, -0.03559616953134537, -0.007140945643186569, 0.034132275730371475, 0.011808255687355995, 0.06265128403902054, 0.030679810792207718, 0.03910988196730614, 0.010591050609946251, -0.005052573513239622, -0.03945630043745041, -0.04983408376574516, 0.05655420199036598, -0.01693783327937126, -0.013194791972637177, -0.092388816177845, 0.019721895456314087, 0.026384033262729645, 0.008853468112647533, -0.06192232295870781, 0.00747747253626585, 0.026288853958249092, -0.0019666068255901337, 0.05567586049437523, 0.0013593955663964152, -0.01371321827173233, -0.009491689503192902, -0.011042041704058647, 0.002673254581168294, 0.032125361263751984, 0.03531039133667946, -0.04190797731280327, 0.05297846347093582, 0.03179961442947388, -0.0423976294696331, -0.0341469831764698, -0.022959399968385696, 0.0024046157486736774, 0.007178276311606169, -0.03848390653729439, -0.02667449228465557, -0.03858334571123123, -0.06409542262554169, -0.003023189026862383, 0.038719695061445236, -0.031535804271698, -0.018471116200089455, 0.003416504478082061, 0.05951627343893051, -0.06313164532184601, 0.028328364714980125, -0.044553760439157486, 0.04789142683148384, -0.04477570205926895, -0.04981183260679245, -0.01129202451556921, 0.029305845499038696, -0.002198653994128108, -0.019216123968362808, 0.02852572500705719, -0.04789981618523598, -0.0098142484202981, -0.011322716251015663, 0.01634843647480011, 0.031514331698417664, -0.029041489586234093, 0.02062220685184002 ]
[ -0.09630144387483597, -0.013589073903858662, -0.023539459332823753, -0.028731608763337135, 0.026899108663201332, -0.04062787443399429, 0.03445540741086006, 0.01888934336602688, 0.023356305435299873, -0.001899166963994503, 0.007316620089113712, -0.02973189204931259, 0.005700352136045694, -0.026484157890081406, 0.07528527826070786, 0.018010947853326797, -0.022995464503765106, -0.04813234135508537, 0.011206667870283127, 0.07158048450946808, 0.026870988309383392, -0.02278805896639824, -0.02944190986454487, -0.02024393528699875, 0.00841342844069004, 0.03033197484910488, 0.011107755824923515, -0.04666455462574959, 0.0022300558630377054, -0.18846307694911957, 0.008803606033325195, 0.0326610803604126, 0.01520624291151762, -0.017529785633087158, 0.015068739652633667, 0.05952993407845497, 0.05529958754777908, 0.03944415599107742, 0.035469476133584976, 0.05145386978983879, -0.007329751271754503, -0.0060639409348368645, -0.03751293569803238, -0.01659359596669674, 0.036893829703330994, 0.012259219773113728, -0.007943974807858467, -0.029141737148165703, -0.017534583806991577, 0.004368144553154707, -0.05807977914810181, -0.03251146897673607, -0.028466803953051567, -0.012278757989406586, 0.02147793583571911, 0.003787553869187832, 0.06672947853803635, 0.03995007649064064, 0.027361106127500534, 0.008953101933002472, 0.016311174258589745, -0.03446325287222862, -0.15415945649147034, 0.09049297124147415, -0.004710095934569836, 0.03246704116463661, 0.006705311127007008, -0.03912805765867233, -0.007988209836184978, 0.053333383053541183, 0.026096725836396217, -0.009471763856709003, -0.04871992766857147, 0.056099168956279755, 0.007851180620491505, -0.02822275646030903, 0.013473927974700928, 0.031080439686775208, 0.025131594389677048, -0.011495226994156837, -0.09316346794366837, -0.001817720360122621, 0.022443540394306183, 0.0226120725274086, -0.028652112931013107, 0.03892192617058754, 0.009625321254134178, 0.01723729446530342, -0.00033377957879565656, 0.016521556302905083, 0.049212515354156494, 0.008015545085072517, 0.04464447498321533, 0.028714116662740707, -0.10922745615243912, 0.0016542315715923905, -0.018123894929885864, 0.008269877173006535, -0.05600009858608246, 0.4104706346988678, -0.0013550871517509222, -0.042202264070510864, 0.024753233417868614, 0.028284240514039993, -0.02291182242333889, 0.02221527323126793, 0.016643811017274857, -0.076839879155159, 0.04609232023358345, -0.03743964061141014, 0.015488536097109318, 0.02214895375072956, 0.03143995255231857, -0.05838794633746147, 0.01128346100449562, 0.05081377550959587, 0.052198685705661774, 0.02017909102141857, -0.04927396774291992, -0.018377715721726418, -0.028310004621744156, -0.0018833874491974711, 0.0175242330878973, 0.022878427058458328, 0.015485452488064766, -0.02511342614889145, 0.03181140124797821, 0.04623442515730858, 0.01678341254591942, 0.009196394123136997, 0.049540888518095016, -0.02523753233253956, -0.07614532858133316, 0.00898235384374857, 0.013634657487273216, 0.005334428511559963, 0.016919245943427086, -0.0438079871237278, -0.00004532540697255172, 0.005125704221427441, 0.01962227374315262, -0.011356836184859276, -0.010010789148509502, -0.012511402368545532, -0.06515193730592728, 0.14868147671222687, -0.0034602952655404806, -0.0048354994505643845, -0.0015223739901557565, -0.02003401890397072, -0.014904174953699112, 0.04435817524790764, -0.0572197400033474, -0.10553792864084244, 0.021814657375216484, 0.014727534726262093, 0.08677937090396881, -0.02897713892161846, -0.0790703147649765, -0.02122882567346096, -0.011845005676150322, -0.030020611360669136, -0.0684848502278328, 0.028008069843053818, 0.017475014552474022, -0.09925991296768188, -0.018610738217830658, 0.020841650664806366, -0.0027161785401403904, -0.050958145409822464, -0.011511290445923805, 0.005329044535756111, -0.04582787677645683, 0.009082775563001633, 0.04253274202346802, -0.007524610497057438, -0.037587959319353104, -0.018248390406370163, 0.0014494798379018903, 0.03662532567977905, -0.015472096391022205, 0.023728124797344208, -0.054361727088689804, -0.00782589241862297, -0.01127066183835268, -0.09986138343811035, -0.03454965725541115, 0.0037032540421932936, 0.008764911442995071, -0.0405392125248909, -0.04550029709935188, -0.03407302871346474, -0.06138647720217705, 0.09537158161401749, -0.0214622113853693, -0.029791446402668953, 0.017485039308667183, 0.0023301132023334503, -0.006537879351526499, -0.017585694789886475, 0.018391191959381104, 0.06808750331401825, 0.007996993139386177, 0.014489675872027874, -0.03249173238873482, 0.05238743871450424, 0.041015271097421646, -0.04871150478720665, 0.06817354261875153, 0.024240806698799133, -0.03921540826559067, -0.00703465286642313, -0.017240777611732483, 0.027247261255979538, -0.02750745229423046, -0.004494323395192623, 0.003386635100468993, 0.05566421523690224, 0.06804154068231583, 0.011777669191360474, -0.031496431678533554, -0.02915850840508938, 0.022039368748664856, -0.3269810974597931, -0.039245735853910446, -0.006398801226168871, -0.002524854615330696, -0.007466602139174938, -0.07657738775014877, 0.03550587594509125, -0.01699952781200409, -0.02651302143931389, -0.013607610017061234, 0.07258445024490356, -0.0439971424639225, 0.006523440591990948, -0.03477149084210396, 0.014521868899464607, 0.042261019349098206, -0.04236619547009468, -0.030915919691324234, -0.03515000641345978, -0.007288042921572924, -0.007195045240223408, -0.018823323771357536, 0.014574036933481693, -0.05595531314611435, -0.007867014035582542, -0.02481105737388134, 0.09731079638004303, -0.008071711286902428, 0.09929445385932922, -0.03547300770878792, 0.06214789301156998, -0.020394010469317436, -0.03284519910812378, -0.13895680010318756, 0.004991402383893728, -0.034658033400774, -0.04163254052400589, -0.022848881781101227, 0.009891600348055363, -0.04200988635420799, -0.013515643775463104, 0.013677049428224564, -0.04273005947470665, -0.02616308070719242, -0.03321890905499458, 0.0038762621115893126, -0.03211833909153938, -0.03246249631047249, -0.02432277798652649, 0.08590425550937653, 0.01256788894534111, 0.0038231771904975176, 0.025505701079964638, 0.01572253927588463, -0.0019043927313759923, -0.02228393219411373, -0.08126917481422424, 0.006186571437865496, -0.0015042639570310712, 0.030285725370049477, 0.032682210206985474, 0.06699546426534653, 0.029047800227999687, -0.06339386850595474, 0.008699570782482624, -0.01573384553194046, -0.013950647786259651, 0.02713869884610176, 0.04606758803129196, -0.08398166298866272, -0.014941009692847729, 0.10054090619087219, -0.04655706137418747, 0.03315303847193718, 0.0429534912109375, 0.04398295655846596, -0.029166584834456444, -0.035084810107946396, -0.019874753430485725, -0.010488984175026417, -0.018083181232213974, -0.0264024268835783, 0.041346482932567596, -0.01337096095085144, -0.008253021165728569, 0.05954756215214729, -0.01940964348614216, 0.015039212070405483, 0.044388167560100555, -0.030288279056549072, -0.023129723966121674, -0.014846250414848328, -0.017578249797225, -0.059178803116083145, 0.04248656705021858, -0.02639671601355076, -0.26075613498687744, 0.014218948781490326, 0.02092338539659977, 0.07499347627162933, -0.0036939489655196667, 0.02927352860569954, 0.011244003660976887, -0.03587690740823746, 0.022348422557115555, 0.01037745364010334, 0.05630984902381897, 0.039527617394924164, -0.0033170466776937246, 0.025905927643179893, 0.029983410611748695, 0.02554592676460743, 0.01762334257364273, 0.03892133757472038, 0.03601136803627014, -0.029403407126665115, 0.02220044657588005, -0.012139903381466866, 0.1554187685251236, 0.024023113772273064, 0.04765631631016731, 0.024446116760373116, 0.03212872892618179, 0.00684207072481513, 0.06253405660390854, 0.002301375847309828, -0.007755729835480452, 0.0024022392462939024, 0.11058847606182098, 0.03150559589266777, 0.05302368849515915, -0.0858037918806076, 0.014083359390497208, 0.01523156650364399, 0.04273248836398125, -0.026372991502285004, -0.01103109959512949, 0.033881641924381256, -0.048056453466415405, 0.05418582633137703, 0.08057761192321777, 0.015068938955664635, 0.022867003455758095, -0.015789594501256943, -0.05310522019863129, 0.008430742658674717, -0.028212962672114372, -0.009114991873502731, -0.007872269488871098, 0.02613893896341324, 0.022808363661170006, 0.04750863462686539, 0.010981583036482334, -0.04151822626590729, -0.02121664211153984, 0.023816591128706932, -0.012003697454929352, 0.019358674064278603, 0.0836857259273529, 0.010597093030810356, 0.0043211025185883045 ]
[ 0.006203285418450832, -0.00019934387819375843, -0.004571712110191584, -0.006061280611902475, -0.04101500287652016, 0.021222727373242378, 0.026347802951931953, -0.015900645405054092, -0.03286896273493767, 0.02479487471282482, -0.02136893756687641, -0.002948897425085306, 0.002898220205679536, 0.0013835837598890066, -0.0007116844644770026, 0.020164726302027702, 0.0007585263228975236, -0.03981272503733635, 0.010056977160274982, 0.00004154071939410642, -0.025108737871050835, 0.0022460194304585457, 0.013953269459307194, -0.02194075658917427, 0.0041086748242378235, -0.005595967639237642, 0.014110098592936993, -0.019162070006132126, 0.013219263404607773, -0.08951204270124435, 0.00883393082767725, -0.05004514008760452, -0.000137402763357386, -0.017336389049887657, -0.015242877416312695, 0.02898043394088745, 0.030407801270484924, 0.07329001277685165, 0.0023106890730559826, 0.021896271035075188, -0.006165309343487024, -0.02842484600841999, -0.011692613363265991, 0.0232988391071558, -0.016799479722976685, 0.027594659477472305, 0.0008721508202143013, -0.026566214859485626, 0.00006380825652740896, -0.021994052454829216, -0.007193233817815781, -0.014953423291444778, 0.0011073084315285087, 0.00013431381375994533, 0.045313701033592224, -0.002122556557878852, -0.0018511587986722589, -0.004927607718855143, -0.03716208413243294, -0.01773841492831707, -0.008673393167555332, -0.00867893360555172, -0.03358187526464462, -0.025712203234434128, 0.055513687431812286, -0.0337895043194294, -0.03307702764868736, -0.011561721563339233, 0.0053911879658699036, -0.015897220000624657, -0.022377310320734978, 0.038770172744989395, -0.01992625929415226, 0.01692683808505535, -0.028150582686066628, 0.0064743561670184135, 0.03172018378973007, 0.004974805749952793, 0.040288593620061874, -0.011398443020880222, -0.0046479180455207825, 0.02510875277221203, 0.034795764833688736, -0.03584405407309532, -0.018818985670804977, 0.03484483063220978, 0.016370438039302826, -0.051658034324645996, 0.006174817681312561, -0.020411504432559013, -0.010570039041340351, 0.03750082105398178, 0.04653278365731239, -0.02848437801003456, -0.10955491662025452, -0.004938694182783365, -0.03443972393870354, -0.021771548315882683, -0.00926923006772995, 0.8404937386512756, 0.0054483432322740555, 0.011226102709770203, 0.000006166700131871039, 0.004420150071382523, -0.0043230424635112286, -0.025507871061563492, 0.014217817224562168, -0.0005523902364075184, 0.010471018962562084, 0.06433717161417007, -0.004506184719502926, 0.03967804089188576, -0.0008989240159280598, 0.0387713722884655, 0.025202332064509392, -0.015789784491062164, 0.01312071643769741, -0.022620897740125656, -0.02479981817305088, 0.028790423646569252, 0.0034263739362359047, -0.007713667582720518, -0.006096558645367622, -0.004474648740142584, -0.014118131250143051, -0.15357406437397003, 0.05126176401972771, -9.045617108673634e-33, 0.05272797495126724, 0.0021742843091487885, 0.06308770924806595, 0.04755672812461853, 0.032398343086242676, 0.020420555025339127, 0.025290347635746002, 0.024119973182678223, 0.024110298603773117, -0.03645213320851326, -0.0068082259967923164, -0.008499437011778355, 0.0015677171759307384, 0.010721978731453419, 0.017834773287177086, 0.007882880978286266, -0.02130012959241867, 0.01761654019355774, -0.02016959898173809, -0.0026823098305612803, -0.0077653201296925545, 0.007859465666115284, 0.02034842036664486, 0.026340777054429054, 0.0013374376576393843, -0.049810755997896194, -0.012964433059096336, 0.013394597917795181, -0.025955816730856895, -0.05197446420788765, 0.0010940803913399577, -0.007115310523658991, -0.02058294415473938, 0.006495279259979725, 0.0011425100965425372, -0.04058628901839256, -0.010707506909966469, 0.019517287611961365, -0.05098896846175194, -0.05966560170054436, -0.030911119654774666, 0.0017345953965559602, -0.03259670361876488, 0.03326982632279396, -0.036625321954488754, -0.026869535446166992, 0.009776403196156025, 0.026351198554039, 0.016452303156256676, 0.02463868074119091, 0.000029233513487270102, 0.04698353633284569, -0.010514763183891773, 0.006922042928636074, -0.017219750210642815, 0.00002042840606009122, -0.005188269540667534, 0.011110968887805939, 0.011050610803067684, -0.03486630693078041, -0.001194674987345934, -0.018439989537000656, -0.035570088773965836, -0.0018633786821737885, -0.01098302099853754, -0.0469895601272583, -0.0037423085886985064, -0.05171912536025047, 0.013280719518661499, 0.0012111582327634096, -0.015688911080360413, 0.007843134924769402, -0.005403304938226938, -0.01904335618019104, -0.028128603473305702, -0.04074918478727341, 0.004301711916923523, 0.023740360513329506, -0.0001978394138859585, 0.03856230899691582, 0.017268382012844086, -0.01739932782948017, -0.03559213876724243, -0.0050980946980416775, -0.01331609021872282, 0.0036720207426697016, 0.014605472795665264, -0.0005962742143310606, 0.027444159612059593, 0.0251149982213974, 0.036991577595472336, 0.0009548246162012219, -0.01287805289030075, -0.01055225171148777, -0.004194783512502909, 8.615887230739715e-33, -0.010232611559331417, -0.031921789050102234, -0.026874955743551254, -0.01944960467517376, 0.04589575529098511, 0.0010097210761159658, -0.011961875483393669, 0.02227894775569439, -0.08139003068208694, -0.015154465101659298, 0.0050963046960532665, 0.013258484192192554, 0.021484375, 0.08500280976295471, 0.020913444459438324, -0.05361995846033096, 0.019127389416098595, -0.007884250953793526, 0.047479983419179916, 0.0140912514179945, 0.024153655394911766, 0.019459715113043785, -0.004378946032375097, -0.021488379687070847, 0.023134414106607437, 0.03388745337724686, -0.006881444249302149, -0.0025030081160366535, 0.006279804278165102, -0.021854380145668983, -0.005763996858149767, 0.012561295181512833, 0.007433413062244654, -0.04723714664578438, -0.021975066512823105, -0.0061868419870734215, -0.01504877582192421, 0.014050526544451714, 0.006863451562821865, 0.006334122736006975, -0.026487290859222412, -0.026858288794755936, -0.0054694307036697865, -0.001633984036743641, 0.015308813191950321, -0.001749042421579361, -0.022910092025995255, 0.0006032824167050421, -0.005452391691505909, 0.06499666720628738, -0.008965055458247662, -0.012546424753963947, -0.015086495317518711, 0.002135814633220434, 0.04199347272515297, -0.03256161883473396, -0.03133264183998108, -0.025248106569051743, 0.05733558163046837, -0.011494729667901993, -0.017868852242827415, 0.01535269059240818, -0.011414870619773865, 0.032286956906318665, -0.046799007803201675, -0.009626204147934914, 0.007807248272001743, 0.021163612604141235, -0.007357036229223013, -0.02802375704050064, -0.034909624606370926, -0.030040131881833076, 0.022172965109348297, 0.012773807160556316, -0.009021150879561901, -0.06433507800102234, -0.006588440854102373, -0.038678042590618134, -0.010895292274653912, 0.0010523321107029915, -0.0039310879074037075, -0.031201371923089027, 0.05039159581065178, -0.008135819807648659, -0.0040204813703894615, -0.015797724947333336, 0.023293357342481613, -0.012595176696777344, -0.030076544731855392, 0.030386075377464294, 0.006061024032533169, 0.012779866345226765, -0.03886200487613678, 0.004918449558317661, -0.008406657725572586, -1.391749471224557e-8, -0.0077140056528151035, 0.016416000202298164, -0.013822133652865887, 0.03647768497467041, 0.034156426787376404, 0.002492600353434682, -0.02087152935564518, -0.014408140443265438, 0.018184272572398186, 0.01162675116211176, 0.027894597500562668, 0.03864068537950516, 0.03360161557793617, 0.006283751223236322, 0.05611252412199974, -0.052323587238788605, -0.021733377128839493, -0.01801133155822754, 0.011255682446062565, -0.005867247004061937, -0.005969963036477566, 0.0655168667435646, -0.01699412800371647, -0.0073024979792535305, 0.035731300711631775, 0.060740187764167786, 0.0274844691157341, -0.08062756061553955, 0.015266100876033306, 0.0013967056293040514, 0.007416268810629845, -0.0021005210001021624, 0.03782080113887787, 0.011416110210120678, -0.0252829622477293, 0.018397122621536255, -0.019344331696629524, 0.04925132915377617, -0.010105922818183899, -0.02380569651722908, 0.017953790724277496, -0.005206826608628035, 0.003612782806158066, 0.0027055612299591303, -0.0003490776871331036, 0.006412389688193798, -0.015595877543091774, 0.03040558658540249, 0.01479011494666338, -0.028795761987566948, -0.010397369973361492, -0.011743166483938694, 0.051642708480358124, 0.04352409765124321, 0.0075509981252253056, -0.005726512987166643, -0.018255962058901787, -0.005957013461738825, 0.03717116266489029, 0.007944580167531967, 0.01073721144348383, 0.006012527272105217, -0.02564178593456745, -0.034923505038022995 ]
coding-findorcreateuser-and-similar-methods
https://markhneedham.com/blog/2010/04/09/coding-findorcreateuser-and-similar-methods
false
2010-04-30 07:12:26
Coding: Generalising too early
[ "coding" ]
[ "Coding" ]
I've previously written about the value of http://www.markhneedham.com/blog/2009/10/31/coding-copypaste-then-refactor/[adding] http://www.markhneedham.com/blog/2009/08/30/coding-group-the-duplication-then-remove-it/[duplication] to code before removing it and we had an interesting situation this week where we failed to do that and ended up generalising a piece of code too early to the point where it actually didn't solve the problem anymore. The problem we were trying to solve was around the validation of some dependent fields and to start with we had this requirement: [source,text] ---- Given 2 fields... Field 1 Field 2 - Can be empty if Field 1 is 'Foo'. Otherwise must have a value. ---- We wrote an object that looked a bit like this to do that logic: [source,csharp] ---- public class DependentOnField1 : IValidateFields { public bool IsSatisfied(Field field) { if(OtherFieldIsFoo()) { return true; } return string.IsNullOrEmpty(field.Value); } } ---- Later on we had the following requirement: [source,text] ---- Given 2 more fields... Field 3 Field 4 - Must have a value of more than 0 if Field 3 is 'Bar'. Otherwise can be empty. ---- It seemed at first glance that they were the same type of validation because in both cases there is talk of dependence between fields. We started refactoring the 'DependentOnField1' object into a state where we would be able to use it for both cases. This meant that we needed to parameterise the object so that we could vary the dependent field. We eventually ended up with an interface that could be called like this: [source,csharp] ---- var field1DependenceValidator = DependentOn.Field(field1); ---- [source,csharp] ---- public class DependentOn : IValidateFields { public static DependentOn Field(Field field) { return new DependentOn(field); } } ---- Unfortunately while refactoring this object we hadn't taken into account the fact that the requirement for fields 3 and 4 is slightly different to that for fields 1 and 2. With fields 1 & 2 we only needed one condition to be true whereas with fields 3 and 4 two conditions needed to be true - field 3 must be 'Bar' AND field 4 must be greater than 0. We initially tried to hack in the fields 3/4 requirement like this: [source,csharp] ---- public class DependentOn : IValidateFields { public bool IsSatisfied(Field field) { if(OtherFieldIsX() && Double.Parse(field.Value) > 0) { return true; } return string.IsNullOrEmpty(field.Value); } } ---- Unfortunately that breaks the way that validation works for fields 1 & 2 and every other attempt we made seemed to make the situation worse and worse until after about half an hour of wrestling with this we decided to revert everything and just create a new object for this new type of validation. We would *accept some duplication until we were able to see a more meaningful abstraction that we could pull out*. Dave Cameron, who first taught me this approach, recently wrote http://intwoplacesatonce.com/2010/04/multiple-return-values-and-refactoring-javascript/[a post describing how he removed some duplication in JavaScript] code and you can see from the initial example in his post that he waited until he was exactly sure where the duplication was before getting rid of it. I think this is the best approach and the rule of thumb seems to be that we should wait until we have the same thing 3 times before trying to remove the duplication.
null
null
[ 0.00575961684808135, -0.0035639721900224686, -0.01359155960381031, 0.010018566623330116, 0.07556015253067017, 0.009678627364337444, 0.016883334144949913, 0.01534840278327465, -0.006800898816436529, -0.012705203145742416, -0.0008821197552606463, 0.017785942181944847, -0.08129718899726868, 0.034376367926597595, -0.035767924040555954, 0.0718158632516861, 0.09326021373271942, -0.029922015964984894, -0.0002406657295068726, -0.0036174545530229807, 0.012597622349858284, 0.08332522958517075, -0.0070963636972010136, 0.04554397240281105, 0.05381050333380699, 0.040723979473114014, -0.016284098848700523, 0.006511547602713108, -0.03475134074687958, -0.016707994043827057, 0.026288822293281555, 0.026065144687891006, -0.011355751194059849, 0.005933887325227261, -0.01558239758014679, -0.017337799072265625, 0.014204953797161579, 0.013225750997662544, -0.00282355141825974, 0.02144319750368595, -0.06616503745317459, 0.010623963549733162, -0.011857027187943459, 0.008043874986469746, -0.04202733561396599, -0.006090598180890083, -0.029571620747447014, -0.010144825093448162, -0.06922268122434616, -0.026997078210115433, -0.06296569108963013, 0.011536889709532261, -0.06669533252716064, 0.02349865436553955, -0.017555447295308113, 0.06206263601779938, 0.009017612785100937, -0.08606115728616714, 0.027195366099476814, -0.043527331203222275, -0.014080463908612728, -0.005572164431214333, -0.029197219759225845, 0.05611748993396759, -0.003910232335329056, -0.025761445984244347, -0.019221777096390724, 0.036992788314819336, -0.04644704982638359, -0.02940811961889267, -0.014984450303018093, 0.003980765584856272, -0.0006325200665742159, -0.029433762654662132, 0.0025916490703821182, -0.030631832778453827, -0.015487316064536572, 0.03782125189900398, 0.013752206228673458, 0.08391005545854568, -0.009488724172115326, 0.001392903970554471, 0.02107795886695385, -0.01784401573240757, 0.045457370579242706, -0.034525077790021896, 0.005820917896926403, -0.005105204880237579, -0.050017714500427246, 0.033639710396528244, 0.024802647531032562, -0.0011917022056877613, -0.006032259203493595, 0.029932180419564247, 0.017719386145472527, -0.019761787727475166, 0.03377271816134453, -0.00011627580533968285, 0.005697533022612333, -0.011536196805536747, -0.042131610214710236, -0.005789334885776043, 0.028769493103027344, 0.010220374912023544, -0.08187425136566162, -0.023176152259111404, -0.01754526048898697, -0.011859054677188396, 0.034813206642866135, 0.002383538754656911, -0.0394648015499115, 0.029309401288628578, -0.037071216851472855, 0.013694914989173412, -0.08659721165895462, 0.0077631911262869835, -0.009697364643216133, 0.031100312247872353, 0.01459755189716816, 0.047228988260030746, 0.03149678185582161, -0.0022002027835696936, -0.017292620614171028, 0.07674956321716309, 0.015380172058939934, 0.04550665616989136, -0.03737514466047287, 0.06964964419603348, -0.022274164482951164, -0.07716351747512817, -0.02984829805791378, 0.029980601742863655, -0.020891161635518074, -0.0003499947488307953, 0.014882344752550125, -0.029157007113099098, -0.013648652471601963, 0.01929069124162197, 0.05564730241894722, 0.035245154052972794, -0.03386431187391281, -0.046175599098205566, 0.011972716078162193, 0.0028327463660389185, 0.006586167961359024, 0.011933078989386559, -0.019199825823307037, -0.004746818449348211, -0.00005998400956741534, 0.03905382379889488, 0.007713317405432463, 0.06739968806505203, 0.055587802082300186, -0.026887254789471626, 0.0019987174309790134, 0.0628138855099678, -0.001661049434915185, 0.026110196486115456, -0.02755272574722767, 0.02462821453809738, 0.05173066630959511, 0.034288715571165085, 0.0035871004220098257, 0.03688308596611023, 0.02480420470237732, 0.004742764867842197, -0.0050282105803489685, 0.031878598034381866, -0.019463295117020607, -0.015929339453577995, -0.060649678111076355, -0.04796801507472992, 0.05332164466381073, -0.0715368390083313, -0.03182310611009598, 0.05822698771953583, 0.07034646719694138, 0.0018417955143377185, 0.07073869556188583, 0.018437732011079788, -0.0745023638010025, 0.0053819091990590096, 0.0032208238262683153, -0.01927419938147068, -0.013928791508078575, 0.0011238635051995516, 0.0649840384721756, 0.031439751386642456, 0.0022682035341858864, 0.0351107120513916, -0.07045113295316696, -0.04844428226351738, -0.02053145319223404, -0.022945117205381393, 0.06390120834112167, -0.045981429517269135, -0.030847767367959023, 0.09660712629556656, 0.017644723877310753, 0.04106792435050011, 0.028021283447742462, 0.0003436756960581988, -0.0009238832863047719, 0.005724627524614334, -0.047713618725538254, 0.03639407828450203, 0.04553353041410446, 0.012232513166964054, -0.04447168856859207, 0.012810100801289082, -0.00663134828209877, 0.023106178268790245, 0.03401381894946098, -0.009587283246219158, 0.014398357830941677, 0.04895557835698128, 0.0037453030236065388, -0.021451422944664955, 0.054055098444223404, -0.08595578372478485, 0.008265573531389236, -0.016995085403323174, 0.0028114630840718746, 0.015317816287279129, 0.009844904765486717, 0.10993941873311996, 0.0409158319234848, -0.027587372809648514, -0.06858456879854202, -0.0024846866726875305, 0.022696884348988533, -0.012979351915419102, 0.008801599964499474, -0.04451242461800575, 0.012775498442351818, -0.020550670102238655, -0.02224600873887539, 0.02592223510146141, 0.0029073930345475674, -0.012383664958178997, 0.029606807976961136, 0.07046212255954742, -0.026225119829177856, 0.05444749817252159, -0.024668022990226746, -0.026887090876698494, -0.014932212419807911, -0.030344288796186447, -0.06680223345756531, 0.00673776725307107, 0.009718173183500767, -0.0037487479858100414, 0.0642300546169281, -0.013937217183411121, -0.03589167445898056, -0.015273486264050007, -0.04681239277124405, 0.010014211758971214, 0.016228707507252693, 0.05208844691514969, 0.0032179926056414843, 0.05628889054059982, 0.0030938945710659027, 0.01086810976266861, -0.01689605601131916, -0.04079001769423485, 0.0036069245543330908, 0.026390179991722107, 0.027156619355082512, 0.016790619120001793, 0.01797669194638729, 0.01116472389549017, 0.04082627594470978, 0.020601170137524605, 0.004458332434296608, -0.01575866900384426, 0.03751007467508316, 0.007453533820807934, -0.025537265464663506, -0.05129295587539673, -0.052086327224969864, 0.025175346061587334, -0.03055700846016407, -0.0547107458114624, 0.005520714446902275, -0.0849216878414154, 0.030079927295446396, -0.06982793658971786, -0.07331717014312744, 0.00013189931632950902, 0.009573541581630707, 0.012070322409272194, -0.010847802273929119, 0.027140922844409943, 0.05664558336138725, 0.006116329226642847, -0.0037473998963832855, 0.003060124348849058, 0.009247432462871075, 0.02718896046280861, -0.024779772385954857, 0.010522783733904362, 0.03202446550130844, -0.01107708364725113, 0.022837020456790924, -0.033845171332359314, 0.018624072894454002, 0.008127674460411072, -0.26607027649879456, 0.03900144249200821, -0.03422486409544945, -0.06859336048364639, 0.022746607661247253, -0.014620642177760601, 0.043292634189128876, -0.03852807730436325, -0.03137262538075447, 0.06585362553596497, -0.006552415434271097, -0.06382881850004196, 0.001220130710862577, 0.07175616174936295, 0.007766845170408487, 0.019314266741275787, 0.02111489698290825, -0.018280645832419395, -0.0012562486808747053, 0.05621308088302612, -0.025333262979984283, -0.0551333874464035, -0.017929429188370705, 0.045094285160303116, 0.01950022019445896, 0.05413561314344406, -0.06842615455389023, 0.042044833302497864, -0.03515852242708206, -0.0008900122484192252, -0.0047467476688325405, -0.001004667836241424, 0.01718059927225113, -0.01804407872259617, -0.029085839167237282, 0.0021154959686100483, -0.005372925661504269, 0.05253279209136963, -0.005614733789116144, 0.024611445143818855, -0.03467295318841934, -0.05197739228606224, -0.0006412997026927769, 0.0038412006106227636, 0.07844673842191696, -0.02171182818710804, -0.0458538718521595, -0.014600302092730999, -0.0489143431186676, 0.08924741297960281, -0.041875049471855164, -0.04176163300871849, -0.017803911119699478, 0.052821576595306396, 0.00816384982317686, -0.00123164476826787, 0.017082370817661285, -0.021001165732741356, -0.024549366906285286, -0.024288378655910492, -0.021679991856217384, -0.03101961687207222, -0.012067019008100033, -0.04882759600877762, 0.016694383695721626, -0.07012636214494705, -0.06924397498369217, -0.004419786389917135, 0.06787489354610443, 0.02599867433309555, -0.018000083044171333, -0.028979334980249405, 0.0020732637494802475, -0.11117076128721237, -0.005160136613994837, -0.05219724401831627, -0.005762636195868254, -0.022901184856891632, -0.024555079638957977, 0.06787750869989395, -0.005496053025126457, -0.042872995138168335, 0.03255072608590126, 0.028213733807206154, 0.0017340652411803603, -0.0013855966972187161, 0.02632772922515869, 0.031085802242159843, -0.04233421012759209, -0.006569612305611372, 0.0803903192281723, 0.020224345847964287, 0.011762076988816261, -0.03364849090576172, 0.010754846967756748, 0.05058705806732178, 0.04505746439099312, -0.02603674866259098, 0.0036250280681997538, 0.004884046968072653, 0.05451124161481857, -0.0426027737557888, 0.0432245135307312, -0.07096149027347565, -0.005921476520597935, -0.030532758682966232, -0.04915371164679527, 0.03818594291806221, 0.017230186611413956, 0.00900820828974247, -0.01799239031970501, -0.03954249620437622, 0.0029640181455761194, -0.06278050690889359, -0.06515102088451385, -0.02308911457657814, -0.001931742182932794, 0.04133736714720726, -0.01301697175949812, -0.028994163498282433, -0.03491096943616867, 0.02869187667965889, 0.012890234589576721, -0.005640508607029915, -0.06861221045255661, -0.0212982427328825, 0.011299931444227695, -0.01331685297191143, -0.011445201002061367, 0.01729804277420044, -0.03615119308233261, 0.052482880651950836, -0.015502503141760826, -0.026549331843852997, -0.012939777225255966, 0.02140505425632, -0.00452119717374444, -0.027874082326889038, -0.026098446920514107, -0.028834447264671326, 0.031119121238589287, -0.018292946740984917, 0.017258789390325546, 0.022198019549250603, 0.04824109748005867, -0.026878075674176216, 0.04248887300491333, -0.0015285116387531161, -0.006393215153366327, 0.025337424129247665, 0.022932907566428185, -0.05800621956586838, 0.003820523852482438, -0.04690689593553543, -0.04481929540634155, -0.03249221295118332, 0.025166373699903488, -0.030078686773777008, -0.005556677933782339, -0.01641695946455002, 0.013353177346289158, -0.04142051935195923, -0.027329789474606514, -0.036446794867515564, 0.016351986676454544, 0.052435390651226044, -0.024413615465164185, 0.03552637994289398, -0.03006918914616108, -0.00019960320787504315, 0.0028044986538589, -0.006158985197544098, -0.03394100069999695, 0.012231000699102879, 0.013476678170263767, 0.02907770872116089, 0.008671705611050129, -0.015073643065989017, 0.050064604729413986, 0.023060662671923637, 0.008306596428155899, -0.03686606138944626, 0.010815862566232681, -0.00016214439528994262, 0.034475479274988174, -0.012416001409292221, 0.025849640369415283, -0.021083299070596695, -0.010463466867804527, 0.0098296869546175, -0.03510173037648201, -0.01667427271604538, -0.02833274006843567, 0.0639609768986702, -0.031161857768893242, -0.06412135064601898, 0.007084528915584087, 0.02183648571372032, 0.03356700390577316, 0.013331105932593346, 0.007517495658248663, 0.005893934518098831, -0.014698957093060017, -0.0011127900797873735, 0.06196415424346924, -0.043271008878946304, 0.01622508279979229, -0.013018489815294743, 0.005002279300242662, 0.012459596619009972, 0.019906064495444298, -0.038224779069423676, -0.03913594037294388, -0.024321218952536583, 0.009999440051615238, -0.01918741874396801, -0.005538091529160738, -0.010107668116688728, 0.010723831132054329, -0.020249176770448685, 0.006911360193043947, 0.00403567822650075, -0.007576396688818932, -0.006920314859598875, -0.0152902165427804, 0.040497202426195145, -0.016803015023469925, 0.035431522876024246, 0.028680341318249702, -0.035457272082567215, 0.012995394878089428, -0.02169816754758358, 0.007224036380648613, 0.022990785539150238, -0.020618155598640442, -0.032963626086711884, -0.05580268055200577, 0.04637704789638519, -0.013390165753662586, 0.033253613859415054, 0.0127918291836977, -0.03837710991501808, -0.00968645978718996, -0.006839921697974205, -0.010681108571588993, -0.000754513603169471, -0.02207101322710514, -0.021606016904115677, 0.024207668378949165, 0.044552870094776154, 0.03000904805958271, 0.0346984788775444, -0.026207352057099342, -0.0017952191410586238, 0.07110815495252609, -0.04004715755581856, -0.02410534955561161, -0.024971535429358482, -0.07455376535654068, 0.027250880375504494, 0.050136204808950424, 0.025553395971655846, -0.034520793706178665, 0.020658833906054497, 0.06656526029109955, 0.00941493734717369, 0.02829025872051716, -0.012644261121749878, 0.03434840217232704, -0.051874078810214996, -0.004320082720369101, -0.0610797144472599, 0.020125633105635643, 0.05505676940083504, 0.006450866814702749, -0.033491238951683044, -0.047048211097717285, -0.02442724071443081, 0.023254981264472008, -0.05737484619021416, -0.014914736151695251, 0.029419003054499626, 0.008686327375471592, 0.018715359270572662, 0.011393334716558456, -0.04758110269904137, 0.013347439467906952, 0.019034558907151222, -0.03462940454483032, -0.04684838280081749, -0.03465776517987251, 0.05380188301205635, 0.024047166109085083, -0.007048190571367741, -0.04905370995402336, -0.000598156068008393, 0.0653562918305397, 0.037154361605644226, 0.045389145612716675, 0.026987306773662567, -0.019847627729177475, 0.03323604539036751, 0.027782682329416275, -0.021981090307235718, 0.003713263664394617, 0.018470818176865578, -0.009179595857858658, -0.05748821794986725, -0.01384815014898777, 0.02351916767656803, -0.03198762238025665, -0.04865255579352379, 0.06651133298873901, 0.013145651668310165, -0.015114633366465569, -0.06246694549918175, -0.01729293167591095, -0.02968353033065796, -0.01003402378410101, -0.004615707788616419, -0.00018101045861840248, -0.05235905572772026, 0.06605325639247894, 0.015614286065101624, -0.009512990713119507, 0.07257990539073944, -0.004074031487107277, 0.00793727021664381, -0.042982134968042374, 0.07124196738004684, 0.07438410818576813, 0.044301215559244156, -0.023045869544148445, 0.05755241960287094, -0.031544867902994156, -0.04235564544796944, 0.019503774121403694, -0.02040606550872326, 0.0019428033847361803, -0.012647394090890884, 0.01203226763755083, 0.08207858353853226, 0.029530107975006104, 0.05806414783000946, -0.035834185779094696, -0.02642601914703846, 0.021175209432840347, 0.011406482197344303, 0.0307383481413126, 0.037956416606903076, 0.02286398597061634, -0.013864226639270782, 0.04042866826057434, -0.0476328507065773, 0.030980726704001427, -0.03859522566199303, -0.02066965401172638, 0.02034616842865944, -0.0031098576728254557, 0.008727598004043102, -0.0019309145864099264, 0.047631725668907166, 0.055987920612096786, -0.013431424275040627, 0.012554199434816837, -0.014191332273185253, 0.01906377077102661, 0.020230058580636978, -0.036124613136053085, -0.011977815069258213, -0.037385858595371246, -0.01818993128836155, -0.013581875711679459, -0.011011193506419659, -0.021122297272086143, -0.0027364043053239584, 0.04232612997293472, -0.017970111221075058, 0.03560629114508629, 0.041484035551548004, 0.028984511271119118, -0.03560842573642731, -0.07607930898666382, -0.033429861068725586, -0.05645115673542023, -0.07674601674079895, -0.004448969382792711, 0.02193569950759411, -0.0075982664711773396, -0.023931309580802917, -0.013168604113161564, -0.03299299627542496, -0.015805812552571297, 0.07112807035446167, -0.018258357420563698, -0.03171747177839279, 0.028263390064239502, -0.02047787420451641, 0.03628357872366905, 0.024509267881512642, 0.007193157449364662, -0.018435845151543617, -0.01705842651426792, -0.03018168918788433, -0.012130936607718468, 0.03876021131873131, 0.012237362563610077, 0.003974683582782745, -0.08212831616401672, 0.006817581597715616, 0.03240002691745758, -0.0269586443901062, -0.06847622245550156, 0.03819958493113518, -0.008820891380310059, -0.033686667680740356, 0.05729237198829651, -0.01853453367948532, -0.02393786609172821, -0.01594081148505211, -0.0013324673054739833, 0.027558960020542145, 0.03666100278496742, 0.0488353967666626, -0.02631467767059803, 0.06309546530246735, 0.0363897904753685, -0.02875860221683979, -0.012289263308048248, 0.007001359015703201, -0.02087775059044361, -0.018127016723155975, -0.03708497807383537, -0.0389748141169548, -0.05815847963094711, -0.04553232342004776, -0.01705481857061386, 0.026883698999881744, -0.03585892543196678, -0.037767279893159866, -0.009394011460244656, 0.03742312639951706, -0.04971920698881149, 0.024090489372611046, -0.031110644340515137, 0.05995296314358711, -0.013560222461819649, -0.012083015404641628, -0.0027493187226355076, 0.005870938301086426, 0.018014563247561455, 0.03058359958231449, 0.01637614518404007, -0.02511804737150669, 0.0036372393369674683, -0.01679559424519539, 0.013165348209440708, 0.03290163353085518, -0.007031933404505253, 0.018912162631750107 ]
[ -0.10987396538257599, -0.004707081709057093, -0.03883040323853493, -0.060694370418787, 0.039288513362407684, -0.03900327533483505, 0.001313083223067224, 0.04563932120800018, 0.020619302988052368, 0.009905136190354824, 0.009686129167675972, -0.05276567488908768, 0.0028067973908036947, -0.020343922078609467, 0.06778603047132492, 0.00594147015362978, -0.049540504813194275, -0.04275604337453842, -0.008459714241325855, 0.020268980413675308, 0.060159724205732346, -0.038806647062301636, -0.027782464399933815, -0.0332392156124115, 0.02387905865907669, 0.04355728253722191, 0.004434492904692888, -0.034759487956762314, 0.013038430362939835, -0.22338750958442688, 0.006641664542257786, -0.0043925452046096325, -0.008129891939461231, -0.0114084891974926, 0.009490519762039185, 0.030707160010933876, 0.016397031024098396, 0.041427336633205414, 0.008197521790862083, 0.07745185494422913, -0.022349439561367035, 0.018353134393692017, -0.042947620153427124, -0.04801253601908684, 0.017722146585583687, 0.005284779705107212, -0.028644872829318047, -0.03303816169500351, 0.011876355856657028, 0.018152084201574326, -0.03630639985203743, -0.004441459197551012, -0.039345115423202515, -0.007375216111540794, -0.020814666524529457, 0.033592358231544495, 0.060924187302589417, 0.07733265310525894, 0.006325414404273033, 0.001323321950621903, 0.014022122137248516, -0.006850138306617737, -0.11828947812318802, 0.0985419750213623, 0.03460786119103432, 0.06104278564453125, 0.0018527646316215396, -0.05507054924964905, -0.02491743676364422, 0.07464941591024399, 0.029912473633885384, -0.004031188320368528, -0.011290757916867733, 0.05325083062052727, 0.02372007444500923, -0.008766032755374908, -0.008902328088879585, 0.020333049818873405, 0.027088789269328117, -0.026354562491178513, -0.06368973851203918, -0.00577600346878171, -0.0023488407023251057, -0.006649065297096968, -0.01408846490085125, 0.0219691451638937, -0.004771361127495766, 0.02073570154607296, 0.015213287435472012, 0.004986166022717953, 0.06119205802679062, -0.023516183719038963, 0.03998522832989693, 0.020846761763095856, -0.10373044013977051, 0.01827474869787693, -0.0277919489890337, 0.0005055684014223516, -0.04811045899987221, 0.41124454140663147, -0.03989524766802788, -0.04120820015668869, 0.007490967866033316, 0.045643437653779984, -0.012054646387696266, 0.0026710762176662683, -0.009991866536438465, -0.04311385005712509, 0.024010837078094482, -0.061580412089824677, 0.0019694913644343615, 0.003576042363420129, 0.06935213506221771, -0.0523177795112133, -0.024308593943715096, 0.03538109362125397, 0.02988078072667122, -0.001382306101731956, -0.002647567540407181, 0.015382904559373856, 0.0048689693212509155, 0.012593286111950874, 0.015883442014455795, 0.04100854694843292, -0.007557478733360767, -0.026505064219236374, 0.007247845642268658, 0.07394170761108398, 0.02269921451807022, 0.029207587242126465, 0.04212626442313194, -0.057307057082653046, -0.06848880648612976, -0.03136330842971802, 0.01710614562034607, 0.010053066536784172, 0.015311665832996368, -0.026055019348859787, 0.028323056176304817, 0.04451087489724159, 0.010363558307290077, -0.03502347320318222, 0.010901855304837227, 0.01985950954258442, -0.04595857486128807, 0.12376207858324051, -0.03593447059392929, -0.03901975601911545, -0.028216026723384857, -0.011781728826463223, -0.026895683258771896, 0.04402843117713928, -0.037438105791807175, -0.06103043258190155, 0.011376443319022655, 0.01692475751042366, 0.047373272478580475, -0.019784320145845413, -0.04084927588701248, -0.041551221162080765, -0.017349354922771454, -0.03579575568437576, -0.058808401226997375, 0.07375551760196686, 0.024001136422157288, -0.08218283951282501, -0.02530590258538723, 0.009419994428753853, 0.016275255009531975, -0.053663935512304306, -0.0057090409100055695, 0.0020099154207855463, -0.018180307000875473, -0.015063726343214512, 0.023192908614873886, -0.022859452292323112, -0.014952546916902065, 0.00691045681014657, 0.045283716171979904, 0.03129240870475769, 0.022223560139536858, 0.04395528510212898, -0.06411777436733246, 0.02276998944580555, -0.03232555463910103, -0.07796623557806015, -0.042579829692840576, -0.0054397559724748135, -0.00672403909265995, 0.0026407812256366014, -0.03007473237812519, -0.011638669297099113, -0.08411045372486115, 0.06842417269945145, -0.03702695667743683, -0.018470672890543938, 0.001531202462501824, -0.00023788056569173932, 0.012333695776760578, -0.013309636153280735, 0.005541779100894928, 0.04993008077144623, 0.0174038615077734, 0.017468620091676712, -0.05709175765514374, 0.027710555121302605, 0.059744976460933685, -0.02544538863003254, 0.050985150039196014, 0.04966028407216072, -0.04222919046878815, -0.011046872474253178, -0.013455251231789589, -0.016917284578084946, -0.000048771169531391934, -0.00163402094040066, -0.0191586222499609, 0.015930328518152237, 0.01978389173746109, 0.009822692722082138, -0.0472656674683094, -0.03256794065237045, 0.03326954320073128, -0.3649255633354187, -0.061240725219249725, -0.021425871178507805, -0.022927340120077133, -0.012778938747942448, -0.06459017843008041, 0.03493204340338707, -0.02440803498029709, -0.05087253078818321, 0.003761040046811104, 0.06555153429508209, -0.01785094104707241, -0.010707519948482513, -0.0567421056330204, -0.00479132030159235, -0.003229273948818445, -0.02626519836485386, -0.03853816166520119, -0.03729851171374321, 0.037382397800683975, 0.010593194514513016, 0.004953158553689718, 0.015452147461473942, -0.05078956484794617, 0.034860074520111084, -0.07592534273862839, 0.09710075706243515, -0.02357364632189274, 0.07200738787651062, -0.038415245711803436, 0.04634157940745354, 0.01499187108129263, 0.020370949059724808, -0.07782182842493057, 0.010287648998200893, -0.025852296501398087, -0.0643535852432251, 0.008034669794142246, 0.012485231272876263, -0.008067908696830273, -0.0057359845377504826, 0.0054651228711009026, -0.050933051854372025, -0.05302180349826813, -0.014977172017097473, -0.0036085110623389482, -0.015752974897623062, -0.04543625935912132, -0.011263353750109673, 0.10695411264896393, 0.01776568964123726, -0.009377998299896717, 0.019927704706788063, 0.029178529977798462, 0.009290638379752636, -0.015423868782818317, -0.0658976212143898, 0.04572669789195061, 0.019965335726737976, -0.0019270011689513922, 0.039942845702171326, 0.05739974603056908, 0.027124108746647835, -0.04407758638262749, -0.0006432182854041457, 0.02152509056031704, -0.01139263529330492, -0.011682628653943539, 0.03788338601589203, -0.029459049925208092, -0.03439837694168091, 0.07328255474567413, -0.01046534813940525, -0.013255682773888111, 0.014831754378974438, 0.05086333677172661, -0.03692476078867912, 0.026506850495934486, 0.0020659842994064093, -0.0010933071607723832, 0.04282725602388382, 0.025263315066695213, 0.061536286026239395, 0.01334827858954668, 0.009313823655247688, 0.02256372943520546, 0.00780221913009882, 0.003948129713535309, 0.06365141272544861, -0.03868325799703598, -0.0364205501973629, -0.020060230046510696, -0.019464191049337387, -0.05185312032699585, 0.0719296932220459, -0.033308617770671844, -0.2518698275089264, -0.007117097266018391, 0.060596928000450134, 0.07570894807577133, 0.026371926069259644, 0.054043639451265335, 0.03566407039761543, -0.040253087878227234, 0.0010825684294104576, -0.004639363847672939, 0.0032100724056363106, 0.03784177079796791, 0.04282880574464798, -0.03239208459854126, 0.031722038984298706, -0.01777423918247223, 0.04335520416498184, -0.022541817277669907, 0.024882661178708076, -0.013353431597352028, 0.026344381272792816, -0.0036261153873056173, 0.16354171931743622, 0.020049137994647026, 0.037327926605939865, 0.014212353155016899, 0.02375282160937786, 0.012529909610748291, 0.08378981053829193, 0.030337419360876083, 0.007003606762737036, -0.0000033408880426577525, 0.10548607259988785, -0.00015696299669798464, 0.03420228138566017, -0.08007801324129105, -0.03732655569911003, 0.03272204473614693, 0.024209387600421906, -0.01680230163037777, -0.0067817047238349915, 0.014958388172090054, -0.06749974191188812, -0.004737061448395252, 0.09818927943706512, 0.04084037244319916, -0.00202423008158803, -0.026486339047551155, -0.037673212587833405, -0.009273460134863853, -0.04260614514350891, -0.00616820715367794, 0.016119958832859993, -0.03847330063581467, -0.01234746165573597, 0.06995953619480133, 0.01298558246344328, -0.022371655330061913, -0.027601785957813263, 0.006154240574687719, 0.006978107616305351, 0.018993627279996872, 0.11673659831285477, 0.023772329092025757, 0.01346179936081171 ]
[ -0.012172750197350979, 0.003985620103776455, -0.02077348716557026, 0.027031462639570236, -0.02983735129237175, 0.017515501007437706, -0.002060211729258299, 0.0029607191681861877, 0.022583991289138794, -0.014785382896661758, 0.0006127901142463088, -0.013197082094848156, -0.001516241580247879, -0.02546120434999466, 0.028707167133688927, 0.003069224301725626, -0.026127023622393608, -0.0004645311855711043, 0.014014555141329765, -0.004571166355162859, -0.027739599347114563, 0.014315741136670113, -0.017498528584837914, -0.0135138975456357, 0.010427655652165413, 0.03222246840596199, -0.038958873599767685, -0.0029838767368346453, 0.007205394096672535, -0.12991416454315186, -0.04459632933139801, -0.009409944526851177, -0.0180087648332119, 0.03180292621254921, -0.053222112357616425, -0.02590782381594181, 0.013148737139999866, 0.052868083119392395, 0.024192312732338905, 0.015867844223976135, -0.05080881714820862, -0.032010190188884735, 0.01740873232483864, 0.005835641175508499, 0.010028532706201077, -0.014792813919484615, -0.02136448211967945, -0.01682203635573387, 0.006726852152496576, -0.01972348242998123, -0.029278883710503578, 0.004677383229136467, 0.0072256107814610004, 0.04787932708859444, 0.03611665219068527, -0.0040238830260932446, -0.028801262378692627, 0.004357139579951763, -0.029695067554712296, -0.0005128846387378871, -0.026113413274288177, -0.0017213302198797464, 0.009442520327866077, -0.0051238746382296085, 0.01847791112959385, -0.0011751572601497173, -0.019737986847758293, -0.005809127818793058, 0.009915625676512718, -0.04493553563952446, 0.004000623244792223, 0.01326589472591877, -0.022296547889709473, 0.020078370347619057, -0.026364531368017197, 0.05868786200881004, -0.013126466423273087, 0.008342336863279343, 0.03099033795297146, -0.04410645738244057, -0.030732089653611183, -0.005761191714555025, 0.006938107777386904, 0.006857729982584715, 0.020712027326226234, -0.07542193681001663, 0.006447892170399427, 0.018242523074150085, -0.006407211069017649, 0.01987282559275627, -0.0024509350769221783, 0.013997898437082767, 0.010404697619378567, 0.02918577566742897, -0.08551221340894699, -0.0019250842742621899, -0.043746333569288254, -0.027002358809113503, -0.023057226091623306, 0.831748902797699, 0.029253939166665077, 0.027874192222952843, 0.041298408061265945, 0.03594463691115379, 0.014472815208137035, -0.020171653479337692, 0.007145220879465342, 0.013423832133412361, -0.0008682056795805693, -0.019237477332353592, 0.03228220343589783, 0.02914494462311268, 0.012807028368115425, 0.007819682359695435, -0.0007801520987413824, 0.09039025753736496, 0.00842961110174656, 0.005852300673723221, -0.027107391506433487, 0.023485494777560234, 0.020604724064469337, -0.040823403745889664, -0.0008636194979771972, -0.006040921900421381, 0.010970926843583584, -0.1813889741897583, 0.028508858755230904, -7.896731541850147e-33, 0.04420822858810425, 0.031751424074172974, -0.0027313202153891325, -0.0033145840279757977, 0.02355843409895897, -0.0068986667320132256, 0.0023118378594517708, 0.08553297817707062, -0.009379968047142029, -0.06547487527132034, 0.007373086176812649, -0.026398876681923866, -0.0032609819900244474, -0.04873525723814964, 0.05519082769751549, -0.04703684523701668, -0.020473504438996315, 0.008890696801245213, 0.016756577417254448, 0.014798183925449848, 0.03824183717370033, 0.02882820926606655, 0.010536407120525837, 0.007515802979469299, 0.018628695979714394, 0.01640949957072735, -0.009112590923905373, -0.004703644197434187, -0.025726687163114548, -0.03798748552799225, 0.000519519962836057, -0.00688220513984561, 0.005792881827801466, -0.005285785533487797, 0.01119794137775898, -0.04072413593530655, 0.009678900241851807, 0.00253431242890656, -0.013011407107114792, -0.009663882665336132, -0.030084282159805298, -0.01806320808827877, 0.0007724478491581976, -0.007388317491859198, -0.002768138190731406, -0.053458161652088165, -0.0073423124849796295, 0.03171965107321739, 0.0029780534096062183, 0.0005970069323666394, 0.015255529433488846, 0.033230144530534744, -0.0037860129959881306, -0.009904014877974987, 0.010784928686916828, 0.03351028636097908, -0.06788482517004013, -0.01846107468008995, 0.019926631823182106, -0.009733731858432293, 0.041655994951725006, 0.006293098442256451, -0.04719662293791771, 0.020107055082917213, -0.026413321495056152, 0.03246670588850975, 0.025111593306064606, -0.032570917159318924, 0.023073377087712288, 0.004764334764331579, -0.02257910929620266, 0.014331992715597153, -0.031130820512771606, -0.020825816318392754, 0.001586487633176148, -0.0027695351745933294, -0.005633893422782421, -0.020270703360438347, 0.014927132986485958, 0.00342126889154315, -0.03973870724439621, 0.018177349120378494, -0.020211536437273026, -0.004869259428232908, -0.03926734998822212, 0.007477651350200176, 0.032875534147024155, 0.016013670712709427, -0.033826183527708054, -0.039717432111501694, 0.05928204953670502, 0.07387342303991318, -0.01125195249915123, -0.02993631176650524, 0.026977496221661568, 7.897242881892755e-33, 0.01621975377202034, -0.040638845413923264, -0.014274888671934605, 0.0019256407395005226, 0.017519276589155197, -0.006262689363211393, 0.012092573568224907, 0.04342636466026306, -0.028198670595884323, 0.01912681758403778, -0.015347907319664955, 0.037763506174087524, -0.0012469202047213912, -0.015108435414731503, 0.021494442597031593, -0.001835659728385508, -0.02133297361433506, -0.011202367953956127, 0.024274583905935287, 0.018410949036478996, 0.04539717361330986, 0.03153524920344353, 0.02569722943007946, 0.02650078386068344, -0.02448267489671707, 0.026455633342266083, -0.034151602536439896, -0.022175734862685204, -0.015816843137145042, 0.01159726269543171, -0.0021741956006735563, -0.013310347683727741, 0.0005322305951267481, -0.05827537924051285, -0.021251147612929344, 0.022227026522159576, 0.014559471048414707, 0.0055057886056602, 0.017824098467826843, 0.026425175368785858, 0.007681531831622124, -0.00906132347881794, -0.020412510260939598, 0.005748541094362736, 0.009125999175012112, -0.009837227873504162, -0.00018596886366140097, 0.017254412174224854, 0.021196816116571426, 0.021252982318401337, 0.012247301638126373, -0.010380072519183159, -0.0371231883764267, 0.03220437467098236, -0.007969372905790806, -0.011005653999745846, -0.02574682980775833, -0.023343494161963463, -0.0280767735093832, -0.0033560271840542555, -0.015880191698670387, 0.0249189306050539, -0.009669437073171139, -0.0010872135171666741, -0.01607973873615265, 0.02462090365588665, -0.03932635113596916, 0.029469449073076248, 0.0033495877869427204, -0.02227683924138546, -0.023538097739219666, -0.01972220651805401, -0.00795999076217413, 0.037931300699710846, 0.02195323444902897, -0.030322030186653137, -0.002353665418922901, 0.008165949955582619, 0.023093776777386665, 0.00710446760058403, 0.06674883514642715, -0.020373545587062836, 0.03858364745974541, -0.00029982271371409297, -0.0359407439827919, 0.0005508082103915513, -0.003555235220119357, -0.01780877448618412, -0.016898782923817635, -0.023335253819823265, -0.038937970995903015, -0.014066310599446297, -0.00895079318434, -0.007097227033227682, 0.003237460507079959, -1.3196245873814405e-8, -0.01835002936422825, 0.02617095410823822, 0.00199980684556067, 0.03031952865421772, 0.0307615976780653, -0.03752538934350014, -0.043766457587480545, -0.03988282382488251, 0.046928513795137405, -0.009199248626828194, -0.014677995815873146, 0.019827542826533318, -0.007572790142148733, -0.020083606243133545, 0.023000778630375862, -0.025366108864545822, -0.00912898126989603, -0.029090220108628273, 0.023557469248771667, 0.026903346180915833, 0.05940798670053482, 0.010448116809129715, -0.014568756334483624, -0.01475432887673378, 0.05241645872592926, 0.005094097927212715, -0.008436964824795723, -0.08201385289430618, 0.019063720479607582, 0.026308219879865646, 0.028070535510778427, -0.02876599319279194, -0.00975100975483656, 0.015470103360712528, -0.03029756434261799, -0.0066058035008609295, 0.009739325381815434, -0.012629044242203236, 0.010263410396873951, 0.020684855058789253, 0.024480000138282776, -0.03641083836555481, -0.010380398482084274, -0.02811678871512413, 0.023013396188616753, -0.027072494849562645, -0.020023053511977196, 0.007202076725661755, 0.008974174968898296, -0.013323871418833733, -0.001443928456865251, 0.013168461620807648, 0.04213275387883186, 0.019755564630031586, 0.007981681264936924, 0.005800120998173952, 0.024600548669695854, 0.027536779642105103, -0.00351667869836092, -0.0012791856424883008, 0.05768350511789322, 0.024249419569969177, -0.034086234867572784, -0.04135226458311081 ]
coding-generalising-too-early
https://markhneedham.com/blog/2010/04/30/coding-generalising-too-early
false
2010-04-01 09:38:10
How I Learned to Let My Workers Lead
[ "software-development" ]
[ "Software Development" ]
I recently came across a really interesting article written by Ralph Stayer titled 'http://people.wku.edu/rich.patterson/CFS-452/Readings/stayer.htm[How I Learned to Let My Workers Lead]' about his experiences at Johnsonville Foods. It describes the way that he was able to help change the company culture from one where he made all the decisions and took all responsibility to one where everyone in the company was involved in decision making, resulting in a more successful organisation. One of the interesting early parts of the article talks about how the problems created are entirely the fault of the author who is the CEO of the company: ____ I started by searching for a book that would tell me how to get people to care about their jobs and their company. And yet, I told myself, why not? I had made the company so I could fix it. This was an insight filled with pitfalls but it was an insight: the fault was not someone else's, the fault was mine. ____ It reminds me a lot of the following quote which is attributed to http://dartmed.dartmouth.edu/summer06/html/what_system_03.php[Dr Paul Batalden] (although apparently also to several others!) who was influenced by W. Edwards Deming. ____ "Every system is perfectly designed to get the results it gets." ____ I think this is something which is very easy to forget and we probably end up placing too much emphasis on the individual and forget the context in which they are operating. For example, it's much easier to perform well working in a team in an organisation which really buys into the agile/lean way of doing things than it is in one where a strong culture of hierarchy, a tendency to favour the big up front approach and a culture where politics and politics and bureaucracy are rife. Another interesting observation is that his employees were so used to him solving their problems that even when given permission to solve problems they struggled to do so: ____ They were good soldiers, and they did their best, but I had trained them to expect me to solve their problems. *I had nurtured their inability by expecting them to be incapable*; now they met my expectations with an inability to make decisions unless they knew which decisions I wanted them to make. ____ I wonder if this explains why when you try to work in an agile way with a team which is used to a strict hierarchy they will initially find it difficult to challenge any decisions and solve their own problems. This links well with another thing I noticed as I was reading the article -+++<strong>+++it takes a long time to change a system+++</strong>+++. The article covers a period of around 5 years and still there is more that can be done to make the organisation even better. Another good insight is that we don't need to have a grand plan in order to initiate change - we can just do it: ____ These system changes taught me two more valuable lessons. *First, just start. Don't wait until you have all the answers*\...if I had waited until I had all the answers, I'd still be waiting. A grand plan was impossible\...I just knew *I had to change something in order to alter expectations and begin moving toward my goal*. ____ This links closely to the idea of asking for forgiveness rather than getting permission which I've had drilled into me by my more experienced colleagues over the years! I'm sure there are situations in which that advice doesn't apply but the majority of the time it seems like a pretty good mantra to follow and encourages you to be more active and try and make something good happen. There is a tendency when coaching that as soon as someone isn't doing something as well as you would/think you would to immediately take back control of the problem which the author identifies: ____ I wanted *coordinators who could build problem-solving capacities in others rather than solve their problems for them*\...I took every opportunity to stress the need for coaching skills\...whenever someone became a coordinator, I made sure word got around that the promotion was for demonstrated abilities as a teacher, coach, and facilitator. This new promotion standard sent a new message: to get ahead at Johnsonville, you need a talent for cultivating and encouraging problem solvers and responsibility takers. ____ The problem with doing that is that you encourage the wrong behaviour but equally we need to ensure that it is safe to fail otherwise people will be scared to make the wrong decision. In software we can design this into the system by ensuring that we have tight feedback loops and by automating out the possibility of human error. Another observation which I imagine will be fairly familiar to anyone working in software development is the following: ____ In our early enthusiasm, we had played down the technical aspects of our business, encouraging everyone to become a coordinator, even those who were far better suited to technical specialties. \... A career team recommended that Johnsonville set up *dual career tracks -- one for specialists and one for coordinators* -- that would enable both to earn recognition, status, and compensation on the basis of performance alone. ____ ThoughtWorks seems to do this pretty well compared to a lot of companies where you end up becoming a manager if you are a very strong technician a.k.a http://en.wikipedia.org/wiki/Peter_Principle[The Peter Principle] Stayer ends with some interesting ideas on improving performance in organisations of which the stand out points for me were: * People want to be great. If they aren't, it's because management won't let them be. * Learning is a process, not a goal. Each new insight creates a new layer of potential insights. He also introduced a learning and personal development team to help employees improve themselves which seems like an interesting idea and one I hadn't thought about before: ____ The traditional personnel department disappeared and was replaced by a learning and personal development team to help individual employees develop their own Points B and A -- their destinations and starting points -- and figure out how to use Johnsonville to reach their goals. ____ The summary of his learnings is perhaps the most insightful though: ____ I've learned that change is the real job of every effective business leader because change is about the present and the future, not about the past. *There is no end to change*. This story is only an interim report. ____ This is the idea of continuous improvement that lean thinking encourages us to embrace - *it's all about the journey and not the destination*. Reading this reminded me a lot of the way my colleague http://www.thekua.com/atwork/[Pat Kua] works in helping other people in his teams developer their skills and I'm hoping that InfoQ have recorded his talk from QCon London 'http://qconlondon.com/london-2010/presentation/Building+the+next+generation+of+technical+leaders[Building the next generation of next leaders]' which I'm told covers similar ground. The Poppendieck's also have an interesting video recorded at Google where they cover http://www.youtube.com/watch?v=ypEMdjslEOI[the role of leadership in software development].
null
null
[ 0.021185101941227913, 0.017093678936362267, -0.028739092871546745, 0.0441618412733078, 0.09766507893800735, 0.008607590571045876, 0.024783939123153687, 0.04945754632353783, 0.024028180167078972, -0.026364993304014206, -0.03570476546883583, 0.008072848431766033, -0.045159053057432175, 0.026118814945220947, -0.0425795242190361, 0.06711416691541672, 0.051112160086631775, 0.018633412197232246, -0.003715554950758815, -0.0080967266112566, 0.029343435540795326, 0.08462858200073242, 0.05365341156721115, 0.04355127364397049, 0.06753163039684296, -0.010125167667865753, 0.03227915242314339, -0.022135211154818535, -0.045960355550050735, 0.013743819668889046, 0.0286480113863945, 0.0011224262416362762, -0.004496172536164522, 0.010828372091054916, -0.0021399715915322304, -0.010479588992893696, 0.004687089007347822, 0.008674299344420433, 0.019578339532017708, -0.008510492742061615, -0.07073448598384857, 0.05149247124791145, -0.02443753182888031, 0.0175306499004364, -0.043419793248176575, 0.0019160248339176178, -0.04455950856208801, 0.02578595280647278, -0.0014015770284458995, -0.0028498030733317137, -0.06160004064440727, 0.038052041083574295, 0.017115185037255287, -0.0072116306982934475, -0.012377836741507053, 0.047659192234277725, -0.017200620844960213, -0.03917858004570007, -0.004934263415634632, -0.059590693563222885, -0.012484049424529076, -0.020588556304574013, 0.003704895731061697, 0.016681527718901634, 0.03242658078670502, -0.02307133562862873, -0.019666897132992744, 0.028729768469929695, -0.0466681569814682, 0.010525696910917759, -0.04464530944824219, 0.002337867859750986, -0.007268449291586876, 0.019646290689706802, 0.014602256938815117, -0.08287105709314346, 0.0019374578259885311, 0.06960237771272659, 0.006216367240995169, 0.04437117278575897, -0.02951994352042675, 0.013133133761584759, -0.010558569803833961, 0.021037673577666283, -0.016002018004655838, -0.05119425803422928, 0.023746928200125694, -0.022827958688139915, -0.0684814304113388, 0.052884168922901154, 0.0003998230677098036, -0.04394607990980148, 0.014137407764792442, 0.051043350249528885, -0.006735917646437883, -0.005877814721316099, 0.055305372923612595, 0.0043345908634364605, -0.012499301694333553, -0.022850701585412025, -0.041899703443050385, -0.022487638518214226, 0.006215048488229513, 0.02556593343615532, -0.09074994176626205, -0.007259288337081671, -0.0005686210351996124, -0.0067875622771680355, -0.0036950386129319668, 0.002900594612583518, -0.03606418892741203, 0.00892973504960537, -0.025569366291165352, 0.01757584512233734, -0.06145402416586876, 0.07157684117555618, 0.02913832664489746, -0.033256832510232925, 0.001026204670779407, -0.012450851500034332, 0.032108817249536514, 0.008465191349387169, -0.007025869097560644, 0.07610368728637695, -0.009229910559952259, -0.005085380747914314, -0.04155656695365906, 0.03920251503586769, 0.011970109306275845, -0.06410258263349533, -0.0037883282639086246, 0.0368988923728466, -0.04536716639995575, -0.008460761047899723, -0.010629716329276562, -0.023588044568896294, 0.00932618509978056, 0.014968990348279476, 0.010501696728169918, 0.05633751302957535, 0.00884390901774168, -0.04441819339990616, 0.0076272026635706425, 0.03262292593717575, 0.025457603856921196, -0.02303612045943737, -0.0054319556802511215, -0.016930008307099342, -0.04190412536263466, -0.03398329019546509, 0.01653740182518959, 0.0011516695376485586, 0.02127152681350708, -0.025810008868575096, 0.01579705998301506, 0.07432772219181061, 0.05633629113435745, -0.00046347518218681216, -0.008765623904764652, 0.03928235173225403, 0.03919382765889168, 0.03494523838162422, 0.010364048182964325, 0.010136003606021404, 0.0071853576228022575, -0.011571237817406654, -0.005786672234535217, 0.04371367394924164, -0.015523049049079418, 0.0037804581224918365, -0.04412638768553734, -0.04108549281954765, 0.021235579624772072, -0.04582912474870682, -0.021062809973955154, 0.045930054038763046, 0.05630966275930405, 0.045137565582990646, 0.03809712082147598, 0.017274726182222366, -0.0803465023636818, 0.04762038588523865, 0.011169478297233582, 0.017360642552375793, 0.03247247263789177, -0.024924900382757187, 0.052307043224573135, 0.03015233762562275, 0.021587667986750603, 0.047623585909605026, -0.07668944448232651, -0.1047581285238266, -0.018824635073542595, -0.008316952735185623, 0.040232423692941666, -0.03222797065973282, 0.0007759655127301812, 0.08261168003082275, 0.004175333771854639, 0.055873166769742966, 0.01263472530990839, -0.017697613686323166, 0.016958195716142654, -0.0348505936563015, -0.04172660782933235, 0.06139930337667465, 0.040091536939144135, 0.02783600613474846, -0.017979750409722328, 0.010949909687042236, -0.03064943663775921, -0.012898248620331287, 0.05301082879304886, -0.010259469039738178, 0.03553805872797966, -0.005566329695284367, 0.05941836163401604, -0.030289020389318466, 0.05233313515782356, -0.027938269078731537, 0.02171633392572403, 0.00512065039947629, -0.020285695791244507, 0.028267206624150276, -0.0024370462633669376, 0.11011702567338943, 0.06321610510349274, -0.04946082457900047, -0.04011758416891098, 0.044704072177410126, 0.020644236356019974, -0.03866881877183914, 0.001560030970722437, 0.004648576490581036, 0.02149360254406929, 0.0017374559538438916, -0.07157441228628159, -0.0504610612988472, 0.034995123744010925, -0.046840421855449677, 0.0025062442291527987, 0.03436409309506416, -0.0012096782447770238, 0.06205211952328682, 0.0008617308922111988, 0.004564730916172266, -0.02302248775959015, -0.00907423347234726, -0.03224089741706848, -0.008572115562856197, 0.0006722524994984269, -0.008721163496375084, 0.04835277423262596, -0.01353328675031662, -0.02207641303539276, -0.04458431527018547, -0.03892736881971359, 0.024263259023427963, 0.0640784278512001, 0.060926467180252075, -0.01986877992749214, 0.0620344802737236, -0.02323019690811634, 0.042309004813432693, 0.013036224991083145, -0.03334331139922142, -0.035316597670316696, -0.020363466814160347, -0.00016419499297626317, 0.005460491869598627, 0.01015583984553814, -0.013540425337851048, 0.004776628687977791, 0.018173491582274437, 0.004030591808259487, -0.0016033166320994496, 0.026327034458518028, 0.0031755068339407444, 0.00800256710499525, -0.03318817913532257, -0.005025182850658894, 0.05972151458263397, -0.012790342792868614, 0.0004484836827032268, 0.015022234059870243, -0.10192928463220596, 0.028469881042838097, -0.05222306400537491, -0.021661674603819847, -0.000012514436093624681, 0.0017246234929189086, 0.03263803571462631, 0.024998797103762627, 0.021117234602570534, 0.04363242909312248, 0.01825738698244095, 0.017547475174069405, 0.0026023508980870247, 0.008226855657994747, 0.03435659036040306, 0.009540371596813202, -0.013887695036828518, 0.041371941566467285, 0.006677957251667976, 0.02670350670814514, -0.051452942192554474, 0.055346861481666565, -0.055849600583314896, -0.27749940752983093, 0.029787233099341393, 0.015158257447183132, -0.04129025340080261, 0.036249298602342606, -0.03866404667496681, 0.014753000810742378, -0.04923321679234505, -0.02431095577776432, 0.034630101174116135, -0.0390033945441246, -0.03132687881588936, -0.018546191975474358, 0.043262679129838943, 0.006662541069090366, 0.021883457899093628, 0.03518952429294586, -0.023669028654694557, 0.006957548670470715, 0.06539325416088104, -0.020381927490234375, -0.05725250765681267, -0.018760446459054947, 0.04268355667591095, 0.04729954153299332, 0.07573559880256653, -0.055073391646146774, 0.059886056929826736, -0.06558454781770706, -0.014729890041053295, -0.003924634773284197, -0.005452074576169252, 0.014863516204059124, -0.04044898971915245, 0.014563811011612415, -0.03784898295998573, 0.038582634180784225, 0.007417846005409956, -0.0065935272723436356, 0.005756842903792858, -0.0229811891913414, -0.02694401890039444, 0.010706888511776924, 0.020394744351506233, 0.06122088059782982, 0.011577555909752846, -0.0831281840801239, -0.01298664603382349, -0.035150233656167984, 0.0688522607088089, -0.026895945891737938, -0.010814439505338669, -0.0020355551969259977, 0.02236826904118061, -0.00650283508002758, 0.007220045663416386, -0.010174470022320747, -0.022189032286405563, -0.05663042515516281, -0.037091758102178574, 0.006625628098845482, -0.018128519877791405, -0.00949038565158844, -0.0478433333337307, -0.03209591284394264, -0.06355542689561844, -0.06401677429676056, -0.006336169317364693, 0.051172975450754166, -0.020376015454530716, -0.0347861722111702, 0.02215118333697319, 0.002997050527483225, -0.09759239107370377, -0.011929621919989586, -0.015259597450494766, -0.03383281081914902, -0.002560921013355255, 0.03908422216773033, 0.02057214267551899, -0.01755530573427677, -0.059003837406635284, 0.02764802798628807, 0.006853234954178333, 0.03262628987431526, -0.02118198573589325, 0.05434318259358406, 0.0496017262339592, -0.04467261582612991, 0.00011236344289500266, 0.05962395295500755, 0.02327672578394413, -0.03533942252397537, -0.019851265475153923, 0.026570236310362816, -0.007799165323376656, -0.013666518963873386, -0.010928292758762836, 0.0019022049382328987, 0.023929951712489128, -0.0063168141059577465, -0.05795043706893921, 0.011880945414304733, -0.01837955042719841, -0.013113056309521198, -0.005810511764138937, -0.05286947637796402, 0.014829001389443874, 0.035247355699539185, 0.009738652966916561, 0.033449944108724594, -0.02513160929083824, 0.01787419430911541, -0.04216162860393524, -0.018050136044621468, -0.016788315027952194, 0.009724886156618595, 0.06259261816740036, 0.0036483989097177982, 0.005938318092375994, -0.05359560623764992, 0.008036993443965912, -0.03695381432771683, -0.016979118809103966, -0.07035689055919647, -0.0211785938590765, -0.0019846982322633266, -0.02810635417699814, 0.01033252663910389, 0.018806707113981247, -0.011608272790908813, -0.00020366506942082196, 0.05114398151636124, -0.030089080333709717, 0.012780916877090931, -0.05260320380330086, -0.08014091849327087, -0.03879253938794136, -0.02331479638814926, 0.021234536543488503, -0.018132787197828293, 0.021043529734015465, -0.006341230124235153, 0.00031905234209261835, 0.03766672685742378, 0.01537252776324749, -0.004593058489263058, -0.005357042420655489, 0.036133717745542526, 0.04203413799405098, -0.0067771864123642445, -0.037603043019771576, 0.017856694757938385, -0.041372597217559814, -0.02622070722281933, -0.024706825613975525, 0.03209240734577179, -0.008336611092090607, -0.017072921618819237, -0.012683502398431301, -0.005631573963910341, -0.07037793844938278, -0.051706042140722275, -0.034060437232255936, 0.03980017825961113, 0.06684842705726624, -0.007320506032556295, 0.00902485754340887, 0.007354482542723417, 0.0043202475644648075, -0.006881242152303457, 0.03342556953430176, -0.055894285440444946, 0.004734736867249012, -0.011117239482700825, 0.0025420577730983496, 0.01458372175693512, -0.014035525731742382, 0.03870295360684395, 0.004486205987632275, -0.0023095854558050632, -0.02533729188144207, 0.00409943051636219, 0.02044706977903843, 0.03084583394229412, 0.03212880715727806, -0.010098844766616821, -0.003926896955817938, -0.013062064535915852, -0.049234818667173386, -0.04260352626442909, -0.022655293345451355, -0.02752501890063286, 0.03221244737505913, -0.0456504225730896, -0.057224832475185394, 0.049341555684804916, -0.013508165255188942, 0.00768511276692152, 0.028775539249181747, -0.002724267076700926, -0.002154242480173707, -0.031540606170892715, 0.009124938398599625, 0.03795216605067253, -0.06432922184467316, -0.011533944867551327, -0.018602313473820686, -0.009678793139755726, 0.03746410831809044, -0.0334419347345829, -0.011839599348604679, -0.010995367541909218, -0.03136533871293068, 0.010283736512064934, -0.10437503457069397, -0.01318530086427927, -0.04694604128599167, 0.019795885309576988, 0.006489349063485861, -0.0003927411453332752, -0.04912126809358597, -0.020862767472863197, -0.004674337804317474, -0.032977327704429626, 0.028098903596401215, -0.032401468604803085, -0.018115311861038208, 0.011647324077785015, -0.020464081317186356, -0.012722639366984367, -0.02648157812654972, 0.009804943576455116, 0.035134345293045044, -0.022266648709774017, 0.017703332006931305, -0.004107331391423941, -0.008398338221013546, 0.011829899623990059, 0.028072038665413857, -0.01380880270153284, -0.027022710070014, -0.03186912089586258, -0.010343722999095917, -0.03388730809092522, 0.0064446949400007725, -0.021421829238533974, 0.01177148800343275, 0.04391079396009445, 0.066907599568367, 0.02745719626545906, 0.019281797111034393, 0.010500549338757992, -0.019059978425502777, 0.03559394180774689, -0.05907227843999863, -0.02063567005097866, -0.015296388417482376, -0.030555589124560356, 0.014436687342822552, 0.001354413339868188, 0.027585946023464203, -0.02736862562596798, 0.04349805414676666, 0.025239624083042145, 0.038690585643053055, 0.01900632493197918, 0.02955428883433342, 0.03937342017889023, -0.06418012082576752, -0.004592238459736109, -0.08476616442203522, -0.030334047973155975, 0.0077499267645180225, 0.009640530683100224, -0.00008124401938403025, -0.008980199694633484, -0.03610453009605408, 0.041810568422079086, -0.08510222285985947, -0.041450850665569305, 0.037832438945770264, -0.027733873575925827, -0.017784304916858673, 0.0399552620947361, -0.08399461954832077, 0.017247367650270462, 0.007802287582308054, -0.05288686975836754, -0.016862064599990845, -0.04006635770201683, 0.07424278557300568, 0.0034934929572045803, 0.01428279746323824, -0.06439580023288727, -0.002449292689561844, 0.0910446047782898, 0.01451454684138298, -0.0020617907866835594, 0.05390194058418274, -0.019865578040480614, 0.025599636137485504, 0.03010519966483116, 0.03487258777022362, -0.006481431890279055, 0.019232869148254395, -0.030505340546369553, -0.07457110285758972, 0.010590124875307083, 0.004366737324744463, -0.010050636716187, -0.03333617374300957, 0.05268578231334686, 0.002829561475664377, -0.004370054695755243, -0.05136951804161072, -0.010776628740131855, -0.04715266823768616, -0.011274967342615128, -0.017423540353775024, 0.000057754135923460126, -0.046044204384088516, 0.04592563956975937, -0.0005547606269828975, 0.03519153967499733, 0.07414797693490982, 0.0016372795216739178, 0.0011284161591902375, -0.01691996119916439, 0.09527849406003952, 0.06723394989967346, 0.09019411355257034, -0.006844613701105118, 0.08103090524673462, -0.008535646833479404, -0.05526133254170418, 0.01778819039463997, -0.002596712438389659, 0.0025340646971017122, -0.020553335547447205, 0.009086955338716507, 0.04696614295244217, -0.018123777583241463, 0.04383677989244461, 0.01233540941029787, -0.02892421931028366, -0.011728751473128796, 0.02528807520866394, 0.0199738796800375, 0.08285509049892426, 0.011485714465379715, 0.0032896380871534348, -0.030516663566231728, -0.058178745210170746, 0.024552611634135246, -0.024786178022623062, -0.0203245896846056, 0.03847542777657509, -0.014775197952985764, 0.033634696155786514, 0.006987784057855606, 0.007207368966192007, 0.07597050815820694, -0.04453785717487335, 0.03624621033668518, -0.017076268792152405, 0.028777986764907837, -0.029934000223875046, 0.010013733059167862, -0.015812646597623825, -0.024852529168128967, -0.025108158588409424, -0.0354604609310627, -0.030502725392580032, 0.0031988760456442833, -0.01053678710013628, 0.03664105385541916, -0.024536091834306717, 0.030861908569931984, 0.03943713381886482, 0.01833203062415123, -0.022243430837988853, -0.05353105813264847, -0.025517234578728676, -0.03217581659555435, -0.025466401129961014, -0.024854406714439392, 0.03910229727625847, -0.0124960383400321, -0.033705148845911026, -0.007059809751808643, -0.0006435741088353097, -0.040504973381757736, 0.029253948479890823, -0.031508591026067734, -0.009034325368702412, -0.019487278535962105, 0.04056994989514351, 0.02007998712360859, -0.0049283141270279884, 0.05214306712150574, -0.00972643680870533, -0.0004322370805311948, -0.006525179371237755, 0.032409634441137314, 0.014262528158724308, -0.0030539969448000193, -0.0008561686263419688, -0.08312313258647919, 0.008701598271727562, 0.04420798271894455, -0.03925428166985512, -0.07487978041172028, 0.0403260700404644, 0.013319331221282482, -0.001123326364904642, 0.05144284665584564, 0.013296538963913918, 0.008391741663217545, -0.03480260819196701, -0.00534842349588871, -0.014794459566473961, 0.00948373507708311, 0.04584437236189842, -0.04230460152029991, 0.07605902850627899, 0.03450504690408707, 0.005569084547460079, -0.04393422231078148, 0.011157599277794361, 0.012215377762913704, 0.006284150294959545, -0.025034762918949127, -0.02754908986389637, -0.003344265278428793, -0.07773955911397934, -0.030033286660909653, 0.03899790719151497, -0.03637709468603134, -0.03900417312979698, 0.029114870354533195, 0.00765265105292201, -0.007075242232531309, 0.004586652386933565, -0.040748849511146545, 0.03272918611764908, -0.01132088340818882, -0.009313833899796009, 0.019141174852848053, 0.032401323318481445, -0.004310153890401125, -0.013019604608416557, 0.010061698034405708, -0.05286156386137009, 0.012182055041193962, -0.01702178455889225, 0.0042352150194346905, 0.05739373713731766, 0.009771427139639854, -0.02026439644396305 ]
[ -0.06865820288658142, 0.018856192007660866, -0.003670999314635992, -0.006197319366037846, 0.04734422639012337, -0.03605066239833832, 0.037943825125694275, 0.025013824924826622, -0.029753584414720535, -0.020222308114171028, -0.002351251896470785, 0.010064110159873962, 0.003529495559632778, -0.035345111042261124, 0.06227101758122444, 0.014001504518091679, -0.019588185474276543, -0.08347903937101364, -0.008004661649465561, 0.030802326276898384, -0.009899498894810677, -0.0644165500998497, -0.04960516840219498, 0.009405970573425293, 0.02083563059568405, -0.020589161664247513, 0.05586019903421402, 0.004991923924535513, -0.0069329626858234406, -0.13997675478458405, 0.001432596705853939, -0.0032622169237583876, 0.050628721714019775, -0.007753610145300627, 0.03372180461883545, 0.06656606495380402, 0.01829570159316063, 0.014020619913935661, 0.03489866480231285, 0.04460589960217476, 0.015111888758838177, 0.005255141295492649, -0.03452509269118309, -0.019759733229875565, 0.033883556723594666, 0.041203733533620834, 0.027575010433793068, -0.04682838171720505, -0.005392113700509071, -0.003949454519897699, -0.07120335847139359, -0.03141925856471062, -0.01859145797789097, -0.022784890606999397, 0.005332635715603828, 0.016345588490366936, 0.05014755204319954, 0.0570344403386116, 0.010185133665800095, 0.02566487342119217, 0.01830109767615795, -0.03738350793719292, -0.16723302006721497, 0.07991354167461395, 0.05248764157295227, 0.04010758548974991, -0.06704341620206833, -0.012853050604462624, -0.04529067501425743, 0.08073435723781586, 0.017400937154889107, -0.05872631445527077, 0.01761201024055481, 0.0018786747241392732, 0.009092281572520733, 0.025714347139000893, 0.008960111066699028, 0.03207164257764816, 0.0034559438936412334, -0.03766045346856117, -0.004709518048912287, 0.013272236101329327, -0.03584633767604828, -0.016453813761472702, -0.0500565804541111, 0.02862902544438839, 0.015373381786048412, 0.025558779016137123, 0.05264853686094284, 0.03658450022339821, 0.06947004050016403, 0.009835951961576939, 0.03594373166561127, -0.028260311111807823, -0.07996456325054169, -0.044651877135038376, -0.014264630153775215, 0.025465765967965126, -0.07974058389663696, 0.4411584436893463, 0.0067456625401973724, -0.008145280182361603, 0.08411458134651184, 0.0177678894251585, -0.005338633432984352, 0.014973650686442852, -0.0045871976763010025, -0.034600649029016495, 0.03990146517753601, -0.004152864683419466, 0.04990256950259209, 0.051370877772569656, 0.053392667323350906, -0.018886670470237732, 0.021448837593197823, 0.030964205041527748, 0.016301816329360008, -0.012408468872308731, -0.020509004592895508, -0.015241757035255432, -0.006226931698620319, 0.02654298208653927, -0.012061971239745617, 0.01878518983721733, -0.07023338973522186, -0.09282687306404114, 0.030788306146860123, 0.06165583059191704, 0.017629824578762054, -0.05748153105378151, 0.02589699998497963, -0.05271226540207863, -0.043065331876277924, 0.01713627018034458, -0.006898948922753334, 0.006534585263580084, 0.026823226362466812, -0.0069913072511553764, 0.011482052505016327, 0.07258261740207672, 0.015331808477640152, -0.05232783406972885, -0.04867187887430191, -0.04076886549592018, -0.04278595373034477, 0.10721585899591446, 0.05569465458393097, -0.054140280932188034, -0.028719833120703697, -0.004840794950723648, 0.0023672578390687704, 0.03301693871617317, 0.019780272617936134, -0.06479751318693161, 0.029921459034085274, 0.0033566749189049006, 0.08242213726043701, 0.0022067101672291756, -0.01934703253209591, -0.015434086322784424, 0.015980327501893044, -0.02785896696150303, -0.05748829245567322, 0.028035860508680344, 0.10308309644460678, -0.09594612568616867, -0.029673313722014427, -0.009133877232670784, 0.0267660953104496, -0.06676042824983597, 0.003064877586439252, 0.024344027042388916, -0.04425870254635811, 0.012192372232675552, 0.046343326568603516, -0.02207435853779316, -0.019399570301175117, 0.030190348625183105, 0.04111647978425026, 0.02129329741001129, 0.0422317311167717, 0.003839984303340316, -0.02468005195260048, -0.005967843811959028, -0.020567400380969048, -0.04338584095239639, -0.02077304758131504, -0.03043900430202484, -0.0442306324839592, 0.017745450139045715, -0.013577917590737343, 0.013966173864901066, -0.10793840140104294, 0.08511566370725632, -0.02481074258685112, -0.021706948056817055, -0.010824429802596569, -0.011107106693089008, -0.02601814642548561, -0.007006698753684759, -0.10021376609802246, 0.0011925742728635669, -0.07066484540700912, 0.021997781470417976, -0.061016663908958435, 0.04879172518849373, 0.05092613771557808, -0.010766994208097458, 0.12388882786035538, 0.034005582332611084, -0.023323239758610725, -0.027611928060650826, 0.017071865499019623, 0.04995867982506752, 0.015265699476003647, 0.009577872231602669, 0.024741750210523605, 0.024773990735411644, 0.0003061214811168611, -0.014269021339714527, 0.018222058191895485, 0.020266171544790268, -0.04425143823027611, -0.35069191455841064, -0.03872824087738991, -0.06697050482034683, 0.021049605682492256, -0.012935144826769829, -0.01675305888056755, 0.013263380154967308, -0.010877463966608047, -0.03119017370045185, 0.030450861901044846, 0.0496031679213047, -0.02097783237695694, 0.03817356377840042, -0.051747359335422516, 0.02467917464673519, -0.0029535030480474234, -0.04982471838593483, 0.011065712198615074, -0.03243887424468994, -0.0026972522027790546, 0.025381851941347122, 0.015376183204352856, -0.03791949898004532, -0.02000664360821247, 0.005508264526724815, -0.060583192855119705, 0.09945622086524963, 0.009284892119467258, 0.04770044982433319, -0.027880152687430382, 0.03472338244318962, 0.003746229223906994, 0.05302518606185913, -0.11402811855077744, 0.028344934806227684, -0.013728414662182331, -0.022641930729150772, -0.0477924570441246, -0.01733981817960739, -0.01884424313902855, -0.05888396501541138, 0.02884770557284355, -0.09323582798242569, 0.0007041855715215206, -0.08435762673616409, 0.016298869624733925, -0.027869371697306633, -0.02986925281584263, -0.041692622005939484, 0.06880997121334076, 0.012756924144923687, -0.011951941065490246, 0.022706396877765656, 0.008467256091535091, -0.001174812437966466, -0.0503222830593586, -0.09141165763139725, 0.039448101073503494, -0.010236022062599659, -0.0027434532530605793, 0.012361939996480942, 0.06459943950176239, 0.026648016646504402, -0.01762489229440689, 0.0003919915179722011, -0.006322494708001614, 0.0038586240261793137, 0.04435700923204422, 0.007277688942849636, 0.014072875492274761, -0.023035015910863876, 0.055019233375787735, -0.014950505457818508, -0.05381501838564873, 0.0020035328343510628, 0.02821236103773117, -0.034291211515665054, 0.006743420381098986, -0.013786813244223595, -0.014531901106238365, 0.02147425152361393, -0.0352959968149662, 0.014008354395627975, 0.0086793452501297, 0.008926373906433582, 0.03533736243844032, -0.023660851642489433, -0.05910418555140495, 0.09366989880800247, 0.02991485595703125, -0.0318952240049839, 0.021165678277611732, -0.05473575368523598, -0.04252421483397484, 0.07970790565013885, 0.012116805650293827, -0.2376031130552292, 0.008171027526259422, 0.02300349995493889, 0.01843545399606228, -0.0005345011013559997, 0.04794247820973396, -0.011145014315843582, -0.014642826281487942, 0.03866176679730415, 0.05600128322839737, 0.06044219806790352, -0.007652525324374437, 0.008377603255212307, -0.02420201152563095, 0.03427550941705704, -0.010523460805416107, 0.03856208920478821, -0.001211395487189293, 0.01425260677933693, 0.022245479747653008, 0.017139339819550514, -0.005511393770575523, 0.11175648868083954, 0.0171516090631485, 0.009991372004151344, 0.010750173591077328, -0.012619495391845703, 0.01752965897321701, 0.0267473254352808, 0.011127899400889874, 0.042623940855264664, 0.002641289262101054, 0.026200242340564728, -0.003972559701651335, 0.03333601728081703, -0.08291736990213394, -0.03376610949635506, 0.03374399617314339, 0.012558086775243282, 0.022532710805535316, 0.0009837137768045068, 0.003729025134816766, -0.001639035763218999, 0.028690017759799957, 0.07545658200979233, 0.009158971719443798, -0.02124740742146969, -0.04518785700201988, -0.019497791305184364, -0.014581537805497646, -0.04054032266139984, -0.04092659801244736, 0.02472434937953949, 0.004138050600886345, -0.01265525072813034, 0.050297852605581284, 0.015320252627134323, -0.05662951618432999, 0.013056272640824318, -0.007405649404972792, -0.04506189748644829, -0.03433771803975105, 0.05772756412625313, 0.04978807270526886, 0.054910190403461456 ]
[ -0.025937072932720184, -0.0022494185250252485, -0.008503771387040615, 0.019079865887761116, 0.011957154609262943, 0.035567473620176315, -0.00222698412835598, 0.012466879561543465, -0.015655873343348503, -0.005336591973900795, 0.0019326716428622603, 0.03040216490626335, 0.007947745732963085, -0.027720453217625618, -0.006991799455136061, -0.025632718577980995, 0.010485184378921986, 0.004224083386361599, 0.016280023381114006, -0.00858297012746334, -0.006345491856336594, -0.004612103570252657, -0.008521979674696922, -0.00818821880966425, -0.02253980003297329, 0.022896206006407738, -0.008282201364636421, 0.009099973365664482, 0.003876923816278577, -0.14873060584068298, -0.02101171389222145, -0.037432026118040085, -0.013152879662811756, 0.017251331359148026, 0.02054343745112419, 0.02289564721286297, 0.00815160945057869, 0.048918530344963074, 0.017990397289395332, -0.012320959009230137, 0.02247954159975052, -0.031650472432374954, -0.011867998167872429, -0.019299497827887535, -0.010009263642132282, -0.00027015715022571385, -0.00001982084177143406, -0.03340458497405052, -0.008171563036739826, -0.009878427721560001, -0.04208354279398918, -0.01480858027935028, 0.023297108709812164, 0.0015173968859016895, 0.03639339655637741, 0.010338307358324528, 0.028216075152158737, -0.008295624516904354, -0.0017711500404402614, -0.030845889821648598, 0.018412407487630844, -0.017617441713809967, -0.03822373226284981, -0.005794963333755732, -0.02537764236330986, -0.023907925933599472, -0.021505260840058327, 0.00593123072758317, -0.06653208285570145, -0.008527911268174648, 0.00022524697124026716, -0.006910901982337236, -0.01644352450966835, -0.029808036983013153, 0.01794438436627388, 0.018404966220259666, 0.002319814870133996, -0.020975129678845406, 0.030096938833594322, -0.007081266958266497, -0.029657501727342606, 0.049012307077646255, 0.01971522904932499, -0.005047017242759466, -0.0196552537381649, 0.004483592696487904, 0.029732683673501015, -0.04153046756982803, 0.04902470111846924, -0.0016053480794653296, -0.0013440297916531563, -0.0015367140294983983, 0.016937974840402603, -0.009991603903472424, -0.07511938363313675, -0.007643944583833218, -0.0068634371273219585, 0.0084476163610816, -0.005782845430076122, 0.8656908273696899, -0.022702805697917938, -0.0027723475359380245, 0.038682349026203156, 0.006223789416253567, 0.006411430891603231, -0.004545815289020538, -0.0023197773844003677, 0.015114319510757923, 0.02505079284310341, -0.03223605081439018, -0.00949381198734045, 0.020360330119729042, 0.001112019526772201, 0.03493284806609154, 0.023604903370141983, -0.018797649070620537, 0.016622595489025116, -0.01067875511944294, -0.031392160803079605, -0.005261164158582687, 0.051207344979047775, 0.016241731122136116, -0.009499505162239075, -0.010246331803500652, -0.012945879250764847, -0.16064125299453735, -0.006924857385456562, -7.901714903213665e-33, 0.034280795603990555, -0.008415131829679012, -0.005115634296089411, 0.011044393293559551, 0.01410271879285574, -0.011058509349822998, 0.00860616099089384, 0.03300335630774498, 0.0338384248316288, -0.004989587236195803, -0.025121115148067474, -0.028597939759492874, 0.007424541283398867, -0.03894875571131706, 0.020888280123472214, -0.022664401680231094, 0.00980034563690424, 0.03496131673455238, 0.011948118917644024, 0.005188335198909044, 0.02224630117416382, 0.0313413068652153, 0.0026883091777563095, -0.005429393146187067, 0.024236369878053665, -0.008396860212087631, -0.005836836062371731, -0.014549723826348782, 0.003155635204166174, -0.03891029953956604, -0.02434483729302883, 0.0184323750436306, -0.01330479048192501, -0.0050178649835288525, -0.018825165927410126, -0.04826906695961952, -0.039443619549274445, -0.003896360518410802, -0.008576015010476112, -0.06596644222736359, -0.035446647554636, 0.0025126079563051462, 0.003719488624483347, 0.037173740565776825, -0.006482942029833794, 0.0024047920014709234, 0.0027837250381708145, 0.014438318088650703, 0.018981454893946648, 0.01326646376401186, -0.0015920086298137903, 0.014516596682369709, 0.03541266545653343, 0.02174757421016693, 0.017388176172971725, 0.004941091872751713, 0.01582731120288372, 0.01972239464521408, 0.011561550199985504, 0.002627809066325426, 0.02002871222794056, 0.016279786825180054, -0.03378431499004364, 0.03223573789000511, -0.013966989703476429, -0.007093346212059259, -0.010216704569756985, -0.010471483692526817, 0.0156707726418972, -0.013580580241978168, -0.03625613823533058, -0.010946868918836117, 0.007044709287583828, -0.0037946305237710476, -0.014346674084663391, 0.0019325893372297287, -0.020521240308880806, 0.027744881808757782, -0.012893078848719597, 0.018262678757309914, 0.015494145452976227, 0.006438747979700565, -0.022989215329289436, -0.035890158265829086, 0.004447262268513441, 0.011648587882518768, -0.00047053565504029393, -0.0007467687828466296, 0.02331913821399212, 0.03925783932209015, 0.025804879143834114, 0.0012772077461704612, -0.000253807520493865, 0.005379481241106987, -0.024877501651644707, 8.042924100842069e-33, -0.004631839692592621, -0.027128277346491814, 0.011681824922561646, 0.0011321993079036474, 0.05993618071079254, -0.001410987926647067, -0.010045516304671764, -0.0009638572228141129, -0.06468717753887177, 0.014349356293678284, -0.03539692237973213, -0.018439287319779396, -0.040113311260938644, 0.0508270300924778, -0.005613806191831827, -0.008668676018714905, 0.026572683826088905, -0.02058766596019268, 0.01603139564394951, 0.013695800676941872, 0.011429566890001297, 0.005281254183501005, -0.014360172674059868, 0.02338329330086708, 0.006821605376899242, 0.07107661664485931, -0.01570584997534752, 0.01793525740504265, -0.0021131644025444984, -0.00762449624016881, 0.0008729477412998676, -0.002821030793711543, -0.005626823287457228, -0.0010955480393022299, -0.010949098505079746, -0.0016621850663796067, -0.032365985214710236, -0.014431444928050041, -0.01638590544462204, 0.008627858944237232, 0.038159653544425964, -0.024431873112916946, 0.013734021224081516, 0.04494372755289078, 0.0366041325032711, 0.0009639975032769144, 0.005850601475685835, -0.06901249289512634, -0.035776346921920776, 0.04118574410676956, -0.0061652762815356255, -0.0037140941713005304, 0.019902309402823448, 0.03063999116420746, -0.0001362393086310476, -0.0009509849478490651, 0.0012664598179981112, -0.02479144185781479, -0.018001027405261993, 0.006348480004817247, -0.022837279364466667, 0.0029311669059097767, 0.022939125075936317, 0.02144523151218891, -0.02706439234316349, 0.015859967097640038, 0.016439074650406837, -0.004867594689130783, -0.015262681059539318, 0.003821214195340872, -0.023997390642762184, -0.03929674252867699, -0.0024267220869660378, 0.04047365486621857, 0.0026254511903971434, -0.007623232435435057, -0.021739955991506577, -0.006361285224556923, -0.03770072013139725, 0.014875813387334347, 0.018564598634839058, -0.039977267384529114, 0.013604656793177128, 0.026987072080373764, -0.007340041920542717, 0.031058013439178467, 0.012399659492075443, 0.0075150178745388985, 0.017768390476703644, -0.011229231022298336, 0.021009281277656555, -0.04955889284610748, 0.020218156278133392, 0.009064413607120514, 0.020068690180778503, -1.3580635283005904e-8, -0.023968016728758812, -0.013872599229216576, 0.0011952300556004047, 0.01577242650091648, 0.015771964564919472, -0.041869163513183594, -0.032603297382593155, -0.04066748172044754, -0.020560871809720993, 0.05473091080784798, 0.028383992612361908, 0.0017981542041525245, 0.0003128941752947867, 0.01717664673924446, 0.02372494339942932, -0.029055284336209297, 0.0035545961000025272, 0.021622486412525177, 0.03471141681075096, -0.011129826307296753, 0.03352435305714607, 0.05785471946001053, -0.011417665518820286, 0.009286828339099884, 0.014777349308133125, -0.011533129960298538, -0.02746724896132946, -0.07845605909824371, -0.0008884600247256458, 0.024162348359823227, 0.02521117962896824, 0.0013914280571043491, -0.026740679517388344, 0.03899114951491356, -0.010014350526034832, -0.03408358618617058, 0.026956256479024887, -0.013472376391291618, 0.018579086288809776, -0.0036869545001536608, -0.02040024660527706, 0.022731145843863487, -0.009490633383393288, -0.02062043361365795, -0.0045195454731583595, 0.008753086440265179, -0.03952690586447716, 0.012186258099973202, -0.0003281671670265496, -0.041333623230457306, 0.011304987594485283, -0.023407049477100372, 0.024848943576216698, 0.013808281160891056, 0.01195051334798336, -0.027154335752129555, 0.0015236875042319298, 0.010775110684335232, -0.029493317008018494, -0.011955300346016884, 0.004768875893205404, 0.019192513078451157, -0.0032820559572428465, -0.029465094208717346 ]
how-i-learned-to-let-my-workers-lead
https://markhneedham.com/blog/2010/04/01/how-i-learned-to-let-my-workers-lead
false
2010-04-15 22:35:53
hg: Reverting committed changes
[ "mercurial" ]
[ "Version Control" ]
Continuing with our learning with Mercurial, yesterday we wanted to revert a couple of change sets that we had previously committed and go back to an old version of the code and continue working from there. As an example, say we wanted to go back to Revision 1 and had the following changes committed: [source,text] ---- Revision 3 Revision 2 Revision 1 Revision 0 ---- My original thought was that we could merge revision 1 with the current tip: [source,text] ---- hg merge -r 1 ---- Sadly that won't work because we can't merge with an ancestor: [source,text] ---- 'abort: can't merge with ancestor' ---- I http://twitter.com/markhneedham/statuses/12189578740[put the question to twitter] and got a few different suggestions. The first was to use 'revert' and go back to revision 1 like so: [source,text] ---- hg revert -r 1 ---- This works pretty well although http://twitter.com/BestFriendChris/statuses/12190736162[my colleague Chris Turner pointed out that we could also use 'backout'] like so: [source,text] ---- hg backout -merge 3 hg backout -merge 2 ---- The neat thing about that approach is that we get 2 changesets checked in showing the reversing of the changes that we previously checked in. We therefore have a http://twitter.com/BestFriendChris/statuses/12191376829[better history of what exactly we're reverted]. With this approach we could also back out changes which weren't right near the tip of the repository as was the case in my example. Another alternative is to clone the repository from the revision that we want to keep: [source,text] ---- hg clone -r 1 ---- With this approach we would lose the history of anything beyond that revision but if that's what we want then it's another approach to achieve our goal! It'd be interesting to hear your opinions on which approach you take and if there are any others to solve the problem I described.
null
null
[ -0.0074255927465856075, 0.0037044344935566187, -0.01877218671143055, 0.04646849259734154, 0.07803556323051453, 0.010271906852722168, 0.02709166705608368, 0.035135701298713684, 0.011438972316682339, -0.05079212412238121, -0.001289321226067841, 0.011255921795964241, -0.061703871935606, 0.01669461652636528, -0.0459686741232872, 0.05041522905230522, 0.0634690672159195, -0.012358857318758965, 0.01728983037173748, 0.03955454006791115, 0.015059094876050949, 0.06729142367839813, -0.021164588630199432, 0.02519393526017666, 0.01946118101477623, 0.00448183435946703, 0.026231249794363976, -0.0019228777382522821, -0.07230688631534576, -0.01603850908577442, 0.049112048000097275, -0.0033710396382957697, 0.018420662730932236, -0.011939870193600655, 0.004062335006892681, -0.019693979993462563, -0.06587622314691544, 0.022482311353087425, 0.024969741702079773, 0.0017090378096327186, -0.059821054339408875, 0.03593466058373451, -0.030228333547711372, 0.0158720500767231, -0.02388053573668003, 0.026377364993095398, -0.05112254247069359, 0.013135865330696106, -0.009599464014172554, -0.01538152527064085, -0.06437186151742935, 0.026175405830144882, -0.023001475259661674, -0.022553591057658195, -0.023974036797881126, 0.041010431945323944, 0.017610441893339157, -0.07693662494421005, 0.0013868937967345119, -0.012313459999859333, -0.020257530733942986, -0.011520733125507832, -0.010406636632978916, 0.04796741157770157, 0.02378418855369091, -0.029881857335567474, 0.012900544330477715, 0.0332648903131485, -0.03385118767619133, 0.012999631464481354, -0.004488943610340357, 0.017332298681139946, -0.01664820685982704, 0.0036270786076784134, 0.02674371935427189, -0.02645234763622284, -0.016399724408984184, 0.07180638611316681, 0.03865906596183777, 0.05527442321181297, -0.026438692584633827, 0.010823079384863377, 0.022471044212579727, 0.016269726678729057, 0.007261942140758038, -0.03305339068174362, -0.028713837265968323, -0.025841476395726204, -0.06243891268968582, 0.06909098476171494, -0.019842026755213737, -0.07670878618955612, 0.032389093190431595, 0.027000097557902336, 0.017364051192998886, -0.00038491032319143414, 0.013204189017415047, 0.028475122526288033, 0.022580312564969063, -0.018248898908495903, -0.0413852259516716, -0.0022963988594710827, -0.006073187105357647, -0.0009155034204013646, -0.07274194806814194, -0.008226929232478142, -0.050552934408187866, 0.00785148236900568, 0.0019515829626470804, -0.030685577541589737, -0.028733979910612106, 0.05451899394392967, -0.0013975590700283647, 0.0427267923951149, -0.040080077946186066, 0.06856974214315414, 0.006204224657267332, -0.05006556585431099, -0.0034176758490502834, -0.006803481839597225, 0.041338931769132614, 0.049442898482084274, -0.0018568136729300022, 0.07292363792657852, 0.0446634367108345, 0.0402524508535862, -0.019316399469971657, 0.030520755797624588, -0.0637158527970314, -0.09757128357887268, -0.0024879397824406624, 0.08403222262859344, -0.03153043985366821, 0.0007471898570656776, -0.013968564569950104, -0.04311599209904671, -0.008867424912750721, 0.00409894110634923, 0.05484571307897568, 0.01736745424568653, -0.005848987028002739, -0.018392184749245644, -0.01856350712478161, 0.015833882614970207, 0.04533679783344269, 0.013074807822704315, -0.01841660402715206, -0.02717641554772854, -0.05116880685091019, 0.005963199306279421, -0.003147317096590996, -0.0004237644898239523, 0.041201747953891754, -0.06215699762105942, 0.019503073766827583, 0.09225437045097351, 0.031974516808986664, 0.0018804596038535237, -0.028541220352053642, 0.03232783451676369, 0.03202841803431511, 0.04191514104604721, 0.028742093592882156, 0.033632222563028336, 0.006123112514615059, -0.02134040929377079, -0.012640663422644138, 0.04592480510473251, 0.010732129216194153, 0.0045555830001831055, -0.06912939995527267, -0.06586398929357529, 0.05198999494314194, -0.07840881496667862, -0.0031561669893562794, 0.04689595103263855, 0.07965173572301865, 0.04061830788850784, 0.004662008490413427, 0.006696106866002083, -0.08606033027172089, 0.036868125200271606, 0.02330743335187435, 0.038808729499578476, 0.008830215781927109, -0.022619370371103287, 0.07764463871717453, 0.023841341957449913, 0.05585028976202011, 0.032391004264354706, -0.0957271009683609, -0.06588780879974365, -0.004332481883466244, 0.007787154521793127, 0.06584560126066208, -0.007555882912129164, 0.0032439674250781536, 0.07980729639530182, 0.0007258992409333587, 0.036868512630462646, 0.030476601794362068, -0.006136284675449133, 0.01768922060728073, -0.05544361472129822, -0.032075606286525726, 0.01767272688448429, 0.032821860164403915, -0.013766972348093987, -0.028338510543107986, 0.007531160023063421, -0.0014993853401392698, 0.011359876953065395, 0.04811603203415871, -0.026340730488300323, 0.06599102914333344, 0.03144555911421776, 0.018583424389362335, -0.05153016373515129, 0.057520925998687744, -0.043903131037950516, -0.006166543811559677, 0.008076487109065056, -0.0065733278170228004, 0.009015010669827461, 0.01097253616899252, 0.0996706634759903, 0.062249407172203064, -0.05093473196029663, -0.028675502166152, 0.011561853811144829, 0.015379863791167736, -0.03350518271327019, 0.0004946666886098683, 0.014366955496370792, 0.02532452903687954, -0.0024707915727049112, -0.06276430934667587, -0.043188732117414474, 0.005340516567230225, -0.045306529849767685, 0.002846852643415332, 0.051404405385255814, -0.03782292827963829, 0.04461382329463959, 0.0038384385406970978, -0.017733855172991753, -0.02056119404733181, -0.019051553681492805, -0.08267202228307724, 0.024294937029480934, 0.04383331909775734, -0.0038118239026516676, 0.03933345898985863, -0.03132018819451332, 0.004818988498300314, -0.03180793300271034, -0.007653987500816584, 0.010885213501751423, 0.016856258735060692, 0.07112420350313187, -0.018914461135864258, 0.03305339068174362, -0.0034600093495100737, 0.011892176233232021, -0.01869325526058674, -0.02671264484524727, -0.05271163582801819, -0.012207373045384884, -0.014974812977015972, 0.012755295261740685, 0.002420829376205802, -0.0014831500593572855, -0.00592591380700469, 0.0018820686964318156, 0.007258758880198002, -0.0203512292355299, 0.0159830953925848, -0.0017113354988396168, -0.007589798420667648, -0.04501672834157944, 0.0049290345050394535, 0.03734179958701134, -0.04805118963122368, -0.019857529550790787, -0.01862444542348385, -0.06296291202306747, 0.07564079761505127, -0.05214482545852661, -0.03022652305662632, 0.01136984396725893, 0.04302787035703659, 0.027850043028593063, 0.0005996975232847035, 0.03627444803714752, 0.06938569992780685, 0.00808168388903141, 0.024206707254052162, 0.015885815024375916, 0.018761401996016502, 0.05755723640322685, 0.0009877122938632965, -0.004321829881519079, 0.04483026638627052, -0.002206247765570879, -0.014885596930980682, -0.04325642064213753, 0.04973406344652176, -0.032476235181093216, -0.2752577066421509, 0.035431478172540665, 0.022184012457728386, -0.06536894291639328, 0.03256405144929886, 0.0013554870383813977, 0.006501657888293266, -0.04187188297510147, -0.015811925753951073, 0.035856712609529495, 0.001273796777240932, -0.053946591913700104, 0.013952155597507954, 0.03521567955613136, -0.00526228966191411, 0.026884334161877632, 0.011933096684515476, -0.018222907558083534, 0.00244164583273232, 0.03524915128946304, -0.0403558723628521, -0.05057082697749138, 0.013651782646775246, 0.021834366023540497, 0.02413788251578808, 0.018416868522763252, -0.07521737366914749, 0.05263543874025345, -0.06601348519325256, 0.005050023552030325, 0.009781301021575928, 0.011699983850121498, -0.013636784628033638, 0.020637163892388344, -0.013840891420841217, -0.02361137978732586, 0.025412825867533684, 0.027982162311673164, -0.012904373928904533, 0.010338145308196545, -0.02523728832602501, 0.000495441141538322, -0.021739117801189423, 0.022690899670124054, 0.08544690907001495, -0.01880476623773575, -0.062310777604579926, -0.010686150752007961, -0.030084459111094475, 0.09422856569290161, -0.020848829299211502, -0.03217806667089462, 0.004362121690064669, 0.02384950779378414, -0.009173581376671791, -0.008106278255581856, -0.011475234292447567, 0.00527337659150362, -0.04341757297515869, -0.02268930897116661, -0.016281619668006897, -0.051150523126125336, -0.020124204456806183, -0.051516447216272354, -0.0010746660409495234, -0.07770401984453201, -0.07299964874982834, -0.028418511152267456, 0.06594230234622955, 0.0073976158164441586, -0.043521780520677567, 0.015337896533310413, -0.034422315657138824, -0.10854172706604004, -0.008966482244431973, -0.019599812105298042, -0.05156581476330757, -0.012194800190627575, 0.0204386617988348, 0.0345160998404026, -0.03999729081988335, -0.03609182685613632, 0.026599429547786713, 0.02228693664073944, 0.0003106947988271713, 0.027810247614979744, 0.019869593903422356, 0.013483600690960884, -0.013256450183689594, -0.002941146260127425, 0.06044016778469086, -0.0312093086540699, -0.06343616545200348, -0.020205814391374588, 0.0025431965477764606, 0.02820293791592121, 0.002027072012424469, 0.0035789452958852053, 0.036923687905073166, 0.05643328279256821, 0.03984943404793739, -0.0508141815662384, 0.03206654265522957, -0.01753229647874832, -0.02019595354795456, 0.026543935760855675, -0.060895029455423355, 0.005306412000209093, 0.03137189894914627, 0.04407041519880295, -0.02114180475473404, -0.0054350863210856915, 0.01866927184164524, -0.04579448327422142, -0.06996022909879684, 0.007267463486641645, -0.005691849626600742, 0.03275143355131149, 0.012105992995202541, -0.022392593324184418, -0.04278023913502693, 0.0036810925230383873, -0.00910270493477583, 0.013306784443557262, -0.02894926443696022, -0.03437856584787369, -0.007687687873840332, 0.008375080302357674, 0.01596054434776306, 0.019869551062583923, -0.0034744853619486094, 0.02481101080775261, 0.032306380569934845, -0.034504763782024384, 0.037695180624723434, -0.004181212279945612, -0.034878987818956375, -0.01000794768333435, -0.018839411437511444, 0.00877923984080553, -0.029130108654499054, 0.0007822061306796968, -0.009394544176757336, 0.019637230783700943, 0.03400695323944092, -0.014419429935514927, 0.040833357721567154, -0.030558636412024498, 0.018094362691044807, 0.005097146145999432, 0.004213969223201275, -0.07008185237646103, 0.012769130989909172, -0.03856230527162552, -0.0010932597797363997, -0.02996222861111164, 0.038736846297979355, -0.017964724451303482, 0.002084465930238366, -0.01509262714534998, -0.0036967312917113304, -0.05529060214757919, -0.006085596978664398, -0.012429172173142433, -0.010464992374181747, 0.05071558430790901, -0.015661226585507393, -0.008321492932736874, -0.028210332617163658, -0.02219763956964016, 0.0070669990964233875, 0.02137667126953602, -0.055777937173843384, -0.011671321466565132, 0.023340681567788124, 0.026314636692404747, -0.015111087821424007, 0.011689269915223122, 0.057916413992643356, -0.0018186037195846438, -0.011917704716324806, -0.00316922040656209, 0.0050924899987876415, -0.006246452685445547, 0.03516259789466858, 0.0022047909442335367, 0.028489667922258377, 0.003919288516044617, -0.03273531422019005, -0.05076087638735771, -0.022128451615571976, 0.009054793044924736, -0.012409974820911884, 0.031091250479221344, -0.03029766120016575, -0.07865029573440552, 0.008125752210617065, 0.019206596538424492, 0.03573033586144447, 0.01700066402554512, -0.029671095311641693, 0.025829162448644638, -0.04134255275130272, 0.024700455367565155, 0.05815848335623741, -0.06435193866491318, -0.0038335411809384823, -0.00321974023245275, -0.009294875897467136, -0.012150896713137627, 0.01986204832792282, -0.05551127344369888, -0.0359080471098423, -0.01416383683681488, 0.020922880619764328, -0.05436950549483299, -0.034194495528936386, -0.034786053001880646, 0.026608357205986977, 0.003795098513364792, -0.006805999670177698, -0.03069216199219227, 0.0032115732319653034, 0.027771715074777603, -0.054593637585639954, 0.00649065338075161, -0.00017486113938502967, 0.03137781098484993, 0.031941767781972885, -0.013735138811171055, 0.03246021643280983, -0.032184895128011703, 0.040265873074531555, 0.032106902450323105, -0.010078244842588902, -0.00220663333311677, -0.024272145703434944, -0.015337490476667881, -0.0364445224404335, 0.02881287969648838, -0.005709105636924505, -0.0055317687802016735, -0.03794114664196968, -0.01112284418195486, -0.03396683558821678, -0.01627388410270214, -0.026197344064712524, -0.009173943661153316, -0.005264429375529289, 0.05777346342802048, 0.009316876530647278, 0.030954651534557343, -0.034096747636795044, -0.008859586901962757, 0.040227971971035004, -0.0697535052895546, -0.03861326351761818, -0.04418442025780678, -0.04086438566446304, -0.0010099533246830106, 0.015980198979377747, 0.014544103294610977, -0.04830150306224823, 0.007873214781284332, 0.03337889537215233, 0.02427535131573677, 0.040026985108852386, -0.0029275789856910706, 0.026139043271541595, -0.06740004569292068, -0.02207360230386257, -0.06941156834363937, -0.012091079726815224, 0.012169277295470238, -0.004369258880615234, -0.015892980620265007, 0.003676092019304633, -0.030278285965323448, 0.02456120029091835, -0.05009022727608681, -0.025836238637566566, 0.043381307274103165, 0.01073191687464714, 0.014970600605010986, 0.04750601202249527, -0.06846228986978531, 0.030333293601870537, 0.02346806973218918, -0.038098689168691635, -0.00981304794549942, -0.05368565022945404, 0.05825536698102951, -0.00001564128979225643, 0.05620360001921654, -0.02981044165790081, -0.012135802768170834, 0.07159866392612457, 0.03629211336374283, 0.011141830123960972, 0.06518276035785675, -0.010618238709867, 0.02719275653362274, 0.043864816427230835, 0.03384484723210335, 0.0010070691350847483, 0.019485071301460266, -0.016386231407523155, -0.0440957248210907, 0.048451557755470276, 0.02175864763557911, -0.01958615705370903, -0.007355982903391123, 0.05814357474446297, 0.022955290973186493, -0.020134015008807182, -0.04945220798254013, 0.026236994192004204, -0.06086886674165726, -0.00567069323733449, -0.01467360369861126, -0.019130170345306396, -0.04668157920241356, 0.04791960120201111, -0.002086307154968381, 0.01340494304895401, 0.06405732035636902, -0.005611116532236338, 0.005895616952329874, -0.020055152475833893, 0.08265513181686401, 0.07043426483869553, 0.059095241129398346, -0.008396303281188011, 0.056890517473220825, -0.008325742557644844, -0.039123959839344025, 0.03763720393180847, 0.0038732942193746567, -0.0043438202701509, -0.029980411753058434, 0.02796071581542492, 0.050699640065431595, -0.0433838814496994, 0.05294257402420044, 0.0017837472259998322, 0.016152825206518173, -0.02194829471409321, -0.0007900359341874719, 0.012845532968640327, 0.05763563513755798, 0.00495148915797472, 0.012676004320383072, -0.02071787416934967, -0.04822485148906708, 0.01741093024611473, -0.0062233395874500275, 0.007624434307217598, 0.01982594095170498, -0.012530901469290257, 0.03539741784334183, 0.03439607471227646, -0.00028772797668352723, 0.057311322540044785, -0.043105702847242355, 0.009631745517253876, -0.015046891756355762, 0.025842491537332535, 0.004252357874065638, -0.0005873684422113001, 0.0031900107860565186, -0.024238789454102516, 0.0042198109440505505, -0.024427471682429314, -0.005052159074693918, 0.008860411122441292, -0.03164774179458618, 0.04732934758067131, -0.003142865840345621, -0.00906568393111229, 0.030499882996082306, -0.020052224397659302, -0.04846611246466637, -0.04226202145218849, -0.05836530774831772, -0.07225918024778366, -0.04168593883514404, -0.0006999040488153696, 0.015566904097795486, -0.0028952108696103096, -0.05005662515759468, -0.010415532626211643, -0.02964257262647152, -0.03506767004728317, 0.02626555785536766, -0.05519555136561394, -0.00881720706820488, 0.02079927548766136, 0.0023909618612378836, -0.004427703563123941, 0.0325150303542614, 0.059472016990184784, 0.026728026568889618, -0.017796747386455536, -0.010585520416498184, 0.026655318215489388, 0.05016679689288139, 0.0035001542419195175, 0.009942896664142609, -0.08753730356693268, 0.03585441783070564, 0.03550828620791435, -0.010069075971841812, -0.0664939358830452, 0.0065267556346952915, -0.0006955338758416474, -0.0489313118159771, 0.05644480511546135, -0.02037617936730385, -0.012001381255686283, -0.024860193952918053, -0.0032692491076886654, -0.0319240503013134, -0.00045606709318235517, 0.05401458218693733, -0.015648288652300835, 0.083486407995224, 0.04075422137975693, -0.020504983142018318, -0.06031722202897072, 0.009972518309950829, -0.02010152116417885, -0.01401224359869957, -0.030241817235946655, -0.03478256240487099, -0.021080506965517998, -0.08905740082263947, -0.036989375948905945, 0.0017093815840780735, -0.021002935245633125, -0.014605185948312283, 0.017244353890419006, 0.04687996953725815, -0.025561532005667686, 0.020516514778137207, -0.05924626439809799, 0.02658677287399769, 0.0014716711593791842, -0.013742593117058277, 0.0004748825158458203, 0.003733296412974596, 0.001449889619834721, 0.007301032077521086, 0.034049343317747116, -0.016893107444047928, 0.014525040052831173, -0.008480818942189217, 0.037990108132362366, 0.02545783855021, 0.024121779948472977, -0.01686677522957325 ]
[ -0.09157833456993103, 0.007814249023795128, -0.022278279066085815, 0.0019378901924937963, 0.06996002048254013, -0.04481044039130211, -0.05863303318619728, 0.012401155196130276, -0.02252618782222271, -0.020597737282514572, 0.023789942264556885, -0.04981568828225136, 0.006171683315187693, -0.02403981424868107, 0.080812007188797, 0.01647978276014328, -0.07211193442344666, -0.019491560757160187, 0.0013658832758665085, -0.012788639403879642, -0.03178200498223305, -0.012083949521183968, -0.019954264163970947, 0.0009015343966893852, 0.01135299913585186, 0.05362547188997269, 0.00847818236798048, -0.04479089006781578, -0.01970028132200241, -0.2247806042432785, 0.018679820001125336, 0.0204374510794878, -0.03798648715019226, -0.0006725508137606084, 0.02905937284231186, 0.06845498830080032, 0.030563881620764732, 0.011497652158141136, -0.020968114957213402, 0.09173519909381866, 0.039609916508197784, 0.0389634408056736, -0.04110321030020714, -0.07800814509391785, 0.004445389378815889, -0.007856459356844425, 0.016330357640981674, -0.03296321630477905, 0.0201911348849535, 0.05450420081615448, -0.01180695928633213, -0.000011263460692134686, -0.018243050202727318, -0.0009099123417399824, 0.003622174495831132, 0.07736034691333771, 0.051962561905384064, 0.07130908221006393, -0.011687920428812504, 0.004489485640078783, 0.028520574793219566, 0.003921522293239832, -0.13276606798171997, 0.06842712312936783, 0.0671885758638382, 0.029421409592032433, -0.01001935638487339, -0.033579595386981964, -0.01659969799220562, 0.11715255677700043, -0.05347933992743492, -0.033726032823324203, -0.0606713593006134, 0.042432751506567, 0.0033189686946570873, 0.0010211856570094824, -0.0021549337543547153, 0.009321418590843678, 0.029671670868992805, -0.04150916263461113, -0.03526989743113518, -0.012637616135179996, -0.026288310065865517, -0.026787372305989265, -0.005027961451560259, -0.044689010828733444, 0.0017146954778581858, 0.05726546049118042, 0.0045167519710958, 0.015748655423521996, 0.0801926925778389, -0.004039609804749489, 0.1093483567237854, -0.009872755035758018, -0.08717505633831024, 0.010978871025145054, 0.002381316851824522, 0.03175223618745804, 0.00897840317338705, 0.4387553334236145, -0.025363443419337273, -0.0011322336504235864, 0.052971772849559784, 0.04353305324912071, 0.030632982030510902, 0.022381549701094627, 0.003961489070206881, -0.029612712562084198, 0.039536383002996445, -0.03538784757256508, 0.024337774142622948, -0.00694964500144124, 0.06961573660373688, -0.02246875688433647, 0.03454175218939781, 0.02296264097094536, -0.0005941435229033232, 0.03801484778523445, -0.0263518039137125, -0.006447809282690287, -0.02670307457447052, 0.007649795152246952, 0.04182014241814613, 0.003942399751394987, 0.01110624335706234, 0.0016485096421092749, 0.007992257364094257, 0.051820870488882065, 0.03920420631766319, 0.01958371512591839, 0.03658377006649971, -0.03222033381462097, -0.0798129290342331, -0.00443992530927062, -0.02053920365869999, 0.02403511293232441, 0.013135968707501888, -0.02894812636077404, 0.018965551629662514, 0.03159473463892937, -0.031840283423662186, -0.02565773017704487, 0.02803642489016056, -0.00453370064496994, -0.06802654266357422, 0.10212913155555725, 0.010630390606820583, -0.009971102699637413, -0.03879709914326668, -0.01730979047715664, -0.01587352715432644, 0.003584684571251273, -0.0006516788271255791, -0.04517267644405365, 0.007133047096431255, 0.0031851637177169323, 0.05874791741371155, -0.014750084839761257, -0.041400421410799026, 0.002984667895361781, 0.0006847946206107736, -0.04539373889565468, -0.06561356037855148, 0.06753391772508621, 0.0626937597990036, -0.09999608248472214, 0.011306759901344776, -0.012971693649888039, 0.055679306387901306, -0.0350375697016716, -0.01451077125966549, 0.04173189401626587, 0.02042319066822529, -0.039516933262348175, 0.08719741553068161, -0.017984647303819656, -0.019013389945030212, -0.031013526022434235, 0.07213199138641357, 0.010538424365222454, 0.03187074512243271, -0.0018823666032403708, -0.08462244272232056, 0.025461332872509956, -0.05319594591856003, -0.10199194401502609, -0.05253737047314644, 0.027215976268053055, -0.007880563847720623, 0.026811208575963974, -0.021851731464266777, -0.017934925854206085, -0.04331984743475914, 0.05720635503530502, -0.0010198125382885337, -0.028360817581415176, -0.026483971625566483, 0.02278524450957775, -0.004243332426995039, -0.024301309138536453, -0.019127676263451576, 0.05473703145980835, -0.014658096246421337, -0.0032635333482176065, -0.08665185421705246, 0.03304459527134895, 0.03572320193052292, -0.05578408017754555, 0.08303414285182953, 0.015432680957019329, -0.022693660110235214, -0.0026954011991620064, 0.009850324131548405, 0.02468336932361126, 0.03196848928928375, -0.02098401077091694, 0.007673260755836964, 0.0008634866098873317, 0.00809391401708126, 0.03186602517962456, 0.0026726278010755777, -0.021414965391159058, 0.0006581697962246835, -0.33398303389549255, -0.06108546257019043, -0.03352877125144005, -0.027234192937612534, 0.012730260379612446, -0.0636514276266098, 0.022021951153874397, -0.026119835674762726, -0.027142658829689026, -0.006984639912843704, 0.02180340699851513, -0.00045776303159072995, -0.004509443417191505, -0.05880439281463623, -0.030327780172228813, -0.0007728460477665067, -0.00691008847206831, -0.008487651124596596, -0.03545255586504936, -0.02096504718065262, -0.024878231808543205, -0.03253303840756416, -0.007937546819448471, -0.06927313655614853, 0.0034837499260902405, -0.004420670215040445, 0.10284023731946945, 0.005479241721332073, 0.07264517992734909, -0.006893938407301903, 0.02058415487408638, 0.007569364737719297, 0.04143999516963959, -0.09980235248804092, 0.0070215933956205845, 0.03874315321445465, -0.014659055508673191, -0.0072337063029408455, 0.016456693410873413, -0.04592625051736832, -0.009070651605725288, 0.005574182141572237, -0.05178903043270111, -0.0838484987616539, -0.024732522666454315, 0.007655829656869173, -0.044465724378824234, -0.023335564881563187, 0.003686682553961873, 0.06379122287034988, 0.008948389440774918, 0.007852070033550262, -0.0004803070623893291, 0.027240032330155373, -0.017379697412252426, 0.02642824687063694, -0.03191610053181648, 0.01448576245456934, 0.04895959794521332, -0.033375442028045654, 0.013386675156652927, 0.08194550126791, 0.029567964375019073, -0.04211496189236641, -0.010918122716248035, -0.010829620063304901, 0.0010855678701773286, -0.012689543887972832, 0.03817610442638397, -0.045306913554668427, -0.016971783712506294, 0.08776399493217468, -0.003456307575106621, -0.01564115658402443, -0.01990230195224285, 0.05993123725056648, -0.06171175837516785, 0.002751854946836829, -0.034122250974178314, -0.03203393146395683, 0.017490055412054062, -0.046090394258499146, 0.036518801003694534, -0.0023142921272665262, -0.029672283679246902, 0.05297582224011421, -0.013668312691152096, -0.0713161826133728, 0.03702523559331894, 0.031715262681245804, -0.01665145717561245, -0.016624631360173225, -0.019344283267855644, -0.06277211755514145, 0.06305328011512756, 0.014689834788441658, -0.219537615776062, 0.005150194279849529, 0.05760786309838295, 0.05408136919140816, -0.014577001333236694, 0.04456593841314316, 0.047929227352142334, -0.04732602834701538, -0.001146315480582416, 0.009974810294806957, 0.015472153201699257, 0.05196337774395943, 0.02580546773970127, 0.0011295877629891038, 0.03578272461891174, -0.012769910506904125, 0.062468718737363815, -0.02366330288350582, -0.005726867355406284, 0.007284723222255707, -0.0007396865403279662, -0.04454449936747551, 0.1455540508031845, 0.022618498653173447, 0.013834564946591854, 0.0036366910208016634, -0.024595316499471664, 0.042476825416088104, 0.057298917323350906, 0.007200409192591906, -0.027129098773002625, 0.012103211134672165, 0.03163241595029831, -0.005103886127471924, 0.025213241577148438, -0.04848230630159378, -0.02711910381913185, 0.018336310982704163, 0.009166376665234566, 0.007364635821431875, -0.018191508948802948, 0.002098135882988572, -0.062385499477386475, 0.025340205058455467, 0.08418522030115128, -0.024379519745707512, -0.0027099738363176584, 0.0013439500471577048, -0.06773253530263901, -0.017876362428069115, -0.03892754390835762, -0.002855743980035186, 0.017919115722179413, -0.009314412251114845, -0.013376585207879543, 0.07589292526245117, -0.014309639111161232, 0.0008161214645951986, 0.002097515854984522, -0.014848250895738602, 0.012295474298298359, -0.005909482482820749, 0.11835607141256332, 0.0004308670468162745, 0.02933860942721367 ]
[ -0.013891940005123615, 0.02400125004351139, -0.021864261478185654, 0.011850962415337563, 0.009953316301107407, 0.009549333713948727, -0.01690853014588356, 0.028717242181301117, 0.012274029664695263, -0.00822247564792633, 0.03659403324127197, 0.023029839619994164, 0.031577207148075104, -0.04897928237915039, 0.011818375438451767, -0.00013064943777862936, -0.025075381621718407, -0.018740268424153328, 0.04218972846865654, -0.0264291912317276, -0.057298168540000916, 0.04404415562748909, 0.025142965838313103, 0.032874610275030136, 0.016619183123111725, 0.04234299808740616, -0.05516902357339859, 0.010219055227935314, 0.021317671984434128, -0.11930902302265167, -0.02042081020772457, -0.006258161272853613, -0.01757126674056053, -0.0037772832438349724, -0.00524895777925849, 0.037633731961250305, -0.02743595652282238, 0.04288025200366974, -0.006790921092033386, -0.009279701858758926, 0.010056192986667156, 0.0017867216374725103, -0.003297638613730669, -0.0028139352798461914, -0.01821017451584339, -0.02916897088289261, -0.010188057087361813, -0.012643683701753616, -0.037414662539958954, 0.013962463475763798, 0.0008548317709937692, -0.03860492259263992, 0.014053503051400185, 0.0000498714143759571, -0.0033529778011143208, 0.045107897371053696, -0.010069362819194794, 0.012819824740290642, 0.040403153747320175, -0.0037711949553340673, 0.01064784824848175, 0.00925321877002716, -0.03219473361968994, -0.060442980378866196, -0.006256495136767626, -0.02705463208258152, 0.03442641347646713, 0.004484574776142836, 0.003923717886209488, -0.011555567383766174, -0.03462614864110947, 0.029344581067562103, -0.02212774194777012, -0.017027605324983597, 0.011166094802320004, 0.01577875390648842, 0.010744460858404636, -0.01247820258140564, -0.01951027661561966, -0.019761094823479652, -0.02847685106098652, -0.014901538379490376, -0.003680642694234848, 0.025440748780965805, -0.015545635484158993, -0.033392369747161865, -0.02029394544661045, -0.0011331835994496942, 0.008014046587049961, 0.006433992646634579, 0.008804562501609325, -0.00022200944658834487, 0.03963883966207504, -0.02391071617603302, -0.07753181457519531, 0.011904333718121052, -0.021600943058729172, -0.008292879909276962, 0.02232339233160019, 0.8380202054977417, 0.025694500654935837, 0.018667632713913918, 0.019921177998185158, -0.023721130564808846, 0.02248467318713665, 0.020751284435391426, -0.01899932138621807, -0.01227912399917841, 0.03547343984246254, -0.04255646467208862, 0.021354228258132935, -0.016293933615088463, 0.002061598701402545, -0.0018809775356203318, 0.02149679884314537, 0.04788921773433685, 0.03172919526696205, 0.009345338679850101, -0.0009085038909688592, 0.001239635399542749, 0.0279924888163805, -0.0000706447463016957, 0.01637711375951767, 0.003333157394081354, 0.003701151581481099, -0.17506375908851624, -0.014373612590134144, -7.010834918032316e-33, 0.0702769011259079, 0.011289906688034534, -0.014801961369812489, -0.010277827270328999, 0.0021575225982815027, -0.0016402287874370813, -0.02153407223522663, 0.01041544508188963, -0.030732927843928337, -0.0394766740500927, 0.0040369038470089436, -0.034502193331718445, -0.013424007222056389, -0.027171118184924126, 0.005161524284631014, -0.04112730547785759, -0.009550034068524837, 0.07273527979850769, -0.030355755239725113, 0.03383679315447807, 0.0024657209869474173, 0.04395253583788872, 0.002831591060385108, -0.0010734284296631813, 0.013723363168537617, 0.05038208141922951, 0.015823135152459145, 0.009373976849019527, -0.017206354066729546, -0.06111861392855644, -0.042447611689567566, 0.028241602703928947, 0.021068470552563667, -0.02095908299088478, 0.016718773171305656, -0.05433179810643196, -0.03153512626886368, -0.012410813942551613, -0.03362194076180458, -0.06651391088962555, -0.005633602384477854, 0.043824631720781326, -0.015307178720831871, -0.05239539220929146, 0.016289422288537025, -0.0068427035585045815, 0.025050150230526924, -0.001279041520319879, 0.023342888802289963, -0.010425818152725697, 0.01372995413839817, -0.007969374768435955, -0.031602565199136734, 0.005013929679989815, -0.03277868404984474, 0.014207272790372372, -0.014081929810345173, 0.05133049190044403, 0.03565959259867668, 0.01987816020846367, 0.032928772270679474, 0.0042755794711411, -0.0202608872205019, 0.05032825097441673, 0.02091854065656662, 0.02987145073711872, -0.02031652070581913, 0.0164664164185524, 0.015150226652622223, -0.003033338114619255, -0.05349748209118843, 0.004230081103742123, -0.02695697359740734, -0.009163090959191322, 0.03397681936621666, -0.008559862151741982, -0.0314951166510582, 0.008148721419274807, 0.03223942592740059, 0.02459087409079075, -0.024691717699170113, -0.0075319926254451275, -0.01899125799536705, -0.03355865925550461, 0.005964611656963825, -0.02707265317440033, 0.02104860544204712, 0.0006963158957660198, -0.04520097002387047, 0.01446028333157301, 0.02540038898587227, 0.03902381658554077, 0.017950689420104027, -0.036086104810237885, -0.015565844252705574, 7.461462881471947e-33, -0.02732524648308754, -0.016136642545461655, 0.002312265569344163, 0.014191822148859501, 0.009764088317751884, 0.022106686607003212, -0.02084534242749214, 0.04586156830191612, -0.05472048372030258, 0.00900370441377163, 0.012160427868366241, 0.012878495268523693, -0.04629912227392197, -0.017293250188231468, 0.02366246096789837, -0.025325199589133263, 0.04172469675540924, -0.005480380263179541, 0.0008242926560342312, 0.007408898789435625, 0.011710509657859802, -0.013319517485797405, 0.010061358101665974, 0.001624861266463995, 0.03552766516804695, 0.020986629649996758, -0.012714648619294167, 0.02131550759077072, 0.039868466556072235, -0.020113138481974602, -0.00847951602190733, -0.020673025399446487, 0.015676725655794144, -0.0007638022070750594, 0.004489694256335497, 0.01341088954359293, -0.01431939285248518, -0.0032270108349621296, 0.012419413775205612, -0.01007908582687378, 0.02457355707883835, -0.0053793806582689285, 0.0015865587629377842, 0.0395384207367897, -0.014504799619317055, 0.02210674062371254, -0.01721479557454586, 0.01049038302153349, -0.010802000761032104, 0.03156955540180206, 0.03197775036096573, 0.016328521072864532, 0.021285902708768845, -0.003866806160658598, 0.028982864692807198, -0.044716645032167435, -0.01768600568175316, 0.015938453376293182, -0.03746361657977104, -0.007509837858378887, -0.02591676078736782, 0.021439289674162865, 0.0031421028543263674, 0.014628888107836246, -0.032899871468544006, -0.005367720499634743, -0.05108899623155594, 0.032145146280527115, -0.029498619958758354, 0.022051068022847176, 0.03096533939242363, 0.004060723353177309, -0.00044777311268262565, 0.02305603213608265, 0.04937317967414856, -0.033622175455093384, -0.016825171187520027, -0.026312319561839104, 0.007091340608894825, 0.009648534469306469, -0.016776012256741524, 0.0035858741030097008, 0.006065350957214832, -0.002145458711311221, -0.01338969636708498, -0.021610727533698082, -0.018850544467568398, 0.04218292608857155, 0.06718538701534271, -0.012564471922814846, -0.0014077229425311089, -0.05501179024577141, -0.003546495921909809, 0.021192660555243492, -0.0029124070424586535, -1.2874183497046943e-8, -0.030287038534879684, -0.006634620483964682, -0.02227872610092163, 0.030833689495921135, 0.02076728641986847, 0.015666523948311806, -0.012369675561785698, 0.009171925485134125, -0.0252945926040411, -0.0008850184385664761, 0.017109407112002373, -0.0007608477026224136, 0.0044289929792284966, -0.022755511105060577, -0.0036343627143651247, -0.04396771267056465, -0.011463101021945477, -0.018596244975924492, 0.03164151683449745, -0.0026133526116609573, -0.01633456163108349, 0.025801628828048706, -0.009009208530187607, 0.018053460866212845, 0.0332295261323452, 0.0034130054991692305, 0.03870813176035881, -0.05844790115952492, 0.00583381112664938, -0.02910931408405304, 0.07100985944271088, -0.02678336389362812, -0.0451236292719841, 0.042738690972328186, -0.025637425482273102, -0.033549025654792786, 0.031834136694669724, 0.004914707504212856, 0.01973007805645466, 0.023350520059466362, 0.008576534688472748, 0.01192411221563816, -0.04296761751174927, -0.0366436131298542, -0.02766706980764866, -0.0045549399219453335, -0.010878732427954674, 0.0057952143251895905, -0.011812656186521053, -0.04390471801161766, 0.013235369697213173, -0.016275037080049515, 0.00119613332208246, 0.01260678842663765, 0.0166217889636755, 0.008419817313551903, 0.046585530042648315, 0.02166065387427807, -0.004785121418535709, -0.019200896844267845, 0.04606756940484047, 0.003617597511038184, 0.006061042193323374, -0.03141282871365547 ]
hg-reverting-committed-changes
https://markhneedham.com/blog/2010/04/15/hg-reverting-committed-changes
false
2010-04-12 18:21:41
F#: The 'defaultArg' function
[ "f" ]
[ "fsharp" ]
While reading through http://codebetter.com/blogs/matthew.podwysocki/archive/2009/04/13/from-imperative-to-functional-transposing-maps.aspx[an old blog post by Matthew Podwysocki about writing F# code in a functional rather than imperative way] I came across the 'defaultArg' function which I haven't seen previously. It's quite a simple function that we can use when we want to set a default value if an option type has a value of 'None': The type signature is as follows: [source,ocaml] ---- > defaultArg;; val it : ('a option -> 'a -> 'a) = <fun:clo@0> ---- And the definition is relatively simple: [source,ocaml] ---- let defaultArg x y = match x with None -> y | Some v -> v ---- We could then use it if we were looking up a key in a dictionary but wanted to return a default value if there wasn't an entry for that key. For example: [source,ocaml] ---- let myMap = Map.add "key" "value" Map.empty let result = defaultArg (Map.tryFind "nonExistentKey" myMap) "default" > val result : string = "default" ---- This is just another of the utility functions we can use in F# to allow us to keep composing functions even when we can get more than one type of result from another function.
null
null
[ -0.017580341547727585, -0.03702754154801369, 0.007325542159378529, 0.0032171555794775486, 0.06482525914907455, 0.024597441777586937, 0.010523363947868347, 0.03650149330496788, 0.009885682724416256, -0.0166203361004591, -0.043935567140579224, -0.01317612361162901, -0.09307495504617691, 0.01270203571766615, -0.002267668256536126, 0.0602966733276844, 0.07902433723211288, -0.051988329738378525, 0.011363529600203037, -0.004483232274651527, 0.025850553065538406, 0.06448724865913391, -0.011891020461916924, 0.01841738633811474, 0.018392177298665047, 0.005871368106454611, 0.0121599230915308, 0.009221437387168407, -0.04579940065741539, 0.0053282203152775764, 0.013391712680459023, 0.033705245703458786, -0.005278337746858597, -0.020250029861927032, -0.01078584510833025, -0.017338739708065987, 0.010129493661224842, -0.0028033298440277576, -0.003631979925557971, 0.05266936495900154, -0.06567192822694778, 0.015535545535385609, 0.008169312961399555, 0.02727351151406765, -0.023652058094739914, -0.001993227517232299, -0.06259600818157196, -0.0031910950783640146, -0.021190131083130836, -0.0093617532402277, -0.04441581293940544, 0.02029656246304512, -0.008585936389863491, -0.005139591637998819, -0.01294204592704773, 0.046579018235206604, 0.000390147470170632, -0.08705805242061615, 0.037522267550230026, -0.04899913817644119, -0.014177454635500908, 0.015818646177649498, 0.02239624224603176, 0.05369189754128456, 0.03073214180767536, 0.0037445358466356993, -0.025286853313446045, 0.04005443677306175, -0.062304530292749405, -0.028520328924059868, 0.00009648861305322498, 0.023531416431069374, -0.03230053186416626, -0.01178700476884842, -0.01623845286667347, -0.045647453516721725, -0.014966686256229877, 0.04182429611682892, 0.015892578288912773, 0.04600343480706215, 0.01073013711720705, 0.006292069796472788, 0.04147852584719658, 0.008106411434710026, 0.013680748641490936, -0.006345010362565517, -0.015214527025818825, 0.02278224192559719, -0.029211020097136497, 0.03901341184973717, 0.022252945229411125, -0.05755607411265373, 0.006260924506932497, 0.001816471223719418, 0.008008896373212337, 0.01426738128066063, 0.002214368898421526, -0.022498302161693573, -0.012724272906780243, -0.002250329591333866, -0.030432039871811867, -0.02611968107521534, 0.02609282173216343, -0.00568362046033144, -0.06244682893157005, -0.02932073548436165, -0.030711835250258446, -0.002369260648265481, 0.007728085853159428, 0.03274506703019142, -0.054086677730083466, 0.006976170465350151, -0.007427034433931112, -0.00562168238684535, -0.0792689099907875, 0.03566095232963562, -0.0002408426662441343, 0.020180340856313705, -0.010641379281878471, 0.02518620155751705, 0.06728409230709076, 0.012368462048470974, -0.04005187377333641, 0.06520285457372665, 0.032982565462589264, 0.020891621708869934, 0.0004469463601708412, 0.08414299041032791, 0.007423370610922575, -0.06198180466890335, -0.0459093376994133, 0.04799782857298851, -0.04992005601525307, -0.003286941209807992, -0.011580357328057289, -0.011981776915490627, -0.022304538637399673, 0.00916243065148592, 0.040199410170316696, 0.03999984636902809, -0.023716259747743607, -0.03679358959197998, 0.016581721603870392, -0.0391700379550457, 0.019148066639900208, -0.010932699777185917, -0.006502656731754541, -0.0028657650109380484, -0.03494829311966896, 0.022957002744078636, 0.02793661132454872, 0.06563357263803482, 0.06511256098747253, -0.00926849152892828, 0.020964838564395905, 0.08276528865098953, 0.02984045259654522, 0.02695823460817337, 0.012607851065695286, 0.007516298443078995, 0.05846110358834267, 0.027504604309797287, 0.005419372580945492, 0.06579713523387909, 0.029655177146196365, -0.015543668530881405, 0.014639297500252724, 0.046047113835811615, -0.009720919653773308, -0.02220965549349785, -0.03250836580991745, -0.04116782173514366, 0.063073068857193, -0.012061325833201408, 0.020941488444805145, 0.025583738461136818, 0.07499386370182037, -0.008566108532249928, 0.0603579580783844, -0.001987271709367633, -0.06480509042739868, 0.033028021454811096, 0.01013681199401617, -0.01760069839656353, 0.006374881137162447, 0.010149650275707245, 0.0589311309158802, 0.018375299870967865, 0.0345001183450222, 0.027256207540631294, -0.028939200565218925, -0.09298793226480484, -0.027172401547431946, -0.019664864987134933, 0.0964427962899208, -0.036972083151340485, -0.022799599915742874, 0.07098817825317383, 0.03612234443426132, 0.060903653502464294, 0.030227603390812874, -0.019382771104574203, 0.011471749283373356, -0.005937814712524414, -0.021253755316138268, 0.07731086760759354, 0.045939695090055466, 0.007743013557046652, -0.03722153976559639, 0.03209700807929039, 0.008383328095078468, 0.010827124118804932, 0.03323175385594368, -0.01138867624104023, 0.05140925943851471, 0.03367982804775238, 0.026286765933036804, -0.05058668926358223, 0.0477825328707695, -0.061601296067237854, 0.01587429642677307, 0.015015434473752975, 0.012845505960285664, -0.020566364750266075, -0.006004969589412212, 0.11504191160202026, 0.07046177238225937, -0.03723975270986557, -0.049746885895729065, 0.016515258699655533, -0.0026717009022831917, -0.028767630457878113, 0.010357699356973171, -0.00473971338942647, 0.0031616296619176865, -0.00855976901948452, 0.01153325755149126, 0.010692625306546688, 0.0005529416375793517, -0.027358461171388626, 0.020740462467074394, 0.08072348684072495, -0.033995214849710464, 0.03906162828207016, -0.029275061562657356, -0.05358066409826279, 0.013274836353957653, -0.01974872499704361, -0.027109438553452492, 0.004182516597211361, 0.021948613226413727, -0.015540847554802895, 0.0765940323472023, -0.012935886159539223, -0.040668126195669174, -0.026108236983418465, -0.02184896357357502, 0.007082431111484766, 0.04196980595588684, 0.049411073327064514, -0.026022808626294136, 0.0438322052359581, -0.023650499060750008, 0.005582176148891449, 0.010483604855835438, -0.07289346307516098, -0.02215542457997799, 0.01845589093863964, 0.014452083967626095, 0.029722146689891815, 0.0210567656904459, 0.02063612826168537, 0.018331976607441902, -0.0016230042092502117, -0.034120745956897736, -0.0024565851781517267, -0.006435779854655266, 0.015657801181077957, -0.0774461105465889, -0.03412195295095444, -0.040782783180475235, 0.0594811849296093, -0.01394101046025753, -0.030504489317536354, -0.03845915198326111, -0.03319220617413521, 0.02511913701891899, -0.09076198935508728, -0.03178642690181732, 0.0012121290201321244, 0.043790243566036224, 0.01059743482619524, -0.01964571513235569, 0.02228272706270218, 0.06064086779952049, 0.01855403371155262, 0.011283336207270622, 0.008058425970375538, -0.015567402355372906, 0.022869696840643883, 0.004136532545089722, 0.014084658585488796, 0.08157169073820114, 0.004094516392797232, 0.007132072001695633, -0.03356117010116577, -0.01841782219707966, -0.007746309041976929, -0.2585689127445221, 0.029936954379081726, -0.026249190792441368, -0.011816897429525852, 0.01780051365494728, -0.021677307784557343, -0.0030637700110673904, -0.05060495436191559, -0.013008282519876957, 0.046215202659368515, -0.028319938108325005, -0.032010093331336975, -0.03173551708459854, 0.059665922075510025, -0.008557295426726341, -0.030213750898838043, -0.013719647191464901, -0.032512787729501724, -0.005008990410715342, 0.062024377286434174, -0.007643086835741997, -0.061661090701818466, 0.025795044377446175, 0.055997028946876526, 0.0192441176623106, 0.02205631509423256, -0.0931008830666542, 0.023682931438088417, -0.030710747465491295, -0.01975935697555542, -0.03518263250589371, -0.004979156889021397, 0.022113891318440437, -0.0302976556122303, -0.012175781652331352, -0.024035785347223282, 0.01442459225654602, -0.0023464332334697247, 0.020292945206165314, 0.02240138128399849, -0.03562168776988983, -0.05194316804409027, 0.007391597609966993, 0.008297870866954327, 0.07702440023422241, -0.04719658941030502, -0.09094488620758057, -0.013706845231354237, -0.03672996908426285, 0.06388427317142487, -0.02081669680774212, -0.04317072406411171, -0.023661326617002487, 0.07697588205337524, -0.017416631802916527, -0.025221435353159904, 0.007839443162083626, -0.05174565687775612, -0.02250746078789234, -0.0030931381043046713, -0.024552924558520317, -0.029674557968974113, -0.031953033059835434, -0.038583531975746155, -0.0322587825357914, -0.043007418513298035, -0.09328790009021759, 0.010364234447479248, 0.05486766993999481, 0.027447853237390518, -0.008638660423457623, -0.011113829910755157, -0.012721007689833641, -0.09827917814254761, -0.059401482343673706, -0.05981437489390373, -0.06235334277153015, -0.025065703317523003, 0.008514714427292347, 0.054378245025873184, -0.03181860223412514, -0.04980684816837311, 0.03255488723516464, 0.010894077830016613, 0.025076109915971756, 0.011517924256622791, 0.017697865143418312, -0.01678577810525894, -0.023704973980784416, -0.015624304302036762, 0.05681512877345085, 0.0074211591854691505, 0.0015141054755076766, -0.01573723927140236, -0.006357069127261639, 0.015262294560670853, 0.03252450376749039, -0.028435852378606796, 0.041868943721055984, 0.0011013481998816133, 0.050612807273864746, -0.032862354069948196, 0.007375025190412998, -0.030513722449541092, -0.02223017066717148, -0.003218841040506959, -0.04774819314479828, 0.03846060857176781, 0.05130321905016899, -0.009364645928144455, -0.0371224619448185, -0.03146814554929733, 0.01325489766895771, -0.04089156910777092, -0.055538732558488846, -0.004317671991884708, -0.015627697110176086, 0.009458476677536964, 0.0560770146548748, -0.020336776971817017, -0.045679815113544464, 0.028167087584733963, 0.01833762787282467, -0.01962226815521717, -0.0661972388625145, -0.014039268717169762, -0.04134100675582886, -0.02040061354637146, 0.0017283402848988771, 0.03871612995862961, 0.010370240546762943, 0.03437545895576477, -0.0040091536939144135, -0.04528340324759483, 0.020349398255348206, -0.027643879875540733, 0.01129201054573059, -0.03672517091035843, -0.04204670339822769, -0.06364811211824417, 0.012053207494318485, -0.02380938082933426, 0.01739838719367981, 0.03734295442700386, 0.0019650415051728487, -0.00006293374462984502, 0.0037057434674352407, 0.024907518178224564, -0.010748377069830894, 0.0391668863594532, 0.026585133746266365, -0.03293418884277344, 0.030592484399676323, -0.01767895743250847, -0.016009898856282234, -0.00700799748301506, 0.03543376550078392, -0.033416785299777985, -0.06115415319800377, -0.03535469248890877, 0.04921015352010727, -0.03193174675107002, -0.03947961702942848, -0.025882774963974953, 0.0010605562711134553, 0.051725126802921295, -0.02338702790439129, 0.0311104878783226, -0.015128446742892265, 0.007448844611644745, 0.006584308575838804, 0.006325840950012207, -0.032469138503074646, 0.010211079381406307, -0.0033901396673172712, -0.017072757706046104, -0.012665921822190285, 0.03285021707415581, 0.03187684714794159, 0.026768526062369347, 0.013099906966090202, -0.013346584513783455, 0.0020878745708614588, 0.018004020676016808, 0.0630505308508873, -0.007467186544090509, -0.012898582033813, -0.024170033633708954, -0.05095221847295761, 0.005135668907314539, -0.04226859658956528, -0.01502565760165453, -0.05295708030462265, 0.01708965003490448, -0.019010057672858238, -0.06614189594984055, -0.011670310981571674, 0.03302790969610214, 0.008250818587839603, -0.006078976206481457, 0.0033629033714532852, 0.004134806338697672, -0.015175960958003998, -0.033172331750392914, 0.07250140607357025, -0.038825370371341705, 0.026237986981868744, -0.003135987091809511, 0.01999008096754551, 0.04017389565706253, 0.032109469175338745, -0.05427791178226471, -0.013512544333934784, -0.008472371846437454, 0.004137884359806776, -0.014614402316510677, -0.03838952258229256, 0.01101698074489832, -0.025658443570137024, 0.008815438486635685, -0.04203534126281738, -0.0002152691304218024, 0.01155699510127306, -0.01797533966600895, -0.01995900832116604, 0.022446483373641968, -0.042381078004837036, 0.0016329087084159255, 0.06275695562362671, -0.027897687628865242, 0.004557428415864706, -0.05046418309211731, 0.038923997431993484, 0.02637287974357605, -0.009577020071446896, 0.011373923160135746, -0.08191734552383423, 0.007609561551362276, -0.04410697892308235, 0.05381175875663757, -0.013245053589344025, -0.03410498797893524, -0.013294965960085392, -0.003494350239634514, -0.03691105172038078, -0.007589311338961124, 0.006438368931412697, -0.028127916157245636, 0.014169453643262386, 0.03938784822821617, -0.03108367696404457, 0.032408516854047775, -0.006133883725851774, -0.006436788477003574, 0.056532807648181915, -0.04146350547671318, -0.022121042013168335, 0.007973471656441689, -0.04791697487235069, 0.026243744418025017, -0.009060338139533997, 0.009429174475371838, -0.0425223708152771, 0.04655490443110466, 0.04956768453121185, 0.026046883314847946, 0.02332969196140766, -0.013629626482725143, 0.03322144225239754, -0.014730534516274929, -0.010979311540722847, -0.09997890144586563, 0.022899141535162926, 0.016787556931376457, 0.033370133489370346, -0.04062905162572861, -0.010700434446334839, -0.013935166411101818, 0.028491638600826263, -0.0647425577044487, -0.004249393008649349, 0.03130496293306351, 0.009334980510175228, 0.025621701031923294, 0.01037624105811119, -0.04969952255487442, 0.04690004512667656, 0.05230053886771202, -0.023604419082403183, -0.04024878516793251, -0.002245195908471942, 0.0355825237929821, 0.01649075374007225, 0.013462196104228497, -0.008068758063018322, 0.014235591515898705, 0.0435335636138916, 0.025264054536819458, 0.03221124783158302, 0.08603028208017349, -0.011800402775406837, 0.0028052418492734432, 0.02674439549446106, -0.0021413685753941536, 0.012927090749144554, 0.007544065359979868, -0.017839718610048294, -0.06852652877569199, 0.029491722583770752, 0.009271048940718174, -0.041086193174123764, -0.04999586567282677, 0.0548110231757164, 0.005550705827772617, -0.02094835415482521, -0.04511880874633789, -0.015283024869859219, -0.05159902200102806, 0.005262442398816347, -0.017966097220778465, 0.02895331382751465, -0.015139712952077389, 0.04883738234639168, 0.007134750951081514, -0.0023516856599599123, 0.06039051711559296, -0.013482823967933655, 0.0016151921590790153, 0.005496431142091751, 0.07344826310873032, 0.06182774528861046, 0.06570591032505035, -0.007643833756446838, 0.028762949630618095, -0.04979219287633896, -0.0393545888364315, -0.011791499331593513, -0.03004901297390461, 0.007973539642989635, -0.004991667810827494, 0.03235427290201187, 0.10331366956233978, -0.004253063816577196, 0.05194005370140076, -0.06416270136833191, 0.003449442330747843, -0.022606823593378067, 0.01581696607172489, 0.02483738586306572, 0.0655147135257721, 0.01983434148132801, 0.016383644193410873, 0.020288806408643723, -0.039641428738832474, 0.03167431056499481, -0.020871317014098167, -0.014752629213035107, -0.018921025097370148, 0.016500167548656464, 0.007742742542177439, 0.043339528143405914, 0.03912071883678436, 0.07017189264297485, -0.0339454710483551, 0.003751791547983885, 0.016337979584932327, 0.007115254178643227, -0.0019667502492666245, -0.004965940024703741, -0.021274294704198837, -0.013547679409384727, 0.024593671783804893, 0.0030628377571702003, -0.016928819939494133, -0.028955016285181046, -0.0018614602740854025, 0.045606911182403564, -0.04223854839801788, 0.01940164528787136, -0.006380537524819374, -0.04020446911454201, -0.011314252391457558, -0.057270441204309464, -0.028899846598505974, -0.03798084333539009, -0.09653337299823761, -0.006234805099666119, 0.011693627573549747, -0.019738860428333282, -0.006768740713596344, -0.04400969669222832, -0.0006336152437143028, -0.018222510814666748, 0.0509234257042408, -0.0010233352659270167, -0.039491962641477585, 0.02377183549106121, -0.009141308255493641, 0.03618727624416351, 0.02622416988015175, 0.018252920359373093, -0.018330272287130356, -0.02108645811676979, -0.0308854840695858, -0.007475347723811865, 0.042041171342134476, 0.014815039932727814, 0.01511757355183363, -0.07637499272823334, 0.020310569554567337, 0.025011546909809113, 0.021230056881904602, -0.09537379443645477, -0.010734079405665398, 0.016173701733350754, -0.009859966114163399, 0.04850871115922928, -0.023507699370384216, -0.007545105181634426, -0.04342332109808922, -0.0023591360077261925, 0.012577441520988941, 0.014797894284129143, 0.05080200731754303, -0.01826504059135914, 0.06122655048966408, 0.018901092931628227, -0.027020052075386047, -0.006782439537346363, -0.0215140413492918, -0.035254668444395065, 0.03125184401869774, -0.02899767830967903, -0.03439617529511452, -0.013253779150545597, -0.030430298298597336, -0.015622751787304878, 0.00912516750395298, -0.06106413155794144, -0.022413751110434532, 0.002180833835154772, 0.0531819686293602, -0.06735758483409882, 0.0782463550567627, -0.025302888825535774, 0.024608489125967026, -0.005018191412091255, -0.016736995428800583, -0.002274136058986187, 0.03573459014296532, 0.028649618849158287, 0.013086018152534962, 0.05940888077020645, -0.0381779819726944, -0.011510989628732204, -0.026195041835308075, -0.005165720824152231, 0.026078570634126663, -0.039872922003269196, 0.0577501617372036 ]
[ -0.11422213912010193, -0.04268651083111763, -0.02113259956240654, -0.05182943865656853, 0.03439513221383095, -0.011140529066324234, 0.0458223856985569, 0.03425005450844765, 0.007030196487903595, -0.026341350749135017, -0.009968043304979801, -0.043816231191158295, -0.009192834608256817, 0.035447753965854645, 0.053162410855293274, 0.017460506409406662, -0.017640139907598495, -0.028244351968169212, -0.025906508788466454, -0.0011899179080501199, 0.060186661779880524, -0.017000269144773483, -0.05597890168428421, -0.049052588641643524, 0.05433884263038635, 0.029981687664985657, 0.024378230795264244, -0.02756335400044918, -0.012463084422051907, -0.21722789108753204, 0.003240379970520735, 0.010139555670320988, 0.026636717841029167, -0.029013164341449738, -0.03767157718539238, 0.017084017395973206, 0.01536426693201065, 0.053635258227586746, -0.004578531254082918, 0.04360593110322952, 0.02385694906115532, 0.013012891635298729, -0.0430300198495388, -0.005852753762155771, 0.0332479327917099, -0.03428596258163452, -0.02050900273025036, -0.03969395160675049, -0.03667595982551575, 0.015633434057235718, -0.03937719762325287, 0.016138538718223572, -0.046228718012571335, -0.010304554365575314, 0.026786355301737785, 0.022259699180722237, 0.02240694686770439, 0.06990943104028702, 0.013064517639577389, 0.013196835294365883, 0.008086991496384144, -0.026664264500141144, -0.11587058752775192, 0.09460966289043427, 0.00898778811097145, 0.06942279636859894, 0.0011352838482707739, -0.02089814841747284, -0.039700157940387726, 0.08885370939970016, 0.00747025478631258, -0.005032369866967201, -0.036888401955366135, 0.03886113315820694, 0.028583770617842674, -0.05102594196796417, -0.016939859837293625, 0.036541782319545746, 0.03463956341147423, -0.022483360022306442, -0.028814394026994705, -0.0007374027627520263, 0.0211782269179821, 0.0004929128917865455, -0.006206209305673838, -0.0006773722125217319, 0.004171810578554869, 0.003941246774047613, 0.03749049827456474, 0.007049004081636667, 0.045931000262498856, -0.04115277901291847, 0.02402661181986332, 0.01353598851710558, -0.0712665393948555, 0.021454263478517532, 0.011703182943165302, -0.01692293770611286, -0.04564927890896797, 0.39112403988838196, -0.04705069586634636, -0.014623400755226612, 0.043699961155653, 0.012266273610293865, -0.016329819336533546, 0.0013853443088009953, -0.0011763653019443154, -0.0335054025053978, -0.008335095830261707, -0.051318369805812836, -0.028001049533486366, -0.011042737402021885, 0.07752060145139694, -0.06691289693117142, -0.04744098708033562, 0.02626432105898857, 0.012765820138156414, -0.0020354180596768856, 0.03101004846394062, 0.02473236247897148, 0.0024005314335227013, -0.026889927685260773, -0.0019341418519616127, 0.05356430262327194, 0.04752502590417862, 0.00865947362035513, 0.012442657724022865, 0.056360721588134766, 0.06582705676555634, 0.02643188089132309, 0.03450039029121399, -0.0507156141102314, -0.07740636169910431, -0.014636917971074581, -0.0038508311845362186, 0.04002423584461212, 0.022108998149633408, -0.022963017225265503, -0.0025100784841924906, 0.020424673333764076, -0.004493452608585358, -0.020836953073740005, 0.023291002959012985, 0.0018293532775714993, -0.04702123999595642, 0.1444300264120102, -0.022082699462771416, -0.057678986340761185, -0.024750256910920143, 0.009779572486877441, -0.022992528975009918, -0.003984004259109497, -0.051924269646406174, -0.015943842008709908, 0.039923377335071564, 0.04102260246872902, 0.0775168240070343, -0.018141213804483414, -0.09894704073667526, -0.049432117491960526, -0.08935858309268951, -0.007937383837997913, -0.029971178621053696, 0.047880321741104126, -0.00832265056669712, -0.1039145365357399, -0.03412599861621857, -0.024670396000146866, 0.0011304457439109683, -0.09890308976173401, -0.02472866140305996, -0.001694760867394507, -0.017878958955407143, -0.02687958814203739, 0.04972809925675392, -0.016019238159060478, -0.004917677957564592, -0.07753167301416397, 0.00547623448073864, 0.007966673001646996, 0.0019637136720120907, 0.032187946140766144, -0.046042077243328094, -0.005670191254466772, -0.03777454420924187, -0.04583534970879555, -0.0413043312728405, -0.004204229451715946, -0.02095257118344307, -0.009526969864964485, 0.044538114219903946, -0.016121625900268555, -0.03903941810131073, 0.029107799753546715, -0.03732161968946457, -0.024760261178016663, 0.013863204047083855, -0.017328256741166115, 0.014264498837292194, -0.03020772710442543, 0.020873945206403732, 0.07262023538351059, 0.016196895390748978, 0.0024941035080701113, -0.038658082485198975, 0.026655251160264015, 0.054772667586803436, -0.058368708938360214, 0.030970005318522453, 0.05121560022234917, -0.042788825929164886, -0.004445394966751337, -0.015991423279047012, 0.028366120532155037, -0.009803581051528454, -0.0393017940223217, -0.009548797272145748, -0.011568117886781693, -0.01897459290921688, 0.015688644722104073, -0.02516048774123192, -0.019420059397816658, -0.00867027509957552, -0.3398384153842926, -0.022418763488531113, -0.03812337666749954, -0.024729447439312935, 0.020112546160817146, -0.07425270229578018, -0.020500967279076576, -0.001911877654492855, -0.04619123041629791, -0.002744352910667658, 0.07501495629549026, -0.005818548612296581, -0.007130862679332495, -0.018160024657845497, -0.00856047123670578, 0.02836715616285801, -0.019087376073002815, -0.06791353225708008, -0.0342438779771328, 0.038733839988708496, 0.006671154871582985, 0.028133708983659744, -0.03477518633008003, -0.07336053252220154, 0.01726674474775791, -0.03677073121070862, 0.09688512235879898, 0.006945764180272818, 0.1323644369840622, -0.04467704892158508, 0.06861953437328339, -0.0023930149618536234, 0.01283009722828865, -0.036240942776203156, -0.007174752186983824, -0.025846261531114578, 0.008019513450562954, 0.022470220923423767, 0.05487927794456482, -0.008495657704770565, -0.010619881562888622, 0.010957001708447933, -0.07094021886587143, -0.03374452888965607, 0.008472115732729435, -0.005825548432767391, -0.011820509098470211, -0.01642240770161152, -0.01041269302368164, 0.08557002991437912, -0.014775709249079227, 0.019967392086982727, -0.0031737268436700106, 0.022173449397087097, 0.036355942487716675, -0.015073873102664948, -0.06311392784118652, -0.03144388273358345, -0.025406092405319214, 0.0008991482318378985, 0.06474976241588593, 0.05034663900732994, 0.04744100943207741, -0.04478134959936142, 0.033029694110155106, 0.014018486253917217, -0.026048827916383743, -0.012257104739546776, 0.05236326530575752, -0.026280853897333145, -0.06488872319459915, 0.09948023408651352, -0.019694089889526367, 0.008634964004158974, 0.0532895065844059, 0.05895719304680824, 0.0017788546392694116, 0.05306960642337799, 0.02944248914718628, -0.007841914892196655, -0.005385528318583965, -0.015742825344204903, 0.03321594372391701, -0.030496438965201378, -0.007915796712040901, 0.03775434568524361, -0.011266005225479603, -0.005095674656331539, 0.03647438809275627, -0.0006144294166006148, -0.021279163658618927, -0.017390433698892593, 0.026706060394644737, -0.06769274175167084, 0.09470313042402267, -0.044566575437784195, -0.24396148324012756, 0.0024517353158444166, 0.10965649783611298, 0.019929736852645874, -0.012117886915802956, 0.036944933235645294, 0.06555449962615967, -0.09508802741765976, -0.036392904818058014, 0.012092452496290207, -0.006191619206219912, 0.03663356602191925, 0.025105081498622894, 0.012989146634936333, 0.039774805307388306, -0.03511444106698036, 0.04803226515650749, 0.007197791710495949, 0.024326438084244728, -0.02396826632320881, 0.06240316852927208, 0.020228877663612366, 0.19658403098583221, -0.0009314467897638679, 0.020586038008332253, 0.010658470913767815, 0.02913317084312439, 0.0129746338352561, 0.07088340818881989, 0.008023042231798172, 0.042769186198711395, 0.007433343678712845, 0.061906978487968445, 0.022172516211867332, 0.05758199840784073, -0.05867822468280792, -0.02112601324915886, 0.033744167536497116, 0.014855289831757545, -0.022159280255436897, -0.014499817043542862, 0.013425159268081188, -0.026478417217731476, 0.007876165211200714, 0.07309095561504364, -0.04338907450437546, 0.002484274795278907, -0.016722658649086952, -0.04371481388807297, 0.03679939731955528, -0.02483222633600235, 0.008464370854198933, 0.018351884558796883, -0.020990492776036263, 0.00967763178050518, 0.041432905942201614, 0.03219807520508766, -0.030182786285877228, 0.009167006239295006, 0.039643023163080215, 0.014467732980847359, 0.004883287940174341, 0.10955189913511276, -0.008321286179125309, 0.04420887678861618 ]
[ 0.020783433690667152, 0.010637211613357067, 0.019938744604587555, 0.004300499334931374, 0.011834685690701008, -0.00238814577460289, 0.010654528625309467, 0.037470608949661255, -0.005561410449445248, -0.005173990502953529, -0.0403948538005352, 0.010733758099377155, -0.02824745886027813, 0.0065910485573112965, 0.0407857783138752, 0.009905633516609669, 0.006238075904548168, -0.013220353052020073, 0.009276527911424637, 0.00025235977955162525, -0.007926891557872295, 0.04095712676644325, 0.011750221252441406, -0.023364270105957985, -0.008796622045338154, -0.022030916064977646, -0.03285129368305206, 0.019156716763973236, 0.025426814332604408, -0.13869880139827728, -0.033356674015522, -0.005957163870334625, 0.006442550104111433, 0.02620881423354149, -0.03103824332356453, 0.01777249202132225, 0.006492306012660265, -0.005908098537474871, -0.006777953822165728, 0.027758171781897545, -0.05058649182319641, -0.019228439778089523, -0.022821340709924698, 0.006066650617867708, 0.015416912734508514, 0.0004226186720188707, 0.005529835820198059, -0.015547513961791992, -0.014011711813509464, 0.01887563057243824, -0.023536739870905876, 0.024591196328401566, -0.01781386509537697, -0.011378515511751175, 0.04118502140045166, 0.0027267346158623695, -0.011477558873593807, -0.04520214721560478, 0.006141536869108677, -0.027080774307250977, -0.020814115181565285, 0.005256796255707741, -0.04005996510386467, -0.019613076001405716, -0.002761236857622862, 0.015825042501091957, -0.00466932263225317, -0.016225147992372513, 0.005735039710998535, 0.007791796699166298, 0.019583677873015404, 0.006268656346946955, -0.002902041655033827, -0.015093081630766392, 0.004265659488737583, -0.0012064483016729355, 0.0019306833855807781, -0.002509140642359853, 0.03096141666173935, -0.007580253295600414, -0.020585419610142708, -0.007107441779226065, -0.023018497973680496, 0.03312836214900017, -0.007900393567979336, -0.0025155849289149046, -0.025907954201102257, -0.00106929917819798, 0.05435262247920036, 0.04956264793872833, -0.0669226422905922, 0.004413473419845104, 0.021870192140340805, 0.019650399684906006, -0.068043552339077, 0.023803219199180603, -0.007801832631230354, -0.04289587214589119, 0.0009523250046186149, 0.8522809147834778, -0.017177078872919083, 0.023290840908885002, 0.04128300026059151, -0.004876292310655117, -0.0018298208015039563, -0.005673030391335487, 0.003499634563922882, -0.006088907830417156, -0.012941364198923111, -0.03629634156823158, 0.020512277260422707, -0.004603516776114702, 0.08142790198326111, -0.0012281318195164204, -0.003941435366868973, 0.012067083269357681, 0.030400436371564865, 0.0028405901975929737, 0.008714879862964153, 0.04071950167417526, 0.01280821394175291, -0.00995062105357647, 0.02939642407000065, 0.046377286314964294, -0.012486941181123257, -0.1496555060148239, -0.027287717908620834, -7.681676319735148e-33, 0.04790215939283371, -0.0069607156328856945, 0.03501889482140541, -0.00770744401961565, 0.014105002395808697, -0.00988350622355938, 0.0363892987370491, -0.04409084469079971, -0.03237411007285118, -0.029685700312256813, 0.02587440423667431, -0.015544528141617775, -0.042497191578149796, 0.015004841610789299, 0.03191031515598297, 0.018492819741368294, 0.02947426214814186, 0.02564188279211521, -0.03807764872908592, 0.005209979135543108, 0.045091383159160614, 0.041761528700590134, 0.003954955376684666, -0.01283691730350256, 0.013352667912840843, 0.03923748433589935, 0.008423710241913795, 0.0019726590253412724, -0.017489027231931686, -0.04717347025871277, -0.03649355471134186, -0.007182121276855469, 0.013292909599840641, -0.027149662375450134, 0.04490726441144943, -0.02576133795082569, -0.022109048441052437, 0.02508166991174221, -0.040847163647413254, -0.031145157292485237, -0.009696713648736477, 0.0030931474175304174, -0.07375215739011765, -0.017354806885123253, -0.013433324173092842, -0.04383062571287155, -0.0056871636770665646, 0.04973417520523071, 0.029442764818668365, 0.018933739513158798, 0.0406448096036911, 0.02165132202208042, -0.02296256273984909, -0.00190322648268193, -0.006237388122826815, 0.003339387010782957, -0.03204776719212532, -0.004331869538873434, 0.008783486671745777, -0.001709665055386722, -0.005397573579102755, -0.024249687790870667, 0.00885443389415741, 0.02811943180859089, -0.01452080812305212, -0.024631811305880547, 0.009023523889482021, -0.009258227422833443, 0.0034163095988333225, 0.005765664856880903, -0.03241632506251335, 0.015550420619547367, -0.02331131137907505, -0.04574200138449669, 0.015061815269291401, -0.00858641043305397, -0.014876943081617355, -0.04924272745847702, 0.00024281354853883386, 0.018551887944340706, 0.002127288607880473, 0.003550363704562187, 0.002041208790615201, 0.017397506162524223, -0.0013961632503196597, -0.024466561153531075, 0.03646160662174225, 0.009758069179952145, 0.006347181741148233, 0.02938639372587204, 0.005334262736141682, 0.02637631818652153, -0.017593948170542717, -0.04568251222372055, 0.0009647510014474392, 7.5947088395575e-33, -0.002092492301017046, -0.002383624203503132, -0.015564586967229843, 0.01869892328977585, -0.02419452555477619, -0.03197424113750458, 0.0649833157658577, -0.011728992685675621, -0.003406389383599162, 0.03859662264585495, -0.023469209671020508, -0.004750542808324099, 0.011298725381493568, 0.0061777690425515175, 0.054884396493434906, -0.010271279141306877, -0.0018018571427091956, -0.0026159193366765976, 0.021271638572216034, 0.021767400205135345, 0.005031435284763575, 0.0080618467181921, 0.016646048054099083, 0.021161377429962158, 0.005703011993318796, 0.0509142242372036, -0.022177817299962044, 0.02457612007856369, -0.017377614974975586, -0.014327057637274265, 0.035047829151153564, 0.012700398452579975, 0.020136849954724312, -0.05907626077532768, 0.01611969992518425, 0.02154175005853176, 0.021652711555361748, 0.00993566494435072, 0.017371775582432747, 0.0034244409762322903, -0.004210439044982195, -0.025913169607520103, -0.0079672085121274, -0.037097711116075516, -0.033516138792037964, 0.0008508621831424534, 0.026153014972805977, -0.01915832981467247, 0.018995994701981544, -0.01609872095286846, 0.016350993886590004, -0.019633930176496506, -0.030879022553563118, -0.001450306735932827, 0.0014707337832078338, -0.005990943871438503, -0.02764195017516613, 0.01627267524600029, 0.007908366620540619, 0.01837705820798874, 0.002360749524086714, -0.016344040632247925, 0.015628745779395103, -0.004375947639346123, -0.004746678750962019, -0.011860601603984833, -0.017967810854315758, -0.0438438355922699, -0.029741736128926277, -0.005052399355918169, -0.01591987907886505, -0.01006067544221878, 0.012308592908084393, 0.03390532359480858, 0.014579675160348415, -0.007685288321226835, -0.00525640556588769, 0.007666317280381918, 0.030975673347711563, 0.004336195532232523, 0.011475593782961369, -0.023849401623010635, 0.00623108958825469, 0.03362347558140755, -0.024815237149596214, 0.017582356929779053, -0.0005407393327914178, 0.006404004991054535, -0.0023700189776718616, -0.0023267080541700125, -0.010662826709449291, -0.02321043610572815, -0.017054297029972076, -0.006359495688229799, -0.0021152079571038485, -1.3315821334458633e-8, -0.04680390655994415, 0.005624091252684593, -0.028653912246227264, 0.04161239415407181, 0.00921973492950201, -0.017441561445593834, 0.0000023781019535817904, 0.000516231229994446, 0.014459274709224701, -0.02573391981422901, 0.0002703400678001344, 0.01900707185268402, 0.022886842489242554, -0.042779289186000824, 0.03504149615764618, -0.041672077029943466, 0.013920321129262447, 0.004280379042029381, 0.013397766277194023, -0.003947493154555559, -0.011823952198028564, 0.03035564348101616, -0.034233663231134415, -0.012355035170912743, -0.023781826719641685, -0.014890170656144619, 0.04442880302667618, -0.07246235013008118, 0.06749347597360611, 0.0067316521890461445, 0.028858231380581856, -0.009382428601384163, 0.008552375249564648, -0.006303661968559027, -0.047373637557029724, -0.03538684919476509, 0.01919540949165821, 0.0023117889650166035, 0.012135964818298817, 0.000627013563644141, -0.004616911523044109, -0.014104022644460201, -0.00023424570099450648, -0.049676381051540375, -0.07740850746631622, 0.002592658856883645, 0.013652101159095764, 0.0222682636231184, -0.001258567557670176, -0.001983390422537923, 0.00942067988216877, 0.037350401282310486, 0.0018033052328974009, 0.049070805311203, 0.0060191042721271515, 0.01225781999528408, 0.04401347041130066, -0.02802187018096447, -0.045371025800704956, -0.020996712148189545, 0.02187509462237358, 0.00003709023440023884, -0.02546031028032303, -0.0219242163002491 ]
f-the-defaultarg-function
https://markhneedham.com/blog/2010/04/12/f-the-defaultarg-function
false
2010-04-14 07:23:54
Maverick: Book review
[ "books", "book-review" ]
[ "Books" ]
My colleagues http://blog.franktrindade.com/[Frankie] and http://www.dtsato.com/blog/[Danilo] have been recommending 'http://www.amazon.co.uk/Maverick-Success-Behind-Unusual-Workplace/dp/0712678867/ref=sr_1_1?ie=UTF8&s=books&qid=1266791367&sr=8-1[Maverick]' to me for a long time and I finally got around to reading it. In this book Ricardo Semler, the CEO of Semco, tells the story of the company and how he helped evolved the organisation into one which is more employee led and embraces ideas such as open & self set salaries while encouraging civil obedience in the workforce as a necessity to alert the organisation to its problems. These were some of the ideas that I found the most interesting: * Early on Semler points out that *Semco doesn't have a culture of looking busy*. He describes how a sales manager spends a lot of his day just reading the newspaper but then as soon as there's a problem for him to handle that's when he earns his salary. Even though this book isn't specifically about systems thinking, the description of this situation suggests to me that they are able to look at the bigger picture at Semco. In software teams we can often feel quite guilty if we're not busy but a bit of slack time is often useful for thinking about better ways to do things or to spike out new ideas. * Semler emphasises the need to have *small business units* of under 150 people while matches up quite well with http://en.wikipedia.org/wiki/Dunbar's_number[research done by Robin Dunbar] which indicates that 150 is the 'theoretical cognitive limit to the number of people with whom one can maintain stable social relationships.' Semler also adds that keeping the units small 'keeps them human'. I know ThoughtWorks keeps this in mind with respect to our offices and will look to open a new one if the number of people in one is getting close to the 150-200 mark. * Semco have a culture of what Semler refers to as '*absolute trust*' which he suggests is a more natural way. They implemented this at Semco by removing security checks on the gates into/out from the plants. He almost then predicts the inevitable question in the reader's mind with the following statement: + ____ 2 or 3% will take advantage of an employer's trust. Is this a valid reason to subject 97% to a ritual of humiliation? Have thefts increased or decreased? I don't know and I don't care. It's not worth it to me to have a company at which you don't trust the people with whom you work. ____ + He promotes *an approach of common sense* amongst his employees, suggesting that 'rules freeze companies inside a glacier; innovation lets them ride sleighs over it'. The general idea seems to be that the small details aren't really that important and only serve to distract from the bigger objectives that the company are trying to achieve. * I was quite surprised to read how strongly Semler recommends *job rotation*: + ____ Man is by nature restless. When left too long in one place he will inevitably grow bored, unmotivated, and unproductive. The cure, I believed, was to encourage managers to exchange jobs with one another ____ + He goes on to point out that this type of rotation forces people to learn new skills which makes them more valuable but also discourages empire building because people don't stay in the same place for too long. I think we do this to some extent in the software industry between some roles but probably not as much as we could do. Having said that there is a lot to learn as a developer anyway so perhaps it's not so applicable here. * Perhaps the most controversial idea in the book is that of *transparent/self set salaries*. There was initially resistance to the latter idea as cynics believed that a few people would take advantage and award themselves massive pay increases. However, they found that having those salaries public served as a strong disincentive. He also identifies the fact that people have a stake in the success of the company as being key for allowing this to work: + ____ The third reason our people tended to be modest about salaries has to do with self preservation\...Our people know salaries account for most of our operating costs, and they think about our budgets when they set them. It's easy to solve a budget problem by eliminating a salary that seems too high, and noone wants to stick out. ____ * The underlying reason behind why a lot of the ideas Semler implements seem to be about *unhiding information* as described by the following quote: + ____ There is power in knowing something someone else doesn't\...but when cards are held close to the chest, communication will be faulty and anxieties, misunderstandings, insecurity, and eventually hostility will manifest itself\...which is why when we started sharing information at Semco it has such a profound effect. People in the higher echelons could no longer rely on the conventional symbols and had to develop leadership skills and knowledge to inspire respect. ____ + Spreading responsibility for problem solving across the organisation is another idea Semler strongly encourages and I think this partly explains why it's more fun working in an agile environment. Information in general is more accessible and because of that people have more opportunity to solve problems than they otherwise would. * Semler discusses the need to *keep the organisation lean even when times are good* which he acknowledges is much more difficult than trying to keep it lean when times are hard! For Semco this involves being careful when hiring people to work on product lines which they knew had a short life span as well as ensuring that they didn't add any unnecessary roles just because sales were strong. Towards the end of the book Semler suggests that his goal with Semco was to '*make people look forward to coming to work in the morning*' which seems like quite a noble objective! I found it quite interesting that although a lot of these ideas seem a bit radical, they made sense in Semco's context because they were introduced incrementally and only after some other ideas had been introduced which helped smooth the way. It's certainly an interesting read and the ideas expressed at quite different than what is typical in most organisations.
null
null
[ 0.03360737860202789, 0.007322215940803289, -0.00018480047583580017, 0.0399421826004982, 0.0890524759888649, 0.02632589265704155, 0.028538456186652184, 0.051439814269542694, 0.0261427853256464, -0.025549689307808876, -0.029031820595264435, 0.002434849739074707, -0.04565674811601639, 0.011003069579601288, -0.04910505935549736, 0.061029721051454544, 0.054288893938064575, 0.029294272884726524, -0.005577072035521269, -0.01926388032734394, 0.03365475684404373, 0.08462325483560562, 0.052672043442726135, 0.02819022163748741, 0.051198337227106094, -0.0010370061499997973, 0.01586276851594448, -0.022978153079748154, -0.04090569168329239, -0.005276271607726812, 0.04257003590464592, 0.00984401535242796, 0.002736288821324706, 0.02460513450205326, 0.018818814307451248, -0.016100898385047913, 0.005481445696204901, 0.0005934400833211839, 0.013483259826898575, -0.014553498476743698, -0.07853443175554276, 0.04718075692653656, -0.017380988225340843, 0.02658378891646862, -0.04887599125504494, -0.002658145036548376, -0.03164227306842804, 0.016130676493048668, 0.00927172414958477, 0.004822925664484501, -0.06065939739346504, 0.03017888031899929, -0.00040694919880479574, -0.004407079890370369, -0.017785310745239258, 0.03479452803730965, -0.0077590132132172585, -0.041011083871126175, 0.007345384452491999, -0.05221281573176384, 0.007854009978473186, -0.030651355162262917, -0.009018255397677422, 0.03985712304711342, 0.03804142400622368, -0.04122265800833702, 0.008104994893074036, 0.04206598550081253, -0.040748558938503265, 0.012125852517783642, -0.03666719049215317, -0.0015030987560749054, -0.006760621443390846, -0.002566960174590349, 0.0026624128222465515, -0.07875379174947739, 0.0080536724999547, 0.06426306813955307, 0.017224544659256935, 0.03805050253868103, -0.024692364037036896, 0.019924288615584373, -0.007180620450526476, 0.026751356199383736, -0.027904866263270378, -0.03234894573688507, -0.002539545763283968, -0.020891372114419937, -0.07879722118377686, 0.04901337996125221, -0.0007227629539556801, -0.038137394934892654, 0.008347458206117153, 0.051820702850818634, -0.0009532042313367128, 0.010478528216481209, 0.04754503071308136, -0.004282298032194376, -0.01773487776517868, -0.025220148265361786, -0.04596954211592674, -0.030952615663409233, 0.0027828929014503956, 0.01119054201990366, -0.08195475488901138, -0.004638731013983488, -0.013606526888906956, 0.006579870358109474, -0.00037931776023469865, -0.0014646367635577917, -0.03921099007129669, 0.007025991566479206, -0.022304128855466843, 0.01997430995106697, -0.051986560225486755, 0.07428921014070511, 0.02874637395143509, -0.042055271565914154, -0.016406815499067307, -0.01708172634243965, 0.04112601280212402, 0.03705434873700142, 0.0008945061708800495, 0.06444671005010605, 0.014231164008378983, -0.015339159406721592, -0.04341161996126175, 0.04978777468204498, -0.006949985399842262, -0.05836911499500275, -0.01846924237906933, 0.05229160189628601, -0.039949316531419754, -0.011504738591611385, -0.006644455716013908, -0.03499878942966461, -0.007462349720299244, 0.019730189815163612, 0.017540620639920235, 0.05569877848029137, 0.018469663336873055, -0.032697249203920364, 0.021829865872859955, 0.024120565503835678, 0.03860839083790779, -0.034090228378772736, 0.0011305626248940825, -0.026828844100236893, -0.05787765607237816, -0.029975932091474533, 0.0017291645053774118, 0.007183184381574392, 0.000643032428342849, -0.037738002836704254, 0.028886742889881134, 0.0741775780916214, 0.07327782362699509, 0.0016605888959020376, -0.006717609241604805, 0.04197101667523384, 0.04070710390806198, 0.03535986319184303, -0.0009585205698385835, 0.02658291906118393, 0.0017238656291738153, -0.001393618294969201, 0.0033365425188094378, 0.044617652893066406, -0.013951453380286694, 0.012327905744314194, -0.046498559415340424, -0.0379888080060482, 0.025683023035526276, -0.040855467319488525, -0.02172015607357025, 0.06114506721496582, 0.07390443235635757, 0.04413894563913345, 0.054364778101444244, 0.00952024757862091, -0.08005887269973755, 0.047008492052555084, 0.021182475611567497, 0.03264321759343147, 0.038117535412311554, -0.02173037640750408, 0.04095141962170601, 0.03881276771426201, 0.0008229459053836763, 0.053474731743335724, -0.07393065094947815, -0.10281140357255936, 0.00008939635881688446, -0.0141543447971344, 0.033242639154195786, -0.0303061380982399, 0.02324744686484337, 0.06521009653806686, -0.012658226303756237, 0.055271632969379425, -0.0037089947145432234, 0.0010726744076237082, 0.02026526816189289, -0.03079144097864628, -0.03499748185276985, 0.07620727270841599, 0.021603647619485855, 0.00995127484202385, -0.0396115668118, 0.02072814479470253, -0.01425116416066885, -0.02667129598557949, 0.042867474257946014, -0.025709569454193115, 0.039779242128133774, -0.0033136794809252024, 0.06031164526939392, -0.029231522232294083, 0.044895969331264496, -0.02140164002776146, 0.02540714666247368, 0.012158486992120743, -0.03767310455441475, 0.05018395185470581, 0.0018457036931067705, 0.10273688286542892, 0.07628794759511948, -0.06107964739203453, -0.04267597571015358, 0.04355763643980026, 0.03669005259871483, -0.04428822919726372, 0.008240961469709873, 0.0075891874730587006, 0.020908819511532784, 0.010728632099926472, -0.06925181299448013, -0.04885684326291084, 0.029616165906190872, -0.05187801644206047, 0.007616857532411814, 0.045551713556051254, -0.0063385674729943275, 0.07171723991632462, 0.0010882572969421744, 0.004283816087990999, -0.010947035625576973, -0.005281874444335699, -0.04057835042476654, 0.003923702519387007, -0.01036086492240429, -0.011887619271874428, 0.02969271130859852, -0.022965537384152412, -0.012353489175438881, -0.049146488308906555, -0.031590405851602554, 0.028736500069499016, 0.05741121619939804, 0.0529819056391716, -0.007120898924767971, 0.050143152475357056, -0.027156302705407143, 0.05050173029303551, 0.007647886406630278, -0.045285142958164215, -0.04300566762685776, -0.03764532133936882, 0.010454055853188038, 0.012149062007665634, 0.0038779505994170904, 0.0026749162934720516, -0.006730854976922274, 0.0329420305788517, 0.014976579695940018, -0.009153252467513084, 0.03809807077050209, -0.0066099390387535095, 0.003820141078904271, -0.03553586080670357, -0.027069801464676857, 0.06297217309474945, -0.022523123770952225, -0.004493548069149256, 0.03085186518728733, -0.09754781424999237, 0.022757740691304207, -0.06553220003843307, -0.0454041063785553, -0.0048156557604670525, -0.0031934764701873064, 0.03532418981194496, 0.03948812186717987, 0.025283901020884514, 0.03273111209273338, 0.010262619704008102, 0.006296681240200996, 0.006111245136708021, -0.013640383258461952, 0.032661039382219315, 0.008535172790288925, -0.01645725406706333, 0.043002158403396606, -0.006868226453661919, 0.024254921823740005, -0.06059100851416588, 0.058294814079999924, -0.036132052540779114, -0.2713407576084137, 0.036175407469272614, 0.008651815354824066, -0.04476196691393852, 0.013706261292099953, -0.031004318967461586, 0.008753553032875061, -0.052847977727651596, -0.030398717150092125, 0.018301770091056824, -0.038562748581171036, -0.03486374393105507, -0.01673872396349907, 0.041532251983881, 0.003974977880716324, 0.01953233778476715, 0.03561588376760483, -0.03286757320165634, 0.009104873053729534, 0.05012919381260872, -0.01965292915701866, -0.0673757791519165, -0.017556607723236084, 0.05521387979388237, 0.05435895174741745, 0.08822433650493622, -0.0822882428765297, 0.04717539995908737, -0.06440850347280502, -0.002112556481733918, 0.005414308048784733, -0.0023929262533783913, 0.013636119663715363, -0.030737515538930893, 0.0040827551856637, -0.03513478487730026, 0.04105278477072716, -0.0036782335955649614, -0.018748441711068153, -0.011455470696091652, -0.017752880230545998, -0.02174125611782074, -0.011485502123832703, 0.019686957821249962, 0.06428120285272598, 0.01524609886109829, -0.09005840122699738, -0.012355559505522251, -0.022737132385373116, 0.06172377988696098, -0.0538560152053833, -0.03182637318968773, -0.02324628084897995, 0.01523641124367714, -0.008753549307584763, -0.014406125992536545, -0.02027137577533722, -0.013572518713772297, -0.03636753186583519, -0.024413758888840675, -0.015149449929594994, -0.026366999372839928, -0.007390070240944624, -0.04260699823498726, -0.027160484343767166, -0.058682821691036224, -0.06800276786088943, -0.010239295661449432, 0.07825230062007904, -0.02063143439590931, -0.03489363566040993, 0.02877097576856613, 0.0032016022596508265, -0.10465528070926666, -0.007747692056000233, -0.0014012265019118786, -0.02631901018321514, 0.014880664646625519, 0.030263524502515793, 0.04738827049732208, -0.013096669688820839, -0.056058213114738464, 0.017752060666680336, 0.0016565013211220503, 0.033428750932216644, -0.0331876166164875, 0.048296015709638596, 0.04273834824562073, -0.029945965856313705, 0.009679535403847694, 0.06927025318145752, 0.012964044697582722, -0.025647930800914764, -0.018427196890115738, 0.033277034759521484, -0.006410984322428703, -0.008355990052223206, -0.010549476370215416, -0.014014686457812786, 0.0285783801227808, -0.00559512572363019, -0.055036306381225586, 0.018108215183019638, -0.030395226553082466, -0.006118337158113718, -0.00667642243206501, -0.0336015559732914, 0.006361555773764849, 0.017251893877983093, 0.017813900485634804, 0.020839102566242218, -0.034199152141809464, 0.01436262670904398, -0.04432825744152069, -0.016168266534805298, -0.01742423325777054, 0.00875250343233347, 0.05578433349728584, -0.00215804111212492, 0.007791419513523579, -0.050360146909952164, -0.004163295030593872, -0.022145908325910568, -0.027255715802311897, -0.06649653613567352, -0.004125632811337709, -0.005902034696191549, -0.02543317712843418, 0.020624741911888123, 0.009370236657559872, -0.021673155948519707, 0.007261083927005529, 0.027088019996881485, -0.02577127330005169, 0.018453165888786316, -0.04276362806558609, -0.07484166324138641, -0.04290962591767311, 0.003281370736658573, 0.015078367665410042, -0.0023338489700108767, 0.042105525732040405, -0.011280783452093601, 0.02277575246989727, 0.033077578991651535, 0.02366415597498417, 0.010070250369608402, -0.019967423751950264, 0.0377836599946022, 0.03793419152498245, 0.001156014041043818, -0.05113350600004196, 0.01690293289721012, -0.04425644129514694, -0.018966365605592728, -0.02291960082948208, 0.04696810618042946, -0.015056670643389225, -0.03300787881016731, -0.00959308072924614, 0.0073619745671749115, -0.06438881158828735, -0.03556119278073311, -0.025760753080248833, 0.03943069651722908, 0.060831572860479355, -0.024996202439069748, 0.009519810788333416, -0.007836464792490005, 0.00827763695269823, 0.0045809331350028515, 0.019249463453888893, -0.04909072443842888, 0.005431342404335737, 0.006666606292128563, -0.005152959376573563, -0.007710042409598827, -0.00006548505189130083, 0.036591798067092896, 0.006329395808279514, -0.0029891750309616327, -0.023028776049613953, -0.00319926580414176, 0.00988477747887373, 0.04443049430847168, 0.03460098057985306, 0.0007949470309540629, 0.000047839148464845493, -0.004566969815641642, -0.039829451590776443, -0.03872217983007431, -0.016056068241596222, -0.009792382828891277, 0.020268280059099197, -0.03775137662887573, -0.06473549455404282, 0.06690565496683121, 0.008680780418217182, 0.006418534554541111, 0.03514211252331734, -0.0230431966483593, -0.0013555558398365974, -0.021527808159589767, 0.027201199904084206, 0.03485269844532013, -0.0656362846493721, 0.0010098883649334311, -0.013386243022978306, -0.009148000739514828, 0.015010565519332886, -0.02383480779826641, -0.004563723690807819, -0.01576438546180725, -0.030460920184850693, 0.019946372136473656, -0.08949856460094452, -0.007930487394332886, -0.04999849572777748, 0.0046628243289887905, -0.00197117798961699, 0.00865691527724266, -0.026628095656633377, -0.016910981386899948, -0.005123939830809832, -0.026490921154618263, 0.022378796711564064, -0.035054080188274384, -0.004307304974645376, 0.006186141632497311, -0.039218105375766754, -0.011767885647714138, -0.02802233025431633, -0.0004036709142383188, 0.0292179137468338, -0.03500576689839363, 0.01302712969481945, -0.02200167067348957, -0.009483586065471172, 0.015014545060694218, 0.03465961292386055, -0.015206883661448956, -0.029227839782834053, -0.04062739014625549, -0.010484820231795311, -0.03550437465310097, 0.011784630827605724, -0.017881490290164948, 0.004964926280081272, 0.048102281987667084, 0.061433177441358566, 0.030888129025697708, 0.014348465949296951, -0.009637369774281979, -0.005428704433143139, 0.022401031106710434, -0.04974115639925003, -0.017799237743020058, -0.019802307710051537, -0.040901895612478256, 0.0033309583086520433, 0.011822161264717579, 0.031742922961711884, -0.026022296398878098, 0.04643404483795166, 0.01988356187939644, 0.040229007601737976, 0.018832655623555183, 0.019291739910840988, 0.03709656000137329, -0.059931110590696335, 0.001847497303970158, -0.08310627192258835, -0.02640189230442047, 0.012526193633675575, 0.019353210926055908, 0.017054904252290726, 0.010471248999238014, -0.04243002459406853, 0.029517147690057755, -0.07843228429555893, -0.04350142180919647, 0.03979934751987457, -0.012982974760234356, -0.0244892667979002, 0.01881299540400505, -0.07234792411327362, 0.032034724950790405, -0.000819771084934473, -0.057318173348903656, -0.003249474335461855, -0.027373163029551506, 0.06238078698515892, 0.0017628823406994343, 0.04326190799474716, -0.05414970964193344, -0.014087100513279438, 0.09255840629339218, 0.012461313977837563, -0.011351430788636208, 0.06588166952133179, 0.006326938979327679, 0.030362028628587723, 0.03371587023139, 0.02817634679377079, -0.004390231799334288, 0.0018325147684663534, -0.024625282734632492, -0.06307170540094376, -0.0004067926201969385, -0.005724823568016291, -0.033793698996305466, -0.053886134177446365, 0.05424019321799278, 0.025863882154226303, -0.019261302426457405, -0.0669214129447937, -0.002453571418300271, -0.042669083923101425, -0.017230242490768433, -0.024597153067588806, -0.004751790314912796, -0.04939752444624901, 0.03115588240325451, -0.0001353585539618507, 0.017249220982193947, 0.06063268333673477, -0.00761378463357687, -0.012727801688015461, -0.02227703481912613, 0.09800746291875839, 0.07771093398332596, 0.08294956386089325, -0.00579731585457921, 0.07717497646808624, -0.005784682929515839, -0.051288481801748276, 0.03160557895898819, 0.005403194110840559, -0.009042724967002869, -0.02224762737751007, 0.014012192375957966, 0.04813270643353462, -0.02856402099132538, 0.0743710994720459, -0.004107438027858734, -0.03813565894961357, -0.01890549063682556, 0.01694379560649395, 0.01784341409802437, 0.07954874634742737, -0.000177959562279284, 0.023697009310126305, -0.04543159157037735, -0.0625191181898117, 0.0279217679053545, -0.019557712599635124, -0.016155943274497986, 0.03688424825668335, -0.016296206042170525, 0.03591064363718033, 0.0063125379383563995, 0.018607351928949356, 0.07469099760055542, -0.03710628300905228, 0.025197714567184448, -0.0011115297675132751, 0.015600906684994698, -0.018986644223332405, 0.011923654936254025, -0.02426556870341301, -0.013828970491886139, -0.017506718635559082, -0.033297400921583176, -0.03401349112391472, -0.0025704018771648407, -0.00035324302734807134, 0.03699256479740143, -0.010300926864147186, -0.001707157352939248, 0.028647657483816147, -0.0037268607411533594, -0.018641510978341103, -0.05475938320159912, -0.022700518369674683, -0.023615384474396706, -0.04220356047153473, -0.01853577233850956, 0.017298420891165733, 0.0032199625857174397, -0.0303668063133955, -0.00041367363883182406, -0.0069489809684455395, -0.046515367925167084, 0.04679368808865547, -0.05241237208247185, -0.026112884283065796, -0.013752009719610214, 0.03259260952472687, 0.012524489313364029, 0.008862845599651337, 0.05592377111315727, -0.012090593576431274, -0.018631020560860634, -0.0034723456483334303, 0.028118181973695755, 0.012752818875014782, 0.011144689284265041, -0.00001430385236744769, -0.07058223336935043, 0.01148170605301857, 0.028044141829013824, -0.019302140921354294, -0.06842857599258423, 0.03560921177268028, 0.02903939038515091, 0.028165623545646667, 0.03970757871866226, 0.01239307876676321, 0.01439772080630064, -0.025462176650762558, 0.0006118421442806721, -0.006545393727719784, 0.0003220538783352822, 0.042967937886714935, -0.01724509708583355, 0.07930652797222137, 0.027666190639138222, -0.0032814142759889364, -0.035770684480667114, -0.008507715538144112, 0.02182648330926895, 0.021802596747875214, -0.022624220699071884, -0.02739066071808338, -0.023765388876199722, -0.09177131205797195, -0.026939094066619873, 0.016365161165595055, -0.030728260055184364, -0.03638462349772453, 0.030838409438729286, 0.015412495471537113, -0.019624903798103333, 0.0005613040993921459, -0.051071345806121826, 0.03428352624177933, -0.010374326258897781, -0.014223789796233177, 0.00013330142246559262, 0.020746896043419838, -0.003867811756208539, -0.023178333416581154, 0.00974053144454956, -0.04716047644615173, 0.010011211037635803, -0.007436076179146767, 0.0095795514062047, 0.056304097175598145, 0.025514138862490654, -0.015304990112781525 ]
[ -0.0682515874505043, 0.00770841958001256, -0.025840172544121742, -0.016779351979494095, 0.057886846363544464, -0.04069958254694939, 0.024680353701114655, 0.025528261438012123, -0.016714096069335938, -0.02204292267560959, 0.01767740584909916, 0.014098390936851501, -0.001062931027263403, -0.03288092091679573, 0.08223114907741547, 0.004243363160640001, -0.015386982820928097, -0.10157005488872528, 0.00138237199280411, 0.04111756756901741, -0.014931927435100079, -0.05045834183692932, -0.048299431800842285, 0.009023653343319893, 0.008941788226366043, -0.015367330051958561, 0.03777901455760002, -0.002409246750175953, -0.015902701765298843, -0.16030310094356537, 0.011219616048038006, -0.00453477306291461, 0.07076968252658844, 0.0015597520396113396, 0.03255614638328552, 0.06313148885965347, 0.03460182249546051, -0.007753160782158375, 0.008870145305991173, 0.05019744113087654, 0.010353256948292255, 0.019994257017970085, -0.034980081021785736, -0.011494310572743416, 0.020712433382868767, 0.008993693627417088, 0.010735183954238892, -0.029391976073384285, -0.03134630620479584, 0.011370710097253323, -0.07843352854251862, -0.03263439983129501, -0.025995073840022087, 0.012744436971843243, -0.0008265419164672494, 0.019367530941963196, 0.023537077009677887, 0.039892710745334625, -0.0013905746163800359, 0.027859481051564217, 0.019065452739596367, -0.03576128929853439, -0.15902966260910034, 0.0596662275493145, 0.04612256586551666, 0.04218588024377823, -0.07244037836790085, -0.007262689061462879, -0.050498899072408676, 0.06698043644428253, 0.030070936307311058, -0.04975641891360283, -0.019573023542761803, -0.004762008786201477, 0.02215869165956974, 0.014694536104798317, -0.004043940920382738, 0.04695938155055046, 0.015350854955613613, -0.05163643881678581, -0.005809498950839043, -0.00885031372308731, -0.035631872713565826, -0.010217188857495785, -0.05021856725215912, 0.034075863659381866, 0.018839409574866295, 0.049546949565410614, 0.035283271223306656, 0.017872639000415802, 0.05068815127015114, 0.042632535099983215, 0.041366931051015854, -0.029334714636206627, -0.08074472844600677, -0.03564661741256714, -0.00946072768419981, 0.051226481795310974, -0.07648369669914246, 0.47104474902153015, 0.023270346224308014, -0.010182471014559269, 0.0781225636601448, 0.013036317192018032, 0.007389640435576439, 0.028807858005166054, 0.021619731560349464, -0.030860278755426407, 0.05169368535280228, 0.0036266024690121412, 0.035217661410570145, 0.04478555545210838, 0.06533540785312653, -0.047598570585250854, 0.049381840974092484, 0.034387823194265366, 0.02491171658039093, 0.0136953666806221, -0.008380256593227386, -0.01288890652358532, -0.0029746287036687136, 0.025269756093621254, 0.015634680166840553, 0.021520452573895454, -0.04675353690981865, -0.047541599720716476, 0.051563989371061325, 0.05892980098724365, 0.02076970599591732, -0.012605174444615841, 0.043531835079193115, -0.0374281220138073, -0.05124812200665474, -0.0000324036882375367, 0.009100107476115227, 0.007463511545211077, 0.014333456754684448, -0.01575096882879734, -0.0031286259181797504, 0.05169671028852463, 0.009489801712334156, -0.0013280934654176235, -0.020760245621204376, -0.051377151161432266, -0.03535563871264458, 0.1026877909898758, 0.06382667273283005, -0.0479598268866539, -0.007318914867937565, -0.0039974660612642765, 0.004302102606743574, 0.03923159837722778, 0.01979799196124077, -0.07082457840442657, 0.019007375463843346, -0.009225758723914623, 0.08905225992202759, -0.0003477308782748878, -0.049300290644168854, 0.007493730168789625, -0.003703153459355235, -0.02116517722606659, -0.051999084651470184, 0.0524308979511261, 0.07901681959629059, -0.11408242583274841, -0.026905877515673637, 0.006346351932734251, 0.026780683547258377, -0.0821959376335144, -0.008425742387771606, 0.01366253662854433, -0.04976578429341316, 0.011242318898439407, 0.07552319765090942, -0.04108412563800812, -0.02326446771621704, 0.02787255495786667, 0.020240992307662964, 0.027740223333239555, 0.014356032013893127, 0.011351684108376503, -0.029593994840979576, -0.006442651152610779, -0.043320491909980774, -0.04591381549835205, -0.01746390014886856, -0.03483546897768974, -0.0443720705807209, 0.018224002793431282, -0.0033952249214053154, 0.015672441571950912, -0.09674755483865738, 0.07818812876939774, -0.026626911014318466, -0.03873438388109207, -0.010723531246185303, -0.0018249962013214827, -0.033215250819921494, -0.0009030482033267617, -0.09038402885198593, 0.012478621676564217, -0.07237299531698227, 0.013401541858911514, -0.05897000804543495, 0.04005380719900131, 0.04535261541604996, -0.009237495250999928, 0.11658699810504913, 0.022923141717910767, -0.02096744254231453, -0.017534039914608, 0.026623578742146492, 0.04680066928267479, 0.027077890932559967, 0.010004743002355099, 0.028320642188191414, 0.021602986380457878, 0.012642101384699345, 0.0016605869168415666, 0.010133354924619198, 0.042463771998882294, -0.03716737776994705, -0.33646753430366516, -0.009262890554964542, -0.06919307261705399, -0.00453796423971653, 0.005833833012729883, -0.02656765840947628, 0.019504502415657043, -0.013959353789687157, -0.007234846241772175, 0.029658863320946693, 0.0629526823759079, -0.009656015783548355, 0.0013062730431556702, -0.04934271425008774, -0.0005384876276366413, 0.0037366810720413923, -0.05563587322831154, -0.0057440949603915215, -0.051873188465833664, -0.026264352723956108, 0.021893346682190895, 0.03352376073598862, -0.057461611926555634, -0.020966559648513794, -0.000460611074231565, -0.054777491837739944, 0.08424536883831024, -0.004597887862473726, 0.051938850432634354, -0.02507508173584938, 0.026601463556289673, -0.0024066667538136244, 0.03680058941245079, -0.09758108109235764, -0.0005908960592932999, -0.008882559835910797, 0.0030325420666486025, -0.05729175731539726, -0.006025020033121109, -0.005597070325165987, -0.0539679229259491, 0.021872688084840775, -0.07893490046262741, -0.002053717849776149, -0.07551658153533936, 0.01945894956588745, -0.02680232748389244, -0.016192898154258728, -0.02177710458636284, 0.049309104681015015, -0.0009502568864263594, 0.00012815583613701165, 0.003324301680549979, -0.003518910612910986, -0.014326957054436207, -0.054582443088293076, -0.09121326357126236, 0.03606981039047241, -0.006838326808065176, -0.0031645456328988075, 0.014824525453150272, 0.05668138712644577, 0.021892009302973747, -0.034124672412872314, 0.01725512556731701, -0.020804887637495995, -0.017500318586826324, 0.03472526744008064, 0.028398914262652397, -0.0014994853409007192, -0.004448389168828726, 0.07019118964672089, -0.013038230128586292, -0.04332536831498146, 0.02101357840001583, 0.015989555045962334, -0.012322286143898964, -0.0023024852853268385, -0.016995705664157867, 0.00028160575311630964, 0.038285743445158005, -0.005739857442677021, 0.02138022892177105, 0.00749597605317831, -0.01145175937563181, 0.02290947735309601, -0.018927332013845444, -0.054120514541864395, 0.05832244083285332, 0.03817876800894737, -0.02305280789732933, -0.003932415973395109, -0.046195268630981445, -0.05611295625567436, 0.06591367721557617, -0.01738985814154148, -0.2521038055419922, -0.005556425079703331, 0.017017357051372528, 0.026782745495438576, 0.0005697312299162149, 0.019553309306502342, -0.0057268282398581505, -0.032046664506196976, 0.030343754217028618, 0.04155540466308594, 0.05090636387467384, 0.01895490288734436, -0.011592530645430088, -0.01655476540327072, 0.04456453397870064, -0.014536560513079166, 0.009889734908938408, 0.00017121252312790602, 0.01923668570816517, 0.007815939374268055, 0.017209457233548164, -0.018503783270716667, 0.14325961470603943, 0.017405282706022263, 0.020597198978066444, 0.03302064538002014, -0.005360312294214964, 0.017070000991225243, 0.03772486746311188, 0.004891685210168362, 0.05378902703523636, -0.013371629640460014, 0.01945437677204609, -0.007890915498137474, 0.016580937430262566, -0.07456246763467789, -0.04570189118385315, 0.04610603675246239, 0.009857483208179474, -0.0023104811552911997, 0.001959684304893017, 0.010066412389278412, -0.012206008657813072, 0.027583634480834007, 0.09015728533267975, -0.020049650222063065, -0.03125835210084915, -0.04519183561205864, -0.0069131613709032536, -0.004268183372914791, -0.046051185578107834, -0.05727783218026161, 0.018905173987150192, 0.008277351967990398, 0.024838782846927643, 0.06269190460443497, 0.006054344121366739, -0.030013350769877434, 0.008609059266746044, -0.017981017008423805, -0.038622722029685974, -0.030004773288965225, 0.07151318341493607, 0.04245324060320854, 0.05304607376456261 ]
[ -0.01622934453189373, 0.02103022113442421, -0.017247941344976425, 0.018544621765613556, -0.007601927500218153, -0.00904711615294218, 0.030258364975452423, 0.0059869554825127125, 0.00551890954375267, -0.0010330401128157973, 0.007042324170470238, 0.010389421135187149, 0.04427952691912651, -0.024592263624072075, 0.027835678309202194, -0.011461440473794937, 0.031605109572410583, 0.010194579139351845, 0.019448749721050262, -0.006082065403461456, -0.014117286540567875, -0.01757517270743847, -0.0296197347342968, 0.003626273013651371, -0.017841733992099762, -0.030852187424898148, 0.017574509605765343, 0.0009159832261502743, 0.004303693305701017, -0.1406210958957672, -0.03905324265360832, -0.024397529661655426, 0.018252087756991386, 0.009673522785305977, 0.02917216718196869, 0.0027818921953439713, 0.0507771298289299, 0.002201708499342203, 0.015575559809803963, 0.006983526516705751, -0.0006792288040742278, -0.015235657803714275, 0.00010671560448827222, 0.008003190159797668, -0.023052889853715897, -0.008739441633224487, 0.01253300067037344, -0.021687591448426247, -0.023159204050898552, -0.013741649687290192, -0.03191927447915077, 0.0020593986846506596, -0.005327132530510426, 0.03721009939908981, 0.008965793065726757, -0.007281840313225985, 0.004919643979519606, -0.008122743107378483, 0.00984223186969757, -0.02229415811598301, 0.0035945898853242397, -0.025290830060839653, -0.04516906291246414, 0.0014692923286929727, -0.011456288397312164, -0.021308546885848045, 0.005453888326883316, 0.005988774821162224, -0.07471337914466858, 0.011767687276005745, -0.004275001119822264, -0.013696715235710144, -0.006874495651572943, -0.013640991412103176, 0.0006457141716964543, -0.0235761571675539, 0.005971224047243595, -0.03399806469678879, 0.031871020793914795, -0.011228559538722038, -0.044403061270713806, 0.022591833025217056, 0.002985847182571888, 0.00683612609282136, -0.05235977843403816, 0.0077308774925768375, 0.03005930222570896, 0.005635745357722044, 0.037243809551000595, 0.03610871732234955, 0.014472325332462788, 0.025671230629086494, -0.01114405132830143, -0.030827194452285767, -0.09841656684875488, -0.033451758325099945, 0.009648668579757214, 0.014523771591484547, -0.001248069922439754, 0.8595951795578003, -0.015846049413084984, 0.031565260142087936, 0.038746580481529236, 0.0009472868405282497, -0.0022287731990218163, 0.002009886782616377, 0.018483560532331467, 0.0141728725284338, -0.016858866438269615, -0.0484616681933403, -0.011687885969877243, 0.01833188161253929, 0.0014552462380379438, 0.009732842445373535, 0.02651076205074787, 0.031383417546749115, 0.01259583979845047, 0.00672006793320179, -0.005358519963920116, 0.035534463822841644, 0.06809410452842712, 0.03098757565021515, -0.022211281582713127, 0.014554216526448727, 0.014018331654369831, -0.14407978951931, -0.00962816271930933, -7.966728557021768e-33, 0.025374524295330048, 0.016552038490772247, -0.008780556730926037, 0.014989057555794716, -0.006906379945576191, 0.01003367267549038, 0.00325690396130085, 0.03222456946969032, -0.039520129561424255, 0.013745914213359356, -0.023553378880023956, 0.008376725018024445, 0.012538597919046879, -0.03077726997435093, 0.030347613617777824, -0.010883869603276253, 0.0006523833726532757, 0.03453100472688675, 0.02019764669239521, 0.002658659126609564, 0.07273197919130325, 0.025244034826755524, -0.009601910598576069, -0.0000040973504837893415, 0.031959258019924164, 0.02987486682832241, -0.0017938020173460245, 0.005976229440420866, -0.0058556306175887585, -0.03457755967974663, -0.006344140041619539, 0.05293390899896622, -0.0005076536326669157, -0.024769378826022148, -0.010168470442295074, -0.04115112125873566, -0.021857870742678642, -0.00112486956641078, 0.0015104380436241627, -0.07284688949584961, -0.037740737199783325, 0.029675263911485672, -0.020592231303453445, 0.0010431635892018676, -0.004894101060926914, 0.009777149185538292, 0.006245289463549852, -0.009752793237566948, 0.029693422839045525, 0.010274258442223072, 0.020860958844423294, -0.018026672303676605, 0.018929271027445793, -0.016159463673830032, -0.032851506024599075, -0.01330350898206234, 0.00449347123503685, -0.003992079291492701, 0.018881216645240784, 0.020610610023140907, 0.016905559226870537, -0.014196766540408134, -0.013302527368068695, -0.01054494921118021, 0.009504160843789577, -0.0056610931642353535, 0.002719803247600794, 0.025339771062135696, -0.008847974240779877, -0.0175179373472929, -0.03835359215736389, -0.005104399751871824, -0.008286725729703903, -0.0031245716381818056, -0.02656315453350544, 0.00594148738309741, -0.01940247230231762, 0.035822030156850815, 0.0033794732298702, 0.04060348495841026, -0.00870923325419426, -0.0011389754945412278, -0.011482227593660355, -0.04360927641391754, 0.013835659250617027, 0.025183700025081635, 0.021459953859448433, 0.02219952642917633, -0.00487761665135622, 0.04370155185461044, 0.02688424661755562, 0.001985108247026801, -0.0008865933050401509, 0.008899770677089691, -0.023112798109650612, 8.129121632219929e-33, -0.01184010598808527, -0.028122728690505028, -0.012800260446965694, -0.013283078558743, 0.018917465582489967, 0.016726186498999596, 0.020541422069072723, -0.003741871565580368, -0.039158932864665985, 0.04343941807746887, -0.02125726081430912, -0.02786286175251007, -0.032137431204319, 0.04929029941558838, 0.01943674311041832, -0.028850629925727844, 0.031162533909082413, -0.01856071501970291, -0.0017454258631914854, 0.01781627908349037, -0.0054055978544056416, -0.005640828981995583, -0.010054963640868664, 0.02758803218603134, 0.04267046973109245, 0.07057885825634003, -0.0471557080745697, 0.004890754818916321, -0.022112948819994926, 0.03671864792704582, -0.01293076854199171, -0.023249812424182892, 0.015986958518624306, 0.024251077324151993, -0.019206607714295387, -0.009032610803842545, -0.020787503570318222, -0.008207705803215504, 0.03202912583947182, -0.0009932882385328412, 0.0023223201278597116, 0.005944521632045507, 0.017931168898940086, 0.02770950086414814, 0.005597964394837618, 0.004046640824526548, 0.0056092445738613605, -0.031055158004164696, -0.03901590779423714, 0.005321276839822531, -0.014747858047485352, -0.00232754391618073, -0.004198677372187376, 0.02466590516269207, -0.02649589627981186, -0.006508820690214634, -0.020499300211668015, -0.003236450720578432, -0.007538400590419769, 0.020681988447904587, -0.029194416478276253, 0.02670307829976082, -0.025800086557865143, 0.037322308868169785, -0.008300846442580223, 0.011831533163785934, -0.006927726324647665, -0.00591234490275383, -0.0051064686849713326, -0.010265144519507885, -0.014904435724020004, -0.019065966829657555, -0.0024558010045439005, 0.008276869542896748, -0.02321646735072136, -0.028933126479387283, -0.013479757122695446, -0.018519794568419456, -0.042371198534965515, 0.035261668264865875, 0.005066594108939171, -0.007478949148207903, -0.013701730407774448, 0.0189644917845726, -0.03440938517451286, 0.027384314686059952, 0.00016355383559130132, 0.011010806076228619, 0.01736568473279476, -0.009635335765779018, -0.014534389600157738, -0.038610782474279404, 0.022579848766326904, 0.021373476833105087, -0.009819500148296356, -1.3529535713985297e-8, -0.03580945357680321, -0.02165628783404827, 0.011296691372990608, 0.014713834039866924, 0.024764951318502426, -0.014502396807074547, -0.02918536588549614, -0.02002342976629734, -0.027418486773967743, 0.041474178433418274, 0.041311051696538925, -0.02891351841390133, 0.008775039575994015, 0.019749034196138382, 0.01011970266699791, -0.053503215312957764, 0.017236702144145966, -0.004458918236196041, 0.02855827659368515, 0.009604733437299728, 0.05283321812748909, 0.04200936108827591, -0.01819150522351265, 0.023731248453259468, 0.0346505306661129, 0.013059664517641068, -0.038512229919433594, -0.07354109734296799, 0.016684619709849358, 0.004381971899420023, 0.0018231917638331652, -0.02275972068309784, -0.05700499936938286, 0.022884106263518333, -0.021526921540498734, -0.018900331109762192, 0.003768007270991802, 0.015076154842972755, 0.00646760081872344, -0.008269538171589375, 0.008763597346842289, 0.002384908962994814, -0.0303893331438303, -0.025590138509869576, -0.016085321083664894, 0.007017362862825394, -0.03034600056707859, -0.013873613439500332, 0.017754558473825455, -0.041326720267534256, 0.024229424074292183, -0.03196188434958458, 0.04109901934862137, 0.029648151248693466, 0.0006471842061728239, -0.027428407222032547, 0.029880939051508904, 0.002242345130071044, -0.021879766136407852, 0.0050597102381289005, 0.0047998568043112755, -0.001241251709870994, -0.005301461089402437, -0.036701541393995285 ]
maverick-book-review
https://markhneedham.com/blog/2010/04/14/maverick-book-review
false
2010-04-14 22:53:07
Agile: Slimming down stories
[ "lean" ]
[ "Agile" ]
On the project I'm currently working on we have several stories around writing the code that does various different calculations based on user input and then shows the results on the screen. The original assumption on these stories was that we would be looking up the data of the business rules from a local database. The data would be copied across from a central database into that one for this project. After some discussion about one of the stories, http://twitter.com/christianralph[Christian] pointed out that the only reason that we needed to have that data in the database was so that it would be configurable in production without having to make code changes and redeploy the application. I'd been working with the assumption that these stories could only be considered done when the data was coming from the database but we've extracted the 'configurability of data' out into another story which the business can choose to prioritise if that's more valuable than other features we're working on. It didn't even occur to me that we could pull this type of thing out but it seems like a useful approach as part of our drive to deliver the core functionality of the application as quickly as possible. If we then need to go back and put in the configurability of the data, the lookup of that data is all hidden behind an interface so we shouldn't see too much pain by choosing to delay doing that.
null
null
[ 0.020228959619998932, 0.0018118812004104257, -0.010538222268223763, 0.04780071973800659, 0.12225718796253204, 0.016278861090540886, -0.0002559940912760794, 0.03438913822174072, 0.011447559110820293, -0.012556000612676144, -0.04142090305685997, 0.002375996205955744, -0.07652068883180618, 0.020352356135845184, -0.030743740499019623, 0.07727853953838348, 0.06129908934235573, -0.004702759440988302, 0.04715260863304138, -0.0070511214435100555, 0.0176834873855114, 0.0752323791384697, 0.008194638416171074, 0.048595089465379715, 0.018643129616975784, 0.015030897222459316, 0.005259649362415075, -0.0003174112061969936, -0.055169086903333664, -0.009035293944180012, 0.04035116359591484, 0.00013360769662540406, -0.0054237497970461845, 0.005953091196715832, 0.018147453665733337, -0.018533268943428993, -0.0029123788699507713, 0.030715685337781906, -0.02102157101035118, -0.011039788834750652, -0.08072805404663086, 0.05762437358498573, -0.00907048862427473, -0.011862728744745255, -0.05187166854739189, -0.007388967089354992, -0.03416404873132706, 0.01265690103173256, -0.024386918172240257, -0.0060553764924407005, -0.05459087714552879, 0.03879373148083687, -0.032515473663806915, 0.001072763348929584, -0.008598276413977146, 0.06480205059051514, 0.01366456039249897, -0.07582440972328186, 0.005351097788661718, -0.03504844754934311, 0.00840208400040865, -0.005385335069149733, 0.0023565725423395634, 0.035938333719968796, 0.04713135212659836, -0.044404465705156326, -0.012865981087088585, 0.03283116966485977, -0.034815236926078796, 0.01289970800280571, -0.013362801633775234, 0.014290069229900837, -0.014403080567717552, -0.017607994377613068, 0.0019920067861676216, -0.04032939299941063, 0.015294162556529045, 0.042439281940460205, 0.01915644109249115, 0.06403382867574692, -0.012733329087495804, 0.009206369519233704, 0.013450095430016518, 0.01598852314054966, 0.010309046134352684, -0.05001281574368477, -0.0258476622402668, -0.03470967710018158, -0.055842552334070206, 0.03553972393274307, 0.02451518177986145, -0.050920192152261734, 0.018888674676418304, 0.033844806253910065, -0.011092006228864193, 0.02305508777499199, 0.025807254016399384, -0.0019966240506619215, 0.00029092677868902683, 0.006921280641108751, -0.03912067413330078, -0.018557677045464516, 0.016930872574448586, 0.0013297845143824816, -0.08456515520811081, 0.0049876063130795956, -0.034749243408441544, -0.020786959677934647, -0.002831388497725129, 0.006828559096902609, -0.013847371563315392, 0.00689290277659893, -0.026355881243944168, 0.0062796613201498985, -0.06912313401699066, 0.06431405991315842, -0.005065719597041607, -0.0359492301940918, -0.009496944956481457, -0.005625155754387379, 0.06341291218996048, 0.026170775294303894, -0.02548491768538952, 0.07274547219276428, -0.014327206648886204, 0.003176373429596424, -0.019760718569159508, 0.042770564556121826, -0.005852933973073959, -0.06931991130113602, 0.0011619302676990628, 0.04874816909432411, -0.040430136024951935, -0.018344391137361526, -0.004384130239486694, -0.010987329296767712, -0.003086402313783765, 0.00772513123229146, 0.025401005521416664, 0.021703897044062614, -0.00655335420742631, -0.05375961586833, 0.008167839609086514, 0.02164631523191929, 0.011330732144415379, 0.009683863259851933, 0.021369794383645058, -0.01758801005780697, -0.02327800914645195, 0.002104658167809248, 0.001582421245984733, 0.033524636179208755, 0.023817814886569977, -0.04335130751132965, 0.02078203484416008, 0.09124699234962463, 0.02804979868233204, -0.0025634432677179575, -0.012276789173483849, 0.025094766169786453, 0.03574080765247345, 0.02850210666656494, 0.009037629701197147, 0.005590859800577164, 0.023182526230812073, 0.0002184385812142864, 0.006593548692762852, 0.04132942482829094, 0.007405069191008806, 0.011499413289129734, -0.06418794393539429, -0.05720754712820053, 0.0679648220539093, -0.05291982740163803, -0.03234870359301567, 0.05855304002761841, 0.06961867213249207, 0.0392095148563385, 0.028040429577231407, 0.003382577560842037, -0.07648973166942596, 0.022024840116500854, -0.002658470068126917, 0.016469521448016167, 0.028342507779598236, 0.0025422379840165377, 0.06394349783658981, 0.015489059500396252, 0.002153105102479458, 0.020930031314492226, -0.06697443127632141, -0.10441382974386215, -0.02329687774181366, -0.0017922506667673588, 0.038569677621126175, -0.03449941799044609, 0.005159245803952217, 0.10794734209775925, 0.0020849748980253935, 0.05250795930624008, 0.022746901959180832, 0.021462485194206238, 0.02578018791973591, -0.0713903084397316, -0.03997312858700752, 0.0333685465157032, 0.03464604541659355, 0.003230694215744734, -0.04040534049272537, 0.0191727876663208, -0.018617406487464905, -0.0009133452549576759, 0.0424797385931015, -0.027420036494731903, 0.05138370022177696, -0.004418815020471811, 0.026801764965057373, -0.022005809471011162, 0.03908386826515198, -0.05364979803562164, 0.02740812487900257, 0.00426094327121973, -0.016152657568454742, -0.0001680105342529714, 0.011015397496521473, 0.12036556005477905, 0.0578644759953022, -0.03218359872698784, -0.03925292193889618, 0.03525085747241974, 0.014143841341137886, -0.05551327019929886, -0.003461782354861498, -0.025804350152611732, 0.013947314582765102, 0.007713909260928631, -0.07093266397714615, -0.015990054234862328, 0.02027933858335018, -0.028084559366106987, 0.014913775026798248, 0.05942782759666443, -0.036348797380924225, 0.05745329335331917, 0.006372460629791021, -0.030527232214808464, -0.017057038843631744, -0.02343156561255455, -0.05105530843138695, 0.005329820327460766, 0.0018183353822678328, -0.01760951057076454, 0.06042788550257683, -0.001902498072013259, -0.015128354541957378, -0.03219904750585556, -0.034965090453624725, 0.018558815121650696, 0.01638926938176155, 0.06342220306396484, -0.003580633085221052, 0.05115380883216858, -0.015011419542133808, 0.031168676912784576, -0.0009368364117108285, -0.0368608683347702, -0.04377944767475128, -0.01642274297773838, -0.011710520833730698, 0.04809876158833504, 0.021074160933494568, -0.005743735935539007, 0.025414152070879936, 0.013128993101418018, -0.005000694654881954, -0.016656871885061264, 0.03647252917289734, -0.0044188955798745155, -0.014952524565160275, -0.02803039364516735, -0.03350881114602089, 0.03538326174020767, -0.045869261026382446, -0.021999377757310867, 0.022654706612229347, -0.06051056459546089, 0.04766368493437767, -0.06589756160974503, -0.05728604272007942, 0.0007248300826177001, 0.014108019880950451, 0.030286718159914017, 0.003859115531668067, 0.024055257439613342, 0.09238151460886002, 0.021693220362067223, 0.008280516602098942, -0.01490382757037878, 0.010430016554892063, 0.019952481612563133, -0.002399442484602332, 0.024827657267451286, 0.05285678058862686, -0.015222412534058094, -0.0028700600378215313, -0.056313302367925644, 0.04234037920832634, -0.01033781934529543, -0.3031041920185089, 0.029124759137630463, -0.0032891135197132826, -0.05499596893787384, 0.029932834208011627, -0.01849065162241459, -0.0032993077766150236, -0.03937457501888275, -0.010662706568837166, 0.03094135783612728, -0.035855986177921295, -0.04854622855782509, -0.022436806932091713, 0.04409770295023918, 0.007174716331064701, 0.05333361774682999, 0.029420632869005203, -0.026290934532880783, 0.004327827133238316, 0.0548383966088295, -0.013479188084602356, -0.06572163105010986, -0.009623778983950615, 0.028190001845359802, 0.03519691526889801, 0.0559341199696064, -0.06805067509412766, 0.053334061056375504, -0.04622789844870567, -0.01407616026699543, 0.019907133653759956, -0.00011199167056474835, 0.011472810991108418, -0.04198526591062546, -0.008630792610347271, -0.033539291471242905, 0.027537154033780098, 0.018271151930093765, 0.03065771982073784, 0.007381077390164137, -0.02111354097723961, -0.04707770049571991, -0.015951141715049744, 0.016815880313515663, 0.05969269201159477, -0.03655349835753441, -0.09279262274503708, 0.011407951824367046, -0.04561847448348999, 0.06517922878265381, -0.02324347011744976, -0.033436648547649384, -0.0016909516416490078, 0.051011521369218826, -0.02252092957496643, -0.020671693608164787, -0.005399507936090231, -0.0009997525485232472, -0.0518561527132988, -0.0076602753251791, -0.014696864411234856, -0.03795584663748741, -0.0036133360117673874, -0.04176531732082367, 0.006242641247808933, -0.05980679392814636, -0.047968875616788864, -0.016425801441073418, 0.07178692519664764, 0.029141578823328018, -0.01931031420826912, 0.018227742984890938, 0.017204293981194496, -0.10703650116920471, 0.006964908912777901, -0.017139088362455368, -0.025777865201234818, -0.017176588997244835, 0.017137598246335983, 0.016871914267539978, -0.009298866614699364, -0.04789135232567787, 0.025598185136914253, 0.0010005923686549067, 0.017913425341248512, -0.02230534702539444, 0.042940083891153336, 0.019922049716114998, -0.028378311544656754, 0.03662900999188423, 0.06605683267116547, -0.005286405794322491, -0.0016257389215752482, -0.029804561287164688, -0.004763878881931305, 0.0025762461591511965, 0.015945719555020332, -0.022990278899669647, 0.004486647434532642, 0.018182041123509407, 0.005217724479734898, -0.05069318786263466, 0.013478578999638557, -0.031774453818798065, 0.012906478717923164, -0.02921593189239502, -0.05897974222898483, 0.017858054488897324, 0.012691539712250233, 0.0494406633079052, 0.0016539562493562698, -0.02060556411743164, 0.00650453008711338, -0.05627581477165222, -0.04570084437727928, -0.021464906632900238, 0.020640548318624496, 0.016194352880120277, -0.009667747654020786, -0.013526977971196175, -0.04561023414134979, 0.006074737757444382, 0.0345829576253891, 0.00019208929734304547, -0.058241672813892365, -0.04431600868701935, -0.016314135864377022, -0.006662649568170309, 0.014422984793782234, 0.024769021198153496, -0.015180161222815514, 0.020841451361775398, -0.002052617957815528, -0.0464349165558815, 0.004394439049065113, -0.019196372479200363, -0.03038655035197735, -0.02537105791270733, -0.013717478141188622, -0.0018747043795883656, -0.0003635366738308221, 0.014968214556574821, 0.003187494119629264, 0.006054536905139685, 0.05625816807150841, 0.0012638140469789505, 0.035163700580596924, 0.012899475172162056, 0.01875866763293743, -0.013031866401433945, -0.006735960952937603, -0.07922432571649551, 0.015465703792870045, -0.04514776170253754, -0.03840145468711853, -0.02217990905046463, 0.04035637527704239, -0.03206738829612732, -0.02056419663131237, -0.03355589881539345, 0.020345570519566536, -0.05622740089893341, -0.04733286052942276, -0.025636503472924232, 0.008418788202106953, 0.07242144644260406, -0.03597022965550423, 0.025177188217639923, -0.004762701690196991, 0.006669612135738134, 0.006734469905495644, 0.024786988273262978, -0.05942787602543831, 0.0012899907305836678, 0.01894821785390377, -0.005998481065034866, -0.004131517373025417, -0.014718588441610336, 0.06165870279073715, 0.014394334517419338, -0.011173277162015438, -0.014493569731712341, 0.0035796738229691982, 0.019566062837839127, 0.0458819679915905, 0.02187339775264263, -0.0023201475851237774, 0.015487847849726677, 0.004253794439136982, -0.02507917769253254, -0.03731397166848183, -0.010162388905882835, -0.011122153140604496, 0.002238234505057335, -0.017329562455415726, -0.06357291340827942, 0.046957891434431076, 0.014723047614097595, 0.01934267207980156, 0.0013500145869329572, -0.005937271285802126, 0.013186727650463581, -0.02336423099040985, 0.022395150735974312, 0.050291579216718674, -0.052325766533613205, 0.02171134762465954, 0.00747706787660718, 0.009041793644428253, 0.028276357799768448, -0.009232575073838234, -0.02226240560412407, -0.026792677119374275, -0.004610152915120125, 0.0004684808081947267, -0.04263101890683174, -0.02126273885369301, -0.009908904321491718, 0.006620310712605715, -0.012492142617702484, -0.027262691408395767, -0.017850758507847786, 0.0015681313816457987, -0.014097408391535282, -0.02163817547261715, 0.028492553159594536, -0.0013058310141786933, 0.003409992903470993, 0.011983017437160015, -0.01973487250506878, -0.02622619830071926, -0.04244472458958626, 0.008546710945665836, 0.00855074729770422, -0.025313355028629303, -0.01127665862441063, -0.036457426846027374, 0.006599570158869028, 0.021593330428004265, 0.037173181772232056, -0.014883206225931644, -0.0342598557472229, -0.019238408654928207, -0.028710778802633286, -0.02614990808069706, 0.004690408241003752, -0.01682460494339466, 0.0010742704616859555, 0.00530775124207139, 0.038010451942682266, 0.002350627211853862, 0.02587832324206829, 0.0018158195307478309, -0.019244609400629997, 0.03698206692934036, -0.07383326441049576, -0.010238353163003922, -0.03046453557908535, -0.050940241664648056, -0.006621656473726034, 0.01492437906563282, 0.01112421415746212, -0.031902045011520386, 0.03396056592464447, 0.022509120404720306, 0.029212918132543564, 0.028997674584388733, -0.001362292212434113, 0.06873656064271927, -0.05578695610165596, 0.0052110180258750916, -0.07702460139989853, 0.005152373109012842, 0.02744520828127861, 0.008980361744761467, 0.0011589755304157734, 0.008719394914805889, -0.038514669984579086, 0.05388738587498665, -0.06053440645337105, -0.03400353342294693, 0.048646166920661926, 0.0026689108926802874, -0.010020507499575615, 0.014223226346075535, -0.06560077518224716, 0.04757681116461754, 0.04225309565663338, -0.0298670195043087, -0.032865528017282486, -0.01649831421673298, 0.06150246039032936, 0.018885891884565353, 0.03105315752327442, -0.03559710085391998, -0.028305640444159508, 0.06897705793380737, 0.01731531135737896, 0.03357331454753876, 0.051606930792331696, -0.02127809450030327, 0.03856276720762253, 0.030857563018798828, 0.003185987239703536, -0.027665268629789352, 0.015195810236036777, -0.006195381283760071, -0.059326332062482834, 0.006861842703074217, 0.011003001593053341, -0.01889684423804283, -0.03328923135995865, 0.0809953361749649, 0.01304879691451788, -0.025286337360739708, -0.06891213357448578, 0.01527212280780077, -0.04939823970198631, -0.0008117168908938766, -0.022239867597818375, -0.03651066869497299, -0.06384295970201492, 0.05800787732005119, 0.0010307170450687408, 0.009815346449613571, 0.07910623401403427, 0.012776716612279415, -0.003625907702371478, -0.015131211839616299, 0.08399549126625061, 0.07208279520273209, 0.0725860595703125, 0.028729146346449852, 0.0578928105533123, -0.02295972965657711, -0.046482205390930176, 0.02726147510111332, -0.009659914299845695, 0.0004351182433310896, -0.01971764676272869, 0.005627041682600975, 0.05989278480410576, -0.00028728306642733514, 0.05610955134034157, -0.012089886702597141, 0.006829789374023676, 0.01737131178379059, 0.05231079086661339, 0.014720967970788479, 0.0767974853515625, 0.00039598470903001726, 0.008304977789521217, -0.005738961976021528, -0.0418657548725605, 0.014786234125494957, -0.03888135030865669, -0.027908753603696823, 0.0584443062543869, -0.0025364081375300884, 0.0264435987919569, 0.003215861739590764, 0.03992078825831413, 0.08924305438995361, -0.03514174744486809, -0.007717730011790991, -0.014658921398222446, 0.05821247398853302, -0.0030031204223632812, 0.026337439194321632, -0.028131086379289627, -0.01947430893778801, 0.010320433415472507, -0.03500181809067726, -0.027682989835739136, -0.007760458160191774, -0.027111301198601723, 0.035591207444667816, -0.03351105377078056, 0.008108031935989857, 0.021728502586483955, 0.022900978103280067, -0.03936902806162834, -0.06709916889667511, -0.044893257319927216, -0.03534453734755516, -0.06651290506124496, -0.02551892399787903, 0.03770967200398445, -0.001835560193285346, -0.01710665039718151, -0.018414949998259544, -0.02076440490782261, -0.0321543850004673, 0.03177516534924507, -0.05840165913105011, -0.03009301796555519, 0.013538721948862076, 0.013224875554442406, 0.04520387202501297, 0.027752608060836792, 0.03623734414577484, -0.018982606008648872, -0.014609920792281628, -0.012014520354568958, 0.029697172343730927, 0.029307331889867783, 0.020824892446398735, 0.004131553694605827, -0.0860043466091156, 0.020813556388020515, 0.008847656659781933, -0.021653389558196068, -0.06339609622955322, 0.02303934283554554, 0.013989112339913845, -0.015900252386927605, 0.06486991792917252, -0.05056551471352577, 0.008467570878565311, -0.021161198616027832, -0.019771765917539597, -0.020143792033195496, 0.0254965890198946, 0.035722486674785614, -0.03301389142870903, 0.08754514902830124, 0.035313382744789124, -0.0070510259829461575, -0.03222762793302536, -0.011919574812054634, 0.020992571488022804, 0.01587550900876522, -0.007699547801166773, -0.026588568463921547, -0.03867599740624428, -0.06789707392454147, -0.02836356870830059, 0.02297673188149929, -0.03216550499200821, -0.036623578518629074, 0.020390400663018227, 0.04711714759469032, -0.04597961902618408, 0.014291704632341862, -0.040608931332826614, 0.038832083344459534, -0.0338774099946022, -0.026578029617667198, 0.012139942497015, 0.017980311065912247, 0.00043523372733034194, 0.005804825574159622, 0.01741429790854454, -0.05152090638875961, -0.011065622791647911, -0.017401590943336487, 0.024393633008003235, 0.011965829879045486, -0.00037742548738606274, 0.0191726703196764 ]
[ -0.06576849520206451, -0.029114868491888046, -0.041464969515800476, -0.05695423111319542, 0.05719488114118576, -0.04643939808011055, -0.01768816076219082, 0.022730594500899315, -0.0009415601962246001, -0.01887531578540802, -0.003770313924178481, 0.0037102061323821545, 0.007407928351312876, -0.01689821295440197, 0.06875645369291306, 0.01827722042798996, -0.0033976095728576183, -0.08006854355335236, 0.023080579936504364, 0.03222789987921715, 0.010983339510858059, -0.026914136484265327, -0.044269852340221405, -0.011412219144403934, -0.0062720817513763905, 0.03258242830634117, 0.014439750462770462, -0.04357922449707985, -0.017212124541401863, -0.17645183205604553, 0.007962558418512344, 0.000533701793756336, 0.04815145581960678, -0.014895997941493988, 0.055735792964696884, 0.03437677025794983, 0.018658915534615517, 0.04005373269319534, -0.003167899092659354, 0.04337356239557266, 0.012941812165081501, 0.008576403371989727, -0.04766017943620682, -0.02408684976398945, 0.0316874124109745, 0.004257237073034048, -0.0035877232439816, -0.016210010275244713, -0.023544585332274437, 0.02339041978120804, -0.03733861446380615, -0.0032929598819464445, -0.04450776427984238, -0.02773970551788807, -0.0008864878327585757, 0.04900175705552101, 0.031141702085733414, 0.06361165642738342, 0.006092364899814129, 0.027129027992486954, 0.025454705581068993, -0.013545923866331577, -0.1228068619966507, 0.08238040655851364, 0.02181943692266941, 0.059911128133535385, -0.029741166159510612, -0.04274390637874603, 0.0017226028721779585, 0.08128655701875687, -0.0026211165823042393, -0.033386752009391785, -0.021696465089917183, 0.03920753672719002, 0.011865684762597084, -0.002957109361886978, -0.00040150160202756524, 0.03608574718236923, 0.006638712249696255, -0.06152823194861412, -0.02810310199856758, 0.009645596146583557, -0.00983445905148983, 0.008321337401866913, -0.05664204806089401, 0.02215821109712124, -0.0241890549659729, 0.07440481334924698, 0.040001824498176575, 0.019756102934479713, 0.052697330713272095, -0.025849679484963417, 0.03668868914246559, -0.00829857587814331, -0.06476780027151108, -0.007931959815323353, -0.0083946967497468, 0.01739286445081234, -0.043797336518764496, 0.4422568380832672, -0.008931923657655716, -0.03473752737045288, 0.062048185616731644, 0.04662695899605751, -0.023607755079865456, 0.00236270809546113, -0.007830259390175343, -0.03273895010352135, 0.03262011706829071, -0.022519368678331375, 0.014566529542207718, 0.005139192566275597, 0.05561942607164383, -0.05130477249622345, 0.018400011584162712, 0.02436140924692154, -0.019126443192362785, 0.010496414266526699, -0.01983877830207348, -0.0014734519645571709, -0.014138784259557724, 0.019141122698783875, 0.025234926491975784, 0.033335212618112564, -0.009357483126223087, -0.022624731063842773, 0.031982991844415665, 0.0421190969645977, 0.026746120303869247, 0.007663247641175985, 0.04845281317830086, -0.032763995230197906, -0.0984424352645874, 0.01074399333447218, -0.00968936923891306, -0.0051370346918702126, 0.03711756691336632, -0.024351201951503754, -0.0014543557772412896, 0.03465072810649872, -0.02318236604332924, -0.00024646968813613057, 0.011558967642486095, -0.00031397753627970815, -0.04397962614893913, 0.133684903383255, 0.011360046453773975, -0.02776237018406391, -0.03552393987774849, -0.0695100650191307, -0.002623984357342124, 0.03100224770605564, -0.0003316496149636805, -0.04652069881558418, 0.012412619777023792, 0.022883662953972816, 0.07890307903289795, -0.011454158462584019, -0.05699333921074867, -0.007082898169755936, 0.0011343549704179168, -0.01655775122344494, -0.048263903707265854, 0.04464997723698616, 0.05135217308998108, -0.12954182922840118, -0.004722218960523605, 0.017695728689432144, 0.048584338277578354, -0.04197029396891594, -0.02105577103793621, 0.028117869049310684, -0.02626139484345913, -0.015300264582037926, 0.05039573088288307, -0.03802408277988434, -0.040748413652181625, 0.02966565079987049, 0.035849664360284805, 0.01736493594944477, 0.016349906101822853, 0.0017814942402765155, -0.03885060176253319, -0.005001449026167393, -0.06405678391456604, -0.10367302596569061, -0.030351413413882256, 0.008910594508051872, -0.043365489691495895, 0.0010836509754881263, -0.03316406160593033, -0.017725959420204163, -0.08876445144414902, 0.06834486126899719, -0.04015972837805748, -0.06411901861429214, 0.0345831960439682, 0.004086281172931194, -0.03245783597230911, -0.044067371636629105, -0.025203779339790344, 0.024533532559871674, -0.03444332256913185, 0.0377366878092289, -0.06870708614587784, 0.06004805490374565, 0.04305468872189522, -0.03139583766460419, 0.07880368083715439, 0.032152172178030014, -0.022448869422078133, -0.014072425663471222, 0.02318861149251461, 0.011756365187466145, -0.007315301336348057, -0.005892727058380842, 0.0032325570937246084, 0.027716755867004395, 0.019670067355036736, 0.02778298407793045, -0.037363484501838684, 0.016895797103643417, 0.017209356650710106, -0.3553134799003601, -0.046799186617136, -0.02847372740507126, 0.015662582591176033, -0.017108507454395294, -0.045846037566661835, 0.012301843613386154, -0.01289079524576664, -0.05271667614579201, 0.019842134788632393, 0.10340165346860886, -0.013464144431054592, 0.0037995141465216875, -0.06263408064842224, -0.02425972931087017, -0.025363551452755928, -0.03808138892054558, -0.009753930382430553, -0.054039422422647476, -0.010673093609511852, -0.000864796806126833, -0.017172904685139656, -0.0229868795722723, -0.07478288561105728, 0.005702685099095106, -0.026651060208678246, 0.11887242645025253, -0.03202030807733536, 0.09644366055727005, -0.03893592581152916, 0.044299621134996414, -0.009182569570839405, -0.003829413326457143, -0.11498194187879562, 0.019085610285401344, -0.028882646933197975, -0.008454296737909317, 0.03979848325252533, -0.0038135533686727285, -0.032818492501974106, -0.043981388211250305, 0.011834880337119102, -0.03900028020143509, -0.04648982360959053, -0.00870349258184433, 0.025946389883756638, -0.02437666989862919, -0.027514996007084846, -0.035843804478645325, 0.07194419950246811, -0.0007484928937628865, 0.006361009087413549, 0.025947067886590958, 0.028479117900133133, 0.023208413273096085, -0.03417836129665375, -0.08144891262054443, 0.04247096925973892, 0.012580092065036297, 0.016939494758844376, 0.04415038228034973, 0.07792668044567108, 0.031189726665616035, -0.043135661631822586, 0.010391578078269958, -0.0012570783728733659, -0.002396135590970516, -0.003421267494559288, 0.0439179353415966, -0.03726068511605263, -0.013846946880221367, 0.11588751524686813, -0.007741553243249655, 0.00036783446557819843, 0.02603369578719139, 0.04298337548971176, -0.012412207201123238, -0.0026628861669451, 0.0244084894657135, 0.0008042611880227923, 0.01599760912358761, -0.005357369314879179, 0.022610846906900406, -0.017969392240047455, 0.0028173751197755337, 0.053741637617349625, 0.016140909865498543, -0.05223774164915085, 0.04094245284795761, 0.022224411368370056, -0.0140399020165205, -0.038520488888025284, -0.029682938009500504, -0.06791327893733978, 0.08573203533887863, -0.020338382571935654, -0.2626640796661377, 0.010796654038131237, 0.05207820236682892, 0.042510032653808594, 0.002541670808568597, 0.01363674458116293, 0.04241334646940231, -0.02317030169069767, 0.020910590887069702, 0.0006421963917091489, 0.011358440853655338, -0.00005219338709139265, 0.0040036034770309925, -0.01959840953350067, 0.051069360226392746, -0.0012088174698874354, 0.05520308017730713, 0.0074857245199382305, 0.011820843443274498, -0.0041716028936207294, 0.02967509813606739, -0.007056237664073706, 0.15897901356220245, 0.020652154460549355, 0.02435864508152008, 0.033442284911870956, -0.0017757921013981104, 0.0020932694897055626, 0.08036772906780243, 0.03608612343668938, -0.0020354976877570152, -0.012848112732172012, 0.035398975014686584, 0.004144635051488876, 0.006839656736701727, -0.06623029708862305, -0.01880483888089657, 0.047689132392406464, 0.03716970235109329, -0.00839298777282238, -0.007622628938406706, 0.008978961035609245, -0.03691185265779495, 0.03218371793627739, 0.054713450372219086, 0.020626084879040718, -0.0031065111979842186, -0.043855614960193634, -0.041728727519512177, -0.012405125424265862, -0.03699735924601555, -0.038380905985832214, -0.010949738323688507, -0.003756535705178976, 0.011520344763994217, 0.0809820294380188, 0.02285623364150524, -0.004400250501930714, 0.018700938671827316, 0.014055858366191387, -0.00931785348802805, -0.014206048101186752, 0.08279039710760117, -0.0028508284594863653, 0.017112044617533684 ]
[ 0.020739175379276276, 0.012262248434126377, -0.021961970254778862, 0.026546232402324677, -0.0092840027064085, -0.006802640855312347, 0.014518638141453266, -0.0006768999737687409, -0.020591970533132553, -0.005805031396448612, -0.026412643492221832, 0.025856101885437965, 0.02467338740825653, -0.03162931650876999, 0.0326298251748085, -0.0061979047022759914, 0.006714347284287214, -0.019407004117965698, 0.020932672545313835, -0.015153899788856506, 0.004548658616840839, 0.014989504590630531, -0.020074838772416115, 0.017926638945937157, 0.012386232614517212, -0.019395126029849052, -0.020028747618198395, -0.004418523050844669, 0.01900574192404747, -0.13798363506793976, -0.060939691960811615, -0.012503474950790405, -0.010212785564363003, 0.026497824117541313, 0.0007757942075841129, -0.03459896147251129, 0.02468692883849144, 0.01821754314005375, 0.01577802747488022, -0.005446297582238913, 0.00018395704682916403, -0.02222447656095028, -0.02398368902504444, 0.014758408069610596, 0.0071559385396540165, -0.0029342924244701862, -0.01759631559252739, 0.019664216786623, -0.02605856955051422, -0.0063431598246097565, -0.04473881796002388, 0.013820921070873737, -0.005304896272718906, 0.00287946336902678, 0.03403249755501747, 0.015007720328867435, 0.029354020953178406, 0.0014871511375531554, 0.015065770596265793, -0.016919488087296486, 0.0073530725203454494, 0.011743240058422089, -0.03750132396817207, -0.0014002692187204957, -0.037392210215330124, -0.04418782517313957, -0.01884160377085209, 0.01869644597172737, 0.006079188082367182, -0.013544564135372639, -0.012545868754386902, 0.033773183822631836, -0.02560928277671337, -0.032175127416849136, -0.014019770547747612, -0.005420623812824488, 0.015383357182145119, -0.03991663083434105, -0.0004966654232703149, 0.0016604237025603652, -0.037661321461200714, 0.029733264818787575, 0.009464911185204983, 0.010095561854541302, 0.0022354121319949627, -0.027253370732069016, 0.023835740983486176, -0.008466663770377636, 0.0289174634963274, 0.007814329117536545, -0.013525687158107758, -0.021481219679117203, -0.01966189779341221, 0.002895624376833439, -0.10304944962263107, -0.005820734426379204, -0.029272910207509995, -0.03746608644723892, -0.010973325930535793, 0.8554346561431885, -0.026045385748147964, 0.014051450416445732, 0.02751181274652481, 0.03443046286702156, 0.018989931792020798, -0.02015247754752636, 0.018107503652572632, 0.005648416001349688, -0.011957001872360706, -0.00203564646653831, 0.007181896362453699, 0.0490419901907444, 0.023745737969875336, 0.011342805810272694, 0.02872115932404995, 0.019805138930678368, -0.0016767011256888509, -0.019156841561198235, -0.01594586670398712, -0.002971475478261709, 0.03261685371398926, 0.04234500601887703, -0.012601302936673164, 0.0069580357521772385, 0.031056605279445648, -0.15585246682167053, 0.020699460059404373, -7.825271036211753e-33, 0.029532046988606453, -0.0032414242159575224, 0.005595463328063488, 0.01428662147372961, 0.015078101307153702, 0.01720552146434784, -0.00928376242518425, 0.00273322407156229, -0.021897651255130768, 0.014108152128756046, -0.022295188158750534, -0.0006288728909566998, -0.010365505702793598, -0.028121262788772583, 0.03835466504096985, 0.03513519838452339, 0.004696757532656193, 0.04621807858347893, 0.020403815433382988, 0.014028673060238361, 0.050155505537986755, 0.016262447461485863, 0.00005462466651806608, 0.010656334459781647, 0.013870091177523136, 0.03397339954972267, 0.034740421921014786, 0.010387998074293137, 0.018309058621525764, -0.035412173718214035, 0.02077232487499714, 0.004005194641649723, 0.00015601213090121746, -0.010667105205357075, 0.015594162978231907, -0.04450634494423866, -0.018406379967927933, -0.0174065250903368, 0.004899711348116398, 0.0034242633264511824, -0.053190845996141434, 0.011519143357872963, -0.04417736083269119, -0.019065966829657555, -0.008525111712515354, 0.04530451074242592, 0.006993959657847881, 0.013318691402673721, -0.013300325721502304, -0.03894183784723282, 0.015500598587095737, 0.019747382029891014, -0.0037174306344240904, -0.011089230887591839, 0.01208963431417942, -0.013918424025177956, -0.007609584368765354, -0.042939938604831696, 0.0437735915184021, 0.023364469408988953, 0.009081047959625721, -0.017229871824383736, -0.0150850685313344, 0.019866639748215675, -0.005941302515566349, 0.0036059331614524126, 0.03096630610525608, -0.013061773963272572, 0.03991130739450455, -0.02761412225663662, -0.03997604176402092, -0.019345728680491447, 0.007078666239976883, 0.0005005418206565082, 0.011681806296110153, -0.016722919419407845, -0.02481750398874283, 0.005393951199948788, -0.01248984131962061, 0.03540128841996193, 0.020997004583477974, -0.0003768879978451878, -0.02485513500869274, -0.023462465032935143, -0.0011632801033556461, -0.015913058072328568, 0.008505108766257763, -0.021010523661971092, -0.020412782207131386, -0.01964752934873104, 0.01544527243822813, 0.039369214326143265, 0.0076682073995471, -0.03466556593775749, -0.019301576539874077, 8.127085088257129e-33, 0.010223567485809326, -0.020326614379882812, -0.008745646104216576, -0.007847471162676811, 0.015462727285921574, -0.028245145455002785, -0.014987272210419178, 0.014595131389796734, -0.018577925860881805, 0.018923357129096985, -0.036744143813848495, -0.019657786935567856, -0.02313382551074028, 0.011714187450706959, 0.0037652193568646908, 0.004744627047330141, 0.027675706893205643, -0.02221045084297657, -0.016580862924456596, 0.01659049279987812, 0.00920526497066021, 0.007072543725371361, 0.0052490984089672565, 0.03519074618816376, 0.01425294578075409, 0.030600225552916527, -0.03795243799686432, 0.007560321595519781, -0.006170722655951977, -0.019246434792876244, -0.019190501421689987, -0.031831201165914536, 0.04417148232460022, -0.023716434836387634, -0.060746174305677414, -0.012567724101245403, -0.02580007165670395, -0.019722335040569305, 0.04103432595729828, -0.0019513755105435848, 0.04327920079231262, 0.02405855432152748, 0.0009630903950892389, 0.010810942389070988, -0.00019970037101302296, 0.014664540998637676, 0.002559349872171879, -0.022034984081983566, 0.023200348019599915, -0.008904163725674152, -0.008980059064924717, 0.0044107274152338505, 0.010692651383578777, 0.002395056886598468, 0.007716958411037922, -0.0007717484259046614, -0.04232024773955345, -0.01092841848731041, 0.019814686849713326, 0.03942464292049408, 0.019300565123558044, 0.045605529099702835, -0.015500552020967007, 0.011534517630934715, -0.033399034291505814, 0.00040579205960966647, 0.007023869547992945, 0.0021720011718571186, -0.008335445076227188, -0.04326842725276947, -0.01094880886375904, -0.010925095528364182, 0.00565424095839262, 0.03879217058420181, 0.054179273545742035, -0.008517764508724213, -0.050561174750328064, -0.004368912894278765, -0.026083486154675484, 0.04022993519902229, 0.02015216089785099, -0.00939489807933569, 0.013277134858071804, 0.00636671669781208, 0.019444184377789497, 0.018892396241426468, -0.026070421561598778, 0.02666172944009304, 0.02617066726088524, 0.016745179891586304, -0.042420294135808945, 0.0027195457369089127, 0.023429136723279953, 0.02333773672580719, -0.012256506830453873, -1.3575382595831798e-8, -0.03083164244890213, -0.030643023550510406, -0.005261285696178675, 0.012462427839636803, 0.023604508489370346, 0.03335125744342804, -0.0060540856793522835, 0.017906254157423973, -0.015352367423474789, 0.011708701029419899, 0.023682862520217896, -0.007385490462183952, -0.03131617605686188, 0.023060141131281853, 0.013218376785516739, -0.05753369629383087, 0.018765974789857864, -0.05167584493756294, 0.02236567810177803, 0.028981776908040047, 0.048091355711221695, 0.07277800142765045, -0.028181131929159164, -0.005873686634004116, 0.0350760743021965, -0.007161158602684736, -0.03362856060266495, -0.0930766686797142, -0.009003705345094204, 0.029180869460105896, 0.01968938671052456, -0.026778222993016243, 0.004819587804377079, 0.03546055778861046, -0.02632632665336132, -0.032419782131910324, 0.021565506234765053, 0.054201655089855194, 0.016979096457362175, -0.025533858686685562, 0.015790492296218872, -0.027431854978203773, 0.013679376803338528, -0.03314508870244026, -0.025115590542554855, -0.005246580112725496, -0.03587929904460907, -0.01650933548808098, 0.022678155452013016, -0.018205856904387474, 0.01407860592007637, -0.019703876227140427, 0.02694672718644142, 0.02838374860584736, 0.016714097931981087, -0.016542477533221245, -0.0014996185200288892, -0.01834876462817192, -0.021587517112493515, -0.011789722368121147, 0.006110910791903734, -0.027072500437498093, 0.000512604892719537, -0.028167176991701126 ]
agile-slimming-down-stories
https://markhneedham.com/blog/2010/04/14/agile-slimming-down-stories
false
2010-04-22 23:35:27
Haskell: parse error on input `='
[ "haskell" ]
[ "Haskell" ]
I've been trying to follow the 'http://irekjozwiak.com/entry/2009/06/13/Monads-for-Java-C---programmers.html[Monads for Java/C++ programmers]' post in ghci and getting the following type of error when trying out the code snippets: [source,haskell] ---- Prelude> a = 3 <interactive>:1:2: parse error on input `=' ---- I figured there must be something wrong with my installation of the compiler since I was copying and pasting the example across and having this problem. Having reinstalled that, however, I still had the same problem. I eventually came across http://greenokapi.net/blog/2007/02/19/chapter-1-of-hudaks-haskell-school-of-expression/[this blog post] which points to a http://ircarchive.info/haskell/2007/2/19/27.html[mailing list thread from a few years ago] where pjd explains that the 'let' construct is required when defining a variable from ghci and wouldn't necessarily be needed in a normal program: ____ *pjd* osfameron: about the ghci thing, you have to prefix definitions with "let" as in: let simple x y z = x * (y + z) *pjd* the reason for this is that ghci is in an implicit do block *pjd* so it's not exactly like top-level haskell ____ We have to use a 'let' in front of any variable/function definitions and then it will work as expected: [source,haskell] ---- Prelude> let a = 3 3 ---- http://book.realworldhaskell.org/read/getting-started.html[According to Real World Haskell]: ____ This syntax is ghci-specific The syntax for let that ghci accepts is not the same as we would use at the "`top level`" of a normal Haskell program. ____
null
null
[ -0.020577583461999893, 0.04343963786959648, -0.044531144201755524, 0.02361072041094303, 0.04855161905288696, 0.03950611874461174, 0.05466344207525253, 0.002130693756043911, 0.05173543468117714, -0.012305046431720257, 0.010724132880568504, -0.018089840188622475, -0.08679378777742386, 0.015393596142530441, -0.0011517025995999575, 0.03321991488337517, 0.09395178407430649, -0.01826881617307663, -0.0243891142308712, 0.03340791165828705, 0.015514635480940342, 0.08260402828454971, -0.014606854878365993, 0.006705272011458874, 0.03751750662922859, 0.04024980589747429, 0.021310022100806236, 0.007098053116351366, -0.0465981550514698, 0.0027672434225678444, 0.042033322155475616, 0.01831929385662079, -0.011231188662350178, -0.0363556444644928, -0.0025820631999522448, 0.013426605612039566, 0.01439378410577774, -0.01901940256357193, 0.0039098612032830715, 0.022923437878489494, -0.06070788949728012, 0.018072061240673065, -0.01215287670493126, 0.011671940796077251, -0.06620392203330994, -0.0013151293387636542, -0.027896426618099213, 0.02411367930471897, -0.025250710546970367, -0.004483530297875404, -0.05101078748703003, 0.023013640195131302, -0.010339424014091492, -0.005861299112439156, -0.016056958585977554, 0.02575628273189068, 0.02248971350491047, -0.08347532898187637, 0.046534087508916855, -0.03755132853984833, 0.0020431990269571543, -0.01043935026973486, 0.0052060834132134914, 0.018969830125570297, 0.011777778156101704, -0.017966601997613907, -0.032609425485134125, 0.058098334819078445, -0.05635357275605202, -0.014811821281909943, -0.02590402401983738, 0.027052611112594604, -0.023410623893141747, 0.001208684523589909, 0.032420918345451355, -0.025969119742512703, -0.016840549185872078, 0.05331077054142952, 0.030723106116056442, 0.04384738951921463, -0.014123516157269478, 0.03104591742157936, 0.019770286977291107, 0.0008303215727210045, 0.03278270736336708, -0.028590507805347443, -0.007344765122979879, -0.01744244061410427, -0.03704840689897537, 0.06605703383684158, 0.012684088200330734, -0.07499846071004868, -0.009828643873333931, 0.006383709143847227, -0.0002863197587430477, 0.016718782484531403, 0.006736434064805508, -0.028920233249664307, -0.008117466233670712, 0.003938888665288687, -0.05537647008895874, -0.010212963446974754, 0.011779863387346268, -0.00014760556223336607, -0.05917460471391678, -0.01802261359989643, -0.04494689777493477, -0.03015054389834404, 0.012573002837598324, -0.006944234482944012, 0.023654798045754433, 0.015964604914188385, 0.009496010839939117, -0.0030319634824991226, -0.07206715643405914, 0.06326737999916077, -0.011866413056850433, -0.011980244889855385, 0.00014682933397125453, 0.048332929611206055, 0.02288624830543995, 0.030258046463131905, -0.007025314029306173, 0.07866041362285614, 0.018509838730096817, 0.06131182238459587, -0.005586127284914255, 0.03190183639526367, -0.010164367966353893, -0.08300270885229111, -0.013352582231163979, 0.05982698127627373, -0.01796870306134224, -0.006374207790941, -0.00760664651170373, -0.005863361060619354, -0.025875834748148918, 0.01722489483654499, 0.049076907336711884, 0.055865876376628876, -0.01806643046438694, -0.053075216710567474, 0.022388266399502754, -0.04627688601613045, 0.009238770231604576, 0.03255969658493996, -0.003160581924021244, 0.006955160293728113, -0.021473318338394165, 0.023914577439427376, 0.011871499009430408, 0.03860756754875183, 0.07608084380626678, 0.009477742947638035, 0.012483065947890282, 0.07442013174295425, -0.0018940396839752793, 0.03233877196907997, -0.02401597611606121, 0.01495247334241867, 0.03813226893544197, 0.057563263922929764, 0.026530882343649864, 0.03419502079486847, 0.004636252298951149, 0.003106497460976243, -0.01407771185040474, 0.03570207580924034, -0.004127452615648508, -0.04616308584809303, -0.012771407142281532, -0.028948647901415825, 0.052071813493967056, -0.014773830771446228, -0.0010374760022386909, 0.002391987945884466, 0.09208911657333374, -0.004914639983326197, 0.06944604218006134, 0.0036815605126321316, -0.07130715996026993, 0.011768899857997894, -0.006042017601430416, 0.042417772114276886, -0.005922429263591766, 0.008814098313450813, 0.05474000796675682, 0.01225011982023716, -0.012960096821188927, 0.017300179228186607, -0.04460052773356438, -0.07320257276296616, -0.026746533811092377, -0.025855641812086105, 0.08068368583917618, -0.02533644810318947, -0.021791592240333557, 0.06175771355628967, 0.023475846275687218, 0.028856754302978516, 0.02353932522237301, -0.03380674123764038, 0.024551846086978912, -0.01940963603556156, -0.025787532329559326, 0.04533383995294571, 0.020988382399082184, 0.010490283370018005, -0.061813946813344955, -0.022615402936935425, 0.006147922948002815, 0.01386682502925396, 0.04654613882303238, 0.017951328307390213, 0.034726183861494064, 0.035351864993572235, 0.011535005643963814, -0.006250471342355013, 0.03221522271633148, -0.04401997849345207, 0.06999846547842026, 0.017968904227018356, 0.012130331248044968, -0.01341630145907402, -0.030582144856452942, 0.12236060947179794, 0.08735860139131546, -0.01582947000861168, -0.04999811202287674, 0.032128896564245224, -0.015928179025650024, -0.03852222487330437, 0.012533548288047314, 0.018911968916654587, -0.031432706862688065, -0.005703582428395748, -0.005611116532236338, -0.0019419030286371708, 0.004102940671145916, -0.027952054515480995, -0.003471868112683296, 0.08611544966697693, -0.018699681386351585, 0.025596586987376213, -0.01212755125015974, -0.04065622016787529, -0.007801092695444822, -0.024694304913282394, -0.06974577158689499, 0.00951823964715004, 0.014386855997145176, -0.014517251402139664, 0.0714319720864296, -0.035483911633491516, -0.04064860939979553, -0.012216806411743164, -0.048096753656864166, 0.04305112361907959, 0.033298298716545105, 0.07622987031936646, -0.0009476140839979053, 0.031774263828992844, -0.029962550848722458, 0.004716263618320227, -0.007169674150645733, -0.046608906239271164, -0.030111055821180344, 0.006233504973351955, -0.0034802709706127644, 0.04033536836504936, 0.043639130890369415, -0.004696971736848354, 0.02036234922707081, -0.00851927138864994, -0.016248615458607674, 0.0105030108243227, 0.011241868138313293, -0.004531799349933863, -0.012474448420107365, -0.020578518509864807, -0.024641957134008408, 0.05812091752886772, -0.05497238412499428, -0.017579318955540657, -0.019110077992081642, -0.042937930673360825, 0.041182536631822586, -0.11439813673496246, -0.04380423575639725, -0.01883777230978012, 0.018227284774184227, 0.05318538099527359, -0.03608107939362526, -0.009146387688815594, 0.06801299005746841, -0.011009138077497482, 0.014677781611680984, 0.017573894932866096, -0.008561113849282265, 0.03881371021270752, -0.015720855444669724, 0.0552784688770771, 0.03154868260025978, -0.016837580129504204, -0.004722127690911293, -0.03786009922623634, 0.009778773412108421, -0.022473998367786407, -0.2773852050304413, 0.022298768162727356, -0.020385155454277992, -0.052684880793094635, 0.007912072353065014, -0.03197646141052246, -0.01811375841498375, -0.05735008791089058, -0.01878843642771244, 0.037381693720817566, -0.02821488119661808, -0.038237765431404114, -0.03293325752019882, 0.06361681967973709, -0.000058399928093422204, 0.002839480061084032, 0.005611887201666832, -0.030979042872786522, -0.01965133659541607, 0.02782791294157505, -0.0204827431589365, -0.022776765748858452, 0.008776148781180382, 0.038969796150922775, 0.012241322547197342, 0.02374369464814663, -0.0794498398900032, 0.03600625321269035, -0.056969352066516876, -0.016751140356063843, -0.02809702605009079, -0.002955390838906169, 0.013218807987868786, -0.022257676348090172, -0.02111997827887535, -0.009226158261299133, 0.008340412750840187, 0.007363859564065933, 0.029974982142448425, 0.04602904990315437, -0.03274817764759064, -0.0443122498691082, 0.004859007429331541, -0.0589023232460022, 0.06705217808485031, -0.040544211864471436, -0.08686037361621857, -0.0413418784737587, -0.046198610216379166, 0.07802996784448624, -0.04269010201096535, -0.021029630675911903, -0.00906484667211771, 0.06187119334936142, 0.02514663338661194, 0.004245626274496317, -0.015390523709356785, -0.015281438827514648, -0.055238015949726105, -0.03168049454689026, -0.03058033250272274, -0.04699680954217911, -0.03694587200880051, -0.03384561836719513, -0.009889104403555393, -0.05443854257464409, -0.04601442068815231, -0.013590154238045216, 0.04108286276459694, 0.005797034129500389, -0.0023626170586794615, -0.035399723798036575, -0.011411423794925213, -0.12011322379112244, -0.026564614847302437, -0.03857193887233734, -0.01763763651251793, -0.0150271812453866, 0.039081018418073654, 0.05141521245241165, -0.03394639119505882, -0.05337130278348923, 0.017356595024466515, -0.01791541837155819, 0.011725190095603466, -0.005615639965981245, 0.04158812388777733, -0.023433582857251167, -0.022539101541042328, 0.009454187005758286, 0.06227180361747742, -0.023999445140361786, -0.016504282131791115, -0.04227301478385925, 0.005797294899821281, 0.029285499826073647, 0.002420850796625018, 0.016543390229344368, 0.007812506519258022, 0.018763922154903412, 0.031817976385354996, -0.041684746742248535, 0.022411590442061424, -0.01800149865448475, -0.011666577309370041, -0.009337829425930977, -0.05521077662706375, 0.027255060151219368, 0.018167514353990555, 0.013461900874972343, -0.02647424302995205, -0.07749323546886444, 0.006549727637320757, -0.04713673144578934, -0.034528687596321106, -0.045498985797166824, 0.006153681315481663, 0.03753029927611351, 0.043910980224609375, -0.015559631399810314, -0.04253413900732994, -0.0181452464312315, 0.0242003146559, -0.03113376349210739, -0.028827643021941185, -0.0016819994198158383, -0.026432937011122704, -0.03689155355095863, 0.03930055722594261, 0.03976747393608093, -0.03734150901436806, 0.030864063650369644, 0.022676633670926094, -0.03331797942519188, 0.01738494448363781, -0.013575856573879719, -0.01707760989665985, -0.009178689680993557, -0.015434516593813896, -0.03519793972373009, 0.025211548432707787, -0.00781484879553318, 0.022106215357780457, 0.018039057031273842, 0.07083257287740707, 0.0062379310838878155, 0.040957119315862656, 0.02099919505417347, -0.018498772755265236, -0.005776028614491224, 0.006771243643015623, -0.05905958265066147, 0.024224381893873215, -0.02150838077068329, -0.04594271630048752, -0.018878929316997528, 0.0544949471950531, 0.0035527709405869246, -0.04411701112985611, -0.04023342579603195, 0.04106773063540459, -0.05488608404994011, -0.021819304674863815, 0.003155727405101061, 0.009818932972848415, 0.05587274953722954, -0.0010704492451623082, 0.039564479142427444, -0.036145374178886414, 0.015491567552089691, 0.0013387887738645077, 0.04274929687380791, -0.02518235519528389, 0.023945335298776627, 0.010703508742153645, -0.0030302510131150484, -0.0011543248547241092, 0.03301452100276947, 0.054997768253088, 0.02234414964914322, -0.029420044273138046, -0.04326434060931206, 0.01767268404364586, 0.03370821103453636, 0.047550003975629807, -0.032246291637420654, -0.0038816696032881737, 0.0016461526975035667, -0.009631410241127014, -0.009544212371110916, -0.014092906378209591, -0.0315508171916008, -0.010975147597491741, 0.041569143533706665, -0.03431723639369011, -0.06148514896631241, 0.017910383641719818, 0.012325271032750607, 0.006959398742765188, -0.0032270257361233234, 0.018805282190442085, -0.01577056758105755, 0.0009993838611990213, 0.02860851027071476, 0.0648631826043129, -0.04402042180299759, -0.0071884519420564175, 0.0003627485712058842, 0.037251658737659454, 0.017101680859923363, 0.01393669843673706, -0.05820265784859657, -0.037569090723991394, -0.019809281453490257, -0.023405948653817177, -0.029727429151535034, -0.027691977098584175, -0.015382084995508194, 0.01939545013010502, -0.03103562630712986, -0.013410915620625019, 0.010870864614844322, 0.012113400734961033, -0.027503645047545433, -0.011598515324294567, 0.013857978396117687, -0.05416961386799812, 0.00830779131501913, 0.06444110721349716, -0.022836677730083466, 0.05207943543791771, 0.000022415246348828077, 0.026419922709465027, 0.03663867339491844, -0.004368502646684647, -0.022544320672750473, -0.03220830857753754, 0.028849683701992035, -0.034387148916721344, 0.04849981144070625, -0.005074655171483755, -0.031323812901973724, 0.010505322366952896, -0.011271374300122261, -0.056846458464860916, 0.012075482867658138, -0.01476338692009449, -0.02975660189986229, 0.026707902550697327, 0.04506509006023407, -0.02892887592315674, 0.04091418534517288, 0.010609191842377186, -0.05024050548672676, 0.025065261870622635, -0.024482470005750656, -0.03167246654629707, -0.0039390940219163895, -0.04092086851596832, 0.03177928924560547, 0.03759127855300903, 0.029491567984223366, -0.02150488644838333, 0.06237242743372917, 0.041700977832078934, 0.02803521230816841, 0.007565690670162439, -0.023974580690264702, 0.03631044179201126, -0.04953613877296448, -0.02189759723842144, -0.08571884036064148, 0.005274678114801645, 0.0016683629946783185, -0.006278452463448048, -0.054375823587179184, -0.03502797335386276, -0.003062293864786625, 0.05240971967577934, -0.03289886191487312, -0.015225331299006939, 0.032578784972429276, -0.01977125182747841, 0.006808804348111153, -0.000562162313144654, -0.04435404762625694, 0.003057223977521062, 0.0350317507982254, -0.007822034880518913, -0.02223884128034115, -0.019616110250353813, 0.036483027040958405, 0.011454048566520214, 0.033324941992759705, -0.023089947178959846, -0.009449710138142109, 0.06317038089036942, 0.04006090760231018, 0.009320957586169243, 0.04834247753024101, -0.002250713063403964, 0.021927889436483383, 0.016199428588151932, 0.00811758916825056, -0.01716061495244503, 0.030414028093218803, -0.05034903436899185, -0.07194933295249939, 0.022006742656230927, 0.01556914672255516, -0.011803415603935719, -0.014087479561567307, 0.0835883840918541, 0.0028315738309174776, -0.0196149330586195, -0.019353918731212616, 0.03868173435330391, -0.05635904520750046, -0.0008680630708113313, -0.016407253220677376, -0.007166935596615076, -0.03486466780304909, 0.043916720896959305, 0.0014598587295040488, -0.0020279025193303823, 0.05693032592535019, 0.024859659373760223, -0.00011174842802574858, -0.032903533428907394, 0.10544589906930923, 0.08195042610168457, 0.019575951620936394, -0.00036043545696884394, 0.057578347623348236, -0.04308317229151726, -0.053293097764253616, -0.00017861371452454478, -0.021002374589443207, -0.011223927140235901, -0.03340260311961174, 0.016700532287359238, 0.05863553285598755, -0.020551221445202827, 0.07882367074489594, -0.04226412996649742, 0.006193690467625856, -0.021650247275829315, 0.043446701020002365, 0.034566644579172134, 0.0692753717303276, 0.03706962615251541, 0.03086305968463421, 0.005958555266261101, -0.03743547201156616, -0.004917972721159458, -0.01349408645182848, -0.009525028988718987, -0.00348091684281826, -0.00540929613634944, 0.01950402930378914, 0.03938528895378113, 0.006223294883966446, 0.05574074387550354, -0.027898648753762245, 0.009186428971588612, 0.01383916288614273, 0.025234900414943695, -0.00173403590451926, 0.007450185250490904, -0.024046532809734344, -0.04870644956827164, 0.009737924672663212, -0.02244706265628338, -0.019352950155735016, -0.018449366092681885, -0.06065185368061066, 0.0424128994345665, -0.04538005590438843, 0.014856310561299324, 0.019729312509298325, -0.006257228087633848, -0.03998396918177605, -0.055263057351112366, -0.025154050439596176, -0.03575792908668518, -0.05268187075853348, -0.017995178699493408, 0.01044628769159317, -0.03265281766653061, 0.0024276780895888805, -0.04857049509882927, 0.002741727977991104, -0.04224119707942009, 0.04189372435212135, -0.017134882509708405, -0.02415785752236843, 0.018134944140911102, 0.000865651061758399, 0.017858995124697685, 0.04340057820081711, 0.043495889753103256, -0.021433629095554352, 0.013375384733080864, -0.04191254451870918, -0.004227389115840197, 0.03963039815425873, 0.014799040742218494, 0.020568091422319412, -0.07560852915048599, -0.01829363778233528, 0.01492415089160204, 0.025080382823944092, -0.07393740862607956, 0.01384451612830162, 0.00477666174992919, -0.0016300557181239128, 0.030199021100997925, -0.008855821564793587, 0.016797803342342377, -0.001626961980946362, -0.04134758561849594, -0.018450045958161354, 0.038009874522686005, 0.05226370692253113, -0.003806525841355324, 0.10687629133462906, 0.029060767963528633, -0.016050906851887703, -0.012958635576069355, 0.014145388267934322, -0.034865930676460266, -0.0015045389300212264, -0.016531333327293396, -0.024960001930594444, -0.03720414638519287, -0.05262044817209244, -0.016506247222423553, -0.008677856996655464, -0.025470765307545662, -0.011590809561312199, -0.001645131385885179, 0.04410972446203232, -0.05811171606183052, 0.08895181119441986, -0.015252134762704372, 0.014562170021235943, -0.0208938866853714, -0.05383368581533432, 0.0018135232385247946, -0.008931191638112068, 0.024163782596588135, 0.0029465965926647186, 0.04366045072674751, -0.04332595691084862, -0.002548948163166642, 0.011788393370807171, 0.004759148228913546, 0.005474674981087446, -0.031797681003808975, 0.0036381857935339212 ]
[ -0.07421823590993881, -0.027273697778582573, -0.04332336410880089, -0.025332394987344742, -0.024896830320358276, -0.06353140622377396, -0.018491525202989578, 0.03952419385313988, 0.009511427953839302, -0.03701487183570862, -0.01443402748554945, -0.07288391143083572, 0.02404869720339775, 0.013823902234435081, 0.0911928340792656, 0.005465700291097164, -0.028938112780451775, -0.013636217452585697, -0.049110062420368195, 0.01725791022181511, 0.0502006858587265, -0.037738602608442307, -0.055090371519327164, -0.05529968813061714, -0.01251894049346447, 0.057130858302116394, 0.03955616056919098, -0.04886249825358391, 0.022067418321967125, -0.21015630662441254, -0.019016262143850327, 0.0005006659193895757, 0.06011709198355675, -0.021870296448469162, -0.041569702327251434, 0.061104610562324524, 0.008259342052042484, -0.01790245808660984, 0.0037977949250489473, 0.07452350854873657, 0.01994059979915619, 0.019457252696156502, -0.036729056388139725, -0.034273985773324966, 0.05853259563446045, 0.0059587680734694, -0.045582421123981476, -0.01844257302582264, -0.04095882549881935, -0.005079569295048714, -0.06671065837144852, 0.03209364414215088, 0.008452672511339188, -0.014217883348464966, -0.018656399101018906, 0.031735945492982864, 0.03539828956127167, 0.10687556117773056, 0.026529958471655846, 0.018514316529035568, -0.023058976978063583, -0.01054301019757986, -0.1309678554534912, 0.1148756816983223, -0.001538601703941822, 0.04905039817094803, 0.002218580339103937, -0.03919413313269615, -0.04001598805189133, 0.07997078448534012, 0.025215398520231247, -0.025328347459435463, -0.035530127584934235, 0.061962347477674484, -0.00810130126774311, -0.045725103467702866, 0.01887538842856884, 0.0195002518594265, 0.0524790957570076, -0.020182499662041664, -0.02503601834177971, -0.025143934413790703, -0.011563549749553204, 0.0023097789380699396, -0.02265535667538643, 0.009753220714628696, -0.011967028491199017, 0.07689368724822998, 0.020275376737117767, -0.01838717609643936, -0.00398927042260766, -0.04905259981751442, 0.01369031984359026, 0.018672700971364975, -0.06936665624380112, 0.04548930376768112, 0.007277510594576597, 0.00832376815378666, -0.03633657842874527, 0.3809957802295685, -0.03665037453174591, -0.01747126318514347, 0.016348952427506447, 0.05107201635837555, 0.01671282760798931, 0.02856644243001938, -0.005009932909160852, -0.04361047223210335, 0.004708003252744675, -0.062213391065597534, -0.023019488900899887, -0.03844656050205231, 0.05897454544901848, -0.044552821666002274, -0.03151451051235199, 0.000554742175154388, 0.08572513610124588, -0.009228644892573357, -0.010636251419782639, -0.021967392414808273, 0.02723577991127968, 0.01846175640821457, -0.002455179812386632, 0.015807103365659714, -0.0132307643070817, -0.027798103168606758, -0.02210482954978943, 0.04528459161520004, 0.02474129945039749, 0.013911467045545578, 0.06543773412704468, -0.036727018654346466, -0.04543962702155113, 0.0012954621342942119, 0.010958368889987469, 0.023463675752282143, 0.05455521494150162, -0.03858321160078049, 0.03807594254612923, 0.002828299766406417, -0.0005396907799877226, -0.04769870638847351, 0.00315858400426805, -0.004410235211253166, 0.004270678386092186, 0.06539569795131683, -0.019372057169675827, -0.03916396573185921, 0.003763853572309017, 0.000626893830485642, -0.006113952025771141, 0.046573102474212646, -0.02597331628203392, -0.05670734867453575, -0.004880323074758053, 0.03217889741063118, 0.0360153391957283, -0.003403318114578724, -0.05746506527066231, -0.010886818170547485, -0.05889749899506569, -0.0371742770075798, -0.07343766838312149, 0.043065764009952545, -0.0017215291736647487, -0.03656730800867081, -0.061540812253952026, 0.009053567424416542, 0.02468746528029442, -0.0558469220995903, 0.02693803794682026, 0.051820337772369385, -0.03854301571846008, 0.000015000309758761432, 0.038850754499435425, -0.042772307991981506, -0.023032385855913162, -0.005390867590904236, 0.03877965360879898, 0.04361340403556824, -0.007089880295097828, -0.013654589653015137, -0.05163947120308876, 0.020064085721969604, -0.006262482143938541, -0.05995866283774376, -0.05786576494574547, -0.018040373921394348, -0.027760760858654976, -0.022016124799847603, -0.005188322626054287, -0.0027248626574873924, -0.09775207936763763, 0.045095838606357574, -0.004309095907956362, -0.004040176048874855, 0.03942294046282768, -0.005057165399193764, 0.004022687207907438, -0.01010072510689497, 0.005342061631381512, 0.05393354594707489, 0.005750036332756281, 0.04726457968354225, -0.11324099451303482, -0.00784778781235218, 0.040840573608875275, -0.04947063326835632, 0.04474353790283203, 0.05069200322031975, -0.020250702276825905, 0.013993260450661182, -0.026265084743499756, 0.010645661503076553, -0.012865436263382435, -0.015601557679474354, 0.022404544055461884, -0.025105224922299385, 0.01842021383345127, 0.02272479236125946, -0.05763513594865799, -0.04251750558614731, -0.03990185260772705, -0.3495015799999237, -0.04557140916585922, -0.0026731151156127453, -0.041870106011629105, -0.013111202977597713, -0.10880041122436523, 0.01000983826816082, -0.0003092097176704556, -0.04305257648229599, 0.048860181123018265, 0.09218710660934448, 0.02327028289437294, -0.02447385899722576, -0.0899934396147728, 0.01640891470015049, 0.04494483396410942, -0.03270372748374939, -0.029968421906232834, -0.011020260863006115, 0.01430077850818634, -0.020950397476553917, 0.0007729387143626809, 0.005102878902107477, -0.0804857537150383, -0.007473355159163475, -0.009216033853590488, 0.101017065346241, 0.03949231654405594, 0.10895364731550217, -0.0557895302772522, 0.04978588968515396, -0.01300038117915392, -0.027138032019138336, -0.09354250133037567, 0.0008646936039440334, 0.002124259015545249, -0.034319788217544556, 0.013285402208566666, 0.07934477180242538, -0.027861138805747032, -0.02117587998509407, -0.02709268592298031, -0.01670343242585659, -0.012101911008358002, 0.02910197712481022, 0.030105819925665855, 0.010062696412205696, -0.05569959059357643, 0.0063876379281282425, 0.08379321545362473, 0.00803749542683363, 0.010729659348726273, 0.009683012031018734, 0.054124049842357635, 0.004320542328059673, -0.00651125144213438, -0.047426994889974594, -0.011952556669712067, 0.02084754966199398, 0.017110712826251984, 0.039797428995370865, 0.06447023153305054, 0.04983697831630707, -0.00752423657104373, -0.011101341806352139, -0.002143366727977991, -0.009090245701372623, -0.005316521506756544, 0.0386812798678875, -0.017594071105122566, -0.021458936855196953, 0.11221925914287567, -0.03055134415626526, 0.020962124690413475, 0.018632763996720314, 0.06167572736740112, -0.023537050932645798, 0.0055051082745194435, 0.028385473415255547, 0.004300602711737156, -0.00012929925287608057, 0.00854464154690504, 0.010079784318804741, -0.008801101706922054, 0.005897688213735819, 0.041046224534511566, -0.008990739472210407, 0.01619546487927437, 0.04128158092498779, -0.046393945813179016, -0.02252977341413498, 0.03611263260245323, 0.004949094261974096, -0.03974490985274315, 0.0691753476858139, -0.004702375736087561, -0.2448531687259674, 0.05254485830664635, 0.05017700791358948, 0.025737972930073738, -0.006609822623431683, 0.028959887102246284, 0.029908036813139915, -0.08215205371379852, -0.0723685547709465, -0.004125578328967094, 0.023452213034033775, 0.0431671217083931, 0.03615843877196312, 0.052130863070487976, 0.03951869159936905, -0.020594090223312378, 0.042487114667892456, 0.006386943627148867, -0.009391898289322853, 0.0014374490128830075, 0.03061762824654579, 0.042133528739213943, 0.18464304506778717, -0.0015780969988554716, -0.008155389688909054, -0.006948064547032118, 0.011956867761909962, -0.0022231764160096645, 0.09112437814474106, 0.03725094348192215, -0.022888487204909325, -0.0047163646668195724, 0.0724305808544159, -0.014957260340452194, 0.062487855553627014, -0.04982464388012886, 0.012101823464035988, 0.047331105917692184, 0.01265670545399189, 0.01129312813282013, -0.02701178379356861, 0.05009503662586212, -0.003931778483092785, 0.04143465682864189, 0.07729490101337433, 0.023950710892677307, -0.005663423798978329, -0.053268078714609146, -0.0385395810008049, 0.022468432784080505, -0.014918295666575432, -0.026257650926709175, 0.008734725415706635, -0.029985856264829636, -0.02769046649336815, 0.027326973155140877, 0.0005766605609096587, -0.028147226199507713, -0.03819914907217026, 0.022708987817168236, 0.04457026347517967, -0.009454390965402126, 0.09951283037662506, 0.010250906459987164, 0.016018148511648178 ]
[ -0.03252953663468361, -0.027766436338424683, -0.020071659237146378, -0.00888210628181696, -0.024359218776226044, 0.002613514196127653, -0.014246559701859951, 0.022363904863595963, -0.023416435346007347, -0.04906223714351654, -0.01479223184287548, -0.0064775655046105385, 0.008860195986926556, 0.004322858992964029, 0.005045788362622261, -0.006618425715714693, 0.0005180377629585564, 0.03979569301009178, 0.011700509116053581, -0.06528580188751221, -0.0295081939548254, 0.022641748189926147, 0.0014755522133782506, 0.008931871503591537, 0.004389384761452675, 0.002890578703954816, -0.04136248305439949, -0.00486891670152545, 0.015565913170576096, -0.08149424195289612, -0.04860863462090492, -0.029048727825284004, 0.031440455466508865, -0.010869243182241917, -0.017006434500217438, 0.0542144849896431, -0.017628666013479233, 0.00637695612385869, 0.010261481627821922, -0.028109773993492126, -0.025631321594119072, 0.018136506900191307, 0.007120793219655752, -0.005575778894126415, 0.0019363976316526532, 0.006897770334035158, 0.005292404908686876, -0.025837326422333717, 0.005762288346886635, -0.006798215676099062, -0.04568714648485184, 0.004304821603000164, -0.005015138536691666, -0.013165712356567383, 0.026929760351777077, 0.008268486708402634, -0.010732370428740978, -0.03888128325343132, -0.014179930090904236, -0.047222621738910675, -0.059439051896333694, 0.0019070971757173538, -0.03126125410199165, -0.010745829902589321, -0.0037090906407684088, -0.0006289767334237695, -0.00012169859110144898, 0.007140207104384899, -0.006307112518697977, 0.012629196047782898, -0.0028434551786631346, 0.001322079449892044, -0.03112395666539669, -0.012596267275512218, -0.014071792364120483, 0.010239583440124989, 0.0626780316233635, -0.0233767032623291, 0.04486074298620224, -0.006939186714589596, -0.014342958107590675, -0.0041558584198355675, 0.01817396655678749, 0.03768065199255943, -0.0294551532715559, -0.024044349789619446, -0.006469584535807371, 0.0033424426801502705, 0.03179902210831642, 0.00290719629265368, -0.01503401156514883, 0.02085806243121624, -0.025688471272587776, 0.01946449838578701, -0.04459059238433838, 0.0010090473806485534, -0.02295331098139286, -0.043365176767110825, 0.002554783597588539, 0.8448708057403564, -0.01846393570303917, 0.03706670552492142, 0.0560397207736969, 0.005945189855992794, -0.01231406070291996, 0.0215874332934618, 0.01013291347771883, -0.005633637309074402, -0.0012205926468595862, -0.019251257181167603, 0.0034062787890434265, -0.043147824704647064, 0.03558095544576645, -0.019541524350643158, -0.0006449263892136514, 0.03599962592124939, 0.02998608537018299, 0.006599761079996824, -0.00652131624519825, -0.0056379567831754684, -0.004750213585793972, -0.016985950991511345, 0.017263762652873993, 0.03212179243564606, 0.009961467236280441, -0.20033258199691772, -0.018212782219052315, -8.801278118227744e-33, 0.027187714353203773, -0.041207898408174515, 0.02327045425772667, -0.009141595102846622, 0.03044802136719227, 0.029489703476428986, 0.05943826586008072, 0.020874379202723503, -0.020660927519202232, 0.007821974344551563, 0.015962619334459305, -0.023970983922481537, -0.023191042244434357, -0.019084706902503967, 0.02501954883337021, 0.005202673375606537, 0.001681182300671935, 0.026696758344769478, -0.05771999806165695, 0.03183284401893616, 0.03282538801431656, 0.03182600438594818, -0.0038741889875382185, 0.02179301716387272, 0.007177924737334251, 0.029060248285531998, 0.015310408547520638, -0.0007335148402489722, -0.0010912246070802212, -0.05095034837722778, 0.004699643235653639, 0.006860489957034588, -0.03208719938993454, -0.02857535146176815, 0.026956386864185333, -0.032627496868371964, -0.010693523101508617, 0.021477699279785156, 0.0009377272799611092, -0.008311167359352112, -0.04416641965508461, 0.016875451430678368, -0.011832396499812603, -0.008161702193319798, 0.014622394926846027, -0.016848694533109665, 0.00615967670455575, 0.04006805270910263, -0.0036552236415445805, 0.04426726698875427, 0.03484678640961647, 0.05818493664264679, -0.01531288307160139, -0.02105817385017872, -0.023452410474419594, 0.02291468158364296, -0.005209498107433319, 0.03336682170629501, 0.008735805749893188, 0.029292821884155273, 0.0026562768034636974, 0.03801506385207176, -0.00472783949226141, 0.03373699635267258, -0.02622833289206028, 0.004082449711859226, -0.04537942633032799, -0.008181889541447163, 0.019460877403616905, 0.06982344388961792, -0.03842542693018913, -0.007466139271855354, -0.02941778674721718, -0.00377394026145339, 0.032379284501075745, -0.035947080701589584, -0.01928555592894554, -0.03370416909456253, -0.00705010537058115, 0.0024761639069765806, 0.03012741729617119, -0.017194312065839767, -0.002139083342626691, -0.006700368132442236, 0.0008073485805653036, 0.017959440127015114, 0.00004450850610737689, -0.003967729862779379, -0.00930803082883358, 0.032556746155023575, 0.029195072129368782, 0.010320097208023071, 0.014060630463063717, 0.0010598181979730725, -0.003971443511545658, 7.894317370327146e-33, -0.03686368465423584, -0.01017555221915245, -0.03819899633526802, -0.016556046903133392, -0.03621842712163925, -0.03776245936751366, -0.004880125168710947, 0.008218985050916672, -0.017139028757810593, 0.03919542580842972, -0.01961679570376873, 0.0238877534866333, -0.03386729955673218, 0.029935423284769058, 0.06045248359441757, -0.01303752139210701, -0.011507694609463215, 0.010379927232861519, 0.00188825698569417, 0.006530375685542822, 0.0490306094288826, 0.008090276271104813, 0.011101695708930492, 0.007234069053083658, 0.03678775578737259, 0.0341993011534214, -0.0013041358906775713, 0.04841964691877365, 0.010327471420168877, 0.009142226539552212, -0.007594700437039137, -0.02019607648253441, 0.0033510196954011917, -0.027108710259199142, 0.0163282360881567, -0.0031249455641955137, -0.007120343390852213, -0.013899137265980244, 0.025177527219057083, 0.007710739970207214, -0.0023515657521784306, -0.01873149164021015, 0.01792878657579422, 0.0551871657371521, -0.015095498412847519, 0.06043436378240585, 0.0014712328556925058, 0.004258820321410894, 0.028568057343363762, -0.0066117714159190655, -0.027901599183678627, -0.01126867812126875, 0.0336725078523159, 0.004074075724929571, 0.04134022817015648, -0.00843887496739626, -0.005667346995323896, -0.006389091722667217, -0.019249288365244865, -0.021419508382678032, -0.02123289182782173, -0.0509350448846817, -0.007886162959039211, -0.008307146839797497, -0.023481255397200584, -0.016453390941023827, -0.02263636142015457, -0.040455162525177, -0.007706974167376757, -0.006522501353174448, -0.03405215963721275, -0.0007718690321780741, 0.025053368881344795, 0.03684757277369499, -0.026779495179653168, 0.00851490255445242, -0.0068094306625425816, 0.004159899894148111, 0.017179829999804497, 0.017142364755272865, 0.018909770995378494, -0.00309371342882514, 0.04127087444067001, 0.007370353676378727, 0.03585276007652283, -0.025591302663087845, 0.007034870330244303, 0.04099958389997482, 0.005365945864468813, -0.004351034760475159, -0.015520953573286533, 0.014539599418640137, 0.04536754637956619, -0.002478712936863303, -0.03361955285072327, -1.3597748704796686e-8, 0.019940882921218872, -0.022119078785181046, -0.05669325962662697, 0.0038921309169381857, -0.00868078414350748, 0.025678135454654694, -0.03326445817947388, -0.029233071953058243, -0.020936565473675728, 0.010601494461297989, 0.02865585871040821, 0.05840185657143593, 0.00221742270514369, 0.01703283004462719, 0.02336721308529377, 0.0034480902832001448, -0.0006873229867778718, -0.04764748364686966, 0.01892276294529438, -0.017693592235445976, -0.03459316864609718, 0.0462053008377552, -0.029986999928951263, 0.004508793819695711, -0.02906513400375843, -0.018154356628656387, 0.04778419807553291, -0.0821068063378334, -0.0022073767613619566, 0.001871149055659771, -0.007308674044907093, -0.03766333684325218, 0.007248083129525185, 0.022098267450928688, -0.014486923813819885, -0.04133136197924614, -0.0029067387804389, 0.013047557324171066, 0.030166123062372208, -0.016427241265773773, -0.022815676406025887, -0.014154335483908653, 0.019619204103946686, -0.027385380119085312, -0.009226588532328606, -0.024837736040353775, 0.0009691899176687002, 0.022815724834799767, 0.006192018277943134, 0.000994429923593998, 0.014734230935573578, -0.008886832743883133, 0.017777444794774055, 0.028281353414058685, 0.030582468956708908, -0.006028423085808754, -0.003938182257115841, -0.05020897835493088, -0.022770116105675697, -0.008867024444043636, 0.015565089881420135, 0.016290675848722458, -0.025733977556228638, -0.028760477900505066 ]
haskell-parse-error-on-input
https://markhneedham.com/blog/2010/04/22/haskell-parse-error-on-input
false
2010-04-25 17:27:25
Iron Ruby: 'unitialized constant...NameError'
[ "ruby", "net", "ironruby" ]
[ ".NET", "Ruby" ]
I've been playing around a bit with Iron Ruby and cucumber following http://blog.webintellix.com/2009/10/how-to-use-cucumber-with-net-and-c.html[Rupak Ganguly's tutorial] and I tried to change the .NET example provided in the http://github.com/aslakhellesoy/cucumber/tree/v0.4.2/examples/[0.4.2 release of cucumber] to call a class wrapping Castle's WindsorContainer. The feature file now looks like this: [source,ruby] ---- # 'MyAssembly.dll' is in the 'C:/Ruby/lib/ruby/gems/1.8/gems/cucumber-0.6.4/examples/cs' folder require 'MyAssembly' ... Before do @container = Our::Namespace::OurContainer.new.Container end ---- The class is defined roughly like this: [source,csharp] ---- public class OurContainer : IContainerAccessor { private WindsorContainer container = new WindsorContainer(); public SwintonContainer() { container.RegisterControllers(Assembly.GetExecutingAssembly()).AddComponent<IFoo, Foo>(); // and so on } public IWindsorContainer Container { get { return container; } } } ---- When I tried to run the feature like so: [source,text] ---- icucumber features ---- I kept getting the following error: [source,text] ---- uninitialized constant Our::Namespace::OurContainer (NameError) C:/Ruby/lib/ruby/gems/1.8/gems/cucumber-0.6.4/examples/cs/features/step_definitons/calculator_steps.rb:13:in `Before' ---- I've come across a few posts where http://blog.benhall.me.uk/2009/01/rubygems-ironruby-and-systemnet.html[people described the same error] and they all suggested that IronRuby was unable to find the class that I was trying to call in the code. I decided to try calling another class from the assembly to see if that was the problem but that worked fine so there wasn't a problem with locating the class. Somewhat by coincidence I was looking at the assembly again in Reflector and tried to look at the constructor of the 'OurContainer' class and was asked to give the location of the 'Castle.Windsor' assembly which it uses internally. I didn't have that assembly or any of its dependencies in the 'C:/Ruby/lib/ruby/gems/1.8/gems/cucumber-0.6.4/examples/cs' folder but once I'd included those it all worked fine again!
null
null
[ -0.004708034452050924, -0.02124081924557686, -0.03922545164823532, 0.02962738275527954, 0.06971468776464462, 0.0075045982375741005, 0.043256279081106186, 0.026803307235240936, 0.01094717439264059, -0.012555602006614208, -0.02973775379359722, -0.02362678572535515, -0.0674552470445633, 0.024845005944371223, -0.00730134779587388, 0.058402106165885925, 0.07140661776065826, 0.017551101744174957, -0.01729428768157959, 0.03971559554338455, 0.013172060251235962, 0.05362434312701225, 0.0011964637087658048, 0.0317993201315403, 0.015796316787600517, 0.01357907336205244, 0.03465385362505913, -0.0038336608558893204, -0.07978599518537521, 0.002786114579066634, 0.03135373070836067, 0.006292758975178003, 0.025864243507385254, -0.009008938446640968, 0.03586183488368988, -0.029158268123865128, -0.036425404250621796, -0.018092339858412743, 0.009797010570764542, 0.01930413395166397, -0.05526212602853775, 0.01752738282084465, 0.03374684229493141, -0.02201348915696144, -0.030071688815951347, 0.0015151924453675747, -0.044874079525470734, 0.028602005913853645, -0.016741633415222168, -0.039114490151405334, -0.061080966144800186, 0.028244268149137497, -0.03143235668540001, -0.02747543714940548, 0.0002531344653107226, 0.03452279418706894, 0.0028080155607312918, -0.07670922577381134, 0.03667179495096207, -0.0419280119240284, 0.019965238869190216, 0.02097812294960022, -0.0017635023687034845, 0.03506791964173317, -0.004982899874448776, 0.005863663740456104, -0.03401658684015274, 0.050074126571416855, -0.07818061858415604, -0.009863398969173431, -0.014400976710021496, -0.005173445679247379, -0.0022702631540596485, -0.0064960080198943615, 0.022654931992292404, -0.022783789783716202, -0.0368037074804306, 0.044706206768751144, 0.04468698799610138, 0.061688799411058426, -0.02235591411590576, 0.006068320944905281, -0.004798040725290775, 0.017130058258771896, -0.005653252825140953, -0.0390455424785614, -0.05390460044145584, 0.0007258271798491478, -0.03886333480477333, 0.08309376984834671, 0.039393313229084015, -0.015876373276114464, 0.02817409671843052, 0.02341064251959324, 0.001897816895507276, 0.018317651003599167, -0.026067260652780533, -0.011566532775759697, 0.020669270306825638, 0.016494207084178925, -0.024259664118289948, -0.009976447559893131, 0.01525988057255745, 0.007032336201518774, -0.07190439105033875, 0.01806843839585781, -0.0566597655415535, -0.012780139222741127, -0.0011868990259245038, 0.0008091116324067116, -0.021343616768717766, 0.029249750077724457, -0.007867192849516869, -0.000016340934962499887, -0.0558382011950016, 0.05738134682178497, 0.019094476476311684, -0.015433269552886486, -0.012985160574316978, 0.01608971692621708, 0.027215247973799706, 0.03719716891646385, -0.02197275124490261, 0.06453081965446472, 0.002484278054907918, 0.06649340689182281, -0.0373094379901886, 0.044677067548036575, -0.017207151278853416, -0.08249181509017944, 0.0031208042055368423, 0.059064362198114395, 0.004585877060890198, 0.004769977647811174, -0.01693059504032135, 0.00807253085076809, -0.025115469470620155, 0.016075314953923225, 0.049597788602113724, 0.04312610998749733, -0.01940712332725525, -0.010850608348846436, 0.05311298370361328, -0.008474371396005154, 0.0037513694260269403, 0.022089311853051186, -0.009615172632038593, -0.032895252108573914, -0.038871053606271744, 0.08014989644289017, 0.019515980035066605, 0.04154098033905029, 0.03875173628330231, -0.04020187258720398, 0.009919744916260242, 0.04799184203147888, 0.009978697635233402, 0.0021764005068689585, -0.021925034001469612, 0.002490835729986429, 0.025766029953956604, 0.04487249255180359, 0.02258085086941719, 0.04811044782400131, -0.004589875228703022, -0.03325356915593147, -0.003196004079654813, 0.030132004991173744, -0.010062492452561855, -0.042648110538721085, -0.0578252449631691, -0.042874883860349655, 0.05754765495657921, -0.04200468584895134, 0.03592520207166672, 0.03101879358291626, 0.07646828889846802, 0.011052885092794895, 0.05169019103050232, -0.04108043387532234, -0.08134571462869644, 0.017481738701462746, 0.012911899946630001, 0.036127518862485886, 0.016162579879164696, -0.010331922210752964, 0.07687000185251236, 0.021095968782901764, -0.01964714750647545, 0.0494212806224823, -0.06154024228453636, -0.07065509259700775, -0.015176724642515182, -0.03589346632361412, 0.08263029158115387, -0.005318889860063791, -0.05267076939344406, 0.051401395350694656, -0.01288444921374321, 0.029598139226436615, 0.00436751963570714, 0.004792891442775726, -0.012565531767904758, -0.05829600989818573, -0.02713029459118843, 0.029674511402845383, 0.029887134209275246, 0.017601460218429565, -0.06967265158891678, -0.008486024104058743, -0.019710002467036247, -0.03798919543623924, 0.05527254939079285, -0.0011264457134529948, 0.07008980214595795, 0.026535481214523315, 0.013690982013940811, -0.037089645862579346, 0.05282876640558243, -0.05916999652981758, -0.0011992740910500288, -0.0046339984983205795, -0.019794464111328125, -0.035114675760269165, -0.020183095708489418, 0.1027439534664154, 0.0539562813937664, -0.017134184017777443, -0.04493379965424538, 0.013490947894752026, 0.016180792823433876, -0.04690331593155861, 0.001479258993640542, -0.002376934979110956, 0.024771777912974358, -0.026302196085453033, -0.020774275064468384, -0.008898475207388401, -0.00470163207501173, -0.009968123398721218, -0.010152861475944519, 0.081725113093853, -0.029101282358169556, 0.04434669762849808, 0.008758705109357834, -0.009783410467207432, 0.0055561852641403675, -0.030565092340111732, -0.06764823943376541, -0.01458034012466669, 0.03301442041993141, -0.006113683804869652, 0.0458044707775116, -0.02596701681613922, 0.012229890562593937, -0.02416355162858963, -0.06669209152460098, 0.0010477857431396842, 0.009814134798943996, 0.07550108432769775, -0.0067110671661794186, 0.049536995589733124, -0.07554934173822403, -0.005725331604480743, -0.007130100857466459, -0.03658335655927658, -0.0025712770875543356, -0.0033587252255529165, 0.02582147717475891, 0.0073963128961622715, -0.013351534493267536, -0.00994193833321333, 0.024797959253191948, -0.013859963975846767, 0.011410241946578026, -0.001127824536524713, 0.033396244049072266, 0.005461047403514385, -0.03911091014742851, -0.0545293428003788, -0.04125542938709259, 0.02059512957930565, -0.07232064008712769, -0.013943511992692947, 0.02653518132865429, -0.04387016221880913, 0.025377601385116577, -0.07857965677976608, -0.05628357082605362, -0.03573014587163925, 0.026674240827560425, 0.013747002929449081, 0.017884211614727974, 0.040709238499403, 0.06531167775392532, 0.047613486647605896, 0.019231192767620087, 0.021345248445868492, 0.012649605050683022, 0.043415144085884094, 0.01111565064638853, 0.03504285588860512, 0.018608465790748596, -0.00883534923195839, 0.012468798086047173, -0.06317829340696335, 0.02762606553733349, -0.03799983859062195, -0.2789377272129059, 0.02773754671216011, -0.026832379400730133, -0.055803876370191574, 0.047214530408382416, -0.015695303678512573, -0.006934773176908493, -0.04526384547352791, 0.0017082998529076576, 0.04336215555667877, -0.022826259955763817, -0.015668712556362152, 0.01334463618695736, 0.010814550332725048, 0.01845213957130909, 0.019686752930283546, 0.029782921075820923, -0.04662306606769562, -0.008602374233305454, 0.025087567046284676, 0.00001445737052563345, -0.043456073850393295, 0.02669682912528515, 0.03947180137038231, -0.003200131468474865, 0.034148573875427246, -0.05927707627415657, 0.08177140355110168, -0.02891676500439644, -0.030593266710639, -0.003484126878902316, -0.013591509312391281, 0.0032078148797154427, -0.026908069849014282, -0.01910693384706974, -0.012209291569888592, 0.011623276397585869, 0.03229941427707672, 0.012644295580685139, 0.028093552216887474, -0.03488670662045479, -0.0635606199502945, 0.021666884422302246, 0.004785266704857349, 0.07069741189479828, -0.04530893266201019, -0.05571763589978218, -0.03684673830866814, -0.08221329003572464, 0.10440456867218018, -0.044268831610679626, -0.035753145813941956, 0.02539084479212761, 0.03372868150472641, 0.00006282403046498075, -0.021759003400802612, -0.01584617607295513, 0.02618657425045967, -0.05266178771853447, -0.03688858449459076, -0.0373823307454586, -0.030904116109013557, -0.04740884155035019, -0.057534459978342056, -0.013042803853750229, -0.06827608495950699, -0.05872872471809387, 0.012172057293355465, 0.05318309739232063, 0.026512591168284416, -0.04905533045530319, 0.00598615687340498, -0.04607567563652992, -0.11420933157205582, 0.020860813558101654, -0.01250102836638689, -0.02458828128874302, -0.029033856466412544, 0.004773606080561876, 0.038626402616500854, -0.06969710439443588, -0.03217630088329315, 0.04382134601473808, 0.013240344822406769, 0.02173132821917534, 0.039398226886987686, 0.005952475592494011, 0.010076957754790783, -0.014423348940908909, -0.008330758661031723, 0.060534439980983734, -0.028950462117791176, -0.016571637243032455, -0.022189712151885033, 0.02213265933096409, 0.027303658425807953, 0.008648017421364784, -0.01819147914648056, 0.034800995141267776, 0.03192630410194397, 0.0331161767244339, -0.05013538897037506, 0.008763676509261131, -0.015510568395256996, -0.021696368232369423, -0.02122889831662178, -0.06406597793102264, 0.00493924506008625, 0.014805831015110016, 0.020706279203295708, -0.0033291405998170376, -0.06491719186306, 0.0014229017542675138, -0.0626012533903122, -0.04437841847538948, 0.002669750712811947, 0.021670501679182053, 0.011387605220079422, -0.015189574100077152, 0.030915936455130577, -0.0677429810166359, 0.007905889302492142, 0.01977645605802536, 0.006178350653499365, -0.04382877051830292, -0.05396171286702156, 0.011692394502460957, 0.0003808981564361602, -0.0036015657242387533, 0.010530862025916576, -0.027125950902700424, 0.030433543026447296, 0.012989011593163013, -0.033731427043676376, 0.029945962131023407, 0.011188027448952198, -0.02059211954474449, -0.039592012763023376, -0.010848024860024452, 0.0035777536686509848, -0.026095915585756302, -0.011791661381721497, 0.003982079681009054, 0.01038690097630024, 0.05185471102595329, 0.03357594460248947, 0.04290548712015152, 0.03927425667643547, -0.0033618335146456957, 0.027974329888820648, 0.008639121428132057, -0.060286957770586014, 0.011595097370445728, -0.04204641655087471, -0.03108600154519081, -0.027013041079044342, 0.0335473008453846, -0.022512249648571014, -0.019825952127575874, -0.058323509991168976, 0.04697655513882637, -0.04915549233555794, 0.03073079138994217, -0.02804432064294815, -0.0034668331500142813, 0.07012015581130981, 0.0033794513437896967, 0.010682896710932255, -0.016001978889107704, 0.006931028328835964, -0.013002712279558182, 0.03084965981543064, -0.04291551560163498, 0.0031025216449052095, 0.01976187899708748, 0.0030234402511268854, 0.004511559382081032, 0.009403151459991932, 0.056939929723739624, 0.01891597919166088, 0.013151289895176888, -0.03660701587796211, 0.04122229292988777, 0.0052601671777665615, 0.026489388197660446, 0.03710373863577843, -0.018192529678344727, 0.013149604201316833, -0.011668670922517776, -0.01228240318596363, -0.027017565444111824, -0.005112196318805218, -0.020018063485622406, 0.008858281187713146, -0.04179108142852783, -0.050096165388822556, 0.028726909309625626, 0.007645662873983383, 0.03844314068555832, 0.024783192202448845, -0.00647708959877491, 0.004766720347106457, -0.03792164474725723, 0.05684274807572365, 0.076244056224823, -0.046101056039333344, 0.009067870676517487, 0.007372620049864054, 0.002543862210586667, -0.000507799384649843, 0.011295612901449203, -0.06287029385566711, -0.0016160596860572696, -0.020864631980657578, 0.017666304484009743, -0.031115125864744186, -0.04582703113555908, -0.017597917467355728, 0.025475086644291878, -0.02130342647433281, -0.027514521032571793, -0.007221183739602566, 0.028952348977327347, -0.01434350199997425, -0.0341302789747715, 0.004961349535733461, -0.005232435185462236, 0.006582524161785841, -0.0011576996184885502, -0.02750202640891075, 0.019106511026620865, -0.00833062268793583, 0.01558755338191986, 0.025567414239048958, 0.002830022946000099, -0.040044061839580536, -0.025102194398641586, 0.01633302867412567, 0.014059941284358501, 0.029929867014288902, 0.024943074211478233, 0.019180791452527046, -0.006963495630770922, -0.012396753765642643, -0.013627300038933754, -0.01951775699853897, 0.016610126942396164, -0.01596534624695778, 0.008710077963769436, 0.043015189468860626, -0.024320323020219803, -0.002079749945551157, 0.002434848342090845, -0.00023612764198333025, 0.04977882280945778, -0.0866319015622139, -0.016556229442358017, 0.016466209664940834, -0.06392104923725128, 0.056967467069625854, 0.03726743161678314, 0.04324580729007721, -0.05093463882803917, 0.029986441135406494, 0.0527404323220253, 0.012577448040246964, 0.039055150002241135, -0.01364271342754364, 0.036155808717012405, -0.04871250316500664, 0.021177100017666817, -0.07587835937738419, 0.025699032470583916, 0.04231026768684387, -0.02723544090986252, -0.008498519659042358, -0.023133018985390663, -0.044374220073223114, 0.03644034266471863, -0.0375237800180912, -0.04970085248351097, 0.021970020607113838, -0.02253079228103161, -0.007999655790627003, 0.009414824657142162, -0.03395697474479675, 0.03141358122229576, 0.005192921496927738, -0.024853428825736046, -0.020320428535342216, -0.04351777210831642, 0.03835362568497658, -0.015588362701237202, -0.00677455822005868, -0.03659189119935036, -0.0037729833275079727, 0.07687181979417801, 0.030049052089452744, 0.029333949089050293, 0.03143414482474327, -0.021314337849617004, 0.053609803318977356, -0.004140714183449745, -0.007461986504495144, 0.0002976414980366826, -0.004195110406726599, -0.007591417990624905, -0.0490446612238884, 0.02671211212873459, 0.016718236729502678, -0.02083584852516651, -0.026927299797534943, 0.05445757135748863, 0.010441848076879978, -0.024466270580887794, -0.04637491703033447, 0.027029773220419884, -0.05956980958580971, -0.03270358592271805, -0.02613230235874653, 0.0050596450455486774, -0.05566157400608063, 0.040357016026973724, 0.011380494572222233, -0.008720890618860722, 0.06511008739471436, 0.027005447074770927, 0.00020404186216183007, -0.023500576615333557, 0.06678231805562973, 0.048351019620895386, 0.030007576569914818, 0.024377118796110153, 0.057193126529455185, -0.03513098135590553, -0.04974519461393356, 0.02641812339425087, -0.021591538563370705, 0.02913285419344902, -0.01621212624013424, 0.022581366822123528, 0.04988217353820801, 0.013965501450002193, 0.059392381459474564, -0.030922826379537582, 0.012227049097418785, -0.0559813566505909, 0.013116918504238129, 0.027355577796697617, 0.05129731073975563, 0.06322914361953735, 0.02688976377248764, -0.001102525508031249, -0.056130312383174896, 0.02836299128830433, 0.005030097905546427, 0.0054487502202391624, -0.009354887530207634, -0.012406410649418831, 0.011056327261030674, -0.011111577972769737, 0.030106082558631897, 0.08897008746862411, -0.010268702171742916, -0.03236737474799156, -0.009142421185970306, 0.0382121242582798, 0.017091242596507072, -0.01597568392753601, -0.02884245663881302, -0.03281545639038086, -0.01769259199500084, -0.014621025882661343, -0.03892982751131058, -0.004458741284906864, -0.022203780710697174, 0.03410419821739197, -0.01170666515827179, 0.036583997309207916, 0.044435594230890274, 0.020799504593014717, -0.008632675744593143, -0.05393139272928238, -0.06929261982440948, -0.03644794225692749, -0.052529413253068924, 0.007627996150404215, 0.02925587072968483, 0.007090144325047731, -0.03561133146286011, -0.029738033190369606, 0.0204952172935009, -0.010562153533101082, 0.04839253053069115, -0.0636398121714592, -0.024859530851244926, 0.00427915109321475, 0.02269550785422325, 0.02792576141655445, 0.04089994356036186, 0.06864440441131592, 0.03525704890489578, -0.00641693826764822, -0.017926055938005447, -0.019419033080339432, 0.037394654005765915, -0.004992588423192501, 0.03743762522935867, -0.07443883270025253, 0.027048246935009956, 0.050627682358026505, -0.014916141517460346, -0.05788007751107216, -0.021389711648225784, 0.00697040930390358, -0.03445112332701683, 0.04380413144826889, -0.013739197514951229, 0.0016836161958053708, 0.0030004854779690504, 0.010094061493873596, -0.006497676018625498, 0.044207844883203506, 0.035577259957790375, -0.01639712043106556, 0.05795704945921898, 0.056082941591739655, 0.02043337933719158, -0.02334112487733364, -0.01791064254939556, 0.003543711267411709, 0.0029251405503600836, -0.0442076176404953, -0.004656748380511999, -0.03694585710763931, -0.0684589222073555, 0.0024950094521045685, -0.012099211104214191, -0.001611292944289744, -0.024808337911963463, 0.001820064033381641, 0.023866968229413033, -0.0592983104288578, 0.0008052365155890584, -0.048805199563503265, -0.00601221714168787, -0.019582604989409447, -0.02341405674815178, 0.02446022629737854, 0.032476432621479034, 0.0287899412214756, -0.025873860344290733, 0.007569372653961182, 0.004546813666820526, -0.018289946019649506, -0.05767376348376274, 0.02808140590786934, 0.037396322935819626, 0.004815318156033754, 0.01110026240348816 ]
[ -0.04699333384633064, -0.04321705177426338, -0.019824879243969917, 0.008522660471498966, 0.08537859469652176, -0.06349173188209534, -0.013969587162137032, 0.0006035863771103323, -0.028037412092089653, -0.019422926008701324, -0.002652157796546817, -0.06540262699127197, -0.006869798060506582, -0.0026791009586304426, 0.04619861766695976, 0.022049278020858765, -0.016020730137825012, -0.02368088625371456, -0.046897727996110916, 0.04765325412154198, 0.030597316101193428, -0.03252652287483215, -0.048880722373723984, -0.03320653364062309, 0.01783786527812481, 0.01959286443889141, -0.028970617800951004, -0.03364156559109688, 0.000430538144428283, -0.22787126898765564, -0.004584519192576408, -0.008328627794981003, 0.01454249583184719, -0.033415280282497406, 0.03247104585170746, 0.006134156137704849, 0.0395207479596138, 0.020623909309506416, 0.02300587110221386, 0.05557577311992645, 0.02519095316529274, 0.015917200595140457, -0.08364171534776688, 0.06200702115893364, 0.039857231080532074, 0.005485747940838337, 0.03882598876953125, -0.02497418038547039, 0.04586723446846008, -0.03037189319729805, -0.005150326993316412, -0.011273170821368694, -0.0037337623070925474, -0.0416538342833519, -0.02647767961025238, 0.060276709496974945, 0.07063288986682892, 0.020302044227719307, 0.02058759704232216, 0.015792174264788628, 0.005073606036603451, -0.017916692420840263, -0.15146085619926453, 0.1146879568696022, 0.05134015530347824, 0.0373571403324604, -0.06084958836436272, -0.02070898376405239, 0.03854294493794441, 0.08352018892765045, 0.020850155502557755, -0.025530364364385605, -0.05331667512655258, 0.10080970078706741, -0.02038521319627762, 0.0030827983282506466, 0.017879880964756012, 0.021826451644301414, 0.039738729596138, -0.030025558546185493, -0.09525890648365021, 0.009318772703409195, -0.0200745090842247, 0.0026675204280763865, 0.00620980653911829, 0.015952380374073982, -0.023604005575180054, 0.03251459822058678, 0.01856669783592224, -0.02544049173593521, 0.00028657339862547815, -0.027688410133123398, 0.056073084473609924, 0.046964872628450394, -0.10249112546443939, -0.04994844272732735, 0.01074308343231678, -0.0051932861097157, -0.060960523784160614, 0.4040619134902954, -0.047548774629831314, -0.038950253278017044, 0.029238497838377953, -0.014350405894219875, -0.0040463414043188095, 0.029846441000699997, 0.01347755640745163, -0.05320305749773979, 0.02203225903213024, -0.03821390122175217, 0.004169962834566832, 0.007690562400966883, 0.02977707050740719, -0.05071642994880676, 0.02097075618803501, -0.002474510809406638, 0.007314756512641907, 0.013879232108592987, -0.015048716217279434, 0.03873949125409126, -0.02814394235610962, 0.014337774366140366, 0.036331918090581894, 0.02162761427462101, -0.013793119229376316, 0.01051111426204443, 0.03483479470014572, 0.01887407712638378, -0.018515702337026596, -0.00951437372714281, 0.023746265098452568, 0.004684332758188248, -0.06544484943151474, -0.04341048747301102, 0.007461339235305786, 0.08235975354909897, 0.054810456931591034, -0.026082266122102737, 0.03934499993920326, 0.04611622914671898, -0.04134619981050491, -0.023092180490493774, -0.015651799738407135, -0.0426601879298687, -0.032888010144233704, 0.05155451223254204, 0.001340836868621409, -0.00888628140091896, 0.0012844655429944396, -0.016772393137216568, -0.0071046543307602406, 0.049331746995449066, 0.0028491984121501446, -0.0340823233127594, 0.01875624619424343, -0.012314770370721817, 0.047293368726968765, -0.006861361209303141, -0.007363015320152044, -0.007403636816889048, -0.01933002471923828, -0.03923388198018074, 0.015970604494214058, 0.04463415965437889, 0.016078131273388863, -0.1308051496744156, -0.0532839298248291, 0.03823423013091087, -0.01595616713166237, -0.0978747308254242, -0.013072876259684563, 0.0849103033542633, -0.021057607606053352, 0.016147330403327942, 0.0588550940155983, 0.009382725693285465, -0.02946695126593113, -0.010384837165474892, 0.04590584337711334, 0.03152310848236084, 0.021594872698187828, 0.021212156862020493, -0.033204030245542526, -0.004033793229609728, -0.0108697060495615, -0.047729119658470154, -0.02613871358335018, -0.010756182484328747, -0.026750264689326286, -0.019237231463193893, -0.030835531651973724, 0.022529007866978645, -0.02756563574075699, 0.12320064008235931, -0.017730964347720146, -0.02988683246076107, 0.03687022626399994, -0.011882844381034374, 0.010283353738486767, -0.019848864525556564, 0.016577787697315216, 0.04765549302101135, 0.0003400888235773891, 0.06343837827444077, -0.05055698752403259, -0.0004370072565507144, 0.024184484034776688, -0.02321554161608219, 0.02864743024110794, -0.007780682295560837, -0.049913521856069565, 0.006280957255512476, -0.023209424689412117, 0.02177583985030651, -0.015342548489570618, 0.016133025288581848, 0.017647719010710716, 0.005720141809433699, 0.04593478515744209, -0.0010975496843457222, 0.012593254446983337, -0.05766475573182106, -0.0040776911191642284, -0.3603290021419525, -0.0031977021135389805, 0.022273002192378044, -0.01574660837650299, 0.0049093253910541534, -0.06293356418609619, 0.000850539596285671, 0.0012722053797915578, -0.01718955673277378, -0.026486581191420555, 0.08666384220123291, -0.008764391764998436, -0.009113342501223087, -0.09932711720466614, 0.023966491222381592, -0.003411370562389493, 0.012847056612372398, -0.0783919245004654, -0.028235437348484993, 0.07453525811433792, 0.015693899244070053, -0.04983844235539436, -0.017277194187045097, -0.0002797190099954605, 0.03636426478624344, -0.028644928708672523, 0.08635392785072327, -0.03263019025325775, 0.07581591606140137, -0.02427455596625805, -0.0014979596016928554, 0.01522851176559925, 0.012099960818886757, -0.09497025609016418, -0.018671270459890366, -0.05760057643055916, 0.00020960088295396417, 0.01915978640317917, 0.028356144204735756, 0.008334878832101822, -0.03273816406726837, 0.03250524029135704, -0.029132410883903503, -0.05582304298877716, 0.022658029571175575, 0.007617160212248564, 0.0038126695435494184, -0.003056134097278118, 0.010524698533117771, 0.04341387003660202, -0.009178689680993557, 0.022858425974845886, 0.04195103794336319, 0.04843280836939812, -0.02860642597079277, -0.004707734566181898, -0.05174426734447479, 0.0054554506205022335, -0.0035222775768488646, 0.0018242642981931567, 0.01396587397903204, 0.019271740689873695, 0.025193728506565094, -0.024830900132656097, -0.01484997570514679, 0.0016626979922875762, 0.01873580925166607, -0.028032884001731873, -0.00734684057533741, -0.06765411794185638, -0.010448137298226357, 0.06135421246290207, 0.0302131325006485, -0.01503883395344019, -0.00011826750414911658, 0.04255034402012825, 0.004688848741352558, 0.05655365064740181, 0.03743446245789528, -0.0037056605797261, -0.011358404532074928, 0.04180547222495079, 0.060143981128931046, -0.025670981034636497, 0.017292728647589684, 0.05658114328980446, -0.0624779649078846, 0.007474379613995552, 0.057577744126319885, -0.01893896795809269, -0.05024255812168121, 0.006845204625278711, -0.013815551996231079, -0.0045680999755859375, 0.05844305455684662, 0.012657932937145233, -0.25567716360092163, 0.0017828606069087982, 0.09543191641569138, 0.084859199821949, 0.005588422063738108, 0.03053104877471924, 0.031927481293678284, -0.056696709245443344, 0.028801651671528816, 0.01757214590907097, 0.005269218236207962, 0.01960226707160473, 0.02411631867289543, -0.024932051077485085, 0.057284142822027206, -0.035500556230545044, 0.05510920658707619, -0.005364136304706335, -0.007266117725521326, 0.005817379802465439, 0.02572520822286606, 0.017232056707143784, 0.1321917623281479, -0.00306106498464942, -0.0039229486137628555, -0.0037207091227173805, -0.03852115944027901, -0.020185554400086403, 0.08135868608951569, 0.050010520964860916, -0.00006752998888259754, -0.0039344532415270805, 0.059902943670749664, -0.005092156119644642, 0.007060398813337088, -0.06273341178894043, -0.00020917424990329891, 0.02030278742313385, 0.009683732874691486, -0.05300675705075264, -0.06353660672903061, -0.01645585522055626, -0.07485007494688034, -0.033181335777044296, 0.026955990120768547, -0.023472148925065994, -0.03173506259918213, -0.019351456314325333, -0.02370431087911129, -0.04235692322254181, -0.026666248217225075, -0.04523102194070816, -0.015556073747575283, 0.020562520250678062, 0.029825111851096153, 0.041184037923812866, 0.010619120672345161, -0.039902351796627045, -0.04368897154927254, 0.014935068786144257, 0.030950354412198067, -0.022987890988588333, 0.11145980656147003, 0.01971292681992054, 0.07986761629581451 ]
[ -0.0007038848125375807, -0.012583214789628983, -0.041427042335271835, 0.07653331011533737, 0.01157698966562748, 0.05522429943084717, -0.017644139006733894, 0.03398865833878517, -0.02949266880750656, -0.025566864758729935, -0.0024510808289051056, -0.011688199825584888, 0.03567500784993172, -0.06270448863506317, 0.007818172685801983, -0.0037144876550883055, 0.03200935944914818, 0.022355588153004646, 0.0006840851274318993, 0.012515504844486713, -0.036872249096632004, 0.018544886261224747, 0.020685505121946335, -0.029511556029319763, -0.01218748465180397, -0.007735501509159803, -0.016086580231785774, -0.028040332719683647, 0.0249655582010746, -0.14581048488616943, 0.0019423009362071753, -0.006783152464777231, -0.010837339796125889, 0.045451514422893524, 0.007670799735933542, 0.00687598530203104, -0.03209804743528366, -0.01609707623720169, -0.04160938411951065, -0.0245919618755579, 0.025780439376831055, 0.016963569447398186, -0.019185945391654968, 0.015012267976999283, 0.0023602747824043036, -0.014891439117491245, 0.013012939132750034, -0.011168824508786201, -0.01935272105038166, -0.012845072895288467, -0.022525159642100334, 0.009264854714274406, 0.028041746467351913, 0.00201794458553195, 0.0241213608533144, -0.01543356105685234, 0.01506231352686882, -0.038312237709760666, 0.039227377623319626, 0.020065272226929665, 0.03143562749028206, 0.0024155525024980307, -0.03410404920578003, -0.03700723126530647, 0.01045389473438263, -0.017291061580181122, -0.011208747513592243, 0.00450861407443881, -0.01164986938238144, -0.02578357793390751, -0.004646672401577234, 0.06431277096271515, -0.04224494472146034, -0.014354350045323372, -0.018674395978450775, 0.021329082548618317, 0.009229384362697601, 0.016918042674660683, 0.001817642361856997, 0.002854735590517521, -0.06905142217874527, 0.0308033749461174, 0.013951928354799747, -0.01688932627439499, 0.00431359838694334, 0.009845559485256672, 0.009272654540836811, -0.005357143469154835, 0.009356683120131493, 0.019536221399903297, -0.010676017962396145, -0.0020983084104955196, 0.017655683681368828, 0.04281078279018402, -0.10525660961866379, -0.02679038606584072, 0.025286760181188583, -0.005827471613883972, -0.019158249720931053, 0.8276081681251526, -0.03464465215802193, 0.070734903216362, 0.043000731617212296, 0.036237187683582306, -0.02864476479589939, -0.006895455531775951, 0.002058526733890176, 0.01951347105205059, -0.021724555641412735, -0.028149180114269257, 0.06164683401584625, -0.026203054934740067, 0.03170664981007576, -0.015214958228170872, 0.052105024456977844, -0.016359996050596237, 0.05497680604457855, -0.029746616259217262, 0.039844810962677, 0.049734435975551605, 0.046098075807094574, 0.018175816163420677, -0.022766299545764923, 0.0022229135502129793, 0.005959966219961643, -0.15382741391658783, 0.022160615772008896, -6.520337859632638e-33, -0.00032787155942060053, 0.00592317059636116, -0.012922468595206738, 0.041413117200136185, 0.04294635355472565, 0.010241205804049969, -0.03596477955579758, 0.0029127313755452633, 0.022131171077489853, -0.009254487231373787, -0.006113393232226372, -0.0115033695474267, -0.05174007639288902, -0.027377111837267876, 0.01736459508538246, -0.005506438203155994, -0.016258329153060913, 0.03247711807489395, 0.0504373274743557, -0.0006126674124971032, 0.0002738602051977068, 0.023261817172169685, 0.014337251894176006, -0.013400961644947529, -0.017604075372219086, 0.024742497131228447, 0.022245148196816444, -0.02824421413242817, 0.0028016353026032448, -0.04875393211841583, 0.031100435182452202, 0.02650604210793972, 0.010163658298552036, -0.021866852417588234, 0.005484386347234249, -0.035727210342884064, -0.013073893263936043, 0.00924314372241497, -0.02834414504468441, -0.006506500765681267, -0.01297080796211958, -0.029418976977467537, -0.040763046592473984, -0.0020303784403949976, -0.008931065909564495, -0.025637343525886536, 0.010346980765461922, 0.04300370812416077, -0.00325520196929574, -0.02621123194694519, 0.02187156490981579, 0.04659086465835571, 0.02338508330285549, 0.012799671851098537, -0.012742947787046432, 0.005800978280603886, 0.0023703211918473244, 0.002917524892836809, 0.005265860352665186, 0.0015622341306880116, 0.05177084729075432, -0.019012941047549248, -0.0252643171697855, -0.0012375337537378073, -0.011636707931756973, -0.012823004275560379, -0.010825889185070992, 0.03754500299692154, 0.012792142108082771, -0.009548770263791084, -0.06839738041162491, 0.01669108122587204, -0.005798447411507368, -0.02513539232313633, 0.020617160946130753, -0.04613824561238289, -0.01082050520926714, -0.012979370541870594, 0.03190820291638374, 0.026686273515224457, 0.0016480819322168827, 0.020217664539813995, -0.0020753091666847467, -0.013965128920972347, 0.004004589281976223, -0.04189305379986763, -0.011937860399484634, 0.007748110219836235, 0.024454863741993904, -0.018108433112502098, 0.034357763826847076, 0.043669383972883224, 0.008761349134147167, -0.017809875309467316, -0.012251973152160645, 6.500917223589116e-33, -0.013333482667803764, -0.030683791264891624, -0.013427234254777431, 0.027257664129137993, 0.022298326715826988, 0.004587431438267231, -0.0010464786319062114, -0.020715950056910515, -0.03867514804005623, 0.010803538374602795, 0.003400123678147793, -0.011133987456560135, -0.029877834022045135, 0.010974768549203873, 0.06720061600208282, -0.008818048983812332, 0.005891513545066118, -0.021245885640382767, 0.00287889433093369, -0.00654117064550519, -0.039119139313697815, 0.000910647155251354, 0.0006289152661338449, -0.004840755835175514, 0.014473538845777512, 0.03870605304837227, -0.03824561834335327, 0.011009559966623783, 0.027330337092280388, 0.002431267173960805, 0.049727581441402435, 0.003942292183637619, 0.008988856337964535, -0.00615345174446702, -0.07499987632036209, 0.011896435171365738, -0.015325752086937428, 0.017493315041065216, 0.04134010151028633, 0.023869991302490234, 0.05534021928906441, -0.048712655901908875, -0.02156888134777546, 0.01318489108234644, -0.021270912140607834, 0.0036136407870799303, 0.009606978856027126, -0.011933042667806149, 0.023120194673538208, 0.04894246533513069, 0.020680176094174385, 0.037010159343481064, -0.023461954668164253, 0.012382625602185726, 0.030803542584180832, 0.012582131661474705, -0.023552652448415756, -0.03258706256747246, 0.02109558694064617, 0.0025390477385371923, -0.04065636172890663, 0.02517145499587059, 0.014424503780901432, 0.030654845759272575, -0.0350893996655941, -0.0008589592180214822, -0.0414145365357399, 0.04422193765640259, -0.01867353729903698, -0.01697576977312565, -0.023941442370414734, 0.0343957245349884, -0.0021100626327097416, -0.006921823136508465, 0.014542864635586739, -0.006363189313560724, 0.012319342233240604, 0.011587779968976974, -0.019702820107340813, 0.008844825439155102, -0.012609160505235195, -0.005538591183722019, -0.0020609679631888866, -0.0035719459410756826, 0.01368321105837822, -0.012978453189134598, -0.026009825989603996, 0.009822698310017586, 0.02116267941892147, -0.0072751399129629135, -0.025126824155449867, -0.039067428559064865, -0.017286045476794243, -0.005574358161538839, -0.00888060312718153, -1.2297353357837437e-8, -0.05058100447058678, 0.0014016785426065326, -0.030286911875009537, -0.01818965934216976, 0.03564349189400673, 0.00230279634706676, -0.03507905453443527, 0.00395041611045599, -0.06987667828798294, 0.01945529505610466, 0.04420328885316849, 0.011226744391024113, -0.011925668455660343, 0.018628746271133423, 0.03714247792959213, -0.003961207345128059, -0.00509782275184989, -0.020818596705794334, 0.032485153526067734, -0.0023693700786679983, 0.005596324801445007, 0.026550857350230217, 0.026117602363228798, 0.008597884327173233, -0.04351131618022919, -0.019699502736330032, -0.032612014561891556, -0.06860966235399246, 0.005964544136077166, 0.0051421066746115685, 0.020467424765229225, -0.006509120110422373, -0.034023284912109375, -0.0002681691839825362, -0.01582453027367592, -0.008681409060955048, 0.03312741219997406, 0.003371571423485875, 0.02776472456753254, 0.0007302201702259481, -0.012622528709471226, 0.015717020258307457, -0.015323059633374214, -0.02744055725634098, -0.021119499579072, -0.019243527203798294, -0.05232410505414009, 0.012748378328979015, 0.01186587754637003, 0.0073152403347194195, -0.033951953053474426, -0.0040855929255485535, 0.008088095113635063, 0.04113613814115524, 0.04343847557902336, 0.00808428879827261, 0.017851026728749275, -0.03665817528963089, -0.03721241652965546, 0.04623552784323692, -0.0008198226569220424, -0.018819691613316536, -0.02538464590907097, -0.030562136322259903 ]
iron-ruby-unitialized-constant-nameerror
https://markhneedham.com/blog/2010/04/25/iron-ruby-unitialized-constant-nameerror
false
2010-04-25 22:48:37
Small step refactoring: Overload constructor
[ "refactoring" ]
[ "Coding", "Incremental Refactoring" ]
I've previously written about some approaches that I've been taught with respect to http://www.markhneedham.com/blog/2010/02/24/refactoring-small-steps-to-pull-out-responsibilities/[taking small steps] http://www.markhneedham.com/blog/2009/05/26/refactoring-removing-duplication-more-safely/[when refactoring code] and another approach which a couple of colleagues have been using recently is the idea of *overloading the constructor* when refactoring objects. On a couple of occasions we've been trying to completely change the way an object was designed and changing the current constructor would mean that we'd have to change all the tests against that object before checking if the new design was actually going to work or not. Given a simple example where we want to change the following object to take in a completely different type and not use 'field1' or 'field2' anymore: [source,csharp] ---- public class Foo { public Foo(string field1, int field2) { // and so on } } ---- One approach would be to change that constructor to take in the extra parameter and then gradually phase out the other parameters: [source,csharp] ---- public class Foo { public Foo(string field1, int field2, Bar bar) { // and so on } } ---- An alternative is to create another constructor and leave the old one as it is before changing the tests one by one to make use of the new approach. [source,csharp] ---- public class Foo { public Foo(string field1, int field2) { // we gradually phase this one out } public(Bar bar) { // the new constructor } } ---- Even if we want to still use 'field1' and 'field2' we can still make use of this approach and just default the extra value until we've migrated our tests across. [source,csharp] ---- public class Foo { public Foo(string field1, int field2, Bar bar) { // and so on } public Foo(string field1, int field2) : this(field1, field2, new Bar()) { } } ---- I quite like this approach as it allows us to keep the code compiling while we're making changes to it to improve the design. The main thing to remember with this approach is not to keep the old approach around for too long and to make sure we move our code across to use the new approach as quickly as possible otherwise it can become very confusing for other pairs which come across the code in this half way state.
null
null
[ 0.013236351311206818, -0.016525471583008766, -0.025192303583025932, 0.028074098750948906, 0.07621528953313828, -0.00828972365707159, 0.03463692218065262, 0.02158956415951252, -0.0023275683633983135, -0.029174016788601875, -0.006689898204058409, -0.0016528902342543006, -0.07439493387937546, 0.02406979165971279, -0.03144363686442375, 0.07161127030849457, 0.0726507380604744, -0.03659028932452202, 0.017494700849056244, 0.001269368571229279, 0.017880408093333244, 0.07621617615222931, -0.010801644995808601, 0.04585108906030655, 0.019051024690270424, 0.019306853413581848, -0.008978718891739845, 0.002109345979988575, -0.061306457966566086, -0.019598089158535004, 0.049626901745796204, 0.01420676801353693, 0.004691611509770155, -0.0015344583662226796, -0.013452759012579918, -0.04728659242391586, -0.025275900959968567, 0.00041048519778996706, 0.012007905170321465, 0.007161707151681185, -0.0707918033003807, 0.04418124258518219, -0.01649363525211811, -0.005053051747381687, -0.048227034509181976, -0.02064916305243969, -0.04422254115343094, -0.007801959291100502, -0.05163136124610901, -0.029919549822807312, -0.06979711353778839, 0.011220209300518036, -0.02794819511473179, 0.013043087907135487, -0.007900780998170376, 0.05621751397848129, 0.022032201290130615, -0.06998752802610397, 0.03209300711750984, -0.05253138765692711, -0.01049896702170372, -0.0018156029982492328, 0.0015334513736888766, 0.04071935638785362, 0.027228528633713722, -0.006318592932075262, -0.014064647257328033, 0.04810681194067001, -0.03931387513875961, -0.024063313379883766, -0.020023789256811142, -0.01644141785800457, 0.011974388733506203, -0.008113646879792213, -0.003504837630316615, -0.023209692910313606, -0.01319477241486311, 0.05826641991734505, 0.00555540481582284, 0.042413726449012756, 0.0028015747666358948, 0.007287547457963228, 0.01922060176730156, -0.007791940588504076, 0.034639280289411545, -0.03434599190950394, -0.01682245172560215, 0.013810597360134125, -0.028576094657182693, 0.061039555817842484, 0.019668584689497948, -0.032710883766412735, 0.016728857532143593, 0.04664008319377899, 0.012771668843925, 0.009893038310110569, 0.023988090455532074, -0.019105596467852592, 0.014348656870424747, 0.00048086117021739483, -0.02436555176973343, -0.01700521633028984, 0.00824399758130312, 0.005116734188050032, -0.0755968987941742, -0.028348121792078018, -0.02653457224369049, -0.02448076568543911, -0.010094625875353813, 0.026819361373782158, -0.04511430114507675, 0.035962626338005066, -0.025379788130521774, -0.0005699992761947215, -0.08622318506240845, 0.03929998725652695, 0.016367986798286438, 0.005348083563148975, -0.008470222353935242, 0.031235843896865845, 0.030881382524967194, 0.01989964209496975, -0.00022868375526741147, 0.07902297377586365, 0.015347998589277267, 0.03759360685944557, -0.04358956962823868, 0.08833184093236923, -0.029187029227614403, -0.0803762674331665, 0.004769917111843824, 0.04778745397925377, -0.005781702697277069, 0.002360206563025713, 0.011277241632342339, -0.04657172039151192, -0.015832412987947464, 0.010938789695501328, 0.027206052094697952, 0.02924918942153454, -0.019316723570227623, -0.04383549466729164, 0.03300570696592331, -0.0019214595668017864, -0.0099662896245718, 0.018655909225344658, -0.024414515122771263, 0.0004045710666105151, -0.013451199047267437, 0.042846597731113434, 0.01636015623807907, 0.08187556266784668, 0.0443069227039814, -0.03871311992406845, 0.01795622892677784, 0.06901144981384277, -0.019645879045128822, 0.013017856515944004, -0.0181259922683239, 0.025845415890216827, 0.04606148973107338, 0.02791370078921318, -0.00029925047419965267, 0.022987904027104378, 0.014072024263441563, 0.014005128294229507, -0.00796052347868681, 0.03945493698120117, 0.0056100343354046345, -0.02497146651148796, -0.06858620792627335, -0.046249084174633026, 0.05533213913440704, -0.06891413033008575, -0.006779213901609182, 0.05509692430496216, 0.07204722613096237, 0.0015179524198174477, 0.07716017216444016, -0.0021336241625249386, -0.07216669619083405, 0.00814796146005392, 0.013904629275202751, 0.006666483357548714, 0.004546135198324919, -0.008168516680598259, 0.04844982549548149, 0.02862139418721199, 0.013905624859035015, 0.030214905738830566, -0.06381673365831375, -0.05890114977955818, -0.02306453511118889, -0.005803581792861223, 0.08451997488737106, -0.008307703770697117, -0.019388966262340546, 0.1038672998547554, 0.00933745689690113, 0.04662509262561798, 0.04044301062822342, 0.00001688155680312775, -0.012435613200068474, -0.03089546412229538, -0.04200705513358116, 0.0258153285831213, 0.01791265979409218, 0.0025635981000959873, -0.0439947210252285, 0.016145257279276848, -0.00903486367315054, 0.003141348483040929, 0.03714292123913765, -0.010613365098834038, 0.022864116355776787, 0.008983805775642395, 0.019389739260077477, -0.0454341396689415, 0.06345604360103607, -0.08077909052371979, 0.018949761986732483, -0.0037020714953541756, -0.016177568584680557, -0.0011539467377588153, -0.011657384224236012, 0.11189769953489304, 0.04862617701292038, -0.04788006469607353, -0.05505320057272911, 0.0161695946007967, 0.037365976721048355, -0.037361979484558105, -0.008719346486032009, -0.02503160759806633, 0.03660992532968521, -0.014990239404141903, -0.04156781733036041, -0.004476143978536129, 0.012017246335744858, -0.03732448071241379, 0.03873080387711525, 0.07157472521066666, -0.027694419026374817, 0.05966348946094513, -0.002024868270382285, -0.019587254151701927, -0.004524505231529474, -0.02981109730899334, -0.06042187288403511, 0.014525718055665493, 0.03289460018277168, -0.019711537286639214, 0.07903103530406952, -0.023546872660517693, -0.03830104321241379, -0.028615359216928482, -0.03545725718140602, 0.0013223208952695131, 0.031594857573509216, 0.06712471693754196, -0.000057191868108930066, 0.052859965711832047, -0.010926801711320877, 0.008684939704835415, -0.013483867049217224, -0.053026292473077774, 0.016137225553393364, 0.005915423389524221, 0.018182501196861267, 0.0240625087171793, -0.008558487519621849, 0.011020439676940441, 0.03479696065187454, 0.02198706939816475, -0.037787239998579025, -0.02711416780948639, 0.025119829922914505, -0.016542579978704453, -0.029311640188097954, -0.038311395794153214, -0.04676293581724167, 0.035016026347875595, -0.03510944917798042, -0.034126561135053635, 0.022753335535526276, -0.0867498442530632, 0.03921164944767952, -0.07522064447402954, -0.05716736614704132, 0.01317326258867979, 0.02627231553196907, 0.03452815115451813, 0.011706816963851452, 0.03159454092383385, 0.08315515518188477, 0.0027510866057127714, 0.003480339888483286, -0.0203376617282629, 0.007143339607864618, 0.035394757986068726, -0.01613469049334526, 0.008278251625597477, 0.0372421070933342, 0.001593245193362236, -0.007893725298345089, -0.045832376927137375, 0.025620857253670692, -0.005679926369339228, -0.2608390748500824, 0.02022434026002884, -0.006516674533486366, -0.04071759805083275, 0.02061065100133419, 0.005368545651435852, 0.0317978598177433, -0.04546155035495758, -0.030528193339705467, 0.054439008235931396, -0.03202766180038452, -0.054466359317302704, -0.020295189693570137, 0.07012229412794113, -0.009073294699192047, 0.02900957688689232, 0.010245533660054207, -0.029473571106791496, -0.02407471276819706, 0.06003030389547348, -0.0070499456487596035, -0.06647809594869614, -0.002319346647709608, 0.019478097558021545, 0.02807530015707016, 0.034515466541051865, -0.09934720396995544, 0.06410384178161621, -0.039063725620508194, -0.0033677369356155396, 0.007220045197755098, -0.011110152117908001, 0.014778374694287777, -0.02414882555603981, -0.024737438187003136, 0.0028498151805251837, -0.006622270215302706, 0.03969408571720123, -0.029103076085448265, 0.006498450413346291, -0.039588216692209244, -0.050751786679029465, -0.019063308835029602, 0.007346001919358969, 0.06196727231144905, 0.0019175069173797965, -0.06600748002529144, -0.018068594858050346, -0.050685640424489975, 0.07513841241598129, -0.012344513088464737, -0.03291776031255722, 0.016890792176127434, 0.024826526641845703, -0.006674699019640684, -0.030765490606427193, 0.021418817341327667, -0.0018871052889153361, -0.023828044533729553, -0.038868967443704605, 0.015662726014852524, -0.04651821032166481, -0.011745359748601913, -0.04679660126566887, 0.003257256932556629, -0.07652653008699417, -0.06968685984611511, -0.010814341716468334, 0.05992811545729637, 0.04012739285826683, -0.01885031908750534, 0.0044576264917850494, 0.025018684566020966, -0.10521641373634338, 0.0013871814589947462, -0.06729774922132492, -0.023627158254384995, -0.050753071904182434, -0.01874338835477829, 0.05607303977012634, -0.017442267388105392, -0.03208964318037033, 0.042769841849803925, 0.013392146676778793, 0.005662145558744669, 0.001623311429284513, 0.02256537787616253, 0.01810401864349842, -0.031248439103364944, 0.005290546454489231, 0.07654114067554474, 0.011529644019901752, 0.006611190736293793, -0.06789367645978928, 0.016190605238080025, 0.02497287280857563, 0.03011404350399971, -0.024613622575998306, 0.009663432836532593, 0.028653830289840698, 0.030133558437228203, -0.058490168303251266, 0.033521030098199844, -0.030234649777412415, -0.0075203049927949905, -0.024912942200899124, -0.059500813484191895, 0.02833930216729641, 0.038978829979896545, 0.012254954315721989, 0.009433688595890999, -0.022049136459827423, 0.0011426149867475033, -0.04031073674559593, -0.05078233778476715, -0.012121007777750492, 0.011292841285467148, 0.04242005944252014, -0.04388376325368881, -0.021689891815185547, -0.04053846001625061, 0.03590581193566322, -0.006142975762486458, -0.005993555765599012, -0.07794433832168579, -0.05187876522541046, -0.006115976255387068, -0.002671061549335718, 0.005360274575650692, 0.026621416211128235, -0.025977343320846558, 0.04008696228265762, -0.009959555231034756, -0.03673519939184189, 0.0025798457209020853, 0.010325548239052296, -0.012290841899812222, -0.03241686150431633, -0.02101036347448826, -0.004714456386864185, 0.004413058515638113, -0.0018061496084555984, 0.033571891486644745, 0.010235050693154335, 0.04359101876616478, 0.0022254500072449446, 0.04170753434300423, 0.0024439862463623285, 0.002761451993137598, 0.021595526486635208, 0.013560336083173752, -0.08569987118244171, 0.024598674848675728, -0.043964531272649765, -0.028226342052221298, -0.0307031087577343, 0.02355203405022621, -0.023063814267516136, -0.023118069395422935, -0.00896954070776701, 0.019688811153173447, -0.04276612773537636, -0.04172495752573013, -0.048320915549993515, 0.009004266001284122, 0.05763348937034607, -0.021294929087162018, 0.03355420380830765, -0.04070097953081131, -0.034923870116472244, 0.00806207861751318, 0.000763733172789216, -0.0579867959022522, 0.008157258853316307, 0.00775044783949852, 0.016047757118940353, 0.0026454480830579996, -0.00683648232370615, 0.0633959025144577, 0.031692489981651306, 0.002608693903312087, -0.014716500416398048, -0.009264705702662468, -0.014901146292686462, 0.053495392203330994, -0.007528559770435095, 0.02287430875003338, -0.013113019987940788, -0.015256456099450588, -0.01305060088634491, -0.02838119864463806, -0.010778930969536304, -0.019603775814175606, 0.05839871987700462, -0.035552818328142166, -0.06953015178442001, 0.03453970327973366, 0.03426569700241089, 0.02445513755083084, 0.02680049277842045, 0.01069697830826044, 0.004249520134180784, -0.01793527603149414, 0.007827342487871647, 0.05605378374457359, -0.04743786156177521, 0.01230582594871521, 0.0006500281160697341, 0.0007513347663916647, 0.013180240988731384, 0.015082011930644512, -0.0480184406042099, -0.02616214193403721, -0.03915976360440254, -0.004311142954975367, -0.0362357571721077, -0.03026571311056614, -0.01974319852888584, 0.009472928941249847, -0.005092634819447994, -0.0054430062882602215, -0.006245821714401245, 0.005894061177968979, -0.011251543648540974, -0.020859135314822197, 0.01606973633170128, -0.044787753373384476, 0.027880089357495308, 0.02569574862718582, -0.04216928407549858, 0.03671900928020477, -0.013517316430807114, 0.01801370456814766, 0.025413649156689644, -0.0023539168760180473, -0.026063475757837296, -0.06114006042480469, 0.01446231734007597, -0.005838401149958372, 0.05547390878200531, 0.02677362971007824, -0.03260175138711929, -0.027079736813902855, -0.026054702699184418, -0.035106364637613297, 0.018740646541118622, -0.012560595758259296, 0.0012956488644704223, 0.019858550280332565, 0.0503285713493824, 0.010277273133397102, 0.0402551032602787, -0.01675148867070675, -0.001438374281860888, 0.07299362868070602, -0.05158291384577751, -0.020704133436083794, -0.017330827191472054, -0.0749775767326355, 0.0249188169836998, 0.010495682246983051, 0.03710455819964409, -0.0549686960875988, 0.03847917914390564, 0.0416521318256855, 0.006212926935404539, 0.03379373624920845, 0.01134523469954729, 0.022618522867560387, -0.048822227865457535, 0.006306932773441076, -0.059914298355579376, 0.035739216953516006, 0.04087689146399498, 0.020869122818112373, -0.015588847920298576, -0.031633734703063965, -0.01940922811627388, 0.04111752286553383, -0.0719526931643486, -0.018991833552718163, 0.03636391460895538, 0.01492634229362011, 0.006342076230794191, 0.011693364940583706, -0.049039196223020554, 0.04147985950112343, 0.002381143392995, -0.02668696828186512, -0.020836275070905685, -0.04786616936326027, 0.05361528322100639, 0.007026811130344868, 0.022116433829069138, -0.037682920694351196, 0.01918141171336174, 0.06663966178894043, 0.019692854955792427, 0.034031689167022705, 0.044602736830711365, -0.026301858946681023, 0.05504029244184494, 0.04725402593612671, -0.007769768591970205, -0.02373177371919155, 0.01031557098031044, 0.010611388832330704, -0.05498801916837692, 0.009999403730034828, 0.022397449240088463, -0.03828088194131851, -0.0563606433570385, 0.06401246786117554, 0.011948795057833195, -0.028791068121790886, -0.04237046837806702, 0.003906907979398966, -0.041143160313367844, -0.020121488720178604, -0.010308115743100643, 0.0036274087615311146, -0.03844117745757103, 0.053487662225961685, 0.008590580895543098, -0.023178940638899803, 0.07857674360275269, 0.0034455345012247562, -0.01664525270462036, -0.048832353204488754, 0.06742540746927261, 0.06265465170145035, 0.06430325657129288, -0.009219310246407986, 0.048977140337228775, -0.011469298973679543, -0.04899335652589798, 0.031484633684158325, -0.019512169063091278, -0.010676424019038677, -0.019025446847081184, 0.043736640363931656, 0.08537126332521439, 0.01052216999232769, 0.04649777710437775, -0.0403287336230278, -0.012188298627734184, -0.01832433044910431, 0.023798944428563118, 0.004283028654754162, 0.04455338791012764, 0.012376338243484497, 0.005401576403528452, -0.0024947267957031727, -0.05562436953186989, 0.023053526878356934, -0.00500385882332921, -0.023622071370482445, 0.026733821257948875, -0.017322860658168793, 0.014292572624981403, 0.009210560470819473, 0.01569627784192562, 0.07358206063508987, -0.03504525497555733, 0.00488287303596735, -0.010385804809629917, 0.028080210089683533, 0.02823399379849434, -0.017937805503606796, -0.01587050035595894, -0.03855369612574577, 0.012489723041653633, -0.016126062721014023, -0.028170501813292503, 0.0020607691258192062, -0.013552219606935978, 0.03936353325843811, -0.01178732980042696, 0.02439349703490734, 0.036062415689229965, 0.022886626422405243, -0.024291938170790672, -0.06386084854602814, -0.04682617634534836, -0.044397983700037, -0.05465071275830269, -0.005747181363403797, 0.016022371128201485, -0.023952748626470566, -0.0309869684278965, -0.02051370218396187, -0.04463779926300049, -0.012784233316779137, 0.06749411672353745, -0.018812987953424454, -0.03115769661962986, 0.029717475175857544, 0.004538285546004772, 0.02973201498389244, 0.025052906945347786, 0.04029922932386398, -0.0008294926956295967, -0.0040988614782691, -0.02333650551736355, 0.0004810750251635909, 0.02449529431760311, -0.017780043184757233, 0.014468500390648842, -0.08575188368558884, 0.029675910249352455, 0.0026707868091762066, -0.010516845621168613, -0.06646937131881714, 0.01864452101290226, 0.01951395720243454, -0.01425643265247345, 0.04406355693936348, -0.021687010303139687, -0.03460872545838356, -0.012833029963076115, -0.006127228029072285, 0.016614161431789398, 0.03480612114071846, 0.04707948863506317, -0.023186007514595985, 0.06893740594387054, 0.03635312616825104, -0.03677274286746979, -0.011909855529665947, -0.00010945089161396027, -0.004172009881585836, 0.027207210659980774, -0.03824445232748985, -0.028907880187034607, -0.019762370735406876, -0.06013375520706177, 0.00017457699868828058, 0.015845555812120438, -0.011120391078293324, -0.03175346925854683, 0.007658122107386589, 0.04712561517953873, -0.05618561431765556, 0.0222901813685894, -0.02214924246072769, 0.05784059315919876, -0.03316282480955124, -0.007111257407814264, 0.004393365699797869, 0.003494599601253867, 0.02461007609963417, 0.022598518058657646, 0.018979426473379135, -0.03368532657623291, -0.0030768755823373795, -0.029428258538246155, 0.010274572297930717, 0.05715661495923996, -0.0006060232408344746, -0.009789719246327877 ]
[ -0.10298318415880203, -0.00891700480133295, -0.005771258380264044, -0.0360243059694767, 0.028461823239922523, -0.03771590813994408, -0.0090343551710248, 0.030616415664553642, -0.007817243225872517, -0.012272429652512074, 0.006149135064333677, -0.04253770411014557, -0.03602072224020958, -0.007165759801864624, 0.08849634975194931, -0.0025019983295351267, -0.05120054632425308, 0.002148246858268976, -0.0018532304093241692, -0.018719755113124847, 0.025744421407580376, -0.01778336614370346, -0.017815792933106422, -0.02505280077457428, 0.019925788044929504, 0.051834672689437866, 0.020219001919031143, -0.021080253645777702, 0.028879188001155853, -0.21802006661891937, 0.012417624704539776, -0.009205094538629055, -0.0128517160192132, -0.017150886356830597, -0.004347801208496094, 0.03341539949178696, 0.0033034980297088623, 0.04738263413310051, -0.0041458504274487495, 0.07524143904447556, 0.026160791516304016, 0.053649403154850006, -0.06476346403360367, -0.062323860824108124, 0.003170922165736556, 0.03590988367795944, 0.014575212262570858, -0.04213785007596016, 0.006757932715117931, 0.017884470522403717, -0.04951115697622299, -0.04963609576225281, -0.037321850657463074, -0.02957819402217865, 0.015057850629091263, 0.021290883421897888, 0.07143618911504745, 0.07278230041265488, 0.03241858631372452, 0.030411409214138985, 0.018532324582338333, -0.029798932373523712, -0.12564627826213837, 0.09321999549865723, 0.037331607192754745, 0.05183568224310875, -0.026866672560572624, -0.03786754608154297, 0.013090322725474834, 0.12574604153633118, 0.0037625248078256845, -0.002684622770175338, -0.02516297623515129, 0.05104469135403633, 0.028530707582831383, -0.0023619034327566624, -0.03269941359758377, 0.01906845159828663, 0.05387881398200989, -0.03232928737998009, -0.05616767331957817, -0.033837076276540756, 0.00985071249306202, -0.015930773690342903, -0.015486116521060467, 0.0032660565339028835, -0.007784084416925907, 0.023349344730377197, 0.06416765600442886, 0.03321118280291557, 0.042208947241306305, -0.032219815999269485, 0.06000875309109688, 0.01880655065178871, -0.0920926034450531, 0.009334469214081764, -0.02319374494254589, 0.014181824401021004, -0.038117848336696625, 0.4027063846588135, -0.06269902735948563, -0.04998185858130455, 0.04744354635477066, 0.058954376727342606, -0.030033400282263756, 0.007179349195212126, -0.0005342160584405065, -0.04372788965702057, 0.01871933415532112, -0.03189491480588913, -0.0003782429557759315, 0.0001794534910004586, 0.020982177928090096, -0.044230151921510696, -0.037837959825992584, 0.036290884017944336, -0.013353973627090454, 0.006042460910975933, -0.021105386316776276, 0.03287079930305481, 0.018347134813666344, -0.00039356210618279874, 0.003582864999771118, 0.014864726923406124, -0.009208612143993378, -0.02248639240860939, -0.009517507627606392, 0.04976949095726013, 0.0056469193659722805, 0.029034098610281944, 0.04400012642145157, -0.05693308264017105, -0.08551762253046036, -0.0172859039157629, 0.03732128068804741, 0.03073674999177456, 0.02006593905389309, -0.02065867930650711, 0.0022262923885136843, 0.03971588984131813, -0.00540856784209609, -0.02193763293325901, 0.021371429786086082, -0.03329700231552124, -0.04959363862872124, 0.11993152648210526, -0.028837064281105995, -0.027071237564086914, -0.011389406397938728, -0.03328872472047806, -0.011217906139791012, 0.03653979301452637, -0.0121352169662714, -0.061985064297914505, 0.03391236439347267, -0.009160851128399372, 0.05990171432495117, -0.0012841240968555212, -0.030786553397774696, -0.041593391448259354, -0.03472407907247543, 0.0027215287555009127, -0.06171656399965286, 0.023983949795365334, 0.042679011821746826, -0.072968989610672, -0.03009316325187683, -0.007809515576809645, 0.031953006982803345, -0.05504828318953514, -0.04249319061636925, 0.03777071088552475, -0.02443782240152359, -0.020689232274889946, 0.077940434217453, -0.00346564338542521, -0.030012071132659912, -0.01980467326939106, 0.07003246247768402, 0.030820246785879135, 0.041802771389484406, 0.03695119172334671, -0.061135273426771164, 0.010381375439465046, -0.010907778516411781, -0.08007504791021347, -0.042047787457704544, 0.012983602471649647, -0.019031360745429993, -0.002656883094459772, -0.04151267930865288, 0.024284206330776215, -0.06417877227067947, 0.0900559276342392, -0.029187651351094246, -0.019106416031718254, 0.01785307377576828, -0.01081867516040802, 0.009996645152568817, -0.009948818944394588, -0.018963176757097244, 0.09259363263845444, -0.011589106172323227, 0.01575799286365509, -0.06167829409241676, 0.06907688826322556, 0.05622917413711548, -0.05991348996758461, 0.07780549675226212, 0.060759056359529495, -0.06140676140785217, -0.02420525811612606, 0.01275323424488306, -0.001280913595110178, 0.01740092784166336, -0.017698731273412704, -0.007554884999990463, 0.02994413487613201, -0.001107106450945139, 0.0043419827707111835, -0.03272152692079544, -0.015314393676817417, 0.02390962652862072, -0.3520354926586151, -0.03812778741121292, -0.016551069915294647, -0.04272265359759331, 0.015081739984452724, -0.0525517500936985, 0.02663855440914631, -0.02196907252073288, -0.02826819010078907, -0.019447453320026398, 0.04245179891586304, -0.022949358448386192, 0.008363922126591206, -0.06400725245475769, 0.014068972319364548, -0.006032905075699091, -0.026721082627773285, -0.0407523512840271, -0.03912940248847008, 0.010104469954967499, 0.02275422215461731, 0.03057221509516239, 0.02235637605190277, -0.07087201625108719, 0.019320011138916016, -0.07632864266633987, 0.0785520151257515, -0.04971744492650032, 0.09156924486160278, 0.0007833982235752046, 0.05786849558353424, -0.008076627738773823, 0.03242384269833565, -0.07388906925916672, 0.016069669276475906, -0.014143802225589752, -0.03551633283495903, -0.00978854950517416, 0.033170610666275024, -0.008714459836483002, 0.012450117617845535, 0.02705383114516735, -0.05036967620253563, -0.05788906663656235, -0.028616879135370255, -0.012649070471525192, -0.04774215817451477, -0.04647445306181908, -0.018494755029678345, 0.08806367218494415, -0.0024534992408007383, -0.010666263289749622, 0.003560554003342986, 0.022226914763450623, -0.007003944367170334, -0.02531207539141178, -0.06278441101312637, 0.02474062703549862, 0.030992645770311356, -0.01994476094841957, 0.02638627588748932, 0.08606650680303574, 0.0305140633136034, -0.045180559158325195, 0.001392262987792492, 0.013678316958248615, 0.008418193086981773, -0.03920789435505867, 0.01738433539867401, -0.05723586678504944, -0.02076665498316288, 0.07090674340724945, 0.017980394884943962, -0.025431575253605843, 0.018805045634508133, 0.03377969563007355, -0.02389977127313614, 0.031947843730449677, 0.00543823279440403, 0.0014340865891426802, 0.003917376045137644, 0.009455075487494469, 0.014087861403822899, -0.010919957421720028, 0.0036592045798897743, 0.000761491188313812, -0.014466808177530766, -0.021792272105813026, 0.0451446957886219, -0.03850904107093811, -0.04650402069091797, -0.0006966841174289584, -0.01634013094007969, -0.033644553273916245, 0.06999970227479935, -0.028844358399510384, -0.23241162300109863, -0.003889738116413355, 0.09012541174888611, 0.044198889285326004, -0.0055487328208982944, 0.05115810036659241, 0.01990562304854393, -0.040694814175367355, 0.025366004556417465, -0.00848611630499363, -0.0036050183698534966, 0.011822684668004513, 0.03031623549759388, 0.03757154196500778, 0.046175237745046616, -0.016774708405137062, 0.06776037812232971, -0.007379557471722364, 0.029865914955735207, -0.014587855897843838, -0.010895303450524807, -0.01394389197230339, 0.1687687337398529, 0.007120557129383087, 0.08144593983888626, -0.0157869104295969, 0.008486061356961727, 0.003995703533291817, 0.08055321872234344, 0.017458844929933548, 0.017373982816934586, -0.011190103366971016, 0.08945748209953308, 0.005883494857698679, 0.040615446865558624, -0.0677332654595375, -0.009717054665088654, 0.014427545480430126, -0.0007500171777792275, -0.0044080340303480625, 0.004547835327684879, 0.011109025217592716, -0.0685000866651535, 0.011935889720916748, 0.09738084673881531, 0.01859993487596512, -0.02762049436569214, -0.03639169782400131, -0.048646651208400726, -0.02650245651602745, -0.047488320618867874, -0.01870768889784813, 0.03048206865787506, -0.002611052943393588, -0.0025902430061250925, 0.06482364237308502, 0.005131616722792387, -0.02516905777156353, -0.024059467017650604, 0.004054150078445673, 0.02580300159752369, 0.022269321605563164, 0.09670327603816986, 0.028973907232284546, 0.031100202351808548 ]
[ -0.020911075174808502, 0.031455084681510925, -0.01751522347331047, 0.01897868886590004, -0.023843657225370407, -0.0047080605290830135, -0.01889064721763134, 0.013304995372891426, 0.0031827441416680813, 0.009883602149784565, -0.01939452439546585, -0.015092597343027592, -0.005727917421609163, -0.04590011388063431, 0.05058221146464348, -0.004085811786353588, -0.013744771480560303, 0.0032391478307545185, -0.003904417622834444, -0.006658351980149746, -0.026419468224048615, 0.030491869896650314, -0.010738116689026356, 0.006961877923458815, -0.021583957597613335, 0.01791926845908165, -0.02293788641691208, -0.012193194590508938, 0.00784637127071619, -0.14731384813785553, -0.029178742319345474, -0.0030209231190383434, -0.03765096887946129, 0.03624561429023743, -0.05171457678079605, 0.011135253123939037, 0.028365476056933403, 0.028378482908010483, 0.014878380112349987, -0.018574070185422897, -0.03454665094614029, 0.0025004763156175613, -0.0031039519235491753, -0.00756035465747118, 0.020912716165184975, -0.007612765301018953, -0.0032711203675717115, -0.03093690238893032, 0.0048547713086009026, -0.014089155942201614, -0.04102499783039093, 0.013854230754077435, 0.006891981232911348, 0.046005744487047195, 0.028878049924969673, -0.0168750062584877, 0.003572810674086213, -0.015879042446613312, 0.010579265654087067, -0.02237006463110447, -0.026488803327083588, -0.025432167574763298, -0.008577301166951656, -0.02113926038146019, 0.014782034792006016, -0.01762552186846733, 0.005131314508616924, -0.008702557533979416, 0.0252312570810318, -0.023936068639159203, -0.024041472002863884, 0.01650102250277996, -0.017195910215377808, 0.01331967581063509, -0.012892873026430607, 0.024640949442982674, 0.0049905236810445786, 0.0019253911450505257, 0.0333305299282074, -0.010933749377727509, -0.029418455436825752, -0.003094261512160301, 0.026071080937981606, -0.004334316123276949, 0.02553667314350605, -0.023497262969613075, 0.007947592064738274, -0.0047716121189296246, 0.019761329516768456, 0.00243199965916574, -0.0029704472981393337, 0.0030200020410120487, -0.0259704627096653, 0.0179268941283226, -0.0928168073296547, -0.004777973517775536, -0.048696186393499374, -0.030040087178349495, -0.001009955769404769, 0.8403216004371643, -0.00403865659609437, 0.04833090305328369, 0.06814168393611908, 0.0010605198331177235, 0.0011036277282983065, -0.007712703663855791, -0.007871421054005623, 0.007902689278125763, 0.026933275163173676, -0.045694392174482346, 0.04349864274263382, 0.008032094687223434, 0.016898496076464653, -0.004338942468166351, 0.015109448693692684, 0.07982566207647324, -0.006675659213215113, 0.005202493164688349, -0.029406210407614708, -0.0008494245703332126, 0.02385227009654045, -0.01439875178039074, -0.010155987925827503, -0.00809093564748764, 0.006406131200492382, -0.17843040823936462, 0.0011041818652302027, -8.972672541417326e-33, 0.03184233605861664, 0.010541210882365704, 0.001566100399941206, 0.0069597819820046425, 0.03203104808926582, -0.018168604001402855, 0.04233575239777565, 0.06956420838832855, 0.02844429761171341, -0.05133640021085739, 0.026946906000375748, -0.040212128311395645, -0.011120188049972057, -0.023644831031560898, 0.05608302727341652, -0.05123143643140793, -0.019358806312084198, 0.0066027212888002396, 0.011074980720877647, 0.006069962400943041, 0.025010982528328896, 0.0544450581073761, 0.008867798373103142, -0.004641579929739237, 0.012218221090734005, 0.026437554508447647, 0.026624130085110664, -0.004077041056007147, -0.04223281517624855, -0.03101026825606823, 0.014348138123750687, 0.02248171716928482, -0.008149893023073673, 0.008719722740352154, 0.0573098361492157, -0.05024949088692665, -0.005085687153041363, 0.020322438329458237, 0.008820930495858192, -0.033399347215890884, -0.024495350196957588, -0.022973911836743355, 0.00021774934430141002, 0.011201134882867336, -0.015120556578040123, -0.038343336433172226, 0.0049545252695679665, 0.0014517523813992739, 0.03696775808930397, 0.0027352117467671633, 0.036705855280160904, 0.031742047518491745, 0.0077360100112855434, 0.0034842872992157936, 0.011915702372789383, 0.03188809007406235, -0.031500451266765594, -0.022783221676945686, 0.0011825854890048504, 0.011547492817044258, 0.022313009947538376, 0.010930213145911694, -0.048673830926418304, 0.0428738072514534, -0.03497933968901634, -0.024159425869584084, 0.030440496280789375, 0.017151685431599617, 0.039963047951459885, 0.017707590013742447, -0.023884575814008713, 0.027759864926338196, -0.055900055915117264, -0.015534723177552223, 0.015609534457325935, 0.005438246298581362, -0.0031187550630420446, 0.003160863881930709, 0.009570226073265076, 0.015050951391458511, -0.0132947051897645, 0.015212020836770535, 0.001439823885448277, -0.005422556307166815, -0.03480011224746704, -0.007646422833204269, 0.03104996122419834, 0.005624291021376848, 0.013177926652133465, -0.03016328439116478, 0.0453641377389431, 0.05765882134437561, -0.018055787310004234, -0.020813047885894775, -0.018144411966204643, 8.363551939972356e-33, 0.019416911527514458, -0.043502021580934525, -0.0007482155342586339, 0.02268863655626774, -0.008845044299960136, -0.0013368431245908141, 0.006401206832379103, 0.006859933957457542, -0.038035258650779724, 0.016702109947800636, -0.0012675458565354347, 0.04177091643214226, -0.010630801320075989, -0.008083107881247997, 0.049664974212646484, -0.029257500544190407, -0.021916484460234642, -0.014062936417758465, 0.020410815253853798, 0.0019586074631661177, 0.01514920499175787, 0.015695570036768913, 0.04569476470351219, 0.007724142633378506, -0.017887433990836143, 0.026660405099391937, -0.04892217367887497, -0.0180955920368433, 0.020899567753076553, 0.003957833629101515, -0.014763436280190945, -0.013645559549331665, 0.010909492149949074, -0.029074255377054214, -0.02837868593633175, 0.017423540353775024, 0.010335840284824371, 0.014154433272778988, 0.03254685178399086, 0.012958611361682415, 0.032987747341394424, 0.0005766642279922962, -0.009688486345112324, 0.004704833962023258, 0.016111938282847404, -0.02157011441886425, -0.004698790609836578, -0.01236132625490427, -0.003930502105504274, 0.01905088871717453, 0.008151451125741005, 0.024642182514071465, -0.0028512654826045036, -0.01610701158642769, 0.025111665949225426, -0.018849024549126625, -0.029754560440778732, -0.051368217915296555, -0.04583346098661423, 0.020203223451972008, -0.026665477082133293, 0.027877070009708405, -0.006088094785809517, 0.004704548977315426, -0.021206781268119812, 0.021266955882310867, -0.01966254971921444, -0.010946805588901043, -0.015342079102993011, -0.01374675054103136, -0.00878240168094635, 0.004958694335073233, -0.021563678979873657, 0.02130429446697235, 0.001645402517169714, -0.03229544311761856, -0.021778017282485962, 0.011032174341380596, 0.02917027473449707, 0.00017364149971399456, 0.046115756034851074, -0.04334241524338722, 0.025208666920661926, 0.011780253611505032, -0.029074812307953835, -0.005278824828565121, -0.01045298669487238, -0.018027309328317642, 0.0030754210893064737, -0.011773495003581047, -0.04397774487733841, -0.014364580623805523, -0.005148645490407944, 0.004185875877737999, -0.011325075291097164, -1.3812661237011525e-8, -0.02118723839521408, 0.03161900117993355, -0.015337713062763214, 0.025886140763759613, 0.04581836611032486, -0.005036253947764635, -0.059900060296058655, -0.018610278144478798, 0.012266131117939949, -0.011804460547864437, 0.010675430297851562, 0.022644035518169403, 0.01980150304734707, -0.026079988107085228, -0.0027461799327284098, -0.06324858218431473, -0.01664806343615055, -0.037747882306575775, 0.021342135965824127, 0.024424558505415916, 0.013962090015411377, 0.04667108878493309, -0.012675774283707142, 0.014447184279561043, 0.02875770628452301, 0.018605679273605347, -0.0064430576749145985, -0.07484027743339539, 0.014971563592553139, 0.024143539369106293, 0.0054282438941299915, -0.027943843975663185, -0.02315066009759903, 0.0023133845534175634, -0.024301717057824135, -0.031845614314079285, 0.015468156896531582, 0.003987537231296301, 0.027768868952989578, 0.03329386189579964, -0.001903499010950327, -0.020725052803754807, 0.005517387297004461, -0.025239136070013046, 0.00817665085196495, -0.03511712700128555, -0.023859824985265732, -0.009031381458044052, -0.006042991764843464, -0.019942402839660645, 0.015274927951395512, 0.004268107004463673, 0.023714201524853706, 0.009171174839138985, 0.0047920881770551205, 0.02678232640028, 0.010445194318890572, -0.007744958624243736, -0.048542674630880356, 0.004366734996438026, 0.0592353381216526, 0.009086521342396736, -0.03828234225511551, -0.014536240138113499 ]
small-step-refactoring-overload-constructor
https://markhneedham.com/blog/2010/04/25/small-step-refactoring-overload-constructor
false
2010-05-03 00:28:04
Coding: The Kestrel
[ "coding" ]
[ "Coding" ]
Reg Braithwaite has a http://github.com/raganwald/homoiconic[cool series of posts where he covers the different combinators] from Raymond Smullyan's 'To Mock a Mockingbird' book and one of my favourites is the http://github.com/raganwald/homoiconic/blob/master/2008-10-29/kestrel.markdown#readme['Kestrel' or 'K Combinator'] which describes a function that returns a constant function. It's described like so: [source,text] ---- Kxy = x ---- The Kestrel function would take in 2 arguments and return the value of the first one. The second argument would probably be a function that takes in the first argument and then performs some side effects with that value. Braithwaite descirbes the 'returning' function from Rails as an example of this combinator whereby instead of writing code like this: [source,ruby] ---- def registered_person(params = {}) person = Person.new(params.merge(:registered => true)) Registry.register(person) person.send_email_notification person end ---- We can write this: [source,ruby] ---- def registered_person(params = {}) returning Person.new(params.merge(:registered => true)) do |person| Registry.register(person) person.send_email_notification end end ---- i.e. we can group all the side effects together and it's more obvious to the reader that we're returning the value of 'Person.new(...)' from this method. I've been writing a bit of code in F# to generate some test objects and I realised that I had code like this in a few places: [source,ocaml] ---- let build (t:Type) = let theType = Activator.CreateInstance(t) theType.GetType().GetProperties() |> Array.iter (fun p -> p.SetValue(t, createValueFor p, null)) theType ---- We're creating 'theType' and then mutating it straight away using reflection before returning the value. We can implement a 'returning' function like so to simplify the code a little: [source,ocaml] ---- let returning t f = f(t); t ---- [source,ocaml] ---- let build (t:Type) = returning (Activator.CreateInstance(t)) (fun t -> t.GetType().GetProperties() |> Array.iter (fun p -> p.SetValue(t, createValueFor p, null))) ---- I think this is the same as what Martin Fowler refers to as a http://martinfowler.com/dslwip/NestedClosure.html[nested closure] and it seems quite a neat way of encapsulating side effects and making the code a bit more expressive.
null
null
[ -0.00357406516559422, -0.02154943160712719, -0.052270397543907166, 0.005916933994740248, 0.07030012458562851, 0.028131471946835518, 0.028068173676729202, -0.00007565534178866073, -0.003934292588382959, -0.0036196166183799505, -0.023221278563141823, 0.0005879302625544369, -0.07935409992933273, 0.01952381059527397, -0.03985583037137985, 0.0652899220585823, 0.07376499474048615, -0.030309312045574188, 0.021512778475880623, 0.0028481532353907824, 0.042008329182863235, 0.06958484649658203, -0.008459537290036678, 0.03275700658559799, 0.009697329252958298, 0.008042881265282631, 0.009190822020173073, 0.002979976823553443, -0.05248171091079712, 0.0017803915543481708, 0.032546836882829666, 0.01702830009162426, 0.010310618206858635, -0.0044328030198812485, 0.016249753534793854, 0.013258449733257294, -0.014591407030820847, 0.014471291564404964, 0.007745991460978985, 0.0252841804176569, -0.056666288524866104, 0.0423811636865139, 0.004128919914364815, -0.008135599084198475, -0.04023314639925957, 0.008739568293094635, -0.05513671040534973, 0.013186250813305378, -0.004963307175785303, 0.0005723186768591404, -0.04878108948469162, 0.015610394068062305, -0.02578539401292801, -0.017596611753106117, 0.008506502024829388, 0.06587380915880203, 0.0360933318734169, -0.07665954530239105, 0.04477901756763458, -0.04547973349690437, -0.03354218974709511, 0.005040349438786507, 0.033549729734659195, 0.032516248524188995, 0.02557632140815258, 0.017492277547717094, -0.025262972339987755, 0.028184380382299423, -0.05207805708050728, -0.03479994460940361, -0.027853643521666527, -0.0020775615703314543, 0.002012059325352311, -0.008237678557634354, 0.00989882368594408, -0.03436204418540001, -0.0048428731970489025, 0.0728352963924408, 0.02355768345296383, 0.023282060399651527, 0.010836993344128132, 0.014420239254832268, -0.0056573785841465, 0.024579733610153198, -0.023643733933568, -0.018139686435461044, -0.0499369241297245, 0.02519659325480461, -0.04509493708610535, 0.06669610738754272, 0.024762509390711784, -0.07491892576217651, 0.006049041636288166, 0.023630769923329353, -0.0072421482764184475, 0.04010530188679695, -0.004156904760748148, 0.0033881303388625383, -0.015241257846355438, -0.010469590313732624, -0.017543330788612366, 0.004112609662115574, 0.020246485248208046, -0.029802076518535614, -0.07780251652002335, 0.00526054110378027, -0.04235231876373291, -0.04193131625652313, 0.0019096891628578305, 0.028119154274463654, -0.05291133373975754, 0.03179110214114189, -0.04054784029722214, -0.015652092173695564, -0.0850875973701477, 0.06869541853666306, -0.025156136602163315, -0.02747192606329918, -0.015448900870978832, 0.04403116554021835, 0.030443770810961723, 0.04389261081814766, -0.014284143224358559, 0.07555054128170013, 0.02537365071475506, 0.04472176358103752, 0.0061377547681331635, 0.0632835328578949, -0.03945662081241608, -0.04171328619122505, -0.025615595281124115, 0.05791463330388069, -0.012851361185312271, 0.0022308356128633022, -0.006297730840742588, -0.00254611624404788, -0.04004884138703346, -0.005859971046447754, 0.03818754106760025, 0.08015044778585434, -0.001259032404050231, -0.003312057349830866, 0.030379246920347214, -0.02916059084236622, 0.032742008566856384, 0.022514505311846733, 0.012026798911392689, 0.0011380685027688742, -0.019611649215221405, 0.04717378690838814, 0.029108760878443718, 0.029481640085577965, 0.05161737650632858, -0.02798885852098465, 0.02906058356165886, 0.045964982360601425, 0.033820345997810364, 0.022313179448246956, -0.011432463303208351, -0.008878786116838455, 0.04786122962832451, 0.021822912618517876, 0.01798672042787075, 0.04204442724585533, 0.02573169767856598, 0.0016023734351620078, 0.0009012509835883975, 0.04365084692835808, -0.018124079331755638, -0.05361035093665123, -0.06880299746990204, -0.022659024223685265, 0.05955783650279045, -0.03419513627886772, 0.008393791504204273, 0.0021290481090545654, 0.06813397258520126, -0.03125889599323273, 0.05120226740837097, -0.002590721473097801, -0.06329086422920227, 0.048518531024456024, 0.014042502269148827, 0.012092596851289272, 0.005073928274214268, -0.009998797439038754, 0.06757350265979767, 0.03139141947031021, 0.002685751300305128, 0.04148191213607788, -0.07408812642097473, -0.07668980956077576, 0.010073462501168251, -0.026949819177389145, 0.1121048703789711, -0.03911064565181732, -0.016684599220752716, 0.05250869691371918, 0.03878498449921608, 0.03389856964349747, -0.002213317435234785, -0.032326482236385345, -0.01158146932721138, -0.024182720109820366, -0.044842079281806946, 0.043987758457660675, 0.03316535800695419, 0.004222944378852844, -0.046262286603450775, 0.019833363592624664, -0.008934236131608486, 0.009711230173707008, 0.05045700445771217, -0.020134950056672096, 0.03934081643819809, 0.03200589120388031, 0.046685539186000824, -0.02309034764766693, 0.03817048296332359, -0.07186320424079895, -0.01672351360321045, 0.003399304812774062, 0.002291501499712467, -0.028000766411423683, 0.020509909838438034, 0.13493205606937408, 0.03536638244986534, -0.05159580335021019, -0.04974660277366638, -0.002671231282874942, -0.006519458256661892, -0.007197481580078602, 0.00168261444196105, -0.01005558855831623, -0.0017688965890556574, -0.009259363636374474, -0.0254987683147192, 0.004269530531018972, 0.021332930773496628, -0.03617703542113304, -0.003262136597186327, 0.0917908251285553, -0.0326714813709259, 0.03769747167825699, -0.004954823758453131, -0.008032134734094143, -0.011961077339947224, -0.030329545959830284, -0.07594238966703415, 0.009322415105998516, 0.009379013441503048, -0.0066751753911376, 0.061452463269233704, -0.034678101539611816, -0.026706451550126076, -0.02018124982714653, -0.025020888075232506, 0.005008315201848745, 0.029453149065375328, 0.06293640285730362, -0.03593608736991882, 0.02184101566672325, -0.0375315360724926, -0.007127381861209869, -0.03896386921405792, -0.045599713921546936, -0.020427275449037552, 0.01471687201410532, 0.009861697442829609, 0.024421080946922302, 0.007796548772603273, 0.009179177694022655, 0.02646458148956299, 0.007496288046240807, -0.027908459305763245, 0.020064381882548332, 0.015021411702036858, -0.020787909626960754, -0.04184228181838989, -0.026802977547049522, -0.05962792783975601, 0.05318576097488403, -0.03281682729721069, -0.028651447966694832, 0.012254356406629086, -0.0639408528804779, 0.04298902302980423, -0.06253823637962341, -0.04059087857604027, 0.010061904788017273, 0.03610648214817047, 0.06806999444961548, 0.0067533948458731174, 0.033376358449459076, 0.04293191432952881, 0.026751428842544556, 0.02420509234070778, 0.035648640245199203, -0.019440781325101852, 0.02589038573205471, 0.010381263680756092, -0.0028809623327106237, 0.04343552142381668, 0.0115379448980093, 0.022451048716902733, -0.04931981489062309, 0.024539992213249207, -0.011009860783815384, -0.26670223474502563, 0.04645496979355812, 0.00678063603118062, -0.03148198500275612, 0.027535434812307358, 0.01358821801841259, 0.006277858279645443, -0.044711191207170486, -0.002935905009508133, 0.027173588052392006, -0.037189655005931854, -0.01581350713968277, -0.03142159432172775, 0.03849077597260475, 0.02499605156481266, 0.003116982290521264, -0.016288943588733673, -0.04334966465830803, 0.020218322053551674, 0.0714939758181572, 0.01669870689511299, -0.05630633980035782, 0.003397842636331916, 0.035206299275159836, 0.020732782781124115, 0.015988722443580627, -0.07962207496166229, 0.031074900180101395, -0.01971706934273243, 0.01342209056019783, 0.018680373206734657, -0.009484034031629562, 0.027447236701846123, -0.024984028190374374, -0.010893207974731922, -0.016577061265707016, 0.01796143874526024, 0.013403341174125671, -0.009254248812794685, 0.026150695979595184, -0.019899144768714905, -0.042500291019678116, -0.008936078287661076, -0.01532546803355217, 0.0823686420917511, 0.016144992783665657, -0.05953193083405495, -0.00567450700327754, -0.03607447072863579, 0.07457002997398376, -0.04009472206234932, -0.04603903368115425, 0.006996475160121918, 0.062258101999759674, -0.0007356445421464741, -0.02279479056596756, -0.009982063435018063, -0.0025001047179102898, -0.03877543285489082, -0.02992684207856655, -0.013300582766532898, -0.02065799944102764, -0.0335552841424942, -0.03539368510246277, -0.020833073183894157, -0.06848184764385223, -0.09385093301534653, -0.002596375998109579, 0.05179835855960846, 0.017054615542292595, -0.05004366114735603, -0.024004697799682617, -0.022425033152103424, -0.11706233024597168, -0.01252513937652111, -0.021353695541620255, -0.045757394284009933, -0.012481107376515865, 0.006277960259467363, 0.08129438012838364, -0.06656882911920547, -0.0722181499004364, 0.044212907552719116, -0.009018179029226303, 0.03998178616166115, -0.008709395304322243, -0.01849498599767685, -0.019253412261605263, -0.022776471450924873, -0.0024130495730787516, 0.05898464098572731, 0.009182747453451157, -0.01516113430261612, -0.02127627469599247, 0.030794808641076088, 0.02583426423370838, 0.047303810715675354, -0.010469299741089344, 0.04381759464740753, 0.04178883135318756, 0.02023976296186447, -0.08131709694862366, 0.006856814492493868, -0.027210120111703873, -0.023998601362109184, -0.00036650910624302924, -0.048644766211509705, 0.012508206069469452, 0.0431206077337265, 0.0012865110766142607, 0.010043131187558174, -0.04135467857122421, 0.0018250909633934498, -0.06495511531829834, -0.0742853656411171, -0.013718678615987301, 0.016381029039621353, 0.037140075117349625, -0.006604388821870089, 0.008874008432030678, -0.08086239546537399, -0.0006173599977046251, -0.007687058299779892, -0.023027418181300163, -0.07218372076749802, -0.04103903844952583, -0.011888321489095688, 0.006000510882586241, -0.007457704748958349, 0.016377989202737808, -0.007428278215229511, 0.016545653343200684, -0.028287068009376526, -0.03951435536146164, 0.01948612369596958, 0.005325132980942726, -0.026484841480851173, -0.04507206007838249, -0.028330553323030472, 0.011369681917130947, 0.03283536434173584, -0.0341261625289917, 0.016521209850907326, 0.013432818464934826, 0.03102071024477482, 0.0061609395779669285, 0.02048668824136257, 0.007288992404937744, 0.013944490812718868, 0.028038786724209785, -0.00004404306673677638, -0.02650248445570469, 0.009626589715480804, -0.03136332333087921, -0.03539653867483139, -0.022630849853157997, 0.018582630902528763, -0.026129040867090225, -0.04347365349531174, -0.014348260127007961, 0.02341400273144245, -0.01270037330687046, -0.006769099738448858, -0.06804482638835907, 0.0007793331751599908, 0.05329952389001846, -0.0301720779389143, 0.04039264842867851, -0.03898407891392708, -0.005917578469961882, -0.018259016796946526, 0.0031763743609189987, -0.02571917325258255, 0.027060026302933693, -0.0018363099079579115, 0.02655792608857155, -0.0007417994202114642, 0.0018523670732975006, 0.01624470017850399, 0.00390438549220562, -0.01782357320189476, -0.029425444081425667, 0.025284135714173317, 0.003867838066071272, 0.048755016177892685, 0.011318018659949303, -0.019923320040106773, -0.004772834479808807, -0.048956625163555145, -0.02985803596675396, -0.04225284233689308, 0.012233082205057144, -0.04565020650625229, 0.039420243352651596, -0.03781405836343765, -0.079218290746212, -0.009184630587697029, 0.01867162622511387, 0.019969919696450233, -0.004952989052981138, 0.009935014881193638, 0.011497602798044682, -0.010496852919459343, 0.006469579413533211, 0.059225719422101974, -0.053699638694524765, -0.0010577249340713024, -0.01669483259320259, -0.005163427442312241, 0.03727266192436218, 0.03190165013074875, -0.07113847136497498, 0.0005636637797579169, 0.02796194888651371, -0.015381836332380772, -0.032070260494947433, -0.05062403902411461, -0.01914818584918976, -0.005147249903529882, -0.0036861663684248924, -0.03181836009025574, -0.04742812737822533, -0.010822290554642677, -0.019722072407603264, -0.050631582736968994, 0.014729195274412632, -0.01817132718861103, -0.031148722395300865, 0.013353015296161175, -0.036234647035598755, 0.033816542476415634, -0.03256383165717125, 0.022895444184541702, 0.016212383285164833, -0.017839455977082253, -0.01374257355928421, -0.049902092665433884, 0.0067336661741137505, -0.037369027733802795, 0.020767726004123688, 0.01654859445989132, 0.021990446373820305, -0.04336552694439888, 0.022191327065229416, -0.045022156089544296, 0.01806630939245224, 0.009969126433134079, -0.010963632725179195, -0.0006321357795968652, 0.04013114050030708, -0.016440846025943756, 0.04043392091989517, -0.0031075922306627035, 0.021304765716195107, 0.0691307857632637, -0.04922203719615936, -0.04750779643654823, -0.0009928435320034623, -0.050897009670734406, 0.019981909543275833, 0.0055213128216564655, 0.04272818565368652, -0.05994196608662605, 0.03050605021417141, 0.0431152768433094, 0.017387181520462036, 0.052556317299604416, 0.003926921170204878, 0.03811688721179962, -0.009002653881907463, 0.015723709017038345, -0.08033498376607895, -0.003994612488895655, 0.044459063559770584, 0.008542380295693874, -0.0013944704551249743, -0.03277631103992462, -0.014951972290873528, 0.03343714773654938, -0.04206960275769234, -0.02482936717569828, 0.022678714245557785, -0.026027360931038857, -0.02455718442797661, 0.01791759952902794, -0.05407671630382538, 0.04128517210483551, 0.01663028448820114, -0.02782307378947735, -0.044477157294750214, 0.0037671891041100025, 0.054779235273599625, 0.010029704309999943, 0.03560691326856613, 0.0038081156089901924, -0.01955053210258484, 0.05457017570734024, 0.007222120184451342, 0.02124711312353611, 0.05034695193171501, -0.026809711009263992, 0.03112616576254368, 0.017698101699352264, 0.026538359001278877, 0.00002712001332838554, 0.02837212383747101, -0.004021447151899338, -0.061000142246484756, 0.02673691138625145, -0.0008766896789893508, -0.029792597517371178, -0.018779709935188293, 0.06332575529813766, 0.0011570375645533204, -0.019275039434432983, -0.07361897081136703, 0.011512666940689087, -0.03601114824414253, 0.0022587303537875414, -0.01629764959216118, 0.00966648105531931, -0.048668403178453445, 0.05916415899991989, -0.00026800233172252774, 0.0019997116178274155, 0.06446576863527298, -0.003168879309669137, -0.004933545831590891, -0.01912122592329979, 0.07125779986381531, 0.07880349457263947, 0.06884822994470596, 0.016683286055922508, 0.057295169681310654, -0.018350321799516678, -0.047566309571266174, 0.008685814216732979, 0.01515011116862297, -0.009689809754490852, 0.0016872575506567955, -0.0029202608857303858, 0.07947660982608795, -0.013204213231801987, 0.05532108247280121, -0.06040910631418228, 0.008373505435883999, -0.011923618614673615, 0.048145752400159836, -0.017952322959899902, 0.059566739946603775, 0.015413977205753326, 0.06180822476744652, -0.02169284038245678, -0.04481235519051552, 0.04360564798116684, -0.01609356515109539, -0.039980825036764145, 0.011926913633942604, -0.0157582126557827, 0.02032935619354248, 0.013762112706899643, 0.012122397311031818, 0.061459336429834366, -0.038035035133361816, -0.03567438945174217, 0.021446896716952324, 0.014521024189889431, -0.014463279396295547, -0.017411701381206512, 0.0001813563285395503, -0.00583757134154439, -0.01767427660524845, 0.0012696319026872516, -0.010711011476814747, -0.026759980246424675, -0.025955544784665108, 0.04652244970202446, -0.03482026606798172, 0.01392308622598648, 0.019151581451296806, -0.01638418436050415, -0.04091602936387062, -0.03619421273469925, -0.0514104999601841, -0.023108389228582382, -0.06436276435852051, 0.004226363729685545, 0.003701370907947421, -0.013349831104278564, -0.04467571899294853, -0.011229111813008785, 0.020493872463703156, 0.014369390904903412, 0.04646105319261551, -0.03859147056937218, 0.005492066498845816, 0.02893010713160038, -0.00017751923587638885, 0.014261115342378616, 0.024896327406167984, 0.03451591730117798, 0.013663151301443577, -0.014137344434857368, -0.008130651898682117, -0.017264749854803085, 0.035153407603502274, 0.03966524079442024, 0.00850458350032568, -0.09210190176963806, 0.005123562179505825, 0.022440655156970024, 0.012189730070531368, -0.06266845017671585, 0.006760342977941036, 0.024905307218432426, -0.0008329814299941063, 0.05496474355459213, -0.021702388301491737, -0.005060950759798288, -0.03855854272842407, -0.013568985275924206, 0.022253017872571945, 0.03126668930053711, 0.05285574495792389, -0.030123166739940643, 0.09891635924577713, 0.012369249016046524, -0.027471117675304413, -0.016757022589445114, -0.016228705644607544, -0.02920432575047016, 0.03212735801935196, -0.023034173995256424, -0.005090534687042236, -0.03595052286982536, -0.0618843212723732, 0.017368420958518982, 0.022649670019745827, -0.032597120851278305, -0.03508535027503967, 0.012754615396261215, 0.042498908936977386, -0.008994692005217075, 0.048060107976198196, -0.0244752187281847, 0.04936067759990692, -0.02495516650378704, -0.024987705051898956, 0.00830762553960085, 0.029414840042591095, -0.0021326178684830666, 0.009082757867872715, 0.011665545403957367, -0.04815253987908363, -0.006207447964698076, -0.0032267170026898384, 0.029811471700668335, 0.04649288207292557, -0.01903628371655941, 0.006013285834342241 ]
[ -0.10057704895734787, -0.016170978546142578, -0.032072778791189194, -0.002700695302337408, 0.010528255254030228, -0.03535650297999382, 0.019560711458325386, 0.033986594527959824, 0.004149522166699171, -0.016947075724601746, -0.009585993364453316, -0.03715340793132782, 0.016479747369885445, -0.019277162849903107, 0.08435315638780594, -0.004483988042920828, -0.024756483733654022, -0.052366953343153, -0.03667305409908295, 0.02190016768872738, 0.02393956668674946, -0.02229619398713112, -0.049946270883083344, -0.01872534491121769, 0.011600006371736526, 0.04242965579032898, 0.03367047384381294, -0.01134087797254324, -0.0017283344641327858, -0.21770863234996796, 0.045191194862127304, 0.0023350215051323175, 0.024532640352845192, -0.020628591999411583, -0.00459243543446064, 0.018836749717593193, 0.021557504311203957, 0.01667977124452591, -0.015865538269281387, 0.0670662373304367, 0.035617198795080185, 0.02240872010588646, -0.03669131547212601, -0.01588871143758297, 0.057349253445863724, 0.0008939944091252983, -0.03818012773990631, -0.01650558039546013, -0.027410971000790596, -0.00948379561305046, -0.0698615238070488, -0.01571143977344036, -0.010828954167664051, -0.028889166191220284, 0.016934135928750038, 0.031366217881441116, 0.05847048759460449, 0.07166465371847153, 0.027808476239442825, 0.01630818098783493, 0.0007531589362770319, -0.0048162187449634075, -0.1266406625509262, 0.057701461017131805, 0.014509445987641811, 0.03425516560673714, -0.031235499307513237, -0.04941082000732422, -0.009718362241983414, 0.08818041533231735, 0.027385609224438667, -0.005856194067746401, -0.013929818756878376, 0.05087727680802345, 0.002450417960062623, -0.013579700142145157, -0.023540042340755463, 0.02670283615589142, 0.02742258459329605, -0.02609575167298317, -0.08184725046157837, -0.0072063785046339035, -0.020066816359758377, -0.02461698092520237, -0.014478270895779133, 0.030864842236042023, -0.02954522706568241, 0.020620563998818398, 0.04690594598650932, 0.035151686519384384, 0.05812252685427666, 0.01993582770228386, 0.021418176591396332, -0.023128356784582138, -0.10740983486175537, -0.0003127426898572594, -0.007335716392844915, -0.031364891678094864, -0.041436683386564255, 0.45149165391921997, 0.010244100354611874, -0.022280732169747353, 0.05319101735949516, 0.02397674135863781, -0.018002158030867577, -0.0198997613042593, -0.03196555748581886, -0.08167687803506851, 0.015824751928448677, -0.039558082818984985, 0.0069450088776648045, -0.012782052159309387, 0.08058857172727585, -0.0589108020067215, -0.008253036998212337, 0.011433571577072144, 0.031157832592725754, 0.014077776111662388, 0.009788124822080135, 0.02217639982700348, -0.00462683942168951, 0.010964184068143368, 0.018166961148381233, 0.01602165214717388, 0.03342527896165848, 0.006419837474822998, 0.03352641314268112, 0.06433811783790588, 0.015560897067189217, 0.04151109606027603, 0.03294137865304947, -0.017474545165896416, -0.05148906260728836, 0.0024919905699789524, 0.0038392357528209686, 0.006443812511861324, 0.037501923739910126, -0.04035666212439537, 0.015690278261899948, 0.03362573683261871, -0.0075123184360563755, -0.026166606694459915, 0.014186754822731018, 0.0054481420665979385, -0.027656886726617813, 0.08565028011798859, -0.00556453550234437, -0.03504757583141327, -0.016935423016548157, -0.003046320751309395, -0.012023764662444592, 0.026426265016198158, 0.010753114707767963, -0.0806623175740242, 0.008146500214934349, 0.008547529578208923, 0.05187515914440155, 0.006641452666372061, -0.04069334268569946, 0.021797215566039085, -0.03459147363901138, -0.03152535855770111, -0.05607308819890022, 0.04320251941680908, 0.02970731072127819, -0.10413607209920883, -0.0021021924912929535, 0.012950407341122627, -0.00010461342026246712, -0.07169115543365479, 0.0007643101853318512, 0.006181889679282904, -0.04685430973768234, -0.00004389372770674527, 0.039214156568050385, -0.020147431641817093, -0.05635831505060196, 0.0027897327672690153, 0.07337365299463272, 0.004296138416975737, -0.02135574258863926, -0.0015483452007174492, -0.06172560155391693, 0.01286015659570694, -0.051496997475624084, -0.07038077712059021, -0.07238653302192688, -0.0033095148392021656, -0.01910659857094288, -0.03222355619072914, -0.026709962636232376, -0.014680853113532066, -0.05267360061407089, 0.05593438446521759, -0.034592580050230026, -0.05810629203915596, -0.015989702194929123, 0.009938890114426613, 0.010987590067088604, -0.021404072642326355, -0.02065812237560749, 0.051252637058496475, 0.012390066869556904, 0.03315287455916405, -0.05592665076255798, 0.04308713600039482, 0.045252539217472076, -0.04518711939454079, 0.09382086247205734, 0.03154721111059189, -0.017071085050702095, -0.01753240078687668, -0.019251888617873192, 0.03500638157129288, -0.029528148472309113, -0.006600325461477041, -0.012611065991222858, 0.01618632860481739, 0.020028753206133842, -0.0008873550686985254, -0.03697270527482033, -0.03115093894302845, -0.006854118779301643, -0.3567977249622345, -0.04677507281303406, -0.0012748315930366516, -0.014696130529046059, 0.009340118616819382, -0.0579385906457901, 0.029688112437725067, -0.002100305398926139, -0.007018647622317076, -0.02138451300561428, 0.08268754929304123, -0.01253534946590662, 0.006260349415242672, -0.05649399012327194, -0.00926735159009695, 0.035571690648794174, -0.06862848252058029, -0.04271721839904785, -0.019497985020279884, 0.054205454885959625, 0.00018161896150559187, 0.001913492800667882, 0.010028944350779057, -0.06501179188489914, -0.031785815954208374, -0.04873861372470856, 0.10798582434654236, 0.04133966565132141, 0.08050183206796646, -0.022059088572859764, 0.05041264370083809, 0.000166412559337914, 0.006354897283017635, -0.021756384521722794, 0.005348885897547007, -0.011623402126133442, 0.020581761375069618, 0.005504224449396133, 0.03436596691608429, -0.011804522946476936, -0.037332773208618164, 0.032998260110616684, -0.038779135793447495, -0.054634641855955124, -0.03362128138542175, 0.0387050025165081, -0.016820287331938744, -0.03081369958817959, 0.010058121755719185, 0.07811833918094635, 0.03787481039762497, 0.004265435039997101, 0.028911607339978218, -0.015435896813869476, 0.012298494577407837, -0.03325121849775314, -0.06048769876360893, -0.008384104818105698, 0.0004741302109323442, 0.015248281881213188, 0.055788036435842514, 0.05142566189169884, 0.024627147242426872, -0.0503188781440258, 0.013473877683281898, -0.017943503335118294, -0.004693649243563414, 0.002648642985150218, 0.017542561516165733, -0.03011985495686531, -0.021719425916671753, 0.1000821515917778, 0.006166659761220217, 0.006080372259020805, 0.03983614966273308, 0.035274457186460495, 0.015012572519481182, 0.015808362513780594, 0.004790601786226034, 0.014505879953503609, 0.008718161843717098, -0.0021908197086304426, 0.01625823974609375, -0.02662414312362671, -0.03435971587896347, 0.019076326861977577, -0.016475006937980652, -0.012294950895011425, 0.07025539129972458, -0.014378802850842476, -0.030476627871394157, 0.011626741848886013, -0.02011849358677864, 0.0043285139836370945, 0.075993612408638, 0.0065400986932218075, -0.2735501527786255, 0.01880526915192604, 0.04599025100469589, 0.08785700052976608, 0.0016938745975494385, 0.04222138226032257, 0.03467034921050072, -0.06278026103973389, -0.022028500214219093, -0.021758824586868286, 0.0334305614233017, 0.0425628200173378, 0.023158255964517593, 0.01897474192082882, 0.01665743812918663, -0.0035148533061146736, 0.03563063219189644, -0.04823549836874008, -0.025494353845715523, -0.013640224002301693, 0.0417427234351635, -0.014161583967506886, 0.17785783112049103, 0.010410991497337818, 0.0026740434113889933, 0.023166468366980553, 0.02500874362885952, 0.017821218818426132, 0.06774989515542984, -0.0005586652550846338, 0.006819589529186487, 0.012943199835717678, 0.05275183916091919, 0.0008405710104852915, 0.03024943359196186, -0.039044320583343506, -0.024142282083630562, -0.004802006762474775, 0.02073313109576702, -0.013333563692867756, -0.017995478585362434, 0.029782677069306374, -0.02734183520078659, 0.026113074272871017, 0.05647032707929611, -0.0005220122402533889, -0.03447379171848297, -0.03324171155691147, -0.04825964570045471, -0.007204904220998287, -0.022750642150640488, -0.042160239070653915, -0.014157809317111969, 0.008969004265964031, 0.011652085930109024, 0.06417815387248993, 0.0291951522231102, -0.012884200550615788, -0.03425753116607666, 0.026455728337168694, -0.0182136669754982, -0.011884480714797974, 0.13311949372291565, 0.027287308126688004, 0.023772163316607475 ]
[ -0.017375733703374863, 0.029757872223854065, -0.019494658336043358, 0.012204405851662159, -0.023893453180789948, 0.03625226020812988, 0.012455245479941368, 0.011785313487052917, -0.008677808567881584, 0.004618057049810886, -0.014795521274209023, 0.020038114860653877, 0.0012194474693387747, -0.029569173231720924, 0.012244956567883492, 0.0009174181031994522, 0.02602844312787056, 0.007170612923800945, 0.016734203323721886, -0.022061055526137352, -0.02170422300696373, 0.044378843158483505, 0.023607686161994934, 0.019924670457839966, -0.030851183459162712, -0.019939130172133446, -0.024280963465571404, 0.022643687203526497, 0.02679380401968956, -0.1274561733007431, -0.003113932441920042, -0.008896572515368462, -0.018863867968320847, -0.00696682371199131, -0.01918856054544449, 0.006525387987494469, -0.01717706024646759, -0.0029172226786613464, 0.020060211420059204, -0.005101311486214399, 0.03243342414498329, -0.014260013587772846, -0.026283295825123787, 0.003704749047756195, 0.005294256377965212, -0.026980049908161163, -0.0176871195435524, 0.009208877570927143, -0.007799616549164057, -0.0332530215382576, -0.024367069825530052, -0.001882338896393776, -0.0022247578017413616, 0.001503693638369441, 0.03244244307279587, -0.016241785138845444, -0.023528946563601494, -0.046937812119722366, 0.011612371541559696, -0.026691917330026627, -0.015417054295539856, 0.01485510729253292, -0.03624630346894264, -0.03910128027200699, -0.00364299095235765, -0.017563626170158386, -0.02347688004374504, 0.00566884595900774, 0.03410603851079941, -0.0005579535500146449, -0.007806333247572184, 0.014690692536532879, -0.026506470516324043, 0.015374110080301762, 0.0006832147482782602, -0.004662052728235722, 0.006296589970588684, -0.011790124699473381, 0.019191836938261986, -0.002075188560411334, -0.038674209266901016, -0.02399279922246933, 0.00585695868358016, 0.022826476022601128, -0.0031312901992350817, -0.021020598709583282, 0.0048974803648889065, 0.015420068055391312, 0.01602802611887455, 0.014421170577406883, -0.036736682057380676, 0.026589684188365936, 0.022197896614670753, 0.005466222297400236, -0.08120619505643845, 0.01128792017698288, -0.019917717203497887, -0.011101653799414635, -0.009156988002359867, 0.8771824836730957, -0.027577808126807213, 0.022862646728754044, 0.04184109345078468, 0.013799266889691353, -0.006784806028008461, -0.031124627217650414, -0.004503586795181036, -0.01922016032040119, 0.009877223521471024, -0.031057188287377357, 0.010678298771381378, -0.005310265813022852, 0.04119417071342468, 0.012496181763708591, 0.029874740168452263, 0.00026286946376785636, 0.024614641442894936, 0.024629399180412292, 0.04649535194039345, 0.027524130418896675, 0.02691825106739998, 0.023649560287594795, 0.023087386041879654, 0.024041200056672096, 0.02581878937780857, -0.15785890817642212, -0.020376913249492645, -7.014287198003887e-33, 0.030789600685238838, -0.0017997436225414276, 0.040459711104631424, 0.01990412175655365, 0.014510796405375004, -0.00007862783240852877, -0.009303659200668335, -0.052593592554330826, 0.0150323286652565, -0.041858971118927, -0.011156227439641953, -0.0033790678717195988, -0.02362046390771866, -0.012023613788187504, 0.01778886653482914, -0.008894351311028004, 0.0039718314073979855, 0.02889610454440117, -0.017694275826215744, 0.01603000983595848, 0.030992867425084114, 0.03354256972670555, -0.008728690445423126, 0.004202358424663544, -0.004773950669914484, 0.014765840955078602, 0.019238034263253212, 0.0015596556477248669, -0.0066166105680167675, -0.0362103097140789, 0.0009770637843757868, 0.025587987154722214, 0.012676963582634926, -0.04244397208094597, 0.020568575710058212, -0.036355242133140564, -0.017340263351798058, -0.010403554886579514, -0.020154191181063652, -0.014025588519871235, -0.024987470358610153, -0.008016146719455719, -0.031017346307635307, 0.007279819343239069, -0.027713004499673843, -0.009629394859075546, 0.02642335742712021, 0.04041793569922447, 0.023881973698735237, 0.02057107537984848, 0.03377504646778107, -0.011025503277778625, 0.01076457928866148, 0.0053276317194104195, -0.02164401300251484, 0.0313800685107708, 0.004107173532247543, -0.0015091021778061986, 0.04993046075105667, 0.009943615645170212, 0.0030621106270700693, -0.021416736766695976, 0.002398446435108781, 0.0033395965583622456, 0.035848382860422134, -0.022526899352669716, -0.010791982524096966, 0.003516790457069874, 0.01704302988946438, -0.0003322440024930984, -0.03734054043889046, 0.01643570140004158, -0.021808402612805367, -0.02446802891790867, -0.0007096167537383735, -0.03531103581190109, -0.00960894487798214, -0.018276304006576538, -0.013781475834548473, 0.029018238186836243, 0.03266038000583649, 0.004983949474990368, -0.011480255052447319, -0.023982800543308258, -0.0013979602372273803, -0.06570696085691452, 0.022598328068852425, -0.0010762823512777686, -0.008436175063252449, -0.014353996142745018, 0.027470450848340988, 0.02703114040195942, -0.00471332436427474, -0.01356878224760294, -0.0017448413418605924, 6.842259477232799e-33, -0.010723141022026539, -0.03157307952642441, -0.012857957743108273, 0.017779655754566193, 0.0023979893885552883, -0.010142584331333637, 0.03565110266208649, 0.009957133792340755, -0.01794862188398838, 0.03388785570859909, -0.03911806643009186, 0.00033458630787208676, -0.006855472456663847, 0.0046188849955797195, 0.043358270078897476, -0.031528450548648834, 0.028598500415682793, -0.009953736327588558, 0.03390147536993027, 0.013519704341888428, -0.009203944355249405, 0.025274503976106644, 0.0054184445179998875, 0.015020528808236122, -0.0025193793699145317, 0.029077623039484024, -0.014378376305103302, 0.013942411169409752, 0.010496134869754314, -0.033896591514348984, 0.017844999209046364, -0.019484419375658035, 0.007004738785326481, -0.02228923700749874, 0.0074919164180755615, 0.011180189438164234, 0.01132192276418209, 0.008390290662646294, 0.013304055668413639, -0.0217448677867651, 0.03323568031191826, -0.009603407233953476, 0.00012953933037351817, 0.0013738613342866302, 0.028972534462809563, 0.013597213663160801, 0.018283111974596977, -0.021628404036164284, 0.011627803556621075, 0.00927327573299408, 0.010209980420768261, 0.00991450808942318, -0.002526242984458804, 0.012045447714626789, 0.02029251679778099, -0.0400068424642086, -0.0125963743776083, -0.00830222386866808, -0.006871167104691267, 0.011749795638024807, -0.02306821383535862, -0.03902113437652588, -0.0053917886689305305, 0.02863910421729088, -0.022164911031723022, -0.03535797446966171, -0.04549743980169296, -0.028210103511810303, 0.0020409130956977606, -0.01696874015033245, -0.04545871913433075, -0.028308581560850143, 0.006999297998845577, 0.014302310533821583, 0.030580151826143265, 0.006578098051249981, -0.028125081211328506, 0.0022679574321955442, -0.0007831830298528075, 0.013237016275525093, -0.01153295673429966, -0.05525106191635132, 0.0023396352771669626, 0.009137453511357307, 0.0016041481867432594, -0.00693698413670063, -0.01795163005590439, 0.02703298255801201, 0.022990964353084564, 0.0009673784370534122, 0.0036590422969311476, -0.008717753924429417, 0.006880053319036961, 0.019438207149505615, -0.007404876407235861, -1.2960043704879354e-8, -0.02223847433924675, 0.028816329315304756, -0.00513611501082778, 0.0435151569545269, 0.02769659087061882, 0.006511236075311899, -0.018064958974719048, -0.03969348594546318, 0.003048300975933671, 0.008264172822237015, -0.007299012504518032, 0.010524324141442776, 0.03212204948067665, 0.005466110073029995, 0.03394104167819023, -0.03929908573627472, -0.0005651742685586214, -0.01834746263921261, 0.027076132595539093, -0.005966699682176113, 0.011439595371484756, 0.02045377343893051, -0.009949848987162113, 0.003962118178606033, -0.029262982308864594, 0.0036585566122084856, 0.024505455046892166, -0.0862029641866684, -0.012212960980832577, -0.0029671129304915667, 0.015204975381493568, -0.012175099924206734, -0.025996049866080284, 0.02694430947303772, -0.01911771483719349, -0.007255008909851313, 0.0037053031846880913, 0.03687386214733124, 0.0640474334359169, 0.009747965261340141, 0.017494656145572662, -0.02568543702363968, 0.003967256750911474, -0.03437870740890503, -0.022259920835494995, 0.0048841568641364574, 0.007477619219571352, 0.01251712441444397, -0.007214791607111692, -0.027517296373844147, 0.003171670250594616, 0.012404093518853188, -0.01298576220870018, -0.003438503248617053, -0.002701136516407132, 0.002335065044462681, 0.017255743965506554, -0.03125650808215141, -0.017802221700549126, -0.016639623790979385, 0.03458363562822342, -0.018442770466208458, -0.03340078517794609, -0.018448464572429657 ]
coding-the-kestrel
https://markhneedham.com/blog/2010/05/03/coding-the-kestrel
false
2010-05-04 18:36:58
F#: The Kestrel Revisited
[ "f" ]
[ "fsharp" ]
A couple of days I wrote about http://www.markhneedham.com/blog/2010/05/03/coding-the-kestrel/[a 'returning' function] that I'd written to simplify a bit of F# code that I've been working on. It's defined like so: [source,ocaml] ---- let returning t f = f(t); t ---- And can then be used like this: [source,ocaml] ---- let build (t:Type) = returning (Activator.CreateInstance(t)) (fun t -> t.GetType().GetProperties() |> Array.iter (fun p -> p.SetValue(t, createValueFor p, null))) ---- While I quite like this function it didn't quite feel like idiomatic F# to me. With idiomatic F# we would tend to design our functions in such a way that we can pipe data through a series of them by making use of the http://www.markhneedham.com/blog/2009/01/06/f-forward-operator/[forward] or http://www.markhneedham.com/blog/2009/01/12/f-partial-function-application-with-the-function-composition-operator/[function composition operators]. With that idea in mind I decided to try switching the arguments to 'returning' around and renaming it so that the code would read more naturally: [source,ocaml] ---- let andApply f t = f(t); t ---- [source,ocaml] ---- let build (t:Type) = Activator.CreateInstance(t) |> andApply (fun t -> t.GetType().GetProperties() |> Array.iter (fun p -> p.SetValue(t, createValueFor p, null))) ---- [cols=2*] |=== | We partially apply the 'andApply' function to create a new function which takes in a type which is provided on the left hand side of the ' | >' operator. |=== I think this now reads better than the original version. What I find interesting is that when writing functions which I intend to be used like this the way I name them is different and the name only makes sense if it's used in that context. Using the 'andApply' function on its own without making use of partial function application wouldn't read as cleanly as it does at the moment.
null
null
[ 0.0003247707209084183, -0.011305059306323528, -0.011744863353669643, -0.00009000511636259034, 0.06787988543510437, 0.04057413712143898, 0.016517212614417076, 0.03784654289484024, 0.019700543954968452, -0.003693373640999198, -0.0359797440469265, -0.005013917572796345, -0.07525977492332458, 0.004528194200247526, -0.013964613899588585, 0.04619966447353363, 0.0804329589009285, -0.04462412744760513, 0.02717931754887104, -0.014626851305365562, 0.011689131148159504, 0.0814858078956604, 0.004651229362934828, 0.01720394380390644, 0.025420278310775757, -0.0037122571375221014, 0.017505936324596405, 0.008767950348556042, -0.06881331652402878, 0.006122426595538855, 0.0351005494594574, 0.03946882113814354, -0.02374757081270218, -0.027569210156798363, -0.005970431491732597, -0.011123467236757278, 0.0035696858540177345, 0.007036360912024975, -0.027647042647004128, 0.05144157260656357, -0.059245284646749496, 0.020618073642253876, 0.01206254307180643, -0.005636727437376976, -0.06318367272615433, 0.0038475533947348595, -0.036389343440532684, -0.009175525978207588, -0.030811473727226257, -0.010887653566896915, -0.04516857862472534, 0.005582604557275772, -0.014821401797235012, -0.01554466038942337, -0.008718603290617466, 0.03880666568875313, 0.017788022756576538, -0.07577508687973022, 0.029286649078130722, -0.046223390847444534, 0.010618011467158794, 0.0008783277007751167, 0.027124565094709396, 0.03972070664167404, 0.039723414927721024, -0.003553068032488227, -0.020989056676626205, 0.021284667775034904, -0.04937513917684555, -0.03887888416647911, -0.010958157479763031, 0.008813610300421715, -0.04179701954126358, -0.02094731107354164, -0.0022729334887117147, -0.04658820107579231, 0.005397217348217964, 0.0639721155166626, 0.012266975827515125, 0.037987466901540756, 0.003655958455055952, 0.027481114491820335, 0.03300755098462105, 0.023425694555044174, 0.024030618369579315, -0.010654488578438759, -0.02979462407529354, 0.016237681731581688, -0.015090541914105415, 0.06710464507341385, 0.021668829023838043, -0.0675315409898758, 0.006188380531966686, 0.012829849496483803, 0.003864237340167165, 0.014578726142644882, -0.003959605935961008, -0.01707286946475506, -0.0007833028794266284, -0.012000068090856075, -0.03127262741327286, -0.03965030238032341, 0.019697468727827072, -0.03386906161904335, -0.06272077560424805, -0.018582776188850403, -0.019256068393588066, -0.02243802323937416, 0.02738095633685589, 0.03221384435892105, -0.04503379762172699, 0.009634057991206646, 0.00679600378498435, 0.015425238758325577, -0.08862970024347305, 0.03813818842172623, -0.009095736779272556, -0.013390245847404003, -0.038424327969551086, 0.0269211046397686, 0.05274175480008125, 0.025521667674183846, -0.015070980414748192, 0.06613023579120636, 0.036433782428503036, 0.04195057973265648, 0.008429662324488163, 0.08426674455404282, 0.001063701813109219, -0.06575220823287964, -0.04432623088359833, 0.04905388876795769, -0.06271438300609589, 0.011129149235785007, -0.007077150046825409, -0.025476275011897087, -0.047234389930963516, 0.0010806110221892595, 0.05031895264983177, 0.045339617878198624, -0.012735231779515743, -0.03003312274813652, 0.012785475701093674, -0.038140956312417984, 0.012508335523307323, 0.001180465565994382, -0.019733119755983353, 0.001457113423384726, -0.005184744019061327, 0.017637474462389946, 0.0026502846740186214, 0.041271552443504333, 0.051342446357011795, -0.014128003269433975, 0.018910229206085205, 0.07071341574192047, 0.020748067647218704, 0.02783147618174553, -0.005340282339602709, 0.00997919775545597, 0.053643763065338135, 0.012468325905501842, 0.0015590437687933445, 0.04188961908221245, 0.027723820880055428, 0.017587630078196526, 0.03153083100914955, 0.04274125024676323, -0.0021788165904581547, -0.025953182950615883, -0.06772524863481522, -0.008445674553513527, 0.06889249384403229, -0.015608902089297771, -0.015217685140669346, 0.014367143623530865, 0.07658042758703232, -0.0248734001070261, 0.04114456847310066, 0.013231680728495121, -0.0595923587679863, 0.033510077744722366, 0.008163928985595703, 0.0050689419731497765, 0.016874341294169426, -0.001229326007887721, 0.05539890006184578, 0.032674115151166916, 0.01408445369452238, 0.007139318622648716, -0.05022375285625458, -0.08335565030574799, -0.023535555228590965, -0.01717914268374443, 0.07353679090738297, -0.05004870891571045, -0.02244194783270359, 0.05323029309511185, 0.01831190101802349, 0.06495992839336395, 0.03358301520347595, -0.04375379905104637, 0.028902389109134674, -0.007476289290934801, -0.03015354461967945, 0.0681934505701065, 0.03408902883529663, -0.009323093108832836, -0.04931480064988136, 0.018536580726504326, 0.013662341050803661, -0.006590293720364571, 0.036433231085538864, -0.014178059995174408, 0.04644329845905304, 0.04189039766788483, 0.017174193635582924, -0.05484083294868469, 0.030982837080955505, -0.08424238860607147, 0.014648729003965855, 0.017429163679480553, -0.007824653759598732, -0.012077554129064083, 0.009330758824944496, 0.12342951446771622, 0.059647608548402786, -0.06538960337638855, -0.04731030762195587, 0.0011360932840034366, 0.003346814773976803, -0.03243057802319527, 0.003646827070042491, 0.0006560967303812504, 0.00888181384652853, -0.014740442857146263, -0.00023788462567608804, 0.0189707912504673, 0.022077523171901703, -0.03648487478494644, 0.005737409461289644, 0.08230451494455338, -0.03194310516119003, 0.038914673030376434, -0.039725132286548615, -0.021634401753544807, 0.020050417631864548, -0.025580985471606255, -0.02970828115940094, 0.004630682524293661, 0.026091143488883972, -0.022959358990192413, 0.07546445727348328, -0.03004884533584118, -0.038691192865371704, -0.017015278339385986, -0.04582814872264862, 0.02368578314781189, 0.04631936922669411, 0.04230327904224396, -0.02864210307598114, 0.0396556593477726, -0.018452532589435577, 0.004482511430978775, -0.018755506724119186, -0.059425048530101776, -0.021221932023763657, 0.01401460450142622, 0.009854965843260288, 0.039479758590459824, 0.0034565336536616087, -0.00200746045447886, 0.016622385010123253, 0.004820090252906084, -0.0409882590174675, -0.001620752620510757, -0.0021385145373642445, -0.0034193014726042747, -0.05391661450266838, -0.04740988463163376, -0.046368394047021866, 0.06624708324670792, -0.031679537147283554, -0.030688205733895302, -0.01572253182530403, -0.05084569752216339, 0.04248259589076042, -0.07207287102937698, -0.04659593477845192, 0.008755861781537533, 0.04349464178085327, 0.029455292969942093, -0.035101018846035004, 0.02481689490377903, 0.058796919882297516, 0.007957844994962215, 0.03724125772714615, 0.018854273483157158, -0.029484573751688004, 0.04348887875676155, -0.012824886478483677, 0.005290218163281679, 0.07933225482702255, 0.022594721987843513, 0.001507564214989543, -0.032826974987983704, 0.005957358051091433, 0.0039410642348229885, -0.25854170322418213, 0.010498013347387314, 0.0070510501973330975, -0.01919984444975853, 0.011258462443947792, -0.01940143294632435, -0.020235298201441765, -0.04305088520050049, -0.013768976554274559, 0.029837893322110176, -0.03369317948818207, -0.03373930603265762, -0.04033765196800232, 0.05436248704791069, 0.014904625713825226, 0.006601907312870026, -0.027732854709029198, -0.0381595715880394, 0.024036912247538567, 0.06028904765844345, 0.00016589561710134149, -0.0631982758641243, 0.012584488838911057, 0.03193952888250351, 0.034688204526901245, 0.012863130308687687, -0.0977739542722702, 0.0376892164349556, -0.03529499098658562, 0.0010319116991013288, -0.04396515339612961, 0.01393932569772005, 0.02062060683965683, -0.02923755906522274, -0.02954569272696972, -0.019637877121567726, 0.016217581927776337, 0.012364180758595467, 0.02261253446340561, 0.029672911390662193, -0.04022001475095749, -0.04864293336868286, 0.009160124696791172, 0.0023247217759490013, 0.07840291410684586, -0.019958073273301125, -0.08253592997789383, 0.00006753348861820996, -0.030739083886146545, 0.0573953315615654, -0.03216753527522087, -0.03371429815888405, -0.01604112796485424, 0.0811905786395073, -0.00655580498278141, -0.026888366788625717, -0.007146884221583605, -0.03442855551838875, -0.03031911328434944, -0.0003324573626741767, -0.020181234925985336, -0.01670190691947937, -0.018129687756299973, -0.032869283109903336, -0.03098423406481743, -0.03904600441455841, -0.07469315826892853, -0.004802616313099861, 0.07137997448444366, 0.032716263085603714, -0.009648851118981838, -0.0168711319565773, -0.007779170759022236, -0.11254391074180603, -0.05430884659290314, -0.02212105691432953, -0.028602952137589455, -0.0011986586032435298, 0.03253968805074692, 0.05810079351067543, -0.03178425878286362, -0.06705138832330704, 0.04914972931146622, 0.015062887221574783, 0.0330672450363636, 0.0005988354096189141, 0.002887077396735549, -0.009303553961217403, -0.017233915627002716, -0.006860446184873581, 0.06129291281104088, 0.0075157564133405685, -0.011535623110830784, -0.03184448927640915, 0.014511297456920147, 0.024768199771642685, 0.04585892707109451, -0.013605928979814053, 0.039005495607852936, 0.013312562368810177, 0.029369762167334557, -0.046560391783714294, 0.0024616026785224676, -0.020001256838440895, -0.01707826554775238, -0.017791109159588814, -0.04674408212304115, 0.02800906077027321, 0.0378543846309185, 0.00384733104147017, -0.01124507375061512, -0.02748849056661129, 0.013275950215756893, -0.045722782611846924, -0.04996651038527489, -0.027755742892622948, -0.017904581502079964, 0.018550358712673187, 0.04299171268939972, -0.0036806962452828884, -0.06542854756116867, -0.011434533633291721, 0.009313741698861122, -0.016783036291599274, -0.07120102643966675, -0.04245968908071518, -0.027247067540884018, -0.011511106975376606, -0.004910990595817566, 0.03013886697590351, 0.006838012021034956, 0.017302149906754494, -0.008102360181510448, -0.04335472732782364, 0.02389373444020748, -0.013745649717748165, 0.01405259408056736, -0.040613286197185516, -0.033337999135255814, -0.013454699888825417, 0.020785288885235786, -0.01609567180275917, 0.05262847989797592, 0.028091711923480034, 0.02943108044564724, 0.008235203102231026, -0.014555245637893677, 0.018420660868287086, 0.002831422258168459, 0.0366070382297039, 0.004040973260998726, -0.033635664731264114, 0.024602284654974937, -0.029568826779723167, -0.0015440871939063072, -0.02529924176633358, 0.024483544752001762, -0.04865146800875664, -0.04063079506158829, -0.011183199472725391, 0.06425020098686218, -0.013051911257207394, -0.03406922519207001, -0.04380301013588905, 0.013277260586619377, 0.05666499212384224, -0.02514515072107315, 0.03852809965610504, -0.031634602695703506, -0.0015936297131702304, -0.0019957011099904776, 0.031620219349861145, -0.027711691334843636, 0.024842519313097, -0.016398422420024872, -0.0023736082948744297, -0.019663581624627113, 0.015325384214520454, 0.009155037812888622, 0.022001508623361588, -0.017321724444627762, -0.021168259903788567, 0.0009181209024973214, 0.032576847821474075, 0.05871478095650673, -0.003161227097734809, 0.01027646940201521, -0.023170003667473793, -0.02893197536468506, -0.003783445805311203, -0.0375160314142704, 0.010700976476073265, -0.024806950241327286, 0.035402074456214905, -0.029319705441594124, -0.07066047191619873, 0.008125914260745049, 0.04696735367178917, -0.015825964510440826, -0.009481456130743027, 0.004860646557062864, -0.0031222752295434475, -0.00837146770209074, -0.0213412344455719, 0.07621784508228302, -0.04071028158068657, 0.0035867379046976566, -0.02052573300898075, 0.01385353971272707, 0.04144752770662308, 0.039889656007289886, -0.04803594574332237, 0.0011041146935895085, 0.0036352004390209913, -0.043968625366687775, -0.013940718956291676, -0.035132136195898056, -0.013086569495499134, 0.0005144347087480128, -0.000024650536943227053, -0.015648016706109047, -0.013846113346517086, 0.012781177647411823, -0.02171943336725235, -0.03615686669945717, 0.029170699417591095, -0.07493548840284348, -0.00809252355247736, 0.032994288951158524, -0.03439148887991905, 0.03898029029369354, -0.046587876975536346, 0.024711018428206444, 0.025548677891492844, -0.0043559325858950615, -0.004553013015538454, -0.06996461004018784, 0.0031582859810441732, -0.05999185889959335, 0.031053030863404274, 0.011928394436836243, -0.014818043448030949, -0.011827567592263222, -0.00502769323065877, -0.0688263401389122, -0.0035919100046157837, 0.0019493106519803405, -0.02712384983897209, -0.00577258225530386, 0.04009236767888069, -0.021177923306822777, 0.057098738849163055, -0.021847441792488098, 0.0066941347904503345, 0.045262474566698074, -0.07082187384366989, -0.018888963386416435, 0.00672954274341464, -0.05353862792253494, 0.007638370618224144, 0.0029268816579133272, 0.01639431342482567, -0.05423219874501228, 0.043043192476034164, 0.05000691115856171, 0.02499893680214882, 0.041451241821050644, -0.0020365410018712282, 0.050137344747781754, -0.004586819559335709, -0.01048465259373188, -0.07356171309947968, 0.01932995393872261, 0.029823381453752518, 0.038699742406606674, -0.027502818033099174, -0.015132848173379898, -0.012149530462920666, 0.058026622980833054, -0.05835490673780441, -0.0046714614145457745, 0.05207343026995659, 0.0063575636595487595, 0.0030715311877429485, -0.0035293542314320803, -0.03941154479980469, 0.04398546740412712, 0.03965160623192787, -0.0181210208684206, -0.0338849313557148, -0.009685611352324486, 0.030527381226420403, -0.0022601340897381306, 0.022677868604660034, -0.006056498736143112, 0.0021156820002943277, 0.03162131458520889, 0.03234213963150978, 0.001106164650991559, 0.060207873582839966, -0.02559061348438263, 0.004720135126262903, 0.0326574370265007, 0.01078597828745842, -0.0052247862331569195, -0.002628094283863902, -0.013203716836869717, -0.07279316335916519, 0.014039900153875351, 0.00960187241435051, -0.01638406328856945, -0.044337544590234756, 0.047506142407655716, -0.006520971655845642, -0.010828333906829357, -0.050219714641571045, -0.00031522157951258123, -0.04826883226633072, -0.003180854953825474, -0.01822720095515251, 0.02200917713344097, -0.045358315110206604, 0.04567819461226463, 0.0028188107535243034, -0.017009541392326355, 0.06694082915782928, -0.004495320376008749, 0.002875150414183736, -0.008741923607885838, 0.08357208222150803, 0.08318060636520386, 0.06314167380332947, -0.024659447371959686, 0.05339070409536362, -0.03882905840873718, -0.05181652307510376, 0.018301382660865784, -0.013553244061768055, 0.00032544435816816986, -0.004788858350366354, 0.05270225554704666, 0.1149878203868866, -0.0062501332722604275, 0.05443694442510605, -0.04760183021426201, -0.02078123576939106, -0.006832505576312542, 0.020915227010846138, 0.014242717996239662, 0.0840659812092781, 0.002733855275437236, 0.02900201827287674, 0.00431438023224473, -0.06759374588727951, 0.02682078257203102, -0.013180913403630257, -0.029403263702988625, 0.003968849778175354, 0.009222537279129028, 0.009575354866683483, 0.01330343633890152, 0.046951647847890854, 0.0719372108578682, -0.04597204551100731, -0.0074203163385391235, -0.004459676332771778, 0.019918939098715782, -0.0010352275567129254, -0.019865630194544792, -0.024165408685803413, -0.0030291525181382895, 0.03482786938548088, 0.002565299393609166, -0.018259353935718536, -0.01448042318224907, -0.02262691594660282, 0.03904033452272415, -0.04710393026471138, -0.0023452825844287872, 0.00837706308811903, -0.028212402015924454, -0.022662868723273277, -0.0367569774389267, -0.04146500676870346, -0.02727174013853073, -0.09150340408086777, -0.0045657227747142315, 0.0043205576948821545, -0.027609504759311676, -0.03158251568675041, -0.021327374503016472, -0.003505873028188944, -0.005193161778151989, 0.07140538096427917, -0.014941058121621609, -0.03231806308031082, 0.0213078111410141, -0.019959352910518646, 0.037930045276880264, 0.022791143506765366, 0.04069118946790695, -0.004631834104657173, -0.005411537364125252, -0.02501964010298252, -0.007669620681554079, 0.03761526197195053, 0.005843238439410925, 0.001813701237551868, -0.08855965733528137, 0.004850178491324186, 0.028436513617634773, 0.030348390340805054, -0.09310780465602875, 0.007577092852443457, 0.010064425878226757, -0.012769467197358608, 0.03223773464560509, -0.02484842576086521, -0.007702333386987448, -0.041760388761758804, -0.004672791808843613, 0.02493900991976261, 0.005730003584176302, 0.056886155158281326, -0.026276299729943275, 0.09167788177728653, -0.008677851408720016, -0.01508673932403326, 0.012073220685124397, 0.0018240148201584816, -0.03479752689599991, 0.02028842829167843, -0.03454114869236946, -0.017925459891557693, 0.010861534625291824, -0.04268564656376839, -0.014224131591618061, 0.0203561894595623, -0.0392361581325531, -0.02781413309276104, 0.01766514591872692, 0.04937494173645973, -0.043374862521886826, 0.08058562129735947, -0.02878718264400959, 0.039854466915130615, 0.0062090931460261345, -0.019188763573765755, 0.005219169892370701, 0.02074786275625229, 0.01798924431204796, 0.012584764510393143, 0.043601419776678085, -0.04991485923528671, -0.02144346944987774, -0.01675891876220703, 0.016961699351668358, 0.04128633067011833, -0.0364447720348835, 0.03896792605519295 ]
[ -0.12025585025548935, -0.010474921204149723, -0.026926660910248756, -0.026140311732888222, 0.03133980929851532, -0.04377484694123268, 0.01888403296470642, 0.03597474470734596, -0.0008648856310173869, -0.013462903909385204, -0.02655407413840294, -0.04445052519440651, -0.022736499086022377, -0.0050387633964419365, 0.07006026059389114, -0.004423703532665968, -0.020460523664951324, -0.023623859509825706, -0.025070123374462128, -0.008338229730725288, 0.019132908433675766, -0.024154914543032646, -0.0535685159265995, -0.03870732709765434, 0.030406011268496513, 0.030959835276007652, 0.031524356454610825, -0.014281269162893295, 0.016345512121915817, -0.1878633201122284, 0.0025491665583103895, -0.001083825365640223, 0.007755838800221682, -0.013384361751377583, -0.03141111880540848, 0.03351026028394699, 0.0025115327443927526, 0.0416102260351181, -0.008039887994527817, 0.07399758696556091, 0.026397382840514183, 0.03002007305622101, -0.026690544560551643, -0.009578533470630646, 0.06609196960926056, -0.00010148822912015021, -0.02333853580057621, -0.029795043170452118, -0.022907493636012077, 0.00923189241439104, -0.06937550008296967, -0.0011159209534525871, -0.008510761894285679, -0.019884832203388214, 0.026790693402290344, 0.03337239474058151, 0.05366964638233185, 0.08293996751308441, 0.025752780959010124, 0.017216797918081284, 0.02091073989868164, -0.031959813088178635, -0.13361649215221405, 0.08846942335367203, -0.001344545278698206, 0.0492338165640831, 0.002923110267147422, -0.03773336112499237, -0.010051135905086994, 0.0790899395942688, 0.0285307839512825, -0.03294447064399719, -0.03652050718665123, 0.03358219936490059, 0.01248389482498169, -0.014524727128446102, -0.012635711580514908, 0.025692155584692955, 0.02097075805068016, -0.02924918942153454, -0.04467274248600006, -0.029866529628634453, -0.01385718584060669, -0.014951049350202084, -0.023427298292517662, 0.02344927377998829, -0.02168879844248295, 0.03363797813653946, 0.07159831374883652, 0.02071339264512062, 0.05454378202557564, -0.000026417144908919, 0.029037145897746086, -0.014787312597036362, -0.10567877441644669, -0.008161862380802631, 0.0014539672993123531, 0.0013616945361718535, -0.04566379263997078, 0.40335553884506226, -0.01459580473601818, -0.007416462991386652, 0.05814199894666672, 0.009307235479354858, -0.007185827940702438, -0.007482627872377634, -0.007422321476042271, -0.038229525089263916, 0.0223472248762846, -0.04205405339598656, -0.018964802846312523, 0.0007629540632478893, 0.045685768127441406, -0.05191667377948761, -0.007392310071736574, 0.018173864111304283, 0.02151809073984623, -0.001788660534657538, 0.015261760912835598, 0.016401024535298347, -0.005828937981277704, -0.013601909391582012, 0.0050159357488155365, 0.046493057161569595, 0.009863214567303658, -0.000551754143089056, 0.02987799048423767, 0.06570836156606674, 0.020387601107358932, 0.040320880711078644, 0.04264701530337334, -0.041914697736501694, -0.059273239225149155, -0.015541499480605125, 0.008193721994757652, 0.01869702711701393, 0.04345693066716194, -0.053226619958877563, 0.006078713573515415, 0.04510176181793213, -0.004585570190101862, -0.02916540578007698, 0.024452632293105125, 0.012113234028220177, -0.046391721814870834, 0.10663089156150818, 0.0030690468847751617, -0.04508615657687187, -0.02868472784757614, -0.0126255564391613, -0.008967272937297821, 0.030448751524090767, 0.005415340419858694, -0.06191202998161316, 0.035359617322683334, 0.02198021486401558, 0.03391627222299576, -0.0061053805984556675, -0.05645446479320526, 0.009281341917812824, -0.057643964886665344, -0.027310406789183617, -0.08005049079656601, 0.04647796228528023, 0.0174007099121809, -0.09696800261735916, -0.029558736830949783, 0.02816883847117424, 0.015170053578913212, -0.073356494307518, -0.0017710367683321238, -0.011787879280745983, -0.05837585777044296, -0.0269613079726696, 0.06907805800437927, -0.009700264781713486, -0.056800056248903275, -0.025222573429346085, 0.04446135088801384, 0.008435843512415886, 0.006636662874370813, 0.007626302074640989, -0.06671653687953949, 0.005031516309827566, -0.035937096923589706, -0.06398932635784149, -0.059357255697250366, 0.000866367423441261, -0.0442221499979496, -0.0013857684098184109, -0.02440248429775238, -0.024588730186223984, -0.049269311130046844, 0.05321209877729416, -0.04245103523135185, -0.05189629644155502, -0.005935921799391508, -0.0023699644953012466, 0.019352389499545097, -0.02020781859755516, 0.0312076173722744, 0.05149051919579506, 0.012409629300236702, 0.03877543658018112, -0.059909138828516006, 0.046563878655433655, 0.07622311264276505, -0.06802553683519363, 0.0514201819896698, 0.05065271630883217, -0.029818342998623848, -0.016231801360845566, 0.011729794554412365, 0.024506986141204834, 0.00040436279959976673, -0.04552079364657402, -0.016401376575231552, 0.02787954732775688, 0.001954188570380211, -0.023713652044534683, -0.04257211089134216, -0.035855408757925034, -0.005869548302143812, -0.36480847001075745, -0.033808887004852295, -0.025514008477330208, -0.02051103301346302, 0.0019077274482697248, -0.06622735410928726, 0.01622721366584301, -0.006132772658020258, -0.021456772461533546, -0.021921562030911446, 0.07858313620090485, -0.011062479577958584, 0.006903249304741621, -0.059990085661411285, -0.005305735394358635, 0.011720377020537853, -0.03345482796430588, -0.062246523797512054, -0.024209486320614815, 0.036795299500226974, 0.009817617945373058, 0.02344605326652527, -0.006839918438345194, -0.06567004323005676, -0.004233179613947868, -0.04467189684510231, 0.09334186464548111, 0.007651721592992544, 0.14485427737236023, -0.037303559482097626, 0.06403476744890213, -0.0012592400889843702, 0.031239505857229233, -0.04710537940263748, 0.006809248123317957, -0.029846632853150368, 0.023097973316907883, 0.016703402623534203, 0.02584969252347946, -0.011994637548923492, 0.006913964170962572, 0.02444085106253624, -0.07304980605840683, -0.02028236724436283, -0.027255434542894363, 0.003975302446633577, -0.030873840674757957, -0.04248296841979027, -0.01215757429599762, 0.09460717439651489, 0.01573762111365795, -0.009845488704741001, 0.022591186687350273, 0.024274637922644615, 0.011010914109647274, -0.017562570050358772, -0.06281141191720963, 0.007436953950673342, 0.0065488009713590145, -0.003328622318804264, 0.05049212649464607, 0.05241831764578819, 0.021846018731594086, -0.05793748423457146, 0.01129357423633337, 0.009823903441429138, 0.032882753759622574, -0.013910633511841297, 0.03767840191721916, -0.047508928924798965, -0.024499433115124702, 0.09883669018745422, -0.01643817126750946, -0.0066388919949531555, 0.034465715289115906, 0.05130679905414581, -0.0007487938273698092, 0.014334162697196007, 0.005917425733059645, -0.001925597433000803, 0.014431838877499104, 0.009961678646504879, 0.028497280552983284, -0.04154312238097191, -0.005443389527499676, -0.008863353170454502, -0.0134916165843606, -0.012706847861409187, 0.04240492358803749, -0.029627909883856773, -0.04972764104604721, 0.0023927956353873014, -0.004105840343981981, -0.05762014910578728, 0.09142869710922241, -0.004322230815887451, -0.27153053879737854, 0.002347748726606369, 0.0679667741060257, 0.07456246763467789, -0.009074684232473373, 0.04911014065146446, 0.040707577019929886, -0.06718989461660385, -0.04074805974960327, 0.010467521846294403, 0.01187711488455534, 0.028597915545105934, 0.016085948795080185, 0.029779214411973953, 0.04564864933490753, -0.029935626313090324, 0.05039098858833313, 0.002296914579346776, 0.008911384269595146, -0.002415160182863474, 0.04607722535729408, 0.004215920343995094, 0.1614561378955841, 0.0007927580736577511, 0.024387869983911514, 0.015888789668679237, 0.011511574499309063, 0.014924125745892525, 0.10456795990467072, -0.012330555357038975, 0.02901114523410797, 0.008405769243836403, 0.0647415965795517, 0.011455840431153774, 0.02099038101732731, -0.07046517729759216, -0.02389100193977356, 0.039562810212373734, 0.014589652419090271, -0.01881418004631996, -0.018812555819749832, 0.021015092730522156, -0.03093569725751877, 0.03947027027606964, 0.08189748972654343, 0.013752712868154049, -0.007521734572947025, -0.03974364325404167, -0.048241615295410156, 0.011722614988684654, -0.04792800545692444, 0.0025432310067117214, 0.014312335290014744, -0.014748773537576199, 0.0006352924392558634, 0.027366427704691887, 0.043373845517635345, -0.010840881615877151, -0.03735136613249779, 0.041051432490348816, 0.004722119774669409, -0.014816183596849442, 0.12318069487810135, 0.040357645601034164, 0.05007220432162285 ]
[ 0.008327778428792953, -0.01161477342247963, -0.002706607338041067, -0.004945157561451197, -0.010179759003221989, -0.00986931286752224, 0.012128897942602634, 0.02093576453626156, -0.005172178614884615, -0.00011425864795455709, -0.031107697635889053, -0.014394204132258892, -0.03739631175994873, -0.010050350800156593, 0.019541095942258835, -0.009132258594036102, 0.005141731817275286, -0.027689233422279358, 0.016097329556941986, -0.020542407408356667, -0.0006221838993951678, 0.04189667850732803, 0.03332348167896271, 0.006309663876891136, -0.025112731382250786, -0.003377820597961545, -0.04233492538332939, 0.015699932351708412, 0.04389067366719246, -0.14299212396144867, -0.017492253333330154, -0.003834449453279376, -0.00748350890353322, 0.004598033614456654, -0.022669048979878426, -0.016888437792658806, 0.004750989843159914, 0.02500583603978157, -0.007421010639518499, 0.017587315291166306, -0.012267237529158592, -0.039326999336481094, -0.020136436447501183, 0.004141383804380894, 0.017440397292375565, -0.006500705610960722, 0.020777033641934395, -0.01302290242165327, 0.0030867105815559626, -0.006962372921407223, -0.03071993961930275, 0.020819682627916336, -0.018750207498669624, -0.02627008780837059, 0.054056745022535324, -0.021008072420954704, 0.011201665736734867, -0.012047830037772655, -0.011978814378380775, -0.003920501098036766, -0.018899638205766678, 0.010833706706762314, -0.036183539777994156, -0.02775685116648674, 0.016018755733966827, 0.0025989909190684557, -0.021195529028773308, 0.003811153583228588, -0.00358791695907712, 0.0007605934515595436, -0.024310246109962463, 0.012105255387723446, -0.0210874006152153, 0.0314461924135685, -0.000907389388885349, 0.018663790076971054, 0.007138397078961134, 0.005315335933119059, 0.008207591250538826, -0.021214334294199944, 0.007567992899566889, 0.007954122498631477, -0.019481392577290535, 0.007737997453659773, -0.021348819136619568, -0.027231935411691666, 0.002166811376810074, 0.010768011212348938, 0.057156216353178024, 0.007778915576636791, -0.052566301077604294, 0.022625327110290527, -0.0022786713670939207, 0.01241941936314106, -0.062514528632164, 0.002456014510244131, -0.004806263837963343, -0.029091808944940567, 0.003105265088379383, 0.8562678694725037, -0.04808817431330681, 0.033002667129039764, 0.037090420722961426, 0.008227955549955368, -0.010486663319170475, 0.002502860501408577, 0.007047970779240131, -0.0060377963818609715, 0.019157303497195244, -0.04497085139155388, 0.025840697810053825, 0.02838393673300743, 0.04460103437304497, -0.014593950472772121, 0.03249840810894966, 0.01545797474682331, 0.005390004254877567, -0.016062067821621895, 0.011629327200353146, 0.0245488490909338, 0.02561018243432045, -0.024774756282567978, 0.029637770727276802, 0.06972905993461609, 0.015978744253516197, -0.1620911806821823, -0.0006001578294672072, -7.373103175172544e-33, 0.04066821187734604, -0.006754615809768438, 0.026061825454235077, 0.03244669735431671, 0.05572376400232315, -0.004397911950945854, 0.05299913510680199, -0.01625891402363777, -0.01193972211331129, -0.04001279175281525, -0.010956358164548874, -0.03838483244180679, -0.03282590210437775, 0.002493437146767974, 0.03170441836118698, -0.01899467222392559, 0.014919151552021503, 0.02977544441819191, -0.022259291261434555, 0.014181545935571194, 0.04465373978018761, 0.052696146070957184, -0.004766991827636957, 0.03193625435233116, 0.03174562007188797, 0.026226747781038284, 0.01932508870959282, -0.009660594165325165, 0.009754735976457596, -0.04000968486070633, -0.021629562601447105, 0.0032769679091870785, -0.010389880277216434, -0.0517447292804718, 0.03822268545627594, -0.03486774116754532, -0.037540312856435776, 0.02415534481406212, -0.0004135196504648775, -0.03672097250819206, -0.02052375301718712, -0.00348759931512177, -0.04362541809678078, -0.007542317267507315, -0.026134783402085304, -0.0383329764008522, -0.028281979262828827, 0.05459294840693474, 0.01628272607922554, 0.01835370622575283, 0.03668830171227455, 0.011405677534639835, -0.016516854986548424, -0.00921191181987524, 0.0004850798868574202, 0.012686293572187424, -0.012838929891586304, 0.00046160820056684315, 0.022951528429985046, 0.018030378967523575, -0.003687725169584155, 0.008010972291231155, -0.011989772319793701, 0.019217897206544876, -0.026284784078598022, -0.012700776569545269, -0.020653506740927696, -0.002308867871761322, 0.03879280760884285, 0.005281337536871433, -0.044488295912742615, 0.025150718167424202, -0.028778912499547005, -0.03192247450351715, 0.02123119682073593, 0.009669489227235317, -0.026643747463822365, -0.04843035712838173, -0.01865566521883011, 0.01531445886939764, 0.012615573592483997, 0.026385003700852394, 0.00825986173003912, 0.005402861628681421, -0.007782067637890577, -0.04677434265613556, -0.006740623153746128, -0.009291643276810646, -0.016667332500219345, 0.01806391216814518, 0.0031711384654045105, 0.014458593912422657, -0.007719401270151138, -0.02831229567527771, -0.0019547196570783854, 7.13120333550461e-33, -0.006546702701598406, 0.011522354558110237, -0.028307031840085983, 0.005703043192625046, -0.025226213037967682, -0.04120015725493431, 0.016045771539211273, 0.01690886728465557, -0.011705909855663776, 0.040672603994607925, -0.03778253495693207, -0.0032348688691854477, -0.011959487572312355, 0.0007094016182236373, 0.06317589432001114, -0.041443321853876114, 0.000608162023127079, -0.015834424644708633, 0.01731639727950096, 0.026206931099295616, 0.023117296397686005, 0.0008835516055114567, 0.03460364416241646, 0.009214406833052635, 0.008955895900726318, 0.07816388458013535, -0.014477033168077469, 0.009597532451152802, -0.0022746389731764793, -0.02960794046521187, 0.011045281775295734, -0.031244518235325813, 0.022749677300453186, -0.05180378630757332, 0.013724388554692268, 0.011335986666381359, 0.017771288752555847, -0.008010025136172771, 0.024422310292720795, -0.02090112306177616, 0.030861305072903633, -0.011519473977386951, 0.01640610210597515, -0.010188535787165165, -0.027538316324353218, 0.004704250022768974, 0.02898470126092434, -0.02427413873374462, 0.02725570648908615, -0.008486560545861721, 0.015342342667281628, -0.01234318409115076, -0.026282092556357384, 0.015097947791218758, 0.006698539014905691, -0.013814895413815975, 0.005853745155036449, -0.010848393663764, -0.016716066747903824, 0.013656467199325562, -0.0025447262451052666, -0.03162810206413269, -0.0009230875293724239, 0.0017627571942284703, -0.010071337223052979, -0.023578928783535957, -0.027400046586990356, -0.028230013325810432, -0.02981354109942913, 0.00054961844580248, -0.015703234821558, -0.033323608338832855, 0.013724546879529953, 0.035469260066747665, -0.001463938970118761, -0.003514443524181843, 0.0011918387608602643, 0.0003517738659866154, -0.008721824735403061, 0.028136897832155228, -0.011818183586001396, -0.028608744964003563, 0.008324679918587208, 0.024167180061340332, -0.024828722700476646, -0.01113132294267416, 0.0015561275649815798, -0.0036208010278642178, 0.026666494086384773, 0.002980221062898636, -0.011253426782786846, -0.006219359580427408, -0.007270809728652239, 0.0024873013608157635, -0.012394032441079617, -1.3127126052836502e-8, -0.03357410803437233, 0.0020759787876158953, -0.02707374282181263, 0.0644943118095398, 0.019435901194810867, -0.007592243608087301, -0.027340417727828026, -0.0023302752524614334, 0.01574389822781086, -0.020747672766447067, 0.006073287222534418, 0.010237010195851326, 0.026749415323138237, 0.0006225123652257025, 0.04823846369981766, -0.04506273195147514, 0.0009242303785867989, -0.029933074489235878, 0.014080053195357323, -0.020617512986063957, -0.005908058490604162, 0.01588400825858116, -0.03090747818350792, 0.0054641226306557655, -0.023791342973709106, -0.01945165917277336, 0.015961216762661934, -0.08906055241823196, 0.021878758445382118, 0.0089490981772542, 0.026095766574144363, -0.010205790400505066, 0.009014232084155083, 0.056103773415088654, -0.02225278876721859, -0.040271829813718796, 0.0121794193983078, 0.04181210324168205, 0.01807970181107521, -0.013708911836147308, -0.004653834737837315, 0.003407448763027787, 0.02396152913570404, -0.02909347042441368, -0.0196230486035347, -0.0039804307743906975, 0.0033308484125882387, 0.023005368188023567, 0.01951042376458645, -0.010173041373491287, -0.0027461720164865255, 0.0395197868347168, 0.00239107315428555, 0.02591169811785221, -0.007825575768947601, 0.0077431583777070045, 0.009713455103337765, -0.030534598976373672, -0.020998038351535797, -0.029992245137691498, 0.019263960421085358, -0.006503512151539326, -0.00823191273957491, -0.008979789912700653 ]
f-the-kestrel-revisited
https://markhneedham.com/blog/2010/05/04/f-the-kestrel-revisited
false
2010-05-04 18:32:28
Coding: Make the mutation obvious
[ "coding" ]
[ "Coding" ]
Although I'm generally quite opposed to coding approaches whereby we mutate objects, sometimes the way a framework is designed seems to make this a preferable option. We came across a situation like this last week when we wanted to hydrate an object with data coming back from the browser. The signature of the action in question looked like this: [source,csharp] ---- public class SomeController { public ActionResult SomeAction(string id, UserData userData) { } ---- We were able to automatically bind most of the values onto 'UserData' except for the 'id' which was coming in from the URL. We could have included the 'id' in a hidden field in the page to get around this problem but that seemed like a more complicated/hacky solution. Instead what we needed to do is the following: [source,csharp] ---- public class SomeController { public ActionResult SomeAction(string id, UserData userData) { userData.Id = id.ParseIntoId(); } ---- 'ParseIntoId' is an extension method which converts a string representation of an 'id' into an object representation. While this method is fine as it is, I find that as code gets added it can sometimes be less than obvious that we've actually mutated 'UserData' so I now prefer to explicitly call that out like so: [source,csharp] ---- public class SomeController { public ActionResult SomeAction(string id, UserData userData) { var userDataWithId = UpdateUserDataWithId(userData, id); } private UserData UpdateUserDataWithId(UserData userData, string id) { userData.Id = id.ParseIntoId(); return userData; } ---- We would then want to use 'userDataWithId' after this point in the function. Of course the original 'UserData' has still been mutated and it doesn't seem worth the extra code that it would take to avoid this so we'll just trust that anyone reading the code would realise that they should use 'userDataWithId' instead!
null
null
[ 0.009378748945891857, -0.033933125436306, -0.0453881211578846, 0.04352424666285515, 0.08520857989788055, -0.002911803312599659, 0.042851921170949936, -0.00602602818980813, 0.007404255215078592, -0.039552588015794754, 0.0071920836344361305, -0.0030066941399127245, -0.07677370309829712, 0.01929064281284809, -0.025840360671281815, 0.06543483585119247, 0.08182687312364578, -0.012824952602386475, 0.02589566446840763, 0.003597267670556903, -0.022804299369454384, 0.07143662124872208, -0.010235736146569252, 0.02677849866449833, 0.03853407874703407, 0.027959318831562996, -0.012422478757798672, -0.01591361314058304, -0.04308118298649788, -0.005664720665663481, 0.019936280325055122, 0.023711957037448883, 0.016638079658150673, -0.002470368053764105, 0.010975970886647701, -0.04218260943889618, -0.029889671131968498, -0.004302057903259993, 0.010768874548375607, 0.021298686042428017, -0.07365693897008896, 0.01062157191336155, -0.018862107768654823, 0.010334248654544353, -0.02738354727625847, -0.03420616686344147, -0.03957214951515198, 0.01468600519001484, -0.05019156634807587, 0.00946419034153223, -0.03676876798272133, 0.033362675458192825, -0.0605335459113121, -0.007847839035093784, 0.038190651684999466, 0.06796633452177048, 0.014804291538894176, -0.05472187697887421, 0.016968920826911926, -0.06276019662618637, 0.02242407016456127, 0.006296939216554165, 0.01782219111919403, 0.010462319478392601, 0.00023614612291567028, -0.006989968940615654, -0.019222643226385117, 0.05427143722772598, -0.02599693089723587, -0.03785426542162895, -0.008565113879740238, 0.0050450158305466175, 0.0019972557201981544, -0.014018555171787739, 0.011775288730859756, -0.03113313391804695, 0.0036163951735943556, 0.04540598392486572, 0.004895135760307312, 0.048700880259275436, 0.004865951836109161, 0.014364105649292469, 0.022033754736185074, 0.0004025912785436958, 0.024281900376081467, -0.02813301421701908, -0.04074639454483986, 0.02617882378399372, -0.019451569765806198, 0.04653521254658699, 0.016628071665763855, -0.02432616800069809, 0.016760287806391716, 0.03085137903690338, 0.0026715174317359924, 0.0003017198760062456, -0.006103223189711571, -0.014860108494758606, 0.0003937891742680222, 0.005866083782166243, -0.04836663603782654, -0.01066266093403101, 0.026555225253105164, -0.010820087976753712, -0.06729801744222641, 0.010724861174821854, -0.05886511877179146, -0.02459808997809887, 0.012753359973430634, 0.0005936516681686044, -0.053862202912569046, 0.020585179328918457, -0.03548412397503853, -0.024155985563993454, -0.06410803645849228, 0.04843221232295036, 0.03327474370598793, 0.0006561596528626978, 0.007474549580365419, 0.04654528573155403, 0.05475796014070511, 0.024207407608628273, -0.012383890338242054, 0.07414114475250244, 0.014592272229492664, 0.029882356524467468, -0.0033799721859395504, 0.05316196382045746, 0.007394399028271437, -0.0894540473818779, 0.0056535727344453335, 0.04791611433029175, -0.012941821478307247, -0.001311478903517127, -0.00514874467626214, -0.035013776272535324, -0.005561424884945154, -0.008649701252579689, 0.031560443341732025, 0.013629037886857986, -0.04757054150104523, -0.04969446361064911, 0.010684873908758163, -0.016130749136209488, 0.020915057510137558, 0.02857443504035473, -0.028044983744621277, -0.011016730219125748, -0.017173239961266518, 0.05721288546919823, 0.03660135716199875, 0.06999532878398895, 0.0723179280757904, -0.038779180496931076, 0.008927746675908566, 0.10182551294565201, -0.013013931922614574, 0.0059305597096681595, 0.007621636148542166, 0.017789535224437714, 0.039163000881671906, 0.010499920696020126, 0.009483501315116882, 0.0185152105987072, 0.03893975540995598, 0.00891181267797947, 0.00441358145326376, 0.04715656861662865, 0.0013674215879291296, -0.035913340747356415, -0.06143331155180931, -0.03477492555975914, 0.040991391986608505, -0.04177480190992355, 0.0011790563585236669, 0.04143249988555908, 0.062249209731817245, -0.001471152063459158, 0.0780329778790474, 0.00827785488218069, -0.07166127860546112, 0.020548349246382713, 0.007496180944144726, -0.0012472337111830711, 0.003245048690587282, 0.02053094655275345, 0.06869418919086456, 0.020071672275662422, 0.02716112695634365, 0.027264084666967392, -0.0661967545747757, -0.05297502875328064, -0.03106866031885147, -0.024445975199341774, 0.06751924753189087, -0.02236783131957054, -0.021397579461336136, 0.10451489686965942, 0.012821131385862827, 0.04774405062198639, 0.003928357735276222, -0.03252297639846802, 0.01718241162598133, -0.0466713085770607, -0.024758674204349518, 0.0036442773416638374, 0.06803146749734879, -0.01601344905793667, -0.033216703683137894, 0.026192305609583855, -0.030164431780576706, 0.0061020501889288425, 0.030029458925127983, -0.0274963416159153, 0.04464844986796379, 0.022383416071534157, 0.018100013956427574, -0.021951710805296898, 0.047382231801748276, -0.07084422558546066, 0.006410262547433376, 0.003595188958570361, -0.032621823251247406, -0.016848985105752945, 0.0033438503742218018, 0.12757474184036255, 0.04849039390683174, -0.029468374326825142, -0.03800235688686371, 0.012892959639430046, 0.03238299861550331, -0.042133770883083344, 0.007359441369771957, -0.01625790260732174, 0.011984915472567081, 0.0021234932355582714, -0.016100365668535233, -0.0001169856041087769, 0.0035104663111269474, -0.042661119252443314, 0.041501425206661224, 0.08485274761915207, -0.022721322253346443, 0.038282737135887146, -0.004907853901386261, -0.028686348348855972, 0.005821017548441887, -0.039998773485422134, -0.05377086251974106, 0.000495003187097609, 0.028352972120046616, -0.004346499685198069, 0.06801334023475647, -0.029745323583483696, 0.001738311955705285, -0.01726345904171467, -0.03185686841607094, -0.006387851666659117, -0.004029148258268833, 0.06267281621694565, -0.00009322755067842081, 0.05633368715643883, -0.03512074425816536, -0.012468201108276844, -0.03183460235595703, -0.057963740080595016, 0.006593216676265001, 0.0038244088646024466, -0.009876975789666176, 0.05141765624284744, 0.014727321453392506, 0.005820941179990768, 0.015973446890711784, 0.004880659747868776, -0.02848646230995655, 0.0062516722828149796, 0.04221898317337036, -0.0015169907128438354, -0.04273424670100212, -0.023865550756454468, -0.03945789486169815, 0.039522551000118256, -0.03444075956940651, -0.06394040584564209, 0.004933616146445274, -0.08492905646562576, 0.051474157720804214, -0.04180102050304413, -0.08181044459342957, 0.010264268144965172, 0.03458835184574127, 0.02482646331191063, -0.020870136097073555, 0.046272508800029755, 0.0798007994890213, 0.008370712399482727, 0.007241268176585436, 0.009304321371018887, 0.016508474946022034, 0.03870219737291336, -0.0028496868908405304, 0.022379273548722267, 0.041583526879549026, -0.02586732991039753, -0.014758234843611717, -0.046042170375585556, 0.020143691450357437, 0.014915747568011284, -0.26414263248443604, 0.025891948491334915, -0.019595908001065254, -0.027277333661913872, 0.021225959062576294, 0.0001032849759212695, 0.020194515585899353, -0.04378533363342285, -0.01369793713092804, 0.04717381298542023, 0.002895694226026535, -0.03558455780148506, -0.03554825484752655, 0.05695236474275589, -0.0030992876272648573, 0.009089470840990543, -0.013362372294068336, -0.03202882781624794, -0.014216681011021137, 0.0454455241560936, -0.009638935327529907, -0.06039079278707504, -0.015915874391794205, 0.05028792843222618, 0.039192210882902145, 0.023185787722468376, -0.06727097928524017, 0.02074994519352913, -0.02487037517130375, -0.021228794008493423, 0.005113695282489061, 0.0006540436879731715, 0.015272567979991436, -0.04556877166032791, -0.03176175430417061, -0.027256019413471222, -0.01396583765745163, 0.05710206925868988, -0.003096291096881032, 0.02159002609550953, -0.03835594654083252, -0.0520414263010025, -0.025814857333898544, -0.005956151522696018, 0.08353786915540695, -0.013364268466830254, -0.06620576232671738, 0.015060230158269405, -0.03814448043704033, 0.06864668428897858, -0.005752139259129763, -0.040857747197151184, -0.0020096013322472572, 0.04456481337547302, -0.0037044882774353027, -0.02030285634100437, 0.03785797208547592, 0.018404854461550713, -0.03727130591869354, -0.02858218364417553, -0.000247328047407791, -0.0719759464263916, -0.0020075675565749407, -0.030037442222237587, -0.022465955466032028, -0.056289222091436386, -0.07029630243778229, -0.03140714392066002, 0.07998988032341003, 0.05758243426680565, -0.01657349243760109, 0.006607326213270426, 0.008778144605457783, -0.11380475014448166, 0.003315660869702697, -0.04580514132976532, -0.029015520587563515, -0.05352165177464485, -0.020699672400951385, 0.041858360171318054, -0.030410850420594215, -0.038525573909282684, 0.013027837499976158, 0.007159373722970486, 0.010003319941461086, 0.0044573345221579075, 0.04604498669505119, -0.025343867018818855, -0.024701567366719246, -0.010931972414255142, 0.07712411880493164, -0.01256725937128067, -0.005832565017044544, -0.030539045110344887, -0.012717069126665592, 0.02846306376159191, 0.029171938076615334, -0.04206564649939537, 0.001651692669838667, 0.007616744842380285, 0.053732965141534805, -0.05034898594021797, 0.036283303052186966, -0.05847562104463577, -0.0045312815345823765, -0.02128521539270878, -0.07907535880804062, 0.037211958318948746, 0.016647053882479668, 0.02004457265138626, -0.0055516622960567474, -0.028061483055353165, -0.013277132995426655, -0.05395682901144028, -0.019589921459555626, -0.026962274685502052, 0.002249688608571887, 0.027688762173056602, -0.005644144490361214, -0.023692745715379715, -0.036357153207063675, 0.037078019231557846, 0.011926638893783092, 0.010195428505539894, -0.07484038919210434, -0.06625871360301971, 0.01004686951637268, -0.0004850093391723931, 0.017496595159173012, 0.004744982346892357, -0.01012823823839426, 0.03749465569853783, -0.017601139843463898, -0.022397207096219063, 0.008459393866360188, 0.025226537138223648, -0.014162608422338963, -0.04795470088720322, -0.029200056567788124, -0.034306298941373825, 0.007915053516626358, -0.0036161509342491627, 0.01760842092335224, 0.005053316708654165, 0.04238804802298546, 0.0017642321763560176, 0.06859807670116425, 0.03817600756883621, -0.0033277664333581924, 0.004892818164080381, 0.00834052637219429, -0.07080576568841934, 0.01490720547735691, -0.028301116079092026, -0.0417075976729393, -0.04697078838944435, 0.022040488198399544, -0.04093637689948082, -0.005165040958672762, -0.03606865927577019, 0.012632075697183609, -0.05531506985425949, -0.03391236811876297, -0.028837941586971283, 0.011812795884907246, 0.0568678081035614, -0.030557909980416298, 0.03156914934515953, -0.02467050962150097, -0.03486241400241852, -0.0035355198197066784, 0.012360779568552971, -0.012853603810071945, 0.02394326962530613, -0.00721941702067852, -0.027923304587602615, -0.02577993832528591, 0.020144140347838402, 0.03268948942422867, 0.01997678168118, 0.01676996797323227, -0.022312581539154053, 0.013964389450848103, -0.019112108275294304, 0.053112346678972244, 0.004128322936594486, 0.023343324661254883, -0.01037712674587965, 0.0018416072707623243, -0.029163289815187454, -0.02676791325211525, -0.016369184479117393, -0.026280663907527924, 0.009463472291827202, -0.0341649167239666, -0.05477586388587952, 0.018205033615231514, 0.0248879361897707, 0.03564845398068428, 0.02784854546189308, 0.008319039829075336, 0.024630052968859673, -0.000891205680090934, 0.008610857650637627, 0.026336515322327614, -0.03345120698213577, -0.0014886314747855067, 0.008516454137861729, 0.0031713549979031086, 0.024677526205778122, 0.025364026427268982, -0.03368082270026207, 0.0017226357012987137, -0.029511408880352974, -0.027259547263383865, -0.013360260054469109, -0.034180648624897, -0.0220508836209774, -0.0030498832929879427, -0.006859512999653816, -0.00588613236322999, -0.02014985866844654, 0.002259428845718503, -0.014697151258587837, -0.01436934806406498, 0.00900558102875948, -0.024008719250559807, -0.007170178461819887, 0.044063374400138855, -0.014225647784769535, 0.026375653222203255, -0.006414887495338917, 0.015194576233625412, 0.011458221822977066, -0.021805983036756516, -0.033506762236356735, -0.06602540612220764, 0.034163814038038254, -0.011370792984962463, 0.054293226450681686, 0.0005304202204570174, -0.030089449137449265, -0.028277534991502762, -0.028586722910404205, -0.029905814677476883, 0.008906397968530655, -0.031042495742440224, -0.013324732892215252, 0.013246330432593822, 0.05627766624093056, 0.036552559584379196, 0.05181353539228439, -0.016098475083708763, -0.00019263855938334018, 0.07089740037918091, -0.07416779547929764, 0.00014106484013609588, -0.010238433256745338, -0.051560115069150925, 0.004557648673653603, 0.03182646632194519, 0.045757949352264404, -0.02749750204384327, 0.0121309207752347, 0.048346903175115585, -0.0027733983006328344, 0.050798751413822174, -0.0038643046282231808, 0.05006209760904312, -0.04047844186425209, 0.01359369233250618, -0.06419690698385239, 0.0317007377743721, 0.053364891558885574, 0.007609997875988483, -0.024366509169340134, -0.029468048363924026, -0.02312670461833477, 0.04202209413051605, -0.05992789939045906, -0.02226240746676922, 0.05384770780801773, 0.017440883442759514, -0.008130311034619808, 0.014870984479784966, -0.05244120955467224, 0.052414897829294205, 0.03850255161523819, -0.03371012583374977, -0.03941355273127556, -0.03719225153326988, 0.04858820140361786, 0.01934693194925785, 0.010301069356501102, -0.04256312549114227, 0.018137212842702866, 0.05143566057085991, 0.012787864543497562, 0.031784966588020325, 0.06381121277809143, -0.02846137247979641, 0.03498050570487976, 0.020317068323493004, -0.019756102934479713, -0.029642174020409584, 0.01688111200928688, 0.022058730944991112, -0.06424444913864136, -0.004598456900566816, 0.01628195494413376, -0.05643124505877495, -0.06763306260108948, 0.0749831423163414, 0.01483195461332798, -0.0062653133645653725, -0.04606088623404503, 0.001191775081679225, -0.021442053839564323, -0.028652120381593704, -0.023882761597633362, 0.02342522144317627, -0.010531912557780743, 0.07005587220191956, 0.006749088875949383, -0.0013236922677606344, 0.07507652044296265, 0.0038761969190090895, 0.0067725456319749355, -0.030180269852280617, 0.08886467665433884, 0.07667887955904007, 0.03979604318737984, -0.02942758984863758, 0.06667112559080124, 0.005640633404254913, -0.05329059436917305, 0.032511644065380096, -0.02298673428595066, -0.006226859055459499, -0.010939227417111397, -0.0036666204687207937, 0.09746755659580231, -0.03054307959973812, 0.04515623301267624, -0.027144841849803925, -0.008038225583732128, -0.0069484771229326725, 0.004137250129133463, 0.013215851038694382, 0.008255739696323872, 0.01972126215696335, -0.0064295073971152306, 0.003471242031082511, -0.031151048839092255, 0.028845161199569702, -0.008546498604118824, -0.01872269995510578, 0.016055995598435402, -0.01011265441775322, 0.013457773253321648, -0.012086405418813229, 0.02860608883202076, 0.0684119462966919, -0.03259192034602165, 0.002619380597025156, -0.014099807478487492, 0.03517560660839081, 0.01187218353152275, -0.022826533764600754, -0.006258364301174879, -0.02905997261404991, 0.0028036709409207106, -0.007407855242490768, 0.0019475987646728754, 0.00804762914776802, -0.019094519317150116, 0.0445006899535656, -0.02088686265051365, 0.020482337102293968, 0.0035956003703176975, -0.0017504080897197127, -0.02065417915582657, -0.04404020681977272, -0.0664953961968422, -0.0322464182972908, -0.07638894766569138, -0.03498876839876175, 0.020955337211489677, -0.013614858500659466, -0.04562301188707352, -0.03105352073907852, -0.022492393851280212, -0.0006577430758625269, 0.04734451323747635, -0.0330473817884922, -0.02146625518798828, 0.023386158049106598, 0.008841869421303272, 0.04685457423329353, 0.032193444669246674, 0.016153616830706596, 0.00038550482713617384, -0.007353639230132103, -0.054653968662023544, -0.032371923327445984, 0.05077601224184036, -0.01153541635721922, -0.0036566213238984346, -0.06517913937568665, 0.05482691898941994, 0.01614362746477127, -0.019862964749336243, -0.07738831639289856, 0.009869209490716457, 0.013001478277146816, -0.013515052385628223, 0.06080503389239311, -0.02456646040081978, -0.034334637224674225, -0.009693289175629616, 0.010884442366659641, 0.03260766714811325, 0.029492657631635666, 0.04632313922047615, -0.0377640426158905, 0.07543747872114182, 0.0420137383043766, -0.04317856952548027, -0.03926268219947815, 0.00395032437518239, 0.012543567456305027, 0.012667440809309483, -0.008417359553277493, -0.03766855597496033, -0.04141239821910858, -0.041210368275642395, 0.010958896018564701, 0.046906568109989166, -0.023068418726325035, -0.026245467364788055, -0.004758339375257492, 0.05917184427380562, -0.0410877987742424, 0.022337626665830612, -0.034842316061258316, 0.03583341836929321, -0.029883278533816338, -0.018194928765296936, 0.0007368131773546338, 0.03273538872599602, -0.022278783842921257, 0.01958599127829075, 0.031100187450647354, -0.028901048004627228, -0.010489852167665958, -0.018570318818092346, 0.031079335138201714, 0.013361296616494656, -0.029230689629912376, 0.02107120491564274 ]
[ -0.07375922054052353, -0.011311658658087254, -0.026721274480223656, -0.05676276981830597, 0.03494754806160927, -0.037783004343509674, 0.048737138509750366, 0.020885111764073372, 0.008211006410419941, 0.015040747821331024, 0.004163864068686962, -0.016240304335951805, 0.004251111298799515, -0.0025005412753671408, 0.06867560744285583, 0.00945562869310379, -0.029513327404856682, -0.022344784811139107, -0.032425764948129654, 0.05427076295018196, 0.03675656020641327, 0.0004978072829544544, -0.028162023052573204, -0.0340096540749073, 0.010642989538609982, 0.032387491315603256, 0.038293782621622086, -0.0355822928249836, 0.008404707536101341, -0.21651488542556763, 0.015594029799103737, -0.010328308679163456, 0.02213299460709095, -0.022267097607254982, 0.01696370169520378, -0.0036947333719581366, 0.03460608050227165, 0.03511174023151398, 0.030812053009867668, 0.08973488211631775, 0.00438320217654109, 0.03518584743142128, -0.05695267766714096, -0.03198569640517235, 0.05029761418700218, 0.017990831285715103, -0.011853033676743507, -0.026862436905503273, -0.015491630882024765, 0.03359977900981903, -0.042083851993083954, 0.013686391524970531, -0.034752074629068375, 0.02517310343682766, 0.006487390957772732, 0.01906907558441162, 0.047447435557842255, 0.04230131581425667, 0.008687607012689114, 0.050191979855298996, 0.010026161558926105, -0.0034868193324655294, -0.09526006877422333, 0.09136034548282623, 0.02464817650616169, 0.030265968292951584, 0.02430843561887741, -0.05004831403493881, 0.016537293791770935, 0.058029234409332275, 0.005614515393972397, -0.007836995646357536, -0.02653692103922367, 0.023849384859204292, 0.012232163920998573, -0.04720567166805267, -0.0060392096638679504, 0.02390201948583126, 0.030806703492999077, -0.006952406372874975, -0.06848593801259995, -0.023723958060145378, 0.03437662869691849, 0.003144570393487811, -0.016866734251379967, 0.011112655512988567, 0.0076760780066251755, -0.016925368458032608, 0.034901391714811325, 0.04368913173675537, 0.032416656613349915, -0.018204934895038605, 0.04059001803398132, 0.02654358372092247, -0.10359689593315125, 0.028605686500668526, -0.045201897621154785, 0.026082340627908707, -0.045543570071458817, 0.42220282554626465, -0.021486740559339523, -0.049246788024902344, 0.024458030238747597, 0.029681481420993805, -0.027563489973545074, 0.02256513573229313, -0.02658718079328537, -0.04189636930823326, 0.019993191584944725, -0.021896792575716972, -0.004120966419577599, 0.004912125878036022, 0.016936978325247765, -0.031439751386642456, 0.010193157009780407, 0.026861438527703285, 0.019134709611535072, 0.008725414052605629, -0.022526323795318604, -0.002817181870341301, 0.007176227401942015, 0.008332422003149986, 0.03160238638520241, 0.036004893481731415, 0.018322622403502464, -0.0233379565179348, 0.021817568689584732, 0.08211058378219604, 0.024510914459824562, 0.027936281636357307, 0.05016125738620758, -0.03168332949280739, -0.0957425981760025, 0.0034935118164867163, 0.0020305460784584284, 0.010172905400395393, 0.029282037168741226, -0.02585410885512829, -0.007882055826485157, 0.03166544809937477, 0.004925025627017021, -0.012711837887763977, 0.001946877921000123, -0.011372269131243229, -0.0645645409822464, 0.13552036881446838, 0.003295440226793289, -0.044209644198417664, -0.008021320216357708, -0.022393137216567993, 0.006667005829513073, 0.03426685929298401, -0.02997361309826374, -0.060407064855098724, -0.013225313276052475, 0.017522145062685013, 0.06154334917664528, -0.04526966065168381, -0.035824116319417953, -0.025709571316838264, -0.03966584801673889, -0.016415465623140335, -0.058551982045173645, 0.03177480027079582, 0.038317203521728516, -0.10185039043426514, -0.035453591495752335, -0.0038661984726786613, 0.010724822990596294, -0.03991284221410751, -0.029943060129880905, 0.016846047714352608, -0.05193258821964264, -0.009564533829689026, 0.04763731360435486, -0.002415045164525509, -0.04097120836377144, -0.001762917498126626, 0.031282879412174225, 0.039523471146821976, -0.015454263426363468, 0.011347874999046326, -0.07666981965303421, -0.02880076877772808, -0.027519460767507553, -0.08592855930328369, -0.03466944396495819, 0.03456300497055054, 0.02400863729417324, -0.011714758351445198, -0.04283064231276512, -0.02431701496243477, -0.07786921411752701, 0.07536335289478302, -0.047282278537750244, -0.025862030684947968, 0.019311342388391495, -0.03809058293700218, 0.02109137922525406, -0.03649235516786575, 0.05134442448616028, 0.049889665096998215, -0.0001623739954084158, 0.03566468507051468, -0.027249058708548546, 0.059147100895643234, 0.018238089978694916, -0.029575567692518234, 0.029035521671175957, 0.030261211097240448, -0.04413804039359093, -0.024657845497131348, -0.02090572752058506, 0.038486458361148834, -0.03386644273996353, -0.052271243184804916, -0.0035244880709797144, 0.01889847032725811, 0.0433075912296772, -0.011571901850402355, -0.04823119193315506, -0.0014414397301152349, 0.055964112281799316, -0.341189980506897, -0.03030053898692131, -0.005963520612567663, -0.025449834764003754, -0.02058735303580761, -0.07378177344799042, 0.02111130580306053, -0.017356613650918007, -0.03561015799641609, -0.004715860355645418, 0.061298832297325134, -0.039865586906671524, 0.002374685602262616, -0.0336984358727932, -0.003981602378189564, 0.022457871586084366, -0.03644685819745064, -0.04093420132994652, -0.03195874020457268, -0.0008696609293110669, -0.014573480002582073, 0.017211774364113808, -0.002414746442809701, -0.05793343111872673, 0.018885264173150063, -0.05925789847970009, 0.11521933227777481, -0.015186477452516556, 0.07888038456439972, -0.018359795212745667, 0.03809916600584984, 0.005539408884942532, -0.018118416890501976, -0.10905399918556213, -0.000025658931917860173, -0.050433170050382614, -0.03944116458296776, 0.0001956916239578277, 0.029342539608478546, -0.018158717080950737, -0.009220335632562637, -0.0043303207494318485, -0.0208106841892004, -0.05099529027938843, 0.019873887300491333, -0.01595032960176468, -0.020984770730137825, -0.04532160982489586, -0.012247518636286259, 0.07773201912641525, 0.03924567252397537, 0.01013045571744442, 0.020741956308484077, 0.04757823422551155, 0.0010960898362100124, -0.013981307856738567, -0.03387976810336113, 0.019514814019203186, 0.011856313794851303, 0.014867075718939304, 0.022704623639583588, 0.03290383890271187, 0.020970845595002174, -0.06350778788328171, 0.004882888402789831, -0.030390046536922455, 0.017728231847286224, -0.016833679750561714, 0.04147696867585182, -0.05178113281726837, -0.042913299053907394, 0.14744718372821808, 0.0009616616298444569, 0.018315866589546204, 0.038672350347042084, 0.061212629079818726, -0.02891453728079796, -0.001909158076159656, -0.01612931862473488, 0.021563973277807236, -0.015539133921265602, 0.05489473417401314, 0.033989280462265015, -0.033626489341259, 0.03502855449914932, 0.0031109268311411142, -0.023070819675922394, -0.0010585738345980644, 0.02167435735464096, -0.04580747336149216, -0.01978926919400692, -0.015381302684545517, -0.04130510985851288, -0.07766427099704742, 0.03470787778496742, -0.05155109614133835, -0.27031296491622925, 0.003957648295909166, 0.06376123428344727, 0.07403863221406937, -0.00354640930891037, 0.040550023317337036, 0.05269787460565567, -0.0534701831638813, -0.0186147540807724, 0.0340738482773304, 0.01070825383067131, 0.011676250956952572, 0.02102304995059967, 0.023242633789777756, 0.04971691220998764, -0.001697016996331513, 0.03296153247356415, 0.007326576858758926, 0.05182991549372673, -0.01573973335325718, 0.038271356374025345, -0.013115772046148777, 0.16524124145507812, 0.027669526636600494, 0.04682081565260887, 0.041768644005060196, 0.014903322793543339, 0.03092855028808117, 0.10353823006153107, 0.02206699177622795, -0.021370721980929375, 0.007651217747479677, 0.10911094397306442, 0.012094996869564056, 0.006889478303492069, -0.09113761782646179, -0.020462175831198692, 0.00820325780659914, 0.018943268805742264, -0.00724152522161603, -0.041813697665929794, 0.016837596893310547, -0.052475448697805405, 0.014278118498623371, 0.08454564213752747, 0.013858778402209282, 0.009504800662398338, -0.028694383800029755, -0.0534244105219841, -0.018759800121188164, -0.029069766402244568, -0.03495682030916214, -0.025101833045482635, -0.016215644776821136, 0.011220244690775871, 0.038364749401807785, 0.003542660502716899, -0.027298247441649437, -0.028395771980285645, 0.015235292725265026, 0.01958729885518551, 0.04604138806462288, 0.08223596215248108, 0.0040261466056108475, -0.00017136202950496227 ]
[ -0.04228854924440384, 0.019172346219420433, -0.027888141572475433, 0.042185455560684204, -0.009784240275621414, 0.014748798683285713, 0.047068968415260315, -0.004682949278503656, -0.00022463280765805393, -0.009508290328085423, 0.004209307488054037, 0.0037137088365852833, 0.011434195563197136, -0.027155619114637375, 0.018766844645142555, 0.027732262387871742, -0.019103189930319786, -0.03710382804274559, -0.005859407130628824, 0.03265439346432686, -0.012259531766176224, 0.039053890854120255, 0.007581629790365696, -0.017512967810034752, -0.01644846610724926, 0.010277856141328812, 0.05283762514591217, -0.06171281635761261, 0.0047644032165408134, -0.10320873558521271, -0.004525795578956604, -0.040915828198194504, -0.0199809018522501, -0.037906795740127563, -0.046099837869405746, 0.004318230785429478, 0.020798735320568085, 0.02786637470126152, 0.002654337789863348, -0.015382926911115646, -0.022687770426273346, 0.010445455089211464, -0.020324353128671646, 0.029355594888329506, -0.011263047344982624, -0.00923861376941204, -0.012498556636273861, -0.012582582421600819, -0.011740262620151043, -0.0011797959450632334, -0.009013982489705086, -0.005776700098067522, -0.007771389093250036, 0.011792352423071861, 0.025046706199645996, -0.03981424495577812, -0.022592686116695404, -0.006825753953307867, 0.0035402742214500904, 0.028305402025580406, 0.022085392847657204, -0.0032149169128388166, 0.01112311240285635, -0.024348368868231773, 0.010798962786793709, -0.0443965345621109, 0.0036344043910503387, -0.024448106065392494, 0.002736350055783987, -0.03238344565033913, -0.01296586450189352, 0.005534332245588303, -0.016396453604102135, 0.013032447546720505, -0.01435136329382658, -0.02512543462216854, 0.015033959411084652, -0.00336756044998765, 0.0015892573865130544, -0.01732962392270565, -0.016727838665246964, 0.01457258965820074, 0.00007350873056566343, 0.029037442058324814, 0.03590713068842888, 0.008845045231282711, -0.01573176123201847, 0.0009263003594242036, -0.006365859415382147, 0.016641048714518547, -0.008040351793169975, 0.019690360873937607, 0.040976013988256454, 0.0013153105974197388, -0.05916949361562729, 0.011258660815656185, -0.019976461306214333, -0.006355843506753445, -0.020568499341607094, 0.8398086428642273, -0.0024977424181997776, 0.05122660472989082, 0.026955503970384598, 0.034543804824352264, 0.03045932948589325, -0.02867540717124939, 0.019891399890184402, -0.0024112912360578775, 0.006867735181003809, 0.021387934684753418, 0.0016792865935713053, 0.02489696815609932, 0.0031597877386957407, 0.04108261689543724, 0.028844671323895454, -0.002229232806712389, 0.022902457043528557, -0.026882071048021317, -0.04026815667748451, -0.002906818175688386, 0.012776932679116726, -0.026977503672242165, -0.00017713819397613406, -0.014256133697926998, 0.002039713319391012, -0.15284773707389832, 0.007765048183500767, -7.985178675541893e-33, 0.06293508410453796, 0.0068190316669642925, 0.010719390586018562, 0.012735966593027115, 0.028100166469812393, -0.013316581025719643, 0.030149003490805626, 0.0007750210352241993, 0.010658085346221924, -0.019477421417832375, -0.003814635332673788, -0.01288268156349659, 0.015018237754702568, -0.019032327458262444, 0.012655300088226795, 0.0002889506286010146, -0.025726737454533577, 0.023960480466485023, -0.0008943103603087366, -0.014800493605434895, -0.005266295280307531, 0.03358164802193642, 0.02676021307706833, -0.03144645690917969, 0.012372612953186035, 0.0064672972075641155, -0.005297392141073942, 0.023909445852041245, -0.007292456924915314, -0.045297134667634964, 0.017514601349830627, 0.012243486940860748, -0.007862561382353306, -0.003625806886702776, 0.01912774331867695, -0.034685470163822174, -0.012997656129300594, -0.008251306600868702, -0.043939314782619476, -0.017573172226548195, -0.010936347767710686, -0.006827355828136206, -0.039945125579833984, 0.009062616154551506, -0.05051475390791893, -0.021776322275400162, 0.025548305362462997, 0.0002034450153587386, 0.0004002507484983653, 0.012428589165210724, -0.00033040373818948865, 0.04792029410600662, 0.011997580528259277, -0.021997753530740738, -0.04919527471065521, 0.007676633540540934, -0.0459393709897995, -0.023221462965011597, 0.003580179763957858, 0.011222421191632748, 0.003246103413403034, -0.03274620324373245, -0.02042871154844761, 0.005677133332937956, -0.03698896989226341, 0.0030434580985456705, -0.0032983857672661543, -0.030183902010321617, 0.04669367894530296, -0.02007719874382019, -0.04802064225077629, 0.0002989490167237818, -0.021847713738679886, -0.01952267996966839, -0.005863249767571688, -0.023095976561307907, -0.004389801062643528, -0.0006174709997139871, 0.007032948546111584, 0.03791831061244011, 0.005647523794323206, -0.010857082903385162, -0.003405794268473983, 0.015215307474136353, -0.009353864938020706, 0.017144756391644478, 0.012111418880522251, 0.008888072334229946, 0.000047320634621428326, 0.006251603830605745, 0.03164796903729439, 0.04549499601125717, -0.022840261459350586, -0.014212338253855705, -0.010761206969618797, 7.358607125774997e-33, 0.029734427109360695, -0.03744524344801903, -0.025021353736519814, 0.009026284329593182, 0.03859824314713478, -0.021876197308301926, 0.0017872878815978765, 0.049435921013355255, -0.05494660884141922, 0.0004822342889383435, -0.007543104235082865, 0.041268013417720795, -0.013703925535082817, 0.031104514375329018, 0.07245844602584839, -0.00860491581261158, 0.020960791036486626, -0.0211164727807045, 0.0020492367912083864, -0.016488032415509224, 0.03748450428247452, 0.023266084492206573, 0.024340370669960976, -0.015405863523483276, -0.035668954253196716, 0.021652208641171455, -0.02932334691286087, -0.0023646296467632055, 0.008644254878163338, -0.0006620516651310027, -0.02791755273938179, 0.005540784914046526, 0.014149833470582962, -0.08021310716867447, -0.06890693306922913, 0.015478886663913727, -0.02250584028661251, 0.010335778817534447, -0.0037466378416866064, 0.01398842316120863, 0.0011040588142350316, -0.011132107116281986, 0.019631467759609222, 0.05915721505880356, 0.02198946103453636, -0.004914263729006052, -0.0012159005273133516, 0.007567968685179949, -0.008683170191943645, 0.048850346356630325, 0.027421237900853157, -0.0021046081092208624, 0.016715597361326218, -0.0060834698379039764, 0.041284918785095215, -0.03625068813562393, 0.0002444243582431227, -0.03995262086391449, -0.03716178983449936, 0.01993572525680065, -0.011658898554742336, 0.03885594755411148, -0.007452650927007198, 0.0014308691024780273, -0.04155457764863968, 0.015972502529621124, -0.005702627822756767, 0.0008378054480999708, 0.009357822127640247, -0.04644517973065376, -0.033761877566576004, -0.057383906096220016, -0.012424911372363567, 0.007672496140003204, 0.04444103315472603, -0.06663000583648682, -0.022695371881127357, -0.0009402856812812388, 0.043964188545942307, 0.017674537375569344, 0.04186191037297249, -0.005805561318993568, 0.05802859738469124, -0.04916822537779808, 0.004756858106702566, -0.017311595380306244, -0.0168148186057806, -0.015461652539670467, -0.003742404282093048, 0.00590182188898325, -0.04567955061793327, 0.025989815592765808, -0.02330481819808483, -0.02189670130610466, -0.009449303150177002, -1.3229880302390029e-8, -0.03499537333846092, 0.0704493448138237, 0.007030230946838856, 0.018000612035393715, 0.01879362389445305, 0.013706952333450317, -0.04799897223711014, -0.024819934740662575, 0.04180462285876274, -0.004270006436854601, 0.01596980169415474, 0.009142675437033176, 0.03620283678174019, -0.025643711909651756, 0.008033198304474354, -0.07183509320020676, -0.03457513824105263, -0.022062059491872787, 0.01928211748600006, 0.02980010025203228, -0.026698585599660873, 0.05200793594121933, -0.04253397881984711, -0.011807868257164955, 0.06863540410995483, -0.009108977392315865, -0.0004545646079350263, -0.06815412640571594, -0.0004581682733260095, 0.03222141042351723, -0.026796836405992508, -0.014386594295501709, -0.003842466278001666, 0.013424281030893326, -0.0009921701857820153, -0.01669812574982643, 0.03580407053232193, -0.016390204429626465, 0.03260403871536255, -0.0029085041023790836, 0.034759536385536194, -0.0013711744686588645, 0.0260110292583704, -0.009960344061255455, -0.014329563826322556, 0.010036574676632881, -0.04424203559756279, 0.03149179369211197, 0.039705872535705566, 0.00440876604989171, 0.020938236266374588, -0.04731171205639839, 0.017231086269021034, 0.005687423516064882, 0.039601705968379974, 0.01129925437271595, -0.003827648004516959, -0.024724766612052917, -0.002979471581056714, 0.011635562404990196, 0.04134051129221916, 0.019173089414834976, -0.04437104985117912, -0.03292226418852806 ]
coding-make-the-mutation-obvious
https://markhneedham.com/blog/2010/05/04/coding-make-the-mutation-obvious
false
2010-05-05 22:34:56
Consistency in the code base and incremental refactoring
[ "coding" ]
[ "Coding", "Incremental Refactoring" ]
I wrote a post a while ago about http://www.markhneedham.com/blog/2009/11/04/consistency-in-the-code-base/[keeping consistency in the code base] where I covered some of the reasons that you might want to rewrite parts of a code base and the potential impact of those changes but an interesting side to this discussion which I didn't cover that much but which seems to play a big role is the role of *incremental refactoring*. In our code base we recently realised that the naming of the fields in some parts of a form don't really make sense and I wanted to start naming new fields with the new naming style and then go back and change the existing ones incrementally when it was a good time to do so. http://uk.linkedin.com/pub/richard-filippi/1/39/b7[Richard] and https://twitter.com/christianralph[Christian] suggested that this wouldn't be such a good approach because it would make the naming issue even more confusing until all the fields had been renamed. In order to avoid this problem we had to either go and change every single field to follow the new naming approach immediately or settle on the old names even though they might not be as descriptive. Since doing the former would involve changing the names of around 15-20 fields across several different objects, in Hibernate mapping code, probably in the database, on HTML forms and in Watin tests we decided not to do that - the project is only for a short amount of time so the investment probably wouldn't be worthwhile. Although in this case it makes sense not to make the improvement it doesn't strike me as being entirely satisfactory that we would need to make this type of change in a big bang fashion. From my experience there are often insights into the code or improvements in the ubiquitous language as time goes on and while consistency is of course an important thing in any code base it's not the only thing. When do we decide that actually gradually moving to a better approach is worth the temporary pain that having this inconsistency will cause?
null
null
[ 0.019566616043448448, 0.0051739830523729324, -0.007046801038086414, 0.02568238601088524, 0.0695018544793129, 0.005913900677114725, 0.03131193295121193, 0.03955792263150215, 0.01672171801328659, -0.032031409442424774, -0.020353853702545166, -0.014380439184606075, -0.06754299253225327, 0.007993029430508614, -0.03711194545030594, 0.07818637043237686, 0.07171732932329178, 0.009550753980875015, 0.021223586052656174, 0.004507377743721008, 0.014089296571910381, 0.0708073079586029, 0.004249924328178167, 0.024247532710433006, 0.02330613136291504, 0.030981851741671562, -0.014226454310119152, -0.0012914635008201003, -0.07566206157207489, -0.023467641323804855, 0.03476041182875633, 0.006585765164345503, 0.00296387099660933, 0.021402280777692795, 0.0099504878744483, -0.027444610372185707, -0.02835213392972946, 0.008271591737866402, 0.007035023998469114, 0.004008653108030558, -0.05558502674102783, 0.037690214812755585, 0.010822782292962074, 0.015129294246435165, -0.04496020823717117, -0.007883967831730843, -0.05533502250909805, 0.015572457574307919, -0.01297686155885458, -0.02364930510520935, -0.06074957549571991, 0.028727713972330093, -0.017905397340655327, -0.004140765871852636, -0.012699903920292854, 0.06351068615913391, 0.03006964549422264, -0.06226223707199097, 0.02264893613755703, -0.0316162109375, -0.009047209285199642, -0.006358274258673191, 0.008466600440442562, 0.052177779376506805, 0.019208377227187157, -0.029619896784424782, -0.024750424548983574, 0.04728105664253235, -0.04247194156050682, -0.0029842897783964872, 0.003054837929084897, 0.008299900218844414, 0.010160532779991627, -0.015031866729259491, 0.0058975061401724815, -0.034945011138916016, -0.01529767457395792, 0.08210351318120956, 0.026777805760502815, 0.036397725343704224, -0.024038707837462425, -0.004531589336693287, 0.008166163228452206, 0.01609281823039055, 0.007130008656531572, -0.04162605106830597, -0.0009654746390879154, -0.021734261885285378, -0.050974342972040176, 0.04201136529445648, 0.02374005876481533, -0.06981495022773743, 0.03842766582965851, 0.03379714488983154, 0.0063327644020318985, -0.008452869020402431, 0.013735543005168438, 0.010955403558909893, 0.011394333094358444, -0.005006219260394573, -0.0423954501748085, -0.02404157817363739, 0.0045781624503433704, -0.017576728016138077, -0.08028441667556763, -0.027374355122447014, -0.03768819943070412, -0.002061903942376375, 0.011364223435521126, 0.004196033347398043, -0.04330255836248398, 0.02591300755739212, -0.007600879296660423, -0.00020860279619228095, -0.06082034483551979, 0.03523474559187889, -0.003030830528587103, -0.03546810522675514, -0.007006421219557524, 0.020046237856149673, 0.043647222220897675, 0.020407255738973618, -0.005383844953030348, 0.08330890536308289, 0.006876955274492502, 0.034022875130176544, -0.011783677153289318, 0.05470810458064079, -0.05508977547287941, -0.07732325047254562, 0.00251840241253376, 0.045237500220537186, -0.027621764689683914, -0.01129633653908968, 0.007358892820775509, -0.03576380014419556, -0.019185924902558327, 0.010798622854053974, 0.04651883244514465, 0.036286499351263046, -0.013330516405403614, -0.05115426331758499, 0.008035200648009777, 0.037525150924921036, 0.029262881726026535, 0.022498812526464462, -0.027042517438530922, -0.026886215433478355, -0.012250925414264202, -0.002533553633838892, 0.0022327727638185024, 0.05059385672211647, 0.025094758719205856, -0.042047981172800064, 0.024638989940285683, 0.09461113810539246, 0.0007753935060463846, 0.009623987600207329, 0.001930323545821011, 0.044525742530822754, 0.035159360617399216, 0.02130398154258728, 0.003312997752800584, 0.03043672814965248, 0.029712889343500137, -0.02030167169868946, 0.01277108769863844, 0.05336769297719002, 0.012977797538042068, 0.010070856660604477, -0.06700475513935089, -0.056563738733530045, 0.06079085171222687, -0.05149951949715614, -0.02449342980980873, 0.04951268434524536, 0.084518201649189, 0.01497400552034378, 0.038311075419187546, 0.006941246334463358, -0.06566929817199707, 0.01860491745173931, -0.0002967983018606901, 0.006333185359835625, 0.01945052295923233, 0.0025092537980526686, 0.057451117783784866, 0.036925118416547775, 0.01274404488503933, 0.04129401221871376, -0.055717624723911285, -0.07299908250570297, -0.010845032520592213, -0.012003281153738499, 0.073610320687294, -0.03482569381594658, 0.010954556986689568, 0.09280779212713242, 0.011909643188118935, 0.06024228408932686, 0.04230119660496712, 0.010152970440685749, 0.003079374320805073, -0.053250692784786224, -0.02599884197115898, 0.04034130647778511, 0.039625395089387894, -0.014277156442403793, -0.04411360248923302, 0.016306672245264053, -0.0030091945081949234, -0.009476659819483757, 0.04481487721204758, -0.01328237447887659, 0.01560953538864851, 0.024629060178995132, 0.045656997710466385, -0.020197546109557152, 0.05246606096625328, -0.052007533609867096, 0.01587730459868908, 0.005275871604681015, -0.0312628373503685, 0.005933597218245268, 0.0039912499487400055, 0.10997293144464493, 0.053852301090955734, -0.04800519719719887, -0.05526039004325867, 0.02284000627696514, 0.044491324573755264, -0.0386684350669384, 0.01044373493641615, -0.014550058171153069, 0.012032282538712025, -0.022354915738105774, -0.046137914061546326, -0.042682286351919174, 0.00023946161672938615, -0.021996740251779556, 0.004511428996920586, 0.0758187398314476, -0.03436466306447983, 0.054865334182977676, -0.0213935449719429, -0.002324041910469532, -0.02489055134356022, -0.03348907455801964, -0.053355492651462555, 0.026111651211977005, 0.003721032990142703, -0.01591971330344677, 0.05138268694281578, -0.029469577595591545, -0.027026204392313957, -0.030805353075265884, -0.033299658447504044, 0.017142141237854958, 0.019140584394335747, 0.0802227035164833, -0.011712492443621159, 0.067881278693676, 0.010951255448162556, -0.0001134486956289038, -0.015462811104953289, -0.05684027448296547, -0.015373709611594677, -0.03372212499380112, -0.0047463709488511086, 0.027900243178009987, -0.014441343955695629, 0.03416864573955536, 0.004035482183098793, 0.003441689070314169, -0.008081999607384205, -0.008784744888544083, 0.025589777156710625, -0.02030571922659874, -0.012742556631565094, -0.020006457343697548, -0.054405249655246735, 0.034646742045879364, -0.047963351011276245, -0.04326178878545761, 0.0022212788462638855, -0.05608971044421196, 0.05305441841483116, -0.08606085926294327, -0.04832720384001732, 0.014165597036480904, 0.0214371457695961, 0.03715137019753456, -0.014377406798303127, 0.03151558339595795, 0.08027985692024231, -0.00901051051914692, 0.0018090717494487762, -0.01801461912691593, -0.0034914175048470497, 0.04168178141117096, -0.002821071073412895, -0.0015617148019373417, 0.030284322798252106, 0.006726343650370836, -0.002196117304265499, -0.023750511929392815, 0.016814757138490677, -0.004206249024719, -0.27587905526161194, 0.03871283307671547, -0.003258567303419113, -0.07176730781793594, 0.020714953541755676, 0.00997366476804018, 0.019195210188627243, -0.048026882112026215, -0.027261951938271523, 0.01512331236153841, -0.03642721846699715, -0.05038697272539139, -0.008979861624538898, 0.05719728022813797, -0.017829351127147675, 0.03843624144792557, 0.018651118502020836, -0.02660679630935192, -0.01837271638214588, 0.05370825156569481, -0.009660121984779835, -0.07544257491827011, -0.003621003357693553, 0.030786877498030663, 0.029113998636603355, 0.06071650981903076, -0.09380742162466049, 0.04761505126953125, -0.05096917599439621, 0.007409156300127506, -0.0020829204004257917, 0.006518200505524874, 0.0013528099516406655, -0.019411589950323105, -0.03140028566122055, -0.005890053231269121, 0.00827072560787201, 0.023556135594844818, -0.0025879351887851954, 0.004122761078178883, -0.03747037798166275, -0.03548064082860947, -0.021814733743667603, 0.017705753445625305, 0.07393171638250351, -0.013373552821576595, -0.0900786966085434, 0.005113163962960243, -0.037147365510463715, 0.06388096511363983, -0.012047779746353626, -0.04199586063623428, -0.008469018153846264, 0.03658082336187363, 0.004107238724827766, -0.03306027501821518, 0.0015564189525321126, -0.01651029847562313, -0.024275554344058037, -0.039636317640542984, 0.0011500633554533124, -0.044214870780706406, -0.0008035296341404319, -0.029731012880802155, 0.0220729298889637, -0.06258615106344223, -0.06961362808942795, 0.006037885323166847, 0.08104251325130463, 0.03745122253894806, -0.029284825548529625, 0.03394210711121559, 0.006460950709879398, -0.11439844965934753, -0.004477853421121836, -0.032288603484630585, -0.013880005106329918, -0.03170479089021683, -0.009219685569405556, 0.04395952820777893, -0.016663670539855957, -0.047883596271276474, 0.005452456884086132, 0.022821031510829926, 0.016607342287898064, -0.004138416610658169, 0.03879473730921745, 0.03203914314508438, -0.027222730219364166, 0.0016276056412607431, 0.06887480616569519, -0.008609932847321033, -0.00832052156329155, -0.03331563249230385, 0.016059475019574165, 0.03449447080492973, 0.024754974991083145, -0.027873273938894272, 0.00882352702319622, 0.038994379341602325, 0.03469748795032501, -0.060547903180122375, 0.054507866501808167, -0.03704206272959709, -0.002715479349717498, -0.005706840194761753, -0.05459504947066307, 0.008077580481767654, 0.025985421612858772, 0.046069227159023285, -0.02920367568731308, -0.03896106034517288, 0.006997491233050823, -0.053341638296842575, -0.04905807971954346, -0.009520857594907284, 0.005184635054320097, 0.03156718611717224, -0.026692837476730347, -0.018043827265501022, -0.03308514505624771, 0.03505184128880501, 0.004953046794980764, 0.005415576975792646, -0.05788106098771095, -0.03493679314851761, -0.033953867852687836, -0.013101786375045776, 0.024277467280626297, 0.01104755513370037, -0.01364772766828537, 0.036916334182024, 0.001563138561323285, -0.03052198328077793, 0.01814265549182892, 0.008387619629502296, -0.018399616703391075, -0.021389808505773544, -0.011451654136180878, -0.016531463712453842, 0.008654987439513206, 0.02551424317061901, 0.013579613529145718, 0.03984364867210388, 0.036961913108825684, 0.007139952853322029, 0.056154847145080566, -0.014788764528930187, 0.035914018750190735, 0.021321000531315804, 0.015319321304559708, -0.08004690706729889, 0.013080015778541565, -0.05558829382061958, -0.04139816388487816, -0.02748798578977585, 0.035944901406764984, -0.02097754366695881, -0.026487106457352638, -0.010066963732242584, -0.00227341172285378, -0.05585399642586708, -0.04027651995420456, -0.013129944913089275, 0.011207078583538532, 0.056858763098716736, -0.015033306553959846, 0.0419221930205822, -0.02320381999015808, -0.009771214798092842, -0.003126938361674547, 0.016564223915338516, -0.07435248792171478, 0.004903039894998074, 0.03333953768014908, -0.006909667979925871, -0.010247304104268551, -0.005798385478556156, 0.04491141438484192, 0.023721130564808846, -0.009495778009295464, 0.003769969567656517, -0.004235620144754648, 0.025291098281741142, 0.050199538469314575, -0.0059202671982347965, 0.01781134121119976, 0.0011597041739150882, 0.001316499779932201, -0.028952589258551598, -0.02506689541041851, 0.002831878839060664, 0.014065369963645935, 0.03208005800843239, -0.03427768498659134, -0.06021411716938019, 0.03905211761593819, 0.01636105589568615, 0.020191263407468796, 0.02507985197007656, -0.0016861193580552936, 0.0064707365818321705, -0.02231736294925213, 0.020966198295354843, 0.06857001781463623, -0.045863278210163116, 0.007868814282119274, -0.027354057878255844, -0.008156764321029186, 0.004443997051566839, 0.024481836706399918, -0.043957315385341644, -0.04361222684383392, -0.030535753816366196, 0.016275493428111076, -0.037726953625679016, -0.03034648485481739, 0.0017969593172892928, 0.009533710777759552, -0.007219881284981966, -0.014424378052353859, -0.015114611014723778, 0.03279874846339226, 0.0014254075940698385, -0.03051651082932949, 0.0072115459479391575, -0.005490342620760202, 0.04323706403374672, 0.01813781075179577, -0.02706969901919365, 0.03138994798064232, -0.03689705207943916, 0.011344576254487038, 0.01990610547363758, -0.02514035813510418, -0.02855578064918518, -0.04109649360179901, 0.021832585334777832, -0.0011138528352603316, 0.05023106932640076, -0.0037794443778693676, -0.03312179073691368, -0.021506214514374733, -0.022600069642066956, -0.04709644243121147, -0.0020084918942302465, -0.029509471729397774, -0.02192755602300167, 0.012065891176462173, 0.0518684983253479, 0.02305470034480095, 0.03520656004548073, -0.031586844474077225, -0.006098350044339895, 0.04225652292370796, -0.0678846687078476, -0.019526617601513863, -0.06953940540552139, -0.07257463037967682, 0.0007552579627372324, 0.026620250195264816, 0.01804930530488491, -0.0428025983273983, 0.0273048747330904, 0.03457358106970787, 0.019362855702638626, 0.024304738268256187, -0.01288354117423296, 0.04170338064432144, -0.06229592114686966, -0.004421725403517485, -0.07318530231714249, 0.012149251997470856, 0.02650590054690838, 0.03065534494817257, -0.009014926850795746, -0.006804439704865217, -0.0445072203874588, 0.03431883081793785, -0.0676884651184082, -0.027663439512252808, 0.036680977791547775, 0.005103364586830139, 0.022831229493021965, -0.000451974687166512, -0.0804705023765564, 0.011494276113808155, 0.02002069167792797, -0.03049473837018013, -0.03192247450351715, -0.03679507225751877, 0.06405972689390182, 0.003674850333482027, 0.03274490311741829, -0.031040145084261894, -0.00041421776404604316, 0.053367730230093, 0.020800545811653137, 0.007124082185328007, 0.036496471613645554, -0.008154664188623428, 0.05596229434013367, 0.04825673997402191, 0.010354605503380299, -0.00695424247533083, 0.007726223208010197, 0.0012681566877290606, -0.06133148819208145, 0.006123202852904797, 0.03766072541475296, -0.03996386006474495, -0.041277457028627396, 0.07109294831752777, 0.0271427184343338, -0.017150158062577248, -0.040136124938726425, 0.006067822687327862, -0.05660879984498024, -0.010824332945048809, -0.024256549775600433, -0.008845486678183079, -0.05904238671064377, 0.0537320114672184, 0.01855050027370453, -0.021221168339252472, 0.06590414047241211, -0.0024251549039036036, -0.01348199788480997, -0.017909927293658257, 0.07194502651691437, 0.08824571967124939, 0.05426770821213722, -0.0070412736386060715, 0.05409519374370575, -0.015418236143887043, -0.03276708349585533, 0.030309118330478668, 0.007791751530021429, -0.033625341951847076, -0.021529052406549454, 0.012818152084946632, 0.05679021403193474, -0.021483344957232475, 0.06790966540575027, -0.016457097604870796, -0.010816283524036407, -0.00030699255876243114, 0.01587533764541149, 0.022998394444584846, 0.07763054966926575, 0.010974680073559284, 0.009869148023426533, -0.0290884580463171, -0.05181029438972473, 0.014301118440926075, -0.02052418142557144, -0.021773433312773705, 0.026321247220039368, -0.0020588256884366274, 0.018874794244766235, -0.002073212293908, 0.03317902237176895, 0.07608111202716827, -0.036206863820552826, 0.006863878108561039, 0.004874785430729389, 0.029232895001769066, 0.012985100969672203, 0.0315009206533432, -0.020750656723976135, -0.019543813541531563, 0.008601965382695198, -0.03813916817307472, -0.03154207393527031, -0.005757076200097799, -0.016601430252194405, 0.061140283942222595, -0.014469634741544724, -0.013857905752956867, 0.03361281752586365, 0.016509881243109703, -0.05012327432632446, -0.06365478038787842, -0.04432619735598564, -0.0376579649746418, -0.07582899183034897, -0.009401259012520313, 0.03278721868991852, -0.022055193781852722, -0.024732694029808044, 0.0030044473242014647, -0.04301037639379501, -0.027101077139377594, 0.048870380967855453, -0.05266900733113289, -0.029952261596918106, 0.021792255342006683, 0.02111891098320484, 0.043990932404994965, 0.03473496064543724, 0.0372699536383152, -0.016522083431482315, -4.911979800681365e-8, -0.01005985401570797, -0.011628818698227406, 0.029912924394011497, 0.0074184550903737545, -0.0035169413313269615, -0.0811237171292305, 0.026103073731064796, 0.02144625410437584, 0.0037055565044283867, -0.06052986532449722, 0.03884362056851387, 0.003028258215636015, -0.03139150142669678, 0.038835424929857254, -0.024403244256973267, -0.009194673039019108, -0.00506387697532773, -0.000376435142243281, -0.003261088626459241, 0.01526703778654337, 0.04167069494724274, -0.004787234123796225, 0.081299789249897, 0.03690451383590698, -0.029414605349302292, -0.03915444388985634, -0.021129503846168518, 0.004342655651271343, -0.015672417357563972, -0.00461973762139678, -0.0571044459939003, -0.042483218014240265, -0.06075797230005264, -0.0204545296728611, 0.017194146290421486, -0.0203721784055233, -0.03165998309850693, 0.018571391701698303, 0.040045954287052155, -0.052136871963739395, 0.0209959726780653, -0.0301356241106987, 0.051920630037784576, -0.02076547034084797, -0.0036622826009988785, -0.021659599617123604, -0.007990950718522072, 0.004415285773575306, 0.011940729804337025, 0.010942025110125542, -0.047392670065164566, 0.020723676308989525, -0.015353403054177761, 0.03461019694805145, 0.026555510237812996, 0.01741241104900837, -0.000008349356903636362 ]
[ -0.10280454158782959, -0.03322228416800499, -0.035855457186698914, -0.019603390246629715, 0.027490265667438507, -0.029772596433758736, -0.05600761994719505, -0.0062957084737718105, 0.006793516222387552, 0.00012091184180462733, 0.01411567535251379, -0.021981634199619293, -0.0029325452633202076, 0.004320298321545124, 0.08400966972112656, 0.0322570726275444, -0.016726290807127953, -0.036047257483005524, -0.00302144861780107, -0.005230908282101154, 0.025349287316203117, -0.017779674381017685, -0.0010670912452042103, 0.013007796369493008, 0.01732543669641018, 0.047591689974069595, 0.0003365463635418564, -0.017176998779177666, 0.012033656239509583, -0.21645623445510864, -0.00397880095988512, 0.040320247411727905, 0.032146669924259186, -0.022097084671258926, 0.010774994269013405, 0.04478676617145538, 0.0015562726184725761, 0.05155269056558609, -0.0014169266214594245, 0.07332734018564224, 0.022434061393141747, 0.04999540001153946, -0.04797171428799629, -0.05535869300365448, -0.0038319288287311792, 0.013239944353699684, 0.018014978617429733, -0.03392777964472771, -0.03126640245318413, 0.046069204807281494, -0.04777044057846069, -0.040966928005218506, -0.03352746739983559, 0.006441819481551647, -0.003048730082809925, 0.06055071949958801, 0.04494594410061836, 0.08914865553379059, 0.0002923347055912018, -0.008008399046957493, 0.038170166313648224, -0.011694482527673244, -0.12738539278507233, 0.09919581562280655, 0.022507276386022568, 0.03897226229310036, -0.007019275799393654, -0.04231555759906769, -0.007253820542246103, 0.09788230061531067, 0.001736537436954677, -0.009576752781867981, -0.019474536180496216, 0.04756464809179306, 0.02512521669268608, -0.01803617924451828, -0.010233704000711441, 0.03734685480594635, 0.03125520423054695, -0.05564895272254944, -0.041763242334127426, -0.020635539665818214, -0.016833418980240822, -0.023729603737592697, -0.053829941898584366, 0.004814841318875551, -0.011298604309558868, 0.028238875791430473, 0.01961188204586506, 0.018871689215302467, 0.06149251013994217, -0.009930348955094814, 0.07623326033353806, -0.0012429546331986785, -0.08421190828084946, 0.012823301367461681, -0.03288690000772476, 0.02733764611184597, -0.06129998713731766, 0.397052139043808, -0.04291645437479019, -0.02646474726498127, 0.0485253743827343, 0.0434841513633728, -0.014886998571455479, -0.004091818816959858, -0.006338484585285187, -0.040550194680690765, 0.031859248876571655, -0.01524409931153059, 0.00741902319714427, 0.0015879139536991715, 0.04720083624124527, -0.054002176970243454, -0.02868780493736267, 0.03385341912508011, 0.04262878745794296, 0.023343218490481377, -0.004738259129226208, 0.005576325114816427, -0.004966568201780319, 0.02186308242380619, 0.017987944185733795, 0.026241132989525795, -0.0030035553500056267, 0.006568350363522768, -0.00296941795386374, 0.04280519858002663, 0.051631487905979156, 0.013222289271652699, 0.06118246540427208, -0.0349324494600296, -0.052604928612709045, -0.02008049376308918, 0.008075650781393051, 0.025567131116986275, 0.021955415606498718, -0.034864213317632675, 0.01824338361620903, 0.026744605973362923, -0.007977791130542755, -0.024892441928386688, 0.0234563946723938, -0.003829648019745946, -0.06851477175951004, 0.13490380346775055, -0.013923916965723038, -0.01780635677278042, -0.010218888521194458, -0.025266965851187706, -0.0265883207321167, 0.018167708069086075, -0.00039388149161823094, -0.07920857518911362, 0.00883135199546814, 0.027315778657794, 0.08056575059890747, -0.0049084248021245, -0.03708474710583687, -0.04250163957476616, 0.003975188359618187, -0.020230893045663834, -0.05302269384264946, 0.06366807967424393, 0.04985916242003441, -0.08134973049163818, -0.03666828200221062, -0.004172161687165499, 0.04786413535475731, -0.04081505909562111, -0.010121097788214684, 0.036832768470048904, 0.03012043796479702, -0.017656028270721436, 0.07508231699466705, -0.009728108532726765, -0.03595827519893646, -0.02014446258544922, 0.06414881348609924, 0.021812276914715767, 0.050388675183057785, 0.04235710948705673, -0.05039248988032341, -0.009548477828502655, -0.04241016507148743, -0.11648911982774734, -0.06894461065530777, 0.02732878550887108, -0.0076791346073150635, -0.016854576766490936, -0.034595705568790436, -0.02237110212445259, -0.04344325512647629, 0.1100035011768341, -0.009585837833583355, -0.04181109741330147, 0.013257338665425777, 0.02572784572839737, 0.026261646300554276, -0.03527158498764038, -0.033362261950969696, 0.07533269375562668, -0.01043457631021738, 0.017566466704010963, -0.04995244741439819, 0.04376387223601341, 0.054101839661598206, -0.054934654384851456, 0.07157538086175919, 0.046444471925497055, -0.06135253980755806, -0.011411293409764767, -0.002267917850986123, 0.020327657461166382, -0.0013378412695601583, -0.0028582699596881866, -0.016790853813290596, 0.030031858012080193, 0.022512422874569893, 0.017035307362675667, -0.012408521957695484, -0.01353857945650816, 0.007791490759700537, -0.34857502579689026, -0.04427962005138397, -0.00889565795660019, -0.04104514792561531, -0.0008179486612789333, -0.06635931879281998, 0.017189130187034607, -0.021844666451215744, -0.026460114866495132, -0.01644640974700451, 0.04187765344977379, -0.00984184816479683, -0.026131605729460716, -0.06936568021774292, -0.001291282125748694, 0.00520787388086319, -0.01740032061934471, -0.030553627759218216, -0.049919575452804565, -0.01364106498658657, 0.0064226300455629826, -0.0014968692557886243, 0.004066190216690302, -0.08398482948541641, 0.011671120300889015, -0.03948730230331421, 0.07885708659887314, -0.03850869461894035, 0.08568083494901657, -0.025648673996329308, 0.05062330141663551, -0.027013259008526802, 0.01920420676469803, -0.11178542673587799, 0.02339204028248787, -0.0048909420147538185, -0.03297385945916176, -0.008497578091919422, 0.015014472417533398, -0.04467562586069107, -0.02239116095006466, -0.019015925005078316, -0.06924498826265335, -0.06119207292795181, -0.052256666123867035, 0.0373908132314682, -0.06025274097919464, -0.062306616455316544, -0.004988234490156174, 0.06792306154966354, -0.002154703252017498, 0.008749808184802532, -0.002685434650629759, 0.013277550227940083, 0.0015986490761861205, -0.02083830162882805, -0.06777878850698471, 0.022155817598104477, 0.02784537896513939, -0.007143836002796888, 0.019424816593527794, 0.09269502013921738, 0.02371508814394474, -0.03866482153534889, 0.019774312153458595, 0.023319106549024582, -0.014904205687344074, -0.009097998030483723, 0.048125579953193665, -0.04654782637953758, -0.03233809024095535, 0.09454517066478729, -0.022669920697808266, -0.0440988652408123, 0.03792601078748703, 0.030147938057780266, -0.04255951941013336, 0.030696287751197815, 0.006543611641973257, -0.01779157668352127, 0.007430681958794594, -0.02583121508359909, 0.062305718660354614, -0.014476768672466278, 0.004146619699895382, 0.0391719713807106, -0.016007820144295692, -0.026812512427568436, 0.04290146753191948, -0.008127477951347828, -0.02808442898094654, 0.014967752620577812, -0.028548771515488625, -0.03689384460449219, 0.08144954591989517, -0.03929043561220169, -0.21566146612167358, 0.02013653889298439, 0.062235549092292786, 0.06659604609012604, -0.005019380245357752, 0.05931020900607109, 0.02066122181713581, -0.042544808238744736, 0.010124711319804192, -0.007368655875325203, 0.027967695146799088, 0.026677727699279785, 0.024125903844833374, -0.028878752142190933, 0.04142540320754051, 0.004432200454175472, 0.04614401236176491, -0.011998648755252361, 0.02604309283196926, -0.039557259529829025, 0.011937937699258327, -0.01554848626255989, 0.1759437620639801, -0.0001652361243031919, 0.04426688328385353, -0.0026885790284723043, 0.008156646974384785, 0.05325700342655182, 0.04971238598227501, 0.02685418166220188, -0.017129909247159958, 0.008216314017772675, 0.0613415464758873, 0.021339301019906998, 0.023620612919330597, -0.082294762134552, -0.014941424131393433, 0.001600945251993835, 0.007034999318420887, -0.017161410301923752, 0.011587917804718018, 0.015528392046689987, -0.06599046289920807, 0.022236056625843048, 0.08415983617305756, 0.007619482930749655, -0.003307193284854293, 0.00290445308201015, -0.05851864442229271, -0.001405009301379323, -0.050498440861701965, -0.03751593828201294, -0.00986913125962019, 0.011864902451634407, -0.024319060146808624, 0.055673256516456604, 0.019367432221770287, -0.029302041977643967, -0.03718869388103485, 0.029864227399230003, 0.02492397092282772, -0.019137438386678696, 0.11926017701625824, 0.013904722407460213, 0.013019444420933723 ]
[ -0.01708558015525341, 0.012324455194175243, -0.0052535077556967735, -0.0019237557426095009, -0.020791195333003998, -0.0015598252648487687, -0.015238048508763313, 0.008417084813117981, -0.004080323036760092, -0.016436785459518433, -0.03242761269211769, 0.025457387790083885, -0.004450581036508083, -0.03165771812200546, 0.010546238161623478, 0.005252097733318806, -0.045189447700977325, 0.010717697441577911, 0.02797611802816391, 0.002890343079343438, -0.051242318004369736, 0.013994867913424969, -0.02021700330078602, 0.009790310636162758, -0.0061600604094564915, 0.041965994983911514, -0.022450802847743034, 0.005242359358817339, 0.01521581131964922, -0.1402159333229065, -0.043809663504362106, -0.006980872713029385, 0.01320103369653225, 0.018646826967597008, -0.020932910963892937, 0.010484255850315094, -0.003995173145085573, 0.05406234785914421, 0.006669085938483477, -0.0018850375199690461, -0.030837222933769226, -0.03592950850725174, 0.0011061037657782435, 0.01893121562898159, 0.00793212279677391, -0.002736032707616687, -0.007147748954594135, -0.0363755002617836, -0.015169363468885422, -0.02760663814842701, -0.03233317658305168, -0.014759188517928123, 0.010921267792582512, 0.010089384391903877, -0.006762955337762833, 0.0004348699003458023, -0.006427843123674393, -0.017200181260704994, -0.01596362330019474, -0.008167961612343788, -0.014163652434945107, -0.008784368634223938, -0.025666866451501846, -0.028995515778660774, -0.02720118872821331, -0.0011513757053762674, 0.003407720010727644, 0.009831911884248257, 0.0011803187662735581, -0.0040138838812708855, 0.01587776653468609, 0.027568664401769638, -0.016466312110424042, -0.01161225140094757, -0.024754812940955162, 0.03574899584054947, -0.004931554198265076, -0.008903040550649166, 0.02974604070186615, -0.03151065856218338, -0.02794363722205162, 0.013902589678764343, 0.02950316295027733, -0.02155383862555027, 0.013264257460832596, -0.02651340700685978, 0.007704996969550848, -0.008577321656048298, 0.0007564069819636643, 0.005157297942787409, -0.01703731156885624, -0.0009328009327873588, -0.017107831314206123, 0.027322065085172653, -0.1013486236333847, -0.00250999815762043, -0.010385717265307903, -0.021329492330551147, -0.0023558293469250202, 0.8655855655670166, 0.0044425842352211475, 0.023723363876342773, 0.02201816439628601, 0.025445954874157906, 0.012808755040168762, -0.021663853898644447, 0.0005772564327344298, 0.015036988072097301, 0.0020228398498147726, -0.0560079924762249, 0.023968704044818878, 0.006325985305011272, -0.0006844516610726714, 0.0029152564238756895, 0.021454578265547752, 0.05621204152703285, -0.005749222822487354, -0.018862873315811157, -0.01355748251080513, 0.022311106324195862, 0.027253104373812675, -0.02150844782590866, 0.0015656547620892525, 0.022332189604640007, -0.012268027290701866, -0.1838643103837967, 0.0220370851457119, -8.267057812765262e-33, 0.06329889595508575, 0.03681762516498566, 0.0031293989159166813, 0.005019442178308964, -0.011074480600655079, -0.007846762426197529, 0.01982543058693409, 0.05307231843471527, 0.00010663984721759334, -0.039371129125356674, 0.01705216057598591, -0.018659422174096107, 0.01656690612435341, -0.03756227344274521, 0.04210801422595978, -0.05114568769931793, -0.012033236213028431, 0.023811351507902145, -0.0051750666461884975, 0.0035939011722803116, 0.025876712054014206, 0.018939519301056862, -0.008683355525135994, -0.006905826739966869, 0.04279877617955208, 0.015056082047522068, 0.0030606284271925688, 0.024096986278891563, -0.02648334763944149, -0.040186990052461624, -0.0011003799736499786, 0.013867298141121864, 0.009015629068017006, -0.0039447518065571785, 0.011963917873799801, -0.03297057002782822, 0.014760222285985947, 0.0016865773359313607, 0.005740590393543243, -0.026680724695324898, -0.017542250454425812, -0.003259505843743682, -0.020637178793549538, 0.007050430402159691, 0.010341466404497623, 0.0010986363049596548, -0.006666849367320538, 0.025100762024521828, 0.01536548975855112, -0.024163084104657173, 0.03380820155143738, 0.05164525657892227, -0.01563338004052639, 0.0026374610606580973, -0.005886179860681295, 0.01997731253504753, -0.04733463376760483, 0.0039029072504490614, 0.015254362486302853, 0.02607959508895874, 0.028872031718492508, -0.008722311817109585, -0.03952009603381157, 0.030727162957191467, -0.03422902897000313, 0.01164599321782589, 0.023583265021443367, -0.009746663272380829, 0.01421196199953556, 0.011754226870834827, -0.027460534125566483, 0.01126656774431467, -0.011527695693075657, 0.006010930985212326, -0.0018932664534077048, -0.000011912864465557504, -0.004378132056444883, -0.004867451265454292, -0.006306767929345369, 0.03987737372517586, -0.008431595750153065, 0.051190782338380814, -0.009364723227918148, -0.04326289892196655, -0.0013961239019408822, -0.009897340089082718, 0.03221486881375313, -0.008819559589028358, -0.03269578516483307, -0.009523056447505951, 0.05740346014499664, 0.019060980528593063, 0.023691726848483086, -0.03252711147069931, -0.018018031492829323, 8.02783222274545e-33, 0.008483913727104664, -0.04589758813381195, -0.030050233006477356, 0.0026356815360486507, -0.015237555839121342, 0.0013050819979980588, 0.014371988363564014, 0.03769230842590332, -0.028879966586828232, 0.026909932494163513, -0.015156303532421589, 0.009252380579710007, -0.0111866919323802, 0.0011607620399445295, 0.025343308225274086, -0.011614537797868252, -0.006202653981745243, -0.010328567586839199, 0.022466104477643967, 0.02482609637081623, 0.025252344086766243, 0.02492423541843891, 0.01075577363371849, -0.012095817364752293, -0.0050576538778841496, 0.05383187159895897, -0.048784974962472916, -0.005965506657958031, 0.007794195786118507, -0.00969952903687954, 0.0025388153735548258, -0.013633067719638348, 0.00964842364192009, -0.0033973923418670893, -0.03351886197924614, 0.02617136389017105, -0.019988715648651123, -0.020660744979977608, 0.022693663835525513, -0.00764833576977253, 0.009446393698453903, -0.004288163036108017, 0.008022003807127476, 0.01756184548139572, 0.00396850798279047, -0.002606554888188839, -0.0035195299424231052, -0.006042433436959982, -0.0010896638268604875, 0.010150289162993431, 0.005429191514849663, -0.007755565457046032, -0.010423325933516026, 0.00120348553173244, -0.00810251571238041, -0.010577300563454628, -0.06058530509471893, -0.014233775436878204, -0.03917329013347626, 0.028872530907392502, 0.011351492255926132, 0.007783721201121807, -0.010002857074141502, 0.004985429812222719, -0.030725818127393723, 0.018900657072663307, -0.026201507076621056, 0.003304110374301672, -0.0022541258949786425, -0.016807252541184425, -0.032586436718702316, -0.009712542407214642, -0.017393948510289192, 0.06001875177025795, 0.01611909084022045, -0.014860212802886963, -0.006868744734674692, 0.012069049291312695, -0.012325809337198734, 0.013347719796001911, 0.030591990798711777, 0.016762159764766693, -0.017985118553042412, -0.01310997735708952, -0.014536610804498196, 0.027057122439146042, -0.005196578335016966, 0.021201083436608315, -0.008383874781429768, -0.02295418083667755, -0.013614928349852562, -0.013005168177187443, 0.017986543476581573, 0.010617205873131752, 0.013657411560416222, -1.3729313685928446e-8, 0.00406647939234972, 0.020052874460816383, -0.0052597313188016415, 0.01454948540776968, 0.0340607725083828, -0.019095929339528084, -0.006486985832452774, -0.007107242941856384, -0.00009862500883173198, -0.01338404230773449, 0.019386891275644302, 0.01800427958369255, 0.004671769682317972, -0.016357315704226494, 0.002792098792269826, -0.030425405129790306, -0.016374921426177025, -0.031502529978752136, 0.024801533669233322, 0.04175814241170883, 0.01966976746916771, 0.07997477054595947, -0.014610725454986095, -0.00993134081363678, 0.01958751119673252, 0.006787004414945841, 0.002981600584462285, -0.06593552231788635, -0.003514382988214493, 0.027538463473320007, 0.04196575656533241, -0.027615198865532875, -0.017505908384919167, 0.044166743755340576, -0.02089383453130722, -0.03181904926896095, 0.00706168869510293, -0.010277679190039635, 0.012142118997871876, 0.01853994093835354, 0.02195136249065399, -0.0021700416691601276, -0.017439207062125206, -0.02670910768210888, -0.007870417088270187, -0.02293509989976883, -0.040691543370485306, -0.004725184757262468, 0.005920401308685541, -0.02592388540506363, -0.018733927980065346, 0.0250422190874815, 0.027935843914747238, 0.015426620841026306, 0.013398563489317894, -0.0030365814454853535, 0.0024868531618267298, 0.005845263600349426, -0.02596789412200451, -0.008005626499652863, 0.0024906268808990717, 0.012720311060547829, -0.021462127566337585, -0.026871759444475174 ]
consistency-in-the-code-base-and-incremental-refactoring
https://markhneedham.com/blog/2010/05/05/consistency-in-the-code-base-and-incremental-refactoring
false
2010-05-11 22:28:42
Agile: Chasing a points total
[ "agile" ]
[ "Agile" ]
I've previously written about http://www.markhneedham.com/blog/2010/04/07/velocity-as-a-goal/[the danger of using velocity as a goal] but on almost every project I've worked on at some stage we do actually end up chasing a points total. Something I find quite interesting towards the end of an iteration is that if there is a choice of two stories to pick up then the project manager will nearly always press for one which can be completed within the remaining time in order to get the points total for that iteration higher. This might even mean that we pick something which is lower priority because we might not finish a higher priority but larger story in time. This would mean that the points for that card would not be recognised until the next iteration which would mean that in the current iteration the points total would be lower than expected. Most of the time this doesn't make a great amount of difference and if it helps take some pressure off and create an impression of 'success' then it seems a reasonable trade off to make. It does still seem less than ideal to have that type of decision dictated by such a limited metric though. http://twitter.com/dermotkilroy[Dermot] pointed me to a blog post by Tim Ross titled 'http://timross.wordpress.com/2009/01/19/are-burndowns-evil/[Are burndowns evil?]' where he discusses this in more detail and although I agree with the points Tim makes, it often seems that a product owner ends up with the impression that the project is 'failing' or that we are 'behind' if the velocity 'target' is not being met each iteration. It seems to take product owners who are new to a more agile approach a bit of time to get used to the idea that achieving the points total isn't the most important thing to focus on and that it's more useful to focus on other things which actually give them value. I've worked on projects where we've got to the stage where the points total is a side show but it takes quite a bit of time of consistently delivering before we can get that level of trust.
null
null
[ -0.00012172064452897757, -0.0018833234207704663, 0.01633482612669468, 0.03496338054537773, 0.0579385831952095, 0.008380865678191185, 0.02556535229086876, 0.04419321566820145, 0.009937752969563007, -0.004779241979122162, -0.004325005691498518, -0.007846941240131855, -0.038840699940919876, 0.027837181463837624, -0.022223273292183876, 0.06499414891004562, 0.04563594236969948, 0.006053226999938488, 0.023511314764618874, 0.01025328692048788, 0.028477421030402184, 0.06693456321954727, 0.028637131676077843, 0.026621930301189423, 0.04496274143457413, 0.00814749114215374, 0.02419363521039486, -0.013391477055847645, -0.051694102585315704, -0.014539925381541252, 0.015566551126539707, -0.013812119141221046, 0.006617864593863487, -0.011421398259699345, 0.04364269971847534, -0.017010701820254326, -0.0025994176976382732, 0.037832099944353104, 0.004730167333036661, -0.019552862271666527, -0.06998638063669205, 0.04946274310350418, -0.04237283021211624, 0.0028506394010037184, -0.020808568224310875, 0.025606360286474228, -0.011243456043303013, -0.016113879159092903, -0.005933703389018774, -0.0137462317943573, -0.06635487079620361, 0.04266030713915825, 0.002949404064565897, -0.007176585961133242, -0.01391004677861929, 0.035831283777952194, -0.0030598128214478493, -0.07190735638141632, -0.014781780540943146, -0.04424537345767021, -0.01807398349046707, -0.027736397460103035, -0.00935082882642746, 0.058932188898324966, 0.04758870229125023, -0.04387453570961952, 0.006142305210232735, 0.02813548780977726, -0.017372585833072662, -0.0021714731119573116, -0.015178904868662357, 0.011868760921061039, -0.00522884214296937, 0.004594895523041487, -0.005583752878010273, -0.06602384895086288, 0.025392847135663033, 0.06942053139209747, 0.015553981997072697, 0.04865271598100662, -0.022788286209106445, 0.020014170557260513, 0.018513819202780724, 0.039005085825920105, -0.03474033623933792, -0.02447785809636116, 0.04020003229379654, -0.03913462907075882, -0.04667717590928078, 0.05307598039507866, -0.0019328652415424585, -0.07857329398393631, 0.031571049243211746, 0.036558181047439575, 0.005357780959457159, -0.025314586237072945, 0.0235093142837286, 0.02721780352294445, -0.009960337541997433, -0.0318770557641983, -0.026494702324271202, -0.027786489576101303, -0.00845079030841589, 0.016519587486982346, -0.07337673753499985, -0.01182669959962368, -0.010152874514460564, -0.01744631491601467, 0.006618198938667774, 0.018107494339346886, -0.036277491599321365, 0.019989266991615295, -0.035309627652168274, 0.004029181320220232, -0.06820108741521835, 0.040690429508686066, -0.014085930772125721, -0.04749191552400589, -0.010925198905169964, -0.0032516447827219963, 0.04800303652882576, 0.01968126744031906, -0.008560462854802608, 0.0654807910323143, -0.011668704450130463, 0.036761991679668427, -0.012678544968366623, 0.04279295355081558, -0.022766532376408577, -0.06489397585391998, 0.008052445016801357, 0.06273642182350159, -0.032418202608823776, -0.01533462293446064, -0.008886442519724369, -0.044667989015579224, 0.005056325346231461, -0.0027029146440327168, 0.03757956624031067, 0.03327517956495285, -0.01978074200451374, -0.03261810541152954, 0.02544156089425087, 0.02702673152089119, 0.03383767604827881, -0.017560318112373352, 0.006366281770169735, -0.037181999534368515, -0.06598298996686935, -0.018352210521697998, 0.025331638753414154, 0.01574596017599106, 0.024116095155477524, -0.03947504237294197, 0.032198112457990646, 0.07310239970684052, 0.06292206048965454, 0.01564776338636875, -0.03435222804546356, 0.04055823013186455, 0.042270228266716, 0.03572564572095871, 0.04035068675875664, 0.03773694112896919, 0.0178518109023571, 0.0024268904235213995, 0.015618030913174152, 0.02716691792011261, -0.004373411647975445, -0.023803509771823883, -0.05881224572658539, -0.03908767178654671, 0.05445247143507004, -0.03892654553055763, -0.004448146093636751, 0.051588043570518494, 0.0745982751250267, 0.06772931665182114, 0.022579144686460495, 0.012383193708956242, -0.07366889715194702, 0.0494806133210659, 0.010650803335011005, 0.023234838619828224, 0.030412543565034866, -0.03500784933567047, 0.04027435556054115, 0.030400043353438377, -0.003887037979438901, 0.03663768619298935, -0.06999768316745758, -0.07963749766349792, -0.028379905968904495, -0.03642532601952553, 0.04015619307756424, -0.04424942657351494, 0.022287918254733086, 0.055937424302101135, 0.03248094394803047, 0.069912388920784, 0.020799122750759125, 0.011187533847987652, 0.030611567199230194, -0.057972878217697144, -0.04829636961221695, 0.05493728816509247, 0.03384707495570183, 0.0015678888885304332, -0.057796407490968704, 0.04635371267795563, -0.017545226961374283, 0.013659161515533924, 0.03819235414266586, -0.016368074342608452, 0.01667262613773346, -0.006721705198287964, 0.06267688423395157, -0.02217031829059124, 0.04851151257753372, -0.03971134498715401, 0.007683246862143278, 0.0012470186920836568, -0.007674729451537132, 0.019178561866283417, -0.01197132095694542, 0.1050051674246788, 0.03849564120173454, -0.04941457882523537, -0.06459781527519226, 0.027277689427137375, 0.0261994656175375, -0.008023674599826336, -0.011579790152609348, -0.0157979354262352, -0.010346027091145515, 0.018438339233398438, -0.057629745453596115, -0.03675917163491249, 0.028863120824098587, -0.06209942325949669, 0.013351867906749249, 0.05636873468756676, 0.002307699993252754, 0.09096395969390869, -0.007404680829495192, -0.009407702833414078, -0.008200312964618206, -0.009594704024493694, -0.09414392709732056, 0.0180499330163002, -0.012471456080675125, -0.0208454430103302, 0.04016314074397087, -0.020251469686627388, -0.04553015157580376, -0.0170443132519722, -0.04621477425098419, 0.01685473322868347, 0.03975876048207283, 0.07234174758195877, 0.0007816659053787589, 0.06957411020994186, -0.011196977458894253, 0.02362166717648506, -0.0002669937675818801, -0.039389338344335556, -0.0593767873942852, -0.034881576895713806, -0.0011224910849705338, 0.040550071746110916, 0.0139074195176363, 0.0047850036062300205, 0.00598416943103075, -0.014733606018126011, -0.020665433257818222, -0.0015413560904562473, 0.045474108308553696, 0.016619525849819183, -0.0023984501603990793, -0.0167534202337265, -0.0311933271586895, 0.057926952838897705, -0.054954394698143005, 0.007781060878187418, 0.016064820811152458, -0.0814661830663681, 0.04022004455327988, -0.056736018508672714, -0.03627302870154381, 0.008400642313063145, 0.008917434141039848, 0.02214142680168152, 0.006438180338591337, 0.027061542496085167, 0.06894738227128983, 0.021366365253925323, 0.018209517002105713, -0.00463159941136837, -0.010204280726611614, 0.02786433696746826, 0.004712921567261219, -0.03153756260871887, 0.05108111351728439, -0.006520019844174385, -0.0068126702681183815, -0.06730637699365616, 0.04009924456477165, -0.031006446108222008, -0.3047252893447876, 0.03171083703637123, -0.00933501124382019, -0.05061577633023262, 0.018231047317385674, -0.001132427016273141, -0.008904434740543365, -0.039588939398527145, -0.040217649191617966, 0.015826499089598656, -0.03605858236551285, -0.044558361172676086, 0.0005852350150234997, 0.029917441308498383, 0.01634015142917633, 0.01348196342587471, 0.051894016563892365, -0.019829969853162766, 0.014515263959765434, 0.04736326262354851, -0.009177293628454208, -0.07497499883174896, -0.014363416470587254, 0.03000563569366932, 0.04475725069642067, 0.05324982479214668, -0.0609118826687336, 0.04585246741771698, -0.0739441066980362, 0.008672197349369526, 0.016549034044146538, 0.01323756854981184, -0.005195247009396553, -0.03806363046169281, -0.009706296026706696, -0.05131074786186218, 0.026542866602540016, -0.014709862880408764, 0.0038861846551299095, -0.008839713409543037, -0.028727101162075996, -0.02209693007171154, 0.005264500621706247, 0.033849991858005524, 0.055827099829912186, 0.011327552609145641, -0.07117988169193268, 0.009032023139297962, -0.019640404731035233, 0.07116556167602539, -0.007052661385387182, -0.025784960016608238, -0.029623322188854218, 0.025098901242017746, -0.02096511609852314, -0.045327961444854736, -0.001394439721480012, -0.051541365683078766, -0.03645288571715355, -0.0034211506135761738, -0.02989739552140236, -0.01929347589612007, -0.006783985998481512, -0.017859462648630142, -0.003367467550560832, -0.044077254831790924, -0.05504303425550461, -0.012067390605807304, 0.03725484013557434, -0.01945645734667778, -0.02666238136589527, -0.0002454872883390635, -0.012512234039604664, -0.1030769944190979, -0.01636027917265892, -0.001214884570799768, -0.019410409033298492, 0.04024795815348625, -0.006157304625958204, 0.03355516120791435, -0.023519689217209816, -0.05142555385828018, 0.015048760920763016, 0.00029897954664193094, 0.022563660517334938, -0.01135263592004776, 0.03861499950289726, 0.014031670056283474, -0.01908295974135399, 0.007422393653541803, 0.050230722874403, -0.011994662694633007, -0.02550961822271347, -0.030177824199199677, 0.025109730660915375, -0.013448353856801987, 0.01855141669511795, -0.007509102113544941, 0.002576683647930622, 0.019776038825511932, -0.007764429785311222, -0.04986084625124931, 0.031102320179343224, -0.012707678601145744, -0.02154518850147724, -0.01692347601056099, -0.03293035179376602, 0.022652389481663704, 0.0495092049241066, 0.01422885898500681, 0.0071187266148626804, -0.019238734617829323, 0.021590614691376686, -0.032039009034633636, -0.0349067784845829, -0.007743373978883028, 0.006026130635291338, 0.0462176576256752, -0.008425028994679451, 0.0041791764087975025, -0.06896879523992538, 0.01641436107456684, -0.02844364568591118, -0.010716532357037067, -0.05489559471607208, -0.001322710420936346, -0.008337682113051414, -0.02844354510307312, 0.023892080411314964, 0.04291052371263504, -0.011374887079000473, 0.04171261563897133, 0.021144254133105278, -0.04470480605959892, 0.016974899917840958, -0.03955870494246483, -0.04855266958475113, -0.03004358895123005, 0.016016224399209023, -0.0104890251532197, -0.031777456402778625, 0.03673339635133743, 0.0023366808891296387, 0.030412210151553154, 0.03921377286314964, 0.00723669957369566, 0.006670989096164703, -0.025760142132639885, 0.022574743255972862, -0.0018389459000900388, 0.014951702207326889, -0.05778069421648979, 0.01751844584941864, -0.04416022077202797, 0.014693896286189556, -0.027822718024253845, 0.010624554939568043, -0.027910420671105385, -0.03049570322036743, -0.010792198590934277, 0.017092162743210793, -0.0445617251098156, -0.03421707823872566, -0.01352823618799448, 0.023936830461025238, 0.042856018990278244, -0.015394959598779678, 0.008881200104951859, -0.008423889055848122, -0.029765866696834564, 0.012995978817343712, -0.01687258668243885, -0.04117774963378906, 0.0007163506816141307, 0.0029203661251813173, -0.005654701963067055, 0.0001750290539348498, 0.005459550302475691, 0.03675543889403343, -0.011787607334554195, -0.021349718794226646, -0.030702225863933563, 0.01463349536061287, 0.015658413991332054, 0.037937432527542114, 0.024494782090187073, -0.0016443543136119843, -0.0019538295455276966, -0.0346476212143898, 0.000008298885404656176, -0.04869094491004944, 0.018266042694449425, 0.004180039744824171, 0.003696091938763857, -0.029823580756783485, -0.07911190390586853, 0.043930795043706894, 0.032732706516981125, 0.015242618508636951, 0.007178382482379675, -0.036959514021873474, -0.007087263744324446, -0.01638779789209366, 0.011076887138187885, 0.07640393078327179, -0.047818101942539215, 0.0004219048423692584, -0.0074305166490375996, 0.006816213950514793, 0.018675614148378372, 0.009111359715461731, -0.05765492096543312, -0.01488508004695177, 0.005825899075716734, 0.022300468757748604, -0.07239551842212677, -0.021665066480636597, -0.0514039471745491, 0.010473768226802349, 0.023148279637098312, 0.03346101567149162, -0.018243055790662766, -0.03335011377930641, -0.03092716448009014, -0.018063437193632126, 0.014231495559215546, -0.03388584032654762, -0.02496679499745369, 0.032563336193561554, -0.03326033055782318, -0.02666262723505497, -0.04573585465550423, 0.020453238859772682, 0.029507014900445938, -0.017375575378537178, 0.03194968029856682, -0.045666344463825226, 0.012575436383485794, -0.014030544087290764, 0.03893297165632248, -0.024515103548765182, -0.023259680718183517, 0.002984256949275732, -0.003282504389062524, -0.019466252997517586, -0.0012676318874582648, -0.040757760405540466, -0.014569788239896297, 0.0012830132618546486, 0.08048895746469498, 0.01893508806824684, 0.042237430810928345, -0.017613107338547707, -0.017402300611138344, 0.044670991599559784, -0.06345226615667343, -0.028401900082826614, -0.0472375750541687, -0.04515277221798897, 0.009639902040362358, 0.016740117222070694, 0.018108075484633446, -0.07017070055007935, 0.047045812010765076, 0.018500251695513725, 0.05951303988695145, 0.04698726534843445, 0.0161591749638319, 0.006848970893770456, -0.04783225059509277, -0.008130001835525036, -0.08944196999073029, -0.020684434100985527, 0.022889787331223488, 0.006291172932833433, 0.02345232293009758, 0.008560651913285255, -0.042780861258506775, 0.038122791796922684, -0.08768627792596817, -0.023303911089897156, 0.05598459765315056, -0.017753127962350845, -0.00882775243371725, 0.023640956729650497, -0.06631984561681747, 0.012796246446669102, 0.025668777525424957, -0.04286691173911095, -0.00735325226560235, -0.018518313765525818, 0.0463666170835495, 0.006357316859066486, 0.027307381853461266, -0.04139133542776108, -0.026310626417398453, 0.0852304995059967, 0.0005331885768100619, -0.024102188646793365, 0.05168311670422554, -0.007940245792269707, 0.031013095751404762, 0.030263880267739296, 0.0053575532510876656, -0.01694842055439949, -0.004451545421034098, 0.0022693874780088663, -0.03409101068973541, 0.06194879487156868, 0.0018372043268755078, -0.026348790153861046, -0.02670232765376568, 0.05344743654131889, 0.021587800234556198, -0.02005080319941044, -0.07040539383888245, 0.022084582597017288, -0.03067142516374588, -0.017354562878608704, 0.0025707848835736513, 0.006712448783218861, -0.056042321026325226, 0.05697789043188095, 0.0005807129782624543, 0.020439855754375458, 0.05102165415883064, -0.013329500332474709, -0.00473516620695591, -0.006318916101008654, 0.09136969596147537, 0.08127090334892273, 0.061392977833747864, -0.024983039125800133, 0.07213489711284637, -0.02044900320470333, -0.04189217835664749, 0.004051210358738899, -0.019913608208298683, -0.009817379526793957, -0.022740699350833893, 0.024404427036643028, 0.05338411405682564, -0.0020766574889421463, 0.05494105443358421, -0.016553562134504318, -0.027746882289648056, 0.027348779141902924, 0.05763896927237511, 0.011635808274149895, 0.04318477213382721, 0.0026518565136939287, 0.022482018917798996, -0.028157232329249382, -0.05710231885313988, 0.023929234594106674, -0.0384695790708065, -0.010165099985897541, 0.046076178550720215, -0.000655560870654881, 0.02983141876757145, 0.023678643628954887, 0.0030745670665055513, 0.0782557800412178, -0.05649949610233307, 0.024310216307640076, -0.020997073501348495, 0.03140101209282875, -0.018337447196245193, 0.005424519535154104, 0.004037804435938597, 0.009960167109966278, 0.010409659706056118, -0.021643763408064842, 0.006416128948330879, -0.014345134608447552, -0.014857766218483448, 0.046284306794404984, -0.031419508159160614, 0.014128628186881542, 0.03380077704787254, -0.010855733416974545, -0.052239611744880676, -0.033554818481206894, -0.006747577339410782, -0.039629992097616196, -0.05906869098544121, 0.008286447264254093, 0.036638762801885605, 0.0007724470342509449, -0.026017412543296814, -0.009617609903216362, -0.008047923445701599, -0.05693879723548889, 0.04458019509911537, -0.05084649473428726, -0.02677609771490097, 0.012033245526254177, 0.020289670675992966, 0.026245703920722008, 0.021235479041934013, 0.04194311052560806, 0.002123007085174322, -0.006415471900254488, 0.004604133777320385, 0.02914087101817131, 0.03205622360110283, 0.00722288154065609, 0.01901892200112343, -0.08281725645065308, 0.020739248022437096, 0.03766695410013199, -0.02580646425485611, -0.06126072257757187, 0.026479648426175117, 0.007681531365960836, -0.044182416051626205, 0.061005789786577225, -0.022979166358709335, 0.01604272797703743, -0.09190184623003006, -0.009063531644642353, 0.006788113620132208, -0.012450331822037697, 0.04210648685693741, -0.03715679422020912, 0.0706331804394722, 0.023619238287210464, -0.015572360716760159, -0.035059161484241486, -0.0068246168084442616, 0.00335611286573112, 0.018602393567562103, -0.014187118969857693, -0.041241079568862915, -0.020003551617264748, -0.0860794261097908, -0.016278181225061417, 0.022482408210635185, -0.005946834105998278, -0.01887335255742073, 0.04649348929524422, 0.015831053256988525, -0.031089995056390762, 0.006866179872304201, -0.03323006257414818, 0.04973877966403961, 0.0004254964005667716, 0.004251244477927685, -0.0023729163222014904, 0.02611328475177288, 0.01091979444026947, 0.011099962517619133, 0.010099646635353565, -0.051160380244255066, 0.027086149901151657, -0.004422897007316351, 0.02144128829240799, 0.039981659501791, 0.010760637000203133, -0.00791999138891697 ]
[ -0.09055013954639435, -0.025830963626503944, -0.026191471144557, -0.007013245485723019, -0.009380146861076355, -0.014910237863659859, -0.014908130280673504, 0.01169632002711296, 0.027608824893832207, -0.0046328953467309475, 0.01928434707224369, -0.02157694846391678, -0.022066079080104828, 0.008045250549912453, 0.023930799216032028, 0.00814569927752018, -0.011980940587818623, -0.07539818435907364, 0.024947473779320717, 0.028799934312701225, -0.0013905513333156705, -0.0613064281642437, -0.00856158696115017, -0.015626097097992897, 0.05076461657881737, 0.012817897833883762, 0.015868540853261948, -0.04698214679956436, -0.006853878032416105, -0.20098766684532166, 0.002824413822963834, 0.012082383967936039, 0.025231199339032173, -0.05000876635313034, -0.02149905450642109, 0.06549647450447083, -0.0021944951731711626, 0.045832060277462006, 0.006573759019374847, 0.030700266361236572, 0.030176550149917603, 0.025355162099003792, -0.029748357832431793, -0.04456355795264244, 0.036955155432224274, 0.01328950747847557, -0.005969282705336809, -0.019670845940709114, -0.010757065378129482, 0.0317608080804348, -0.03528972715139389, -0.03736354038119316, -0.028344713151454926, -0.0019807214848697186, -0.021370921283960342, 0.05319809168577194, 0.010185610502958298, 0.06312807649374008, 0.015199470333755016, 0.0035291227977722883, 0.03493931517004967, -0.037923119962215424, -0.15323986113071442, 0.04091823846101761, 0.016618238762021065, 0.060360588133335114, -0.04586555063724518, -0.010064731352031231, -0.04868277162313461, 0.11668197810649872, 0.0040253205224871635, -0.01206592284142971, 0.000261702632997185, 0.02210146002471447, 0.03312908113002777, 0.00005139601125847548, 0.025520136579871178, 0.031447168439626694, 0.02226344868540764, -0.022171059623360634, 0.0019520474597811699, -0.012514396570622921, -0.0493164137005806, -0.0174630805850029, -0.03141596168279648, 0.01048216037452221, 0.002984810620546341, 0.05217067897319794, 0.05430835112929344, 0.027470137923955917, 0.06606796383857727, -0.018299825489521027, 0.01135554350912571, -0.0005261618061922491, -0.07061543315649033, -0.035433657467365265, 0.010599699802696705, 0.01729367859661579, -0.04353533685207367, 0.4398757815361023, -0.004500680603086948, -0.006136354524642229, 0.06081051751971245, 0.05927582457661629, 0.007781103253364563, -0.0019391127862036228, 0.0023768090177327394, -0.04608697071671486, 0.02554205060005188, -0.022231057286262512, 0.04308958724141121, 0.015967747196555138, 0.06126336753368378, -0.06347764283418655, 0.02917955443263054, 0.036334872245788574, -0.010452991351485252, 0.021512217819690704, -0.006806784309446812, -0.015354265458881855, -0.011665098369121552, 0.029355810955166817, 0.0426555797457695, -0.0028142938390374184, -0.05629352480173111, -0.019688686355948448, 0.03566799685359001, 0.06686057150363922, 0.02663278393447399, -0.006866008043289185, 0.04291141405701637, -0.0719389021396637, -0.0831167995929718, 0.018969202414155006, -0.004895566962659359, 0.014985544607043266, 0.057735130190849304, -0.013894233852624893, 0.012909796088933945, 0.04720417037606239, 0.019503317773342133, 0.023915493860840797, 0.012274131178855896, -0.03828568384051323, -0.0270397886633873, 0.1553143411874771, 0.044152725487947464, -0.04622567817568779, -0.0052278474904596806, -0.04674151539802551, -0.013908459804952145, 0.007914537563920021, -0.006419667042791843, -0.05541561543941498, -0.006538055837154388, 0.025821005925536156, 0.05509096756577492, 0.0012546818470582366, -0.07196387648582458, -0.006185331381857395, -0.026598403230309486, -0.029455620795488358, -0.07127774506807327, 0.03725903853774071, 0.05162801966071129, -0.09756539762020111, -0.022952934727072716, -0.00984766986221075, 0.021893393248319626, -0.055888500064611435, -0.034571994096040726, 0.009065967053174973, -0.001264981459826231, -0.028637124225497246, 0.07319823652505875, -0.023609409108757973, -0.05408114939928055, 0.011564889922738075, 0.0393359512090683, 0.010136326774954796, 0.02944130077958107, 0.022342968732118607, -0.006866993848234415, -0.017494214698672295, -0.03844912722706795, -0.09186895191669464, -0.058205414563417435, -0.023145219311118126, -0.04019661247730255, -0.010680253617465496, -0.028820635750889778, -0.03421766310930252, -0.07634516805410385, 0.11753211915493011, -0.02919936180114746, -0.041922979056835175, 0.023701684549450874, 0.01235367264598608, -0.03380105644464493, -0.019963350147008896, -0.07535092532634735, -0.011067625135183334, -0.024244006723165512, 0.031816404312849045, -0.05098247155547142, 0.07308420538902283, 0.029852498322725296, -0.055322326719760895, 0.06136539578437805, 0.0393255352973938, -0.036352258175611496, -0.048742201179265976, -0.004938552621752024, 0.028779244050383568, -0.02278381772339344, 0.015045522712171078, -0.010563299059867859, 0.010340122506022453, -0.014567933976650238, 0.02983343042433262, -0.021656058728694916, 0.01584411971271038, 0.010454514063894749, -0.3466387689113617, -0.052517231553792953, -0.03915347531437874, -0.006363641936331987, 0.037346113473176956, -0.053133364766836166, -0.018226779997348785, -0.000981408404186368, -0.05503666773438454, 0.015118489041924477, 0.07654643058776855, -0.04751309007406235, -0.007254071068018675, -0.08663534373044968, 0.0013785735936835408, -0.014558183029294014, -0.08299455046653748, -0.029610704630613327, -0.005442844703793526, 0.006576746702194214, 0.009814182296395302, -0.00008170361252268776, -0.049314334988594055, -0.040053583681583405, 0.01005472894757986, -0.015897249802947044, 0.09798639267683029, 0.02931281365454197, 0.06282687932252884, -0.02957863360643387, 0.03555778041481972, 0.016540909186005592, -0.0007146879797801375, -0.05566464737057686, 0.013191288337111473, -0.02605268731713295, 0.033790118992328644, -0.0437358133494854, -0.005190561525523663, -0.030127426609396935, -0.06014034152030945, 0.01645464450120926, -0.04619976878166199, -0.01913999207317829, -0.08042337000370026, 0.030351849272847176, -0.020894665271043777, 0.013225630857050419, 0.002508169040083885, 0.10378477722406387, 0.03489401191473007, 0.006011346820741892, 0.014936139807105064, -0.015588897280395031, 0.03779759258031845, -0.020681824535131454, -0.07703133672475815, 0.041718415915966034, -0.0019263785798102617, 0.008944859728217125, 0.004678511992096901, 0.06932900846004486, 0.0371619276702404, -0.013587670400738716, 0.018548311665654182, 0.02073688805103302, 0.008085989393293858, -0.015178834088146687, 0.033742524683475494, 0.009775117039680481, 0.022659648209810257, 0.07676283270120621, 0.000547373725567013, -0.02747010998427868, 0.04432179033756256, 0.02075118012726307, -0.015548677183687687, 0.05792105942964554, 0.03266594186425209, -0.023645659908652306, 0.03708873689174652, -0.04059629887342453, 0.006935743615031242, 0.007733896840363741, -0.03398361802101135, 0.005963448900729418, 0.00284204981289804, -0.041105058044195175, 0.01671406999230385, 0.022111453115940094, -0.010647455230355263, -0.00011944294237764552, -0.022660961374640465, -0.035499244928359985, 0.05188582092523575, 0.0007199165993370116, -0.2354392409324646, 0.015035278163850307, 0.08673007041215897, 0.022139910608530045, 0.0046299416571855545, 0.022332508116960526, 0.038259606808423996, -0.05273602157831192, 0.015593413263559341, 0.038998834788799286, 0.005209415219724178, 0.0456693097949028, 0.003921005874872208, 0.0012188494438305497, 0.02422194927930832, -0.02224426344037056, 0.0448441356420517, 0.0021781795658171177, 0.049224853515625, -0.00976364966481924, 0.029733581468462944, 0.004086767323315144, 0.17065636813640594, 0.020445844158530235, 0.006678913254290819, -0.011124365031719208, -0.016446314752101898, 0.012353342026472092, 0.04190128669142723, 0.012328464537858963, -0.008706477470695972, 0.004983033053576946, 0.03242349997162819, 0.007622382137924433, 0.01920321397483349, -0.05583123490214348, -0.006371000315994024, 0.043822433799505234, 0.030608559027314186, 0.010560966096818447, 0.041627731174230576, -0.008934183046221733, -0.009769410826265812, 0.006517848465591669, 0.07036833465099335, 0.0020691603422164917, -0.03768583759665489, -0.024944698438048363, -0.07731988281011581, -0.01568259671330452, -0.03364183008670807, -0.04061694070696831, 0.01761578768491745, -0.013421164825558662, 0.025139132514595985, 0.08338050544261932, 0.00891455914825201, -0.04138032719492912, 0.01551921758800745, 0.014367318712174892, -0.028010111302137375, 0.009860021062195301, 0.08238367736339569, 0.011832441203296185, 0.03698099032044411 ]
[ 0.016839755699038506, 0.029432952404022217, 0.009996830485761166, 0.027431657537817955, 0.026265013962984085, 0.0017203540774062276, -0.0272113848477602, 0.009381833486258984, 0.03823227807879448, -0.030970320105552673, -0.022314956411719322, 0.014424732886254787, -0.03253946825861931, -0.0056131319142878056, 0.01989438384771347, -0.01518342550843954, 0.006388567388057709, 0.01295983325690031, 0.0316961407661438, 0.02839609980583191, -0.007728771306574345, 0.023716406896710396, -0.007168810814619064, 0.0373612716794014, -0.0368412621319294, 0.03448682650923729, -0.07031784951686859, 0.011664388701319695, 0.018073158338665962, -0.15168657898902893, -0.013881832361221313, -0.051342371851205826, -0.0040403022430837154, 0.03030576929450035, 0.02095305360853672, -0.03688822686672211, 0.003951135091483593, 0.021363435313105583, -0.013500493951141834, 0.013802004978060722, 0.008059995248913765, -0.023741750046610832, -0.001565656391903758, 0.008895931765437126, 0.034044284373521805, 0.02858296036720276, 0.004134915769100189, -0.0269131138920784, -0.027077442035079002, 0.00730198435485363, -0.04654518514871597, 0.014049632474780083, -0.019011275842785835, -0.024389144033193588, 0.03103962168097496, 0.006996527314186096, 0.04135410115122795, 0.008448628708720207, 0.0145893394947052, -0.05538877472281456, 0.004784060176461935, -0.025182023644447327, -0.07320582866668701, -0.007863590493798256, -0.037740711122751236, -0.04725806787610054, 0.017034417018294334, 0.03242816403508186, -0.03742858022451401, 0.016166791319847107, 0.04078539088368416, 0.024758310988545418, 0.0019292690558359027, -0.02777108922600746, 0.014142509549856186, 0.005037845578044653, -0.007578491233289242, -0.0003527284716255963, 0.021510867401957512, -0.018892571330070496, 0.0005832139286212623, 0.01009685080498457, -0.023204946890473366, -0.022301439195871353, -0.0005080047994852066, 0.010349763557314873, 0.010301690548658371, 0.024058515205979347, 0.030221769586205482, 0.0005257606972008944, -0.010469038039445877, 0.006805249024182558, 0.009979837574064732, 0.018031632527709007, -0.06841761618852615, -0.007598822936415672, -0.06064574420452118, -0.036022089421749115, -0.0070278579369187355, 0.8255372643470764, -0.02101040445268154, -0.001361572532914579, 0.004070390481501818, 0.008274784311652184, 0.04438747465610504, -0.003724432550370693, -0.020917998626828194, 0.015464824624359608, 0.03188920021057129, -0.012800846248865128, 0.052086398005485535, 0.03864113241434097, 0.01974649354815483, 0.010380632244050503, 0.009538655169308186, 0.03662150725722313, -0.0260251946747303, -0.014914952218532562, -0.028676507994532585, -0.009271658025681973, 0.02715315669775009, -0.014676280319690704, 0.014179185964167118, -0.0016514852177351713, 0.012499307282269001, -0.16958998143672943, 0.026985466480255127, -8.130051007441048e-33, 0.014259043149650097, -0.007821080274879932, 0.008895319886505604, -0.029957933351397514, -0.013181362301111221, 0.004485137294977903, 0.010160102508962154, 0.012492956593632698, 0.0056325714103877544, -0.029128408059477806, -0.010511312633752823, -0.009707767516374588, -0.010029113851487637, 0.0033903061412274837, 0.03403283283114433, -0.0379989817738533, -0.012521494179964066, 0.031280357390642166, 0.009933440014719963, -0.00336648290976882, 0.061329979449510574, -0.015474662184715271, -0.03196096792817116, -0.011160336434841156, -0.014522625133395195, 0.046459976583719254, 0.019696949049830437, 0.004753155168145895, -0.008316202089190483, -0.02935563214123249, -0.0105532705783844, 0.0024836875963956118, -0.027493346482515335, -0.03548672795295715, 0.017117561772465706, -0.015993280336260796, -0.060973189771175385, 0.0030138175934553146, 0.003951398190110922, 0.018767166882753372, -0.04830760136246681, 0.006153342314064503, -0.08999837189912796, -0.01267093326896429, -0.04030943289399147, 0.00813222210854292, 0.030660351738333702, 0.021102560684084892, -0.01531060878187418, -0.03089084103703499, -0.014207408763468266, -0.01961233653128147, 0.02379254624247551, -0.009445649571716785, 0.015107082203030586, 0.013006070628762245, 0.01768067479133606, -0.010410148650407791, -0.005588826257735491, 0.009576944634318352, 0.01412583515048027, 0.00017566472524777055, -0.015306263230741024, -0.007434168364852667, -0.0017951733898371458, 0.02511197328567505, -0.008723760955035686, -0.005265870597213507, 0.014928236603736877, 0.013526181690394878, -0.03877830132842064, -0.02251007780432701, -0.008839410729706287, -0.02105862833559513, 0.016946572810411453, -0.026134803891181946, -0.011913003399968147, 0.0438479483127594, -0.03268013522028923, 0.05080956965684891, -0.04666218161582947, -0.020783625543117523, -0.012788116000592709, -0.03867350146174431, 0.009440683759748936, -0.009536986239254475, 0.008706732653081417, -0.007655841298401356, -0.04686431959271431, -0.025902695953845978, 0.02760898694396019, 0.006810385268181562, 0.00930433627218008, 0.03905755281448364, -0.020501865074038506, 9.368587854981904e-33, -0.024305259808897972, 0.014106553047895432, -0.011499022133648396, 0.030616814270615578, 0.010206097736954689, -0.017911547794938087, 0.02060098946094513, 0.002580545376986265, -0.040258023887872696, 0.026957884430885315, -0.04786898195743561, -0.010109646245837212, -0.02605251595377922, 0.02977457270026207, 0.04063164070248604, -0.005282141268253326, 0.038659125566482544, -0.03739139065146446, 0.025514774024486542, -0.027650196105241776, 0.028234252706170082, -0.010499902069568634, -0.007179688662290573, 0.009672625921666622, 0.04193828999996185, 0.05757232382893562, 0.004297459498047829, -0.03481870889663696, -0.002554995706304908, -0.029448578134179115, 0.027348145842552185, 0.0033801221288740635, 0.01845240779221058, -0.002581624314188957, -0.014751629903912544, 0.03982245922088623, 0.008952573873102665, 0.004437376745045185, -0.0009566492517478764, 0.02331649698317051, 0.015860404819250107, 0.013494843617081642, 0.009112580679357052, 0.021171975880861282, 0.0019623003900051117, 0.008782495744526386, 0.03906474635004997, -0.02155020460486412, -0.0015649953857064247, 0.03143058344721794, -0.0057272594422101974, -0.022189423441886902, 0.0010911575518548489, 0.06384018808603287, -0.013368986546993256, -0.009157310239970684, -0.007846015505492687, 0.008713710121810436, 0.00910115335136652, -0.0007037514005787671, 0.016987064853310585, 0.02737683430314064, -0.0021925214678049088, 0.0465988852083683, -0.02792537957429886, -0.014392722398042679, 0.008573316968977451, -0.006630390882492065, -0.032166577875614166, -0.0027606089133769274, -0.04537779837846756, 0.05342661589384079, 0.016552837565541267, 0.05801795423030853, -0.004399564117193222, -0.03786543384194374, -0.03463500365614891, 0.007148874457925558, -0.02258157543838024, 0.005549936089664698, 0.0018758234800770879, 0.01733248494565487, 0.032315004616975784, 0.042745642364025116, -0.031526848673820496, 0.03395378962159157, -0.03299158811569214, 0.023515734821558, 0.035782814025878906, -0.014552255161106586, 0.002964190673083067, -0.008407059125602245, 0.01954161934554577, 0.029124295338988304, -0.033846404403448105, -1.395297921646943e-8, -0.03871690109372139, 0.0065759774297475815, -0.02940334565937519, 0.010340511798858643, -0.0004092398739885539, 0.016819855198264122, -0.00039893737994134426, 0.05248965695500374, -0.030357645824551582, -0.00011179215653100982, 0.04170067608356476, -0.037815142422914505, -0.008926629088819027, 0.009189873933792114, 0.025459177792072296, -0.047284264117479324, 0.005800517275929451, 0.005900501273572445, 0.034925296902656555, 0.013379019685089588, 0.06088415905833244, 0.07435230910778046, -0.009325559251010418, 0.011120008304715157, 0.032826948910951614, -0.011746153235435486, -0.038632430136203766, -0.08590413630008698, 0.014740235172212124, -0.015715572983026505, 0.021386398002505302, -0.015018400736153126, -0.018655337393283844, 0.031508177518844604, -0.0051248944364488125, -0.009262561798095703, 0.003971907775849104, 0.07145625352859497, -0.0033019515685737133, 0.02728675678372383, -0.020790494978427887, 0.014597843401134014, 0.018886886537075043, -0.02892679162323475, 0.0026381344068795443, -0.011738032102584839, -0.03635998070240021, -0.01345615740865469, 0.007998717948794365, -0.0629921406507492, 0.02748829685151577, -0.005254531744867563, 0.029054410755634308, 0.0405653640627861, 0.008997186087071896, -0.0016582084354013205, -0.027189932763576508, -0.0354345329105854, -0.016567770391702652, -0.03885000944137573, 0.02132399193942547, -0.0029303403571248055, 0.00004593083212967031, -0.00007442961941706017 ]
agile-chasing-a-points-total
https://markhneedham.com/blog/2010/05/11/agile-chasing-a-points-total
false
2010-05-10 23:24:39
F#: Tacit programming
[ "f" ]
[ "fsharp" ]
I recently came across the idea of http://en.wikipedia.org/wiki/Tacit_programming[tacit programming] which is described as such: ____ Tacit programming is a programming paradigm in which a function definition does not include information regarding its arguments, using combinators and function composition (but not λ-abstraction) instead of variables. The simplicity behind this idea allows its use on several programming languages, such as J programming language and APL and especially in stack or concatenative languages, such as PostScript, Forth, Joy or Factor. Outside of the APL and J communities, tacit programming is referred to as *point-free style*. ____ I realised that this approach quite closely describes what I've been trying to drive towards in my most recent playing around with F# and it's actually quite fun trying to drive any intermediate state or storing of data in variables out of a program and just relying completely on function composition and higher order functions. It seems like we need to define the signatures of some of the functions more explicitly but once we have a group of these functions we can combine them quite effectively elsewhere in our program. == Moving towards function composition I've been trying to do this with the http://code.google.com/p/yetanotherbuilder/source/browse/yab/Builder.fs[F# test builder] that I've been working on and in a few cases it's helped to reduce the amount of code required. The build function originally read roughly like this: [source,ocaml] ---- and build (t:Type) = let shortestConstructor = getShortestConstructor t shortestConstructor |> invokeWith (fun c -> getParameters c |> Array.map (fun p -> valueFor { Type = p.ParameterType; Name = p.Name })) |> andApply (fun t -> getWriteableProperties t |> Array.iter(setValueOn t)) ---- In order to drive that code toward a 'point-free style' we need to make use of the function composition operator which allows us to get the code to the stage where we don't need to specify the signature of 'build', it can be inferred: [source,ocaml] ---- and build = getShortestConstructor >> invokeWith (getParameters >> Array.map (fun p -> valueFor { Type = p.ParameterType; Name = p.Name })) >> andApply (fun t -> getWriteableProperties t |> Array.iter(setValueOn t)) ---- I think that code is pretty much identical to the first version but I'm getting the following warning message pointing to the 'valueFor' call on line 2: [source,text] ---- Warning 1 This and other recursive references to the object(s) being defined will be checked for initialization-soundness at runtime through the use of a delayed reference. This is because you are defining one or more recursive objects, rather than recursive functions. This warning may be suppressed by using #nowarn "40" or --nowarn 40. C:\Playbox\yab\yab\Builder.fs 40 66 yab ---- I can't figure out how I can change the code to get rid of that warning. I also haven't worked out whether it's possible to fix the 'andApply' line so that we can use functional composition throughout. It would be cool if it could written in such a way that 't' wouldn't have to be explicitly specified. I can't quite figure out how to do it because I need to call 'getWriteableProperties' and then iterate through that sequence and set a value on 't' using each one. Is there a way to write that bit of code so that 't' could be inferred? == Some functions need to define signatures? In order to write a 'build' function which heavily uses functional composition I've pulled out several helper functions which all currently explicitly define their signatures: [source,ocaml] ---- let getWriteableProperties t = t.GetType().GetProperties() |> Array.filter (fun p -> p.CanWrite) let invokeWith f (aConstructor:ConstructorInfo) = f(aConstructor) |> aConstructor.Invoke ---- If we want to call C# libraries like this then I don't think we have a choice but to explicitly define function signatures. It is possible to push the place at which we need to do this by http://www.markhneedham.com/blog/2009/07/12/f-wrapping-net-library-calls/[writing F# functions to wrap those C# method calls] but at some stage we'll explicitly define a function signature: [source,ocaml] ---- let getWriteableProperties = getTypeProperties >> Array.filter writeableProperty ---- where the extra helper functions are defined like so: [source,ocaml] ---- let getTypeProperties t = t.GetType().GetProperties() let writeableProperty (p:PropertyInfo) = p.CanWrite ---- I can't see a way around this so again I'd be interested if there is one. I don't think it's a problem anyway, just intrigued how far their programming approach can be taken.
null
null
[ 0.012209729291498661, 0.00005190132651478052, -0.02295217476785183, 0.03135035187005997, 0.0634462833404541, 0.03699418902397156, 0.0036128368228673935, 0.026369696483016014, 0.01771358773112297, 0.0009457676205784082, -0.011719288304448128, 0.00949606578797102, -0.06324675679206848, 0.017976870760321617, -0.015514527447521687, 0.06286543607711792, 0.08764182776212692, -0.05014180392026901, 0.024522673338651657, 0.013145145028829575, 0.030049853026866913, 0.06507176160812378, -0.009306643158197403, 0.013947373256087303, 0.01427478063851595, 0.0344851054251194, -0.002511522499844432, -0.014579986222088337, -0.05736552178859711, -0.020109202712774277, 0.022774146869778633, 0.018844090402126312, -0.0025560790672898293, -0.036940719932317734, -0.008773507550358772, 0.00983407162129879, 0.030620617792010307, 0.01187514141201973, -0.020832132548093796, 0.03499514237046242, -0.06809249520301819, 0.015408875420689583, 0.01602378860116005, 0.009903300553560257, -0.06187226250767708, 0.015171763487160206, -0.07153250277042389, -0.002589403185993433, -0.041502151638269424, -0.001836059964261949, -0.057824116200208664, 0.038068871945142746, -0.03148968145251274, -0.027445437386631966, -0.0019847333896905184, 0.048160482197999954, 0.015792066231369972, -0.0895780622959137, 0.01584579236805439, -0.05894805118441582, -0.005288415588438511, 0.021530775353312492, 0.024450208991765976, 0.034868597984313965, 0.008998792618513107, -0.0023044429253786802, -0.035588912665843964, 0.0368431992828846, -0.03924337029457092, -0.018463371321558952, -0.014881606213748455, 0.0334903746843338, -0.026870789006352425, -0.01808503083884716, -0.023145444691181183, -0.033332034945487976, -0.01850447803735733, 0.08058343082666397, -0.0063271536491811275, 0.026188276708126068, -0.0029851708095520735, 0.01591804064810276, 0.021786896511912346, 0.017800502479076385, 0.017879320308566093, -0.024763168767094612, -0.033696986734867096, -0.01080210693180561, -0.02464919351041317, 0.050044573843479156, -0.006674767471849918, -0.06817140430212021, -0.009819508530199528, 0.019930999726057053, 0.003053157590329647, 0.00985438097268343, 0.010155693627893925, -0.03916177153587341, -0.008473524823784828, -0.004796503111720085, -0.0343640074133873, -0.0073436833918094635, 0.0072653405368328094, 0.0016566421836614609, -0.0685650184750557, -0.0030423214193433523, -0.03599381819367409, -0.02821621112525463, 0.018219899386167526, 0.006404082756489515, -0.02215667814016342, -0.0006622977089136839, -0.02272151969373226, -0.015992023050785065, -0.07032725214958191, 0.05705711245536804, -0.006844528019428253, -0.008014971390366554, -0.013000614009797573, 0.022597813978791237, 0.03650671988725662, 0.02426614984869957, -0.022407205775380135, 0.07093740254640579, 0.012751992791891098, 0.054688744246959686, -0.0031488831155002117, 0.07215498387813568, -0.011043460108339787, -0.04718365520238876, -0.040334612131118774, 0.04696597903966904, -0.0205422043800354, -0.017930861562490463, -0.02551356330513954, -0.028352340683341026, -0.030931826680898666, -0.0074857198633253574, 0.03704771772027016, 0.04196316748857498, -0.02899809554219246, -0.051087964326143265, 0.03565279394388199, -0.04007286578416824, 0.0368167906999588, -0.0070341541431844234, -0.026522446423768997, -0.011938243173062801, -0.012777718715369701, 0.013457230292260647, -0.00708799110725522, 0.031798604875802994, 0.07687430083751678, -0.016437798738479614, 0.006778020411729813, 0.09007479250431061, 0.05023539811372757, -0.0007963709067553282, -0.016314664855599403, 0.025625020265579224, 0.039234429597854614, 0.010168954730033875, -0.0007574447081424296, 0.03962290659546852, 0.03571070358157158, -0.0022122866939753294, -0.007955689914524555, 0.04788542911410332, -0.004137042444199324, -0.019544387236237526, -0.04942285642027855, -0.04619104042649269, 0.05916217342019081, -0.02255517989397049, -0.018255433067679405, -0.012259617447853088, 0.060267120599746704, -0.021634353324770927, 0.06423955410718918, 0.008005660027265549, -0.0751001164317131, 0.03434714674949646, 0.0017590731149539351, 0.004180331714451313, 0.03549453988671303, -0.013516799546778202, 0.046223655343055725, 0.014610610902309418, -0.0028690032195299864, 0.009563231840729713, -0.03419594466686249, -0.07701283693313599, -0.027406465262174606, -0.025348752737045288, 0.07204870134592056, -0.0445251539349556, -0.010578548535704613, 0.0895698145031929, 0.027422016486525536, 0.03579382970929146, 0.025379197672009468, -0.009909206070005894, 0.02212482877075672, -0.024344732984900475, -0.012362552806735039, 0.044504839926958084, 0.027758579701185226, 0.023261431604623795, -0.05164169520139694, 0.017995066940784454, 0.012644615024328232, 0.02045980654656887, 0.031852997839450836, -0.012560051865875721, 0.06191815808415413, 0.01346017699688673, 0.02851327322423458, -0.010233893990516663, 0.042149510234594345, -0.06681880354881287, 0.012305930256843567, -0.00046825778554193676, -0.015578041784465313, 0.006564147304743528, -0.014518111012876034, 0.1285690814256668, 0.05713708698749542, -0.04412689432501793, -0.04537004232406616, 0.040376998484134674, 0.0049705104902386665, -0.030818767845630646, 0.01166979968547821, -0.009365996345877647, 0.007904917933046818, 0.01074615865945816, -0.040549661964178085, 0.021995682269334793, -0.008500335738062859, -0.042185164988040924, -0.007469243369996548, 0.07907218486070633, -0.037923067808151245, 0.05029852315783501, -0.014708686619997025, -0.03310374915599823, 0.001329663093201816, -0.01694720983505249, -0.04169242084026337, 0.0007498946506530046, 0.021493690088391304, -0.010142252780497074, 0.05402044579386711, -0.026751864701509476, -0.049060072749853134, -0.03291161358356476, -0.03195609897375107, 0.0021137185394763947, 0.04620959982275963, 0.05847112089395523, -0.011475840583443642, 0.03985529765486717, -0.009033853188157082, 0.007657023146748543, -0.022505763918161392, -0.0427408367395401, 0.007738622836768627, 0.007154826074838638, 0.0055596367456018925, 0.04272456467151642, 0.018555352464318275, 0.011918575502932072, 0.018039152026176453, -0.00831083208322525, -0.02867857739329338, 0.0033943483140319586, -0.007738342508673668, -0.024446038529276848, -0.05855320394039154, -0.023581612855196, -0.03772078827023506, 0.060594361275434494, -0.03486863523721695, -0.03913985937833786, -0.005310097709298134, -0.041519492864608765, 0.04420607164502144, -0.09543876349925995, -0.04023314267396927, -0.0029187004547566175, 0.025585759431123734, 0.02340637892484665, -0.03916172683238983, 0.01850545033812523, 0.07046977430582047, -0.001683110953308642, 0.026053445413708687, 0.003620405914261937, 0.0020431061275303364, 0.014372101984918118, -0.02274038828909397, 0.010789521969854832, 0.04609855264425278, 0.012865354306995869, -0.01171418372541666, -0.034161634743213654, 0.010111834853887558, 0.007963097654283047, -0.26762017607688904, 0.03694547712802887, -0.02317788638174534, -0.05376015976071358, 0.013350197114050388, -0.005196204874664545, -0.014286553487181664, -0.03811550885438919, -0.021650280803442, 0.014484992250800133, -0.05122873932123184, -0.03561835736036301, -0.02303227409720421, 0.08047911524772644, -0.001968309050425887, 0.012034188024699688, -0.023418648168444633, -0.012136898003518581, 0.02303691953420639, 0.0499490350484848, 0.00857151672244072, -0.07185553759336472, 0.01053004339337349, 0.057598620653152466, 0.04201674088835716, 0.01756097935140133, -0.09934303909540176, 0.03863763064146042, -0.0260695219039917, -0.001902641961351037, -0.012033605016767979, 0.02031223475933075, 0.005303074140101671, -0.001955867512151599, -0.017747608944773674, 0.004146051127463579, 0.0344243086874485, -0.0036476084496825933, 0.014125906862318516, 0.013978801667690277, -0.023247523233294487, -0.038896601647138596, 0.006451546214520931, -0.013921053148806095, 0.07169508188962936, -0.008698787540197372, -0.09553054720163345, -0.0023635653778910637, -0.04587898775935173, 0.07761073857545853, -0.026060283184051514, -0.03655700013041496, -0.01243406068533659, 0.052166394889354706, -0.016675664111971855, -0.030696317553520203, 0.01915762946009636, -0.023165151476860046, -0.027461707592010498, -0.031490616500377655, -0.011785073205828667, -0.04088376834988594, -0.017909971997141838, -0.05513729527592659, -0.01303062029182911, -0.04283298924565315, -0.07714953273534775, -0.008531668223440647, 0.05958452820777893, 0.03550207242369652, -0.013156591914594173, -0.004729828797280788, 0.0007686455501243472, -0.12306389957666397, -0.003404077375307679, -0.028899410739541054, -0.0570056214928627, -0.011231562122702599, 0.02055921033024788, 0.05543820559978485, -0.020220831036567688, -0.05699394643306732, 0.038709111511707306, -0.013133007101714611, 0.026416616514325142, -0.008529677987098694, 0.04379851743578911, -0.005973080638796091, -0.019174866378307343, -0.01439658273011446, 0.06870578974485397, -0.014153063297271729, 0.003037304850295186, -0.03558015078306198, -0.0028947715181857347, 0.01631825417280197, 0.036334965378046036, 0.01898377761244774, 0.017758088186383247, 0.014752665534615517, 0.010588368400931358, -0.044950325042009354, 0.00898848194628954, -0.0021570732351392508, -0.011503602378070354, -0.02270292118191719, -0.07307236641645432, 0.015193645842373371, 0.03386332839727402, 0.03032069094479084, -0.02534215897321701, -0.02766798622906208, 0.013708562590181828, -0.03707844391465187, -0.03382650017738342, -0.014404159039258957, -0.008738242089748383, 0.01583687588572502, 0.00904893595725298, -0.005554579198360443, -0.08334112167358398, 0.01889776438474655, 0.01594088412821293, -0.003876487957313657, -0.052426036447286606, -0.04576677456498146, -0.025122424587607384, -0.022524306550621986, 0.008295172825455666, 0.04710350185632706, 0.0037506907247006893, 0.03475406765937805, 0.017730049788951874, -0.04215040057897568, 0.0027889939956367016, -0.014396055601537228, 0.0004999690572731197, -0.05038734897971153, 0.004302737303078175, -0.035041142255067825, -0.0026684156619012356, 0.017757834866642952, 0.014721289277076721, 0.008728078566491604, 0.03757829964160919, 0.00044387925299815834, 0.017310019582509995, 0.01729804091155529, 0.007675660774111748, 0.02128336764872074, 0.00340166874229908, -0.04002869501709938, 0.009282737039029598, -0.030525753274559975, -0.025886917486786842, -0.03617266193032265, 0.014638996683061123, -0.010710741393268108, -0.0358053520321846, -0.013085423037409782, 0.016661517322063446, -0.0252386461943388, -0.04073173180222511, -0.026058059185743332, 0.015825143083930016, 0.04247799143195152, -0.009654298424720764, 0.03793821483850479, -0.03898775577545166, 0.004705995786935091, 0.013704400509595871, 0.008989956229925156, -0.012100007385015488, 0.015790658071637154, -0.007109554018825293, -0.05099361762404442, 0.0005707305390387774, 0.016903242096304893, 0.03964730352163315, 0.01940026879310608, -0.012119189836084843, -0.028456388041377068, 0.015069687739014626, 0.02115001156926155, 0.06662563234567642, -0.006127180065959692, -0.009542898274958134, -0.009758899919688702, -0.03601036220788956, -0.013276469893753529, -0.03616339713335037, -0.011778119020164013, -0.016202285885810852, 0.02483966387808323, -0.013957721181213856, -0.07983137667179108, 0.02432813122868538, 0.06237780302762985, 0.020318996161222458, -0.02142273634672165, -0.007219816092401743, 0.0028395040426403284, -0.009620976634323597, 0.018908342346549034, 0.058137983083724976, -0.04654153436422348, 0.009151222184300423, -0.008503529243171215, 0.01740330643951893, 0.03700149059295654, 0.03674180433154106, -0.06783272325992584, -0.010378091596066952, -0.011368490755558014, -0.02725820615887642, -0.03342204540967941, -0.017273176461458206, -0.017843596637248993, -0.00146676623262465, -0.00969791691750288, -0.0007204897119663656, -0.014143723994493484, 0.0031519350595772266, -0.058456454426050186, -0.027951130643486977, 0.016248952597379684, -0.04943346977233887, 0.024201979860663414, 0.048059187829494476, -0.03349293768405914, 0.04364632070064545, -0.023021169006824493, 0.013717812485992908, 0.025102894753217697, -0.00780330179259181, -0.01905152015388012, -0.05394748970866203, 0.006333802826702595, -0.030415905639529228, 0.049059830605983734, -0.025824910029768944, -0.010771092027425766, -0.004521690774708986, -0.011788955889642239, -0.04743828624486923, -0.020809462293982506, 0.0019036949379369617, -0.025174535810947418, -0.005622447468340397, 0.05091318488121033, -0.007539617829024792, 0.04259511083364487, -0.021364692598581314, -0.01575234718620777, 0.045339666306972504, -0.061446450650691986, -0.03660391643643379, -0.0124598927795887, -0.04795985668897629, 0.00932271033525467, 0.0066797081381082535, 0.01101881917566061, -0.041618712246418, 0.029388723894953728, 0.0447424091398716, 0.03644649311900139, 0.03802765905857086, -0.00820243265479803, 0.04437880963087082, -0.030543381348252296, -0.00384730938822031, -0.10076548159122467, 0.00600046943873167, 0.024040687829256058, 0.020997004583477974, -0.06361286342144012, -0.017489485442638397, -0.0022227696608752012, 0.06042790785431862, -0.07201418280601501, -0.004792761988937855, 0.05753611400723457, 0.02498801052570343, 0.00045931560453027487, 0.0066264960914850235, -0.05427186191082001, 0.021454721689224243, 0.019713789224624634, -0.02843502163887024, -0.009809738956391811, -0.005358109716325998, 0.05105108767747879, 0.025493094697594643, -0.005288147833198309, -0.025898797437548637, 0.010438450612127781, 0.07268606871366501, 0.03486084192991257, -0.014574764296412468, 0.04536495357751846, 0.007645793724805117, 0.035032738000154495, 0.011523894965648651, -0.00023557465465273708, 0.0008058953681029379, 0.006373006850481033, -0.006183453369885683, -0.06396237015724182, 0.01298630889505148, 0.017449550330638885, -0.02816159464418888, -0.0344228558242321, 0.06266526132822037, 0.027668654918670654, -0.026136375963687897, -0.04597082361578941, 0.02312496118247509, -0.05586845800280571, 0.0016258829273283482, -0.00016042820061556995, -0.0019638733938336372, -0.05034961551427841, 0.06858137995004654, -0.0074798897840082645, -0.0022764934692531824, 0.07318948209285736, 0.005214160308241844, -0.03645157068967819, -0.02933734655380249, 0.08643769472837448, 0.07650021463632584, 0.05504647269845009, -0.008875695988535881, 0.04453681409358978, -0.03842075541615486, -0.03133264183998108, 0.007962623611092567, -0.001549839274957776, -0.00424500135704875, 0.005772382486611605, 0.05186069384217262, 0.09753239899873734, -0.008993025869131088, 0.06362099945545197, -0.04861859232187271, 0.004737085197120905, 0.009650749154388905, 0.05059796944260597, -0.010030868463218212, 0.07662519812583923, 0.02859470807015896, 0.04753556847572327, -0.013015777803957462, -0.04230064898729324, 0.029578521847724915, -0.03451541066169739, -0.041115228086709976, 0.04191172495484352, 0.012060531415045261, 0.01894824020564556, 0.03440236672759056, 0.03883259743452072, 0.10012760758399963, -0.0411505326628685, -0.015233532525599003, 0.013675420545041561, 0.04167236387729645, 0.006650135386735201, 0.00861554965376854, 0.002147694816812873, 0.0005135768442414701, 0.027117040008306503, -0.025913234800100327, -0.015128842554986477, -0.018661826848983765, -0.009887028485536575, 0.07195251435041428, -0.02184963971376419, 0.014377362094819546, 0.016824498772621155, -0.022242622449994087, -0.0444021038711071, -0.06851235032081604, -0.02774154022336006, -0.021858245134353638, -0.07665327191352844, -0.01912558823823929, 0.05450020730495453, -0.021394172683358192, -0.0583968348801136, -0.025249136611819267, 0.009978970512747765, 0.0006244737305678427, 0.04757097363471985, -0.03404872491955757, -0.02630375325679779, 0.037038180977106094, 0.005009355489164591, 0.04724082350730896, 0.007534847129136324, 0.011615972965955734, 0.018430223688483238, 0.008144541643559933, -0.03811545670032501, -0.003677449421957135, 0.017613381147384644, 0.019350308924913406, -0.001911443774588406, -0.06184074655175209, -0.018775172531604767, 0.0053009577095508575, 0.014996246434748173, -0.08428464829921722, 0.016340555623173714, 0.016110196709632874, 0.006170293316245079, 0.0607202909886837, -0.013829578645527363, 0.015322205610573292, -0.04667004197835922, -0.03172540292143822, 0.01797565445303917, 0.02039901725947857, 0.05691023916006088, -0.03920139744877815, 0.09913017600774765, 0.03333595395088196, -0.024288812652230263, -0.01240468304604292, -0.010110683739185333, -0.0162656307220459, 0.0005668791709467769, -0.023446979001164436, -0.033827561885118484, -0.007557320408523083, -0.06882584095001221, -0.013310220092535019, -0.0019248358439654112, -0.027746135368943214, -0.018033044412732124, 0.035300131887197495, 0.05633196234703064, -0.032326024025678635, 0.03935905918478966, -0.03812069445848465, 0.04664628952741623, -0.008078303188085556, -0.007909754291176796, 0.008893600665032864, 0.0356944315135479, -0.0009870323119685054, 0.009229322895407677, 0.007586449384689331, -0.0438816137611866, -0.02319648303091526, 0.003484668442979455, 0.04624650999903679, 0.03094242513179779, -0.014342132955789566, 0.02647566795349121 ]
[ -0.09864491969347, 0.014061454683542252, -0.05371512845158577, -0.04153657332062721, 0.02486133575439453, -0.008148091845214367, 0.006172725930809975, 0.023820720613002777, 0.0015932729002088308, -0.020785003900527954, -0.03336998447775841, -0.036464352160692215, -0.015648363158106804, 0.01991906948387623, 0.08821841329336166, 0.015044712461531162, -0.004838494583964348, -0.034941304475069046, -0.015125956386327744, -0.0002497292007319629, 0.0570671372115612, -0.0038758276496082544, -0.06304239481687546, -0.0534602589905262, 0.04330970719456673, 0.047069113701581955, 0.014001795090734959, -0.01596643403172493, 0.01233255211263895, -0.16799892485141754, 0.004911211784929037, 0.031552404165267944, 0.019852284342050552, -0.034464143216609955, -0.01965516246855259, 0.0571310855448246, 0.023732544854283333, 0.01653049886226654, -0.024002080783247948, 0.055245157331228256, -0.010939407162368298, 0.020704634487628937, -0.03241908550262451, -0.024859340861439705, 0.03319132700562477, -0.006194723304361105, -0.011927101761102676, -0.01671561412513256, -0.034179314970970154, 0.0031149128917604685, -0.046769432723522186, 0.005404829513281584, -0.0005357839982025325, -0.011748910881578922, 0.007803254295140505, 0.011725039221346378, 0.034020110964775085, 0.06156640499830246, 0.01647498458623886, 0.021742889657616615, 0.0073425741866230965, -0.020678948611021042, -0.13830536603927612, 0.08842495828866959, 0.0068513499572873116, 0.057020027190446854, -0.022587526589632034, -0.010776350274682045, -0.024855753406882286, 0.07369830459356308, 0.029440628364682198, 0.013134985230863094, -0.05787345767021179, 0.03568786755204201, 0.04474939778447151, -0.03119899332523346, 0.010543365962803364, 0.019373539835214615, 0.018405020236968994, -0.04725535959005356, -0.014970178715884686, -0.04443453997373581, -0.034132570028305054, -0.004193148110061884, -0.02365102618932724, 0.03471767157316208, -0.019715631380677223, 0.04673248529434204, 0.03806599974632263, 0.015557551756501198, 0.01716112531721592, -0.01821586862206459, 0.012845073826611042, 0.013344001024961472, -0.06443378329277039, 0.006916657090187073, 0.016254935413599014, 0.004219544120132923, -0.05560411885380745, 0.406220942735672, -0.08381769061088562, -0.03584175184369087, 0.07182006537914276, 0.018466515466570854, -0.006015037186443806, -0.005784814245998859, 0.01550242118537426, -0.03415541723370552, -0.0065050991252064705, -0.05156227946281433, -0.014760361984372139, -0.012989324517548084, 0.05350913852453232, -0.0660349577665329, -0.007558863144367933, 0.0026334221474826336, 0.024817122146487236, 0.008719745092093945, 0.0023290757089853287, -0.006166186649352312, 0.034074172377586365, 0.012545681558549404, 0.02373005449771881, 0.02245979942381382, 0.0016673665959388018, -0.02105404995381832, 0.0028045924846082926, 0.05172215774655342, 0.05743152275681496, 0.02559506706893444, 0.07809389382600784, -0.014067313633859158, -0.06769310683012009, -0.00264287693426013, 0.007958750240504742, 0.016962643712759018, 0.023699676617980003, -0.05687405914068222, 0.001565331476740539, 0.03354674577713013, 0.003483031177893281, 0.01572154462337494, 0.04878399148583412, -0.04165741056203842, -0.04780149087309837, 0.08655131608247757, 0.011125804856419563, -0.015899432823061943, -0.03534816578030586, -0.0076446691527962685, 0.0007632830529473722, 0.03000832349061966, -0.0027141079772263765, -0.06537185609340668, 0.006986960768699646, 0.03887486085295677, 0.052295997738838196, -0.004568421747535467, -0.06905807554721832, -0.01940353773534298, -0.06693211942911148, -0.0006064341869205236, -0.051442746073007584, 0.052181344479322433, 0.010187680833041668, -0.09278570860624313, -0.04903373867273331, 0.012583531439304352, 0.021522028371691704, -0.08834792673587799, -0.004349208902567625, 0.025579094886779785, -0.045395199209451675, 0.002068794099614024, 0.05209582298994064, -0.01814916357398033, -0.062368493527173996, -0.011950814165174961, 0.05511151999235153, 0.012801138684153557, 0.044992703944444656, 0.0092628113925457, -0.027631035074591637, 0.007581642828881741, -0.03772076591849327, -0.07019636034965515, -0.044208891689777374, -0.001596285030245781, -0.03489595651626587, 0.007511838339269161, -0.02191878855228424, -0.01996426098048687, -0.04647281765937805, 0.0715477392077446, -0.03899895399808884, -0.03688963130116463, 0.035837408155202866, 0.00969391968101263, 0.0022229456808418036, -0.0013494576560333371, -0.015362180769443512, 0.06524407863616943, -0.007358331233263016, 0.0316099189221859, -0.08995135873556137, 0.03696855902671814, 0.0548572838306427, -0.017703687772154808, 0.07261954247951508, 0.060820821672677994, -0.0360226184129715, -0.011991012841463089, 0.0032498990185558796, 0.02593955397605896, 0.02168891951441765, -0.018038246780633926, -0.008125108666718006, -0.009132268838584423, 0.005997037515044212, 0.01244271919131279, -0.05526071414351463, -0.02570771984755993, -0.011626604944467545, -0.35575902462005615, -0.030106324702501297, -0.006894461810588837, -0.03279286250472069, 0.05653785169124603, -0.06412434577941895, -0.018196264281868935, -0.03260409086942673, -0.029342401772737503, -0.011975271627306938, 0.09421123564243317, -0.01954050175845623, -0.02269512414932251, -0.06591929495334625, -0.007550172973424196, 0.011656252667307854, -0.014653395861387253, -0.07146483659744263, -0.016036177054047585, -0.020037565380334854, 0.02885267324745655, 0.004544656723737717, -0.019453665241599083, -0.1010027676820755, 0.02017524279654026, -0.025140700861811638, 0.08123946189880371, -0.0006756980437785387, 0.12292857468128204, -0.05794481188058853, 0.03249821066856384, -0.03890815004706383, 0.018175091594457626, -0.08459446579217911, 0.013260642066597939, -0.009104648604989052, 0.016484329476952553, 0.0054796901531517506, 0.06439954787492752, -0.015734611079096794, -0.0465746708214283, -0.011180398985743523, -0.0679367184638977, -0.034966446459293365, -0.03048604167997837, 0.0004097945347893983, -0.032676827162504196, -0.05432837828993797, -0.00846225768327713, 0.05936698615550995, 0.03035026043653488, 0.005036143120378256, 0.0024267707485705614, 0.006145911291241646, -0.0002727106329984963, -0.034143369644880295, -0.0769699215888977, 0.012044335715472698, 0.019853852689266205, -0.013945366255939007, 0.029137952253222466, 0.05767064169049263, 0.034528233110904694, -0.03796375170350075, 0.0005210041999816895, -0.004776261281222105, 0.014751136302947998, 0.010825498029589653, 0.053550343960523605, -0.028212804347276688, -0.019123544916510582, 0.12121929228305817, 0.026978665962815285, -0.020595338195562363, 0.03670307248830795, 0.033972304314374924, -0.003434062236919999, 0.0439276248216629, 0.01723644696176052, -0.02138053998351097, 0.022591525688767433, 0.018070442602038383, 0.02957620657980442, -0.051244087517261505, -0.04020332172513008, 0.017365464940667152, 0.015849821269512177, -0.03256968408823013, 0.015401790849864483, 0.014350024983286858, -0.048842959105968475, -0.00817960873246193, 0.02192259579896927, -0.057840123772621155, 0.09533502906560898, 0.0028016003780066967, -0.27402055263519287, 0.008212348446249962, 0.0660572499036789, 0.022340601310133934, -0.004057585261762142, 0.03906392678618431, 0.06317812949419022, -0.07126330584287643, 0.001641798298805952, 0.017695866525173187, 0.043482471257448196, -0.01240551471710205, 0.014728222042322159, 0.009469561278820038, 0.061368945986032486, -0.03893730416893959, 0.04278754070401192, -0.0022805356420576572, 0.03366824612021446, -0.004677400458604097, 0.022778773680329323, -0.0024726290721446276, 0.17934641242027283, -0.015211948193609715, 0.02717725932598114, 0.022586848586797714, 0.008443503640592098, 0.005342990159988403, 0.11594259738922119, 0.004768459592014551, 0.007890709675848484, 0.02390953339636326, 0.05307653546333313, -0.027608029544353485, -0.011626958847045898, -0.054709985852241516, -0.021715732291340828, 0.05536168813705444, -0.0014394624158740044, -0.0022070470731705427, 0.02078787051141262, -0.0024406060110777617, -0.031146273016929626, -0.007802549749612808, 0.05472511798143387, 0.0008764031808823347, 0.0014824721729382873, -0.020117225125432014, -0.05840218439698219, 0.006561277434229851, -0.015917377546429634, 0.011927141807973385, 0.004769823048263788, -0.028560128062963486, 0.04007568582892418, 0.053700920194387436, 0.030189722776412964, -0.01674240455031395, -0.011410379782319069, 0.023554489016532898, -0.02150145173072815, 0.01579534262418747, 0.11293384432792664, 0.06493784487247467, 0.0428851842880249 ]
[ -0.0017270591342821717, 0.01915866695344448, -0.002694482449442148, 0.00546357361599803, -0.0017765407683327794, 0.0039365217089653015, -0.007787615060806274, 0.00892714411020279, -0.0027240056078881025, -0.009325118735432625, -0.014878851361572742, -0.010659641586244106, 0.009636139497160912, -0.049494221806526184, 0.06930277496576309, 0.001346945995464921, -0.007505986839532852, -0.036628272384405136, 0.03328368812799454, 0.0002782107621897012, -0.0019077121978625655, 0.002889118390157819, 0.016243014484643936, 0.005422758404165506, 0.013338594697415829, -0.011725809425115585, -0.03185002878308296, 0.01676352694630623, 0.046641211956739426, -0.14613762497901917, -0.016607552766799927, -0.007605654187500477, -0.004477785900235176, -0.00937841646373272, -0.012713984586298466, 0.01791408471763134, 0.008880071341991425, -0.005716804880648851, 0.004140366334468126, -0.007147771306335926, -0.027224216610193253, -0.011673183180391788, -0.03206433728337288, 0.016083281487226486, 0.007440343964844942, 0.017131205648183823, 0.025445422157645226, -0.04273175820708275, -0.029229629784822464, -0.011015456169843674, -0.01994653232395649, 0.015510077588260174, -0.032894521951675415, -0.02107313461601734, 0.04727284610271454, -0.01341249980032444, 0.00724415248259902, -0.019411101937294006, -0.013706427998840809, -0.01590448059141636, -0.0280037559568882, -0.02970840036869049, -0.03977357968688011, -0.025366326794028282, 0.0010976748308166862, -0.0018483223393559456, -0.010765242390334606, 0.01941678114235401, 0.0054848273284733295, -0.0014507229207083583, -0.00845868606120348, -0.002959789242595434, 0.012474112212657928, -0.0005945212906226516, 0.0071485694497823715, 0.022145681083202362, -0.0009811458876356483, -0.00335138407535851, -0.016481081023812294, -0.003985358867794275, -0.012434645555913448, 0.006744800601154566, -0.002896007616072893, 0.017978724092245102, 0.0037032815162092447, -0.011660966090857983, 0.0020336692687124014, -0.009163391776382923, 0.049712542444467545, 0.027170399203896523, -0.011214949190616608, 0.04474903643131256, -0.009449128992855549, 0.005326920188963413, -0.07208967208862305, -0.006621606182307005, 0.0008758173207752407, -0.038198113441467285, -0.03798697143793106, 0.8562631011009216, -0.028659425675868988, 0.049025360494852066, 0.03730413690209389, -0.0032020409125834703, 0.011885368265211582, 0.023180965334177017, -0.009346186183393002, 0.002559924265369773, 0.0110522685572505, -0.056131511926651, 0.020322637632489204, 0.03043660894036293, 0.03414519503712654, -0.0019262231653556228, 0.010355930775403976, -0.02942616119980812, 0.005204149521887302, -0.02873542718589306, 0.021648887544870377, 0.009333238005638123, 0.041775088757276535, -0.00818488746881485, 0.037709541618824005, 0.037185754626989365, -0.011465778574347496, -0.16004233062267303, -0.007266043685376644, -8.18430594920325e-33, 0.058661092072725296, 0.03288400173187256, 0.0033223857171833515, -0.00551264826208353, 0.0393868088722229, -0.0002465298166498542, 0.06682851165533066, -0.014763010665774345, -0.02000500075519085, -0.030194943770766258, 0.013981649652123451, -0.029966648668050766, -0.0036058889236301184, 0.014206687919795513, 0.03033708594739437, -0.03223641216754913, 0.017934544011950493, 0.030068865045905113, -0.011314180679619312, 0.0019667763262987137, 0.042283132672309875, 0.028041614219546318, 0.005806456785649061, 0.009412833489477634, -0.018856298178434372, 0.0072089615277945995, -0.0012132771080359817, -0.0006262369570322335, -0.054689858108758926, -0.044714223593473434, -0.02527599036693573, 0.020534856244921684, 0.0069325268268585205, -0.02668854407966137, 0.05029032379388809, -0.049070172011852264, -0.018125377595424652, 0.006530735641717911, -0.013804160989820957, -0.02726672776043415, -0.013652516528964043, 0.0009944681078195572, -0.02914336882531643, 0.00002464513454469852, -0.04240730404853821, -0.011514213867485523, -0.008231018669903278, 0.01663505658507347, 0.015921959653496742, 0.0182501170784235, 0.03222186863422394, 0.027286630123853683, 0.0013719400158151984, -0.0038599162362515926, -0.03458264470100403, 0.013252892531454563, -0.012270208448171616, -0.025663502514362335, -0.0017377071781083941, 0.014147200621664524, -0.016416342929005623, -0.007936090230941772, -0.018152717500925064, 0.009578057564795017, -0.04217324033379555, -0.018188875168561935, -0.02232961915433407, -0.006242527160793543, 0.06973657011985779, 0.02316983789205551, -0.03105849027633667, 0.013831405900418758, -0.015045749954879284, -0.0019792274106293917, 0.019881032407283783, -0.015471849590539932, -0.0437590666115284, -0.04197777807712555, 0.00009517679427517578, 0.03340265527367592, 0.00915837474167347, -0.003919296897947788, 0.01740705594420433, 0.0019012336852028966, 0.04280306026339531, -0.03450511023402214, 0.024588147178292274, -0.018659986555576324, -0.019872130826115608, -0.004832809325307608, 0.03157017007470131, 0.025790326297283173, -0.0030059085693210363, -0.04002361744642258, -0.0054594650864601135, 8.279408584972558e-33, -0.0034940741024911404, -0.011275711469352245, -0.029572535306215286, 0.017109524458646774, -0.01578335464000702, -0.02991139143705368, 0.01076747477054596, 0.018896305933594704, -0.02358095347881317, 0.06208953261375427, -0.010214843787252903, -0.014788821339607239, -0.024739963933825493, 0.021369021385908127, 0.05720101296901703, -0.05035572126507759, 0.007917278446257114, -0.028986508026719093, 0.027850063517689705, 0.010939585976302624, 0.02255420573055744, 0.010504577308893204, 0.017328951507806778, 0.014907637611031532, 0.021857161074876785, 0.02486363984644413, -0.049039795994758606, 0.0020672159735113382, -0.006542795337736607, 0.0023973556235432625, 0.0030731954611837864, -0.014952902682125568, 0.03126775845885277, -0.042291972786188126, 0.004627537913620472, 0.016612393781542778, -0.004260003101080656, -0.008695575408637524, 0.004842406138777733, -0.025247495621442795, 0.05301776900887489, -0.016628719866275787, 0.010217728093266487, 0.016674011945724487, -0.01932697556912899, 0.018476352095603943, -0.005373144056648016, -0.007409222424030304, -0.0035051838494837284, 0.025854259729385376, 0.03432895615696907, 0.011726150289177895, 0.02561209537088871, -0.005101255606859922, 0.012442939914762974, -0.0208906140178442, -0.009337817318737507, -0.015863144770264626, -0.02416209876537323, 0.05417487770318985, -0.0020279870368540287, -0.021830756217241287, -0.00024693363229744136, -0.00852846447378397, 0.014314871281385422, -0.012200458906590939, 0.00902567245066166, -0.029271425679326057, -0.02469041384756565, 0.0010849698446691036, -0.03221334517002106, -0.0014545121230185032, -0.010832540690898895, 0.044949039816856384, -0.02113909274339676, -0.01261479128152132, -0.017558012157678604, 0.021034933626651764, -0.008138535544276237, -0.00706515135243535, 0.001371761434711516, -0.0033740520011633635, -0.007043194957077503, 0.014694103971123695, -0.013630873523652554, 0.01286808867007494, -0.006165700498968363, 0.029769141227006912, -0.006332031916826963, -0.0030244472436606884, 0.007344412617385387, -0.0036455667577683926, 0.03445703536272049, 0.02057286538183689, -0.010961078107357025, -1.360659318550006e-8, -0.03661483898758888, 0.010616757906973362, -0.020784640684723854, 0.038752149790525436, 0.004337133839726448, 0.04053742438554764, -0.012817730195820332, -0.024871885776519775, 0.01626473478972912, -0.01305165234953165, 0.03803339973092079, 0.010842499323189259, -0.016094902530312538, 0.03514033928513527, 0.020009279251098633, -0.048980992287397385, 0.009789216332137585, 0.009934209287166595, 0.0027871381025761366, -0.0144801689311862, 0.005377408117055893, 0.05949317291378975, -0.029511306434869766, 0.013002152554690838, 0.0015044176252558827, -0.05127718299627304, 0.026451293379068375, -0.06750374287366867, 0.028064578771591187, -0.0006638654740527272, 0.014804420061409473, -0.030202170833945274, -0.028372367843985558, 0.031581372022628784, -0.028038935735821724, -0.007030411623418331, 0.024071618914604187, 0.008397947996854782, 0.019458040595054626, 0.013196229003369808, -0.0261369701474905, 0.0013832410331815481, 0.03021450713276863, -0.040564198046922684, 0.0006492679822258651, -0.019550902768969536, -0.011931651271879673, 0.015639860183000565, 0.03551432862877846, -0.00801488570868969, 0.01671813800930977, 0.015318313613533974, -0.012251305393874645, 0.026593273505568504, 0.005853644572198391, 0.03722839057445526, -0.0013435962609946728, -0.02162035182118416, -0.0029040887020528316, -0.024928441271185875, 0.04086697846651077, -0.0032593372743576765, -0.014035611413419247, -0.024042844772338867 ]
f-tacit-programming
https://markhneedham.com/blog/2010/05/10/f-tacit-programming
false
2010-05-09 22:17:57
Learnings from my first project of 2010
[ "software-development" ]
[ "Software Development" ]
Pat Kua recently wrote http://www.thekua.com/atwork/2010/03/six-years-at-thoughtworks/[a retrospective of his time working at ThoughtWorks] and since I recently finished the first project I've worked on in 2010 I thought it would be interesting to have a look at what I'd learned and observed while working on it. == "Perfect" code I've previously believed that driving for the cleanest code with the least duplication and best structured object oriented design was the way to go but on this project we favoured a simpler design which felt quite procedural in comparison to some of the code bases I've worked on. I initially felt that this would be a problem but the code was still pretty *easy to change* and everyone on the team was able to understand it without any problem so that seemed to outweigh any other concerns. == There's always a story to be told The client initially had a very stringent change process where if a developer wanted to implement a new feature they would have to get a change request signed off before they were able to check out a branch of the code base to work on it. This had been changed before I started working there such that Subversion was being used by the development teams although the code still had to go through quite a stringent change management process before it could be released into production. We didn't really understand why this was the case because it just seemed to make it more difficult to get anything live. As it turned out that change process was introduced to get around a problem they'd experienced where code was being manually changed in live. This meant that when there was a bug it was difficult to reproduce it since that version of the code wasn't in source control. Of course there are other ways to achieve this goal but it was interesting that the approach being taken wasn't completely illogical but had been arrived at through a series of steps which did make sense. Dan North talks of the need to have a http://www.markhneedham.com/blog/2009/04/25/pimp-my-architecture-dan-north/[project shaman] who can *tell the story of why certain decisions were made* and the history behind them and it's always useful to have someone who can do that. == Theory of constraints The other interesting thing that I learnt, which is directly linked to the above, is that there is always a constraint within a system and *no matter how much you optimise other parts of your system it won't make any difference to the overall situation*. In this case no matter how quickly the team was able to code new requirements it didn't make that much difference because there was still quite a big wait at the end pushing the release through the release management system so it could go into production. We were starting to work on trying to improve this part of the process when I rolled off the project but a lesson for me here is to try and identify where the constraint is in any given system and try and work out how we can address that.
null
null
[ 0.03484154865145683, 0.008388322778046131, -0.00852613989263773, 0.03166660666465759, 0.08507940173149109, 0.03187032788991928, 0.02732175402343273, 0.049630407243967056, 0.018506981432437897, -0.031143581494688988, -0.03311426565051079, -0.007024125196039677, -0.06300222128629684, 0.00615293113514781, -0.03743491694331169, 0.06572628766298294, 0.06660806387662888, -0.00913317035883665, 0.031727664172649384, 0.014335955493152142, 0.03889935463666916, 0.0800987035036087, 0.006683493964374065, 0.01765628345310688, 0.024803929030895233, 0.0187726691365242, 0.001133900135755539, -0.010080421343445778, -0.07066302001476288, -0.012064922600984573, 0.051820289343595505, 0.00504590617492795, 0.011310555040836334, 0.005984219256788492, 0.0010226115118712187, -0.025954164564609528, -0.026248274371027946, 0.01943332701921463, 0.00913628377020359, 0.013377484865486622, -0.06274084746837616, 0.04850340262055397, -0.004979544784873724, 0.013883035629987717, -0.033687759190797806, 0.010416711680591106, -0.02819475345313549, 0.017706407234072685, -0.02033551037311554, 0.006282620131969452, -0.06574736535549164, 0.024653276428580284, -0.00207073544152081, -0.008177469484508038, -0.02218390814960003, 0.06391017138957977, 0.015511550940573215, -0.052750930190086365, -0.0009896489791572094, -0.042587537318468094, -0.0042545064352452755, -0.01656143181025982, 0.01163172721862793, 0.025144105777144432, 0.027858687564730644, -0.022842280566692352, -0.00832559634000063, 0.03560326620936394, -0.02565648779273033, 0.0027772397734224796, 0.0008074649376794696, 0.0038465862162411213, -0.005346173886209726, -0.014887525700032711, 0.008696186356246471, -0.04776517674326897, 0.0006053298129700124, 0.07365712523460388, 0.005633099470287561, 0.04046621546149254, -0.03658004477620125, 0.020214416086673737, 0.0048573995009064674, 0.02553328312933445, 0.0022673034109175205, -0.04514201357960701, 0.009698368608951569, -0.023380221799016, -0.0599789172410965, 0.05669145658612251, 0.021855762228369713, -0.06194956600666046, 0.034045226871967316, 0.0503946915268898, -0.0003340799012221396, 0.017183613032102585, 0.022344335913658142, 0.020347366109490395, 0.006165563594549894, -0.011565346270799637, -0.03291661664843559, -0.017532741650938988, 0.012907474301755428, -0.011281766928732395, -0.07153498381376266, -0.012132028117775917, -0.023511448875069618, -0.013691713102161884, -0.009224609471857548, -0.009321684017777443, -0.024289069697260857, 0.025978727266192436, -0.01126823853701353, 0.019113844260573387, -0.056796763092279434, 0.06578978896141052, -0.00643807090818882, -0.05909435823559761, -0.013504021801054478, 0.010364496149122715, 0.043650295585393906, 0.009412473067641258, -0.004771060310304165, 0.08596344292163849, 0.016029061749577522, 0.030349113047122955, -0.013751405291259289, 0.05915098637342453, -0.026001159101724625, -0.07051070034503937, -0.0028738484252244234, 0.04723396524786949, -0.05072014033794403, -0.006588823162019253, 0.0015835814410820603, -0.03432637080550194, -0.00329914060421288, 0.013867570087313652, 0.01978679560124874, 0.04854279011487961, -0.009640679694712162, -0.038534827530384064, 0.024401089176535606, 0.025681374594569206, 0.017594771459698677, 0.018098173663020134, -0.0007956330664455891, -0.029621804133057594, -0.045547522604465485, -0.0021203490905463696, -0.017181657254695892, 0.017857197672128677, 0.009326878003776073, -0.0358520969748497, 0.030220046639442444, 0.09006591141223907, 0.033207833766937256, 0.013331946916878223, -0.017553512006998062, 0.0274298507720232, 0.040708187967538834, 0.031236793845891953, 0.01430374663323164, 0.026576094329357147, 0.015296177938580513, 0.0007230909541249275, -0.0031146511901170015, 0.03132626414299011, 0.007783984299749136, 0.011608211323618889, -0.06190430372953415, -0.06064010038971901, 0.053210753947496414, -0.04976693168282509, -0.029967142269015312, 0.04746902734041214, 0.08818185329437256, 0.019774775952100754, 0.03213391453027725, 0.00975645612925291, -0.07737809419631958, 0.02287929877638817, -0.000020464854969759472, 0.029370399191975594, 0.027913613244891167, -0.02998136729001999, 0.05818752199411392, 0.02230924367904663, 0.011958594433963299, 0.03668291121721268, -0.08056648075580597, -0.08883887529373169, -0.02761716954410076, -0.022329354658722878, 0.05155407637357712, -0.02059292420744896, -0.0035056311171501875, 0.08226940780878067, -0.007056365255266428, 0.06247864291071892, 0.03789296746253967, 0.006892952602356672, 0.008780053816735744, -0.054020363837480545, -0.03920668736100197, 0.05293558910489082, 0.05483076721429825, 0.0069643487222492695, -0.05810875445604324, 0.01651810295879841, 0.0011399431386962533, -0.015708336606621742, 0.04675573483109474, -0.021495698019862175, 0.028409913182258606, 0.011401180177927017, 0.04983893781900406, -0.03615204244852066, 0.0489882156252861, -0.05573756992816925, -0.0020068471785634756, 0.017436658963561058, -0.0257913526147604, 0.0066992794163525105, -0.005315530113875866, 0.1065349280834198, 0.06239258125424385, -0.07012729346752167, -0.029474535956978798, 0.030459625646471977, 0.027955008670687675, -0.04786897450685501, -0.014346271753311157, -0.013769475743174553, 0.017122633755207062, 0.0007404807256534696, -0.05372302606701851, -0.03485764563083649, 0.01813279092311859, -0.032829251140356064, 0.020135164260864258, 0.05242736265063286, -0.027675360441207886, 0.04885050281882286, -0.009158051572740078, -0.021306773647665977, -0.0133244963362813, -0.021243274211883545, -0.05521779879927635, 0.03294903784990311, -0.004962232429534197, -0.012169639579951763, 0.06782086938619614, -0.0171708632260561, -0.038839537650346756, -0.04302610084414482, -0.04494990035891533, -0.005326289217919111, 0.03386563062667847, 0.06553144007921219, -0.028908876702189445, 0.04705003276467323, 0.0033606616780161858, 0.021121922880411148, 0.010963793843984604, -0.04341771453619003, -0.031030021607875824, -0.027018725872039795, 0.004062391817569733, 0.025541361421346664, -0.005715918727219105, 0.028072336688637733, 0.01528116874396801, -0.009287792257964611, -0.0078116049990057945, -0.0251686442643404, 0.0332290343940258, -0.0007985731353983283, -0.012848686426877975, -0.03468848019838333, -0.021080585196614265, 0.0539257638156414, -0.05327661707997322, -0.017856156453490257, 0.010634807869791985, -0.06439054012298584, 0.057076819241046906, -0.07208064198493958, -0.04743960499763489, 0.015773406252264977, 0.00900863204151392, 0.034823790192604065, -0.029305167496204376, 0.02536609023809433, 0.07996740192174911, -0.003872424364089966, 0.027180565521121025, -0.011043204925954342, -0.00437382236123085, 0.03256084769964218, 0.028296994045376778, -0.0017305932706221938, 0.04429944232106209, 0.01904730685055256, -0.005947914905846119, -0.03392491489648819, 0.05147619917988777, -0.025073204189538956, -0.2904486358165741, 0.03021245449781418, 0.009860923513770103, -0.05889655649662018, 0.029282473027706146, 0.008891617879271507, 0.01387479342520237, -0.05595739558339119, -0.013537565246224403, 0.0128294937312603, -0.03799356892704964, -0.06350404024124146, -0.01949554681777954, 0.06344976276159286, -0.014126001857221127, 0.030044617131352425, 0.011400224640965462, -0.029314300045371056, -0.019426247105002403, 0.037866756319999695, -0.017592180520296097, -0.06882932782173157, 0.0020176838152110577, 0.024441253393888474, 0.04733012244105339, 0.058841221034526825, -0.096194788813591, 0.05907928943634033, -0.04530487582087517, -0.013620197772979736, 0.0026723386254161596, 0.011118188500404358, 0.0015719266375526786, -0.02548167109489441, -0.007727844640612602, -0.012254612520337105, 0.028555631637573242, 0.010387941263616085, -0.0031628201249986887, 0.0191324595361948, -0.018337881192564964, -0.04027529060840607, 0.009145713411271572, 0.011005793698132038, 0.07598064094781876, -0.0032057897187769413, -0.09021535515785217, -0.01907816156744957, -0.0337090827524662, 0.06781911104917526, -0.025163237005472183, -0.02422378584742546, 0.00355971185490489, 0.041803937405347824, -0.004471811931580305, -0.013927429914474487, -0.0037300889380276203, -0.01590023934841156, -0.04781956970691681, -0.023336591199040413, -0.01129055954515934, -0.03114941716194153, -0.010751497931778431, -0.04276593402028084, 0.0068281544372439384, -0.058384060859680176, -0.059662602841854095, -0.004173660650849342, 0.08614631742238998, 0.017376190051436424, -0.04400508478283882, 0.0240734051913023, 0.001862886012531817, -0.10786709934473038, -0.004700483754277229, -0.015265430323779583, -0.02112886868417263, -0.017132697626948357, 0.019459804520010948, 0.027845706790685654, -0.021200448274612427, -0.06374786794185638, 0.019634895026683807, 0.022777419537305832, 0.012384572066366673, -0.008904744870960712, 0.045596592128276825, 0.031007498502731323, -0.03678147867321968, 0.02036232128739357, 0.06633466482162476, -0.009208912029862404, -0.02862490899860859, -0.029375659301877022, 0.016376912593841553, 0.0037961085326969624, 0.025894789025187492, -0.018741877749562263, 0.007509113755077124, 0.03168724849820137, 0.004813439212739468, -0.05460064485669136, 0.03986933082342148, -0.023371046409010887, -0.010035239160060883, -0.006835946347564459, -0.04775536060333252, 0.02128560096025467, 0.045575059950351715, 0.04521426931023598, -0.004481982439756393, -0.04871842637658119, 0.005127509590238333, -0.05475567653775215, -0.028732534497976303, -0.005306565668433905, 0.012812369503080845, 0.037094276398420334, -0.011057056486606598, -0.01559347752481699, -0.02986031398177147, 0.015552847646176815, -0.0017337927129119635, 0.009382053278386593, -0.07187791168689728, -0.020657997578382492, -0.024397868663072586, -0.015568853355944157, 0.022161541506648064, 0.02456914633512497, -0.02111959271132946, 0.036154743283987045, 0.023331595584750175, -0.03357094153761864, 0.008394901640713215, -0.019118035212159157, -0.058122556656599045, -0.022370176389813423, -0.012055768631398678, -0.007221781183034182, -0.00444736797362566, 0.03347478434443474, 0.010708412155508995, 0.008864483796060085, 0.04803646728396416, 0.005169387441128492, 0.03804381564259529, -0.02122851274907589, 0.04112250357866287, 0.010437514632940292, 0.0011318139731884003, -0.09400949627161026, 0.025381367653608322, -0.0641336739063263, -0.03690247982740402, -0.03101644478738308, 0.04062310978770256, -0.03229691833257675, -0.03316569700837135, -0.0007358122384175658, 0.008655711077153683, -0.05917910486459732, -0.039012081921100616, -0.02638263627886772, 0.010878906585276127, 0.058674123138189316, -0.012362001463770866, 0.030870312824845314, -0.0285653006285429, -0.013292655348777771, 0.008019614964723587, 0.02735498920083046, -0.05502596125006676, 0.005937708076089621, 0.02312135137617588, 0.0024411885533481836, -0.00620785029605031, -0.004805413074791431, 0.04167970269918442, 0.011480339802801609, 0.006027415860444307, -0.008755267597734928, 0.002531035104766488, 0.019146418198943138, 0.03199934586882591, -0.004114780109375715, -0.00163290707860142, 0.010540921241044998, -0.00644806819036603, -0.018364442512392998, -0.043199557811021805, -0.006621353328227997, -0.01126068364828825, 0.017031123861670494, -0.03314582258462906, -0.08198761940002441, 0.04210719093680382, 0.014217968098819256, 0.03708904609084129, 0.014686860144138336, -0.004340394400060177, 0.0055623953230679035, -0.011930858716368675, 0.03146052360534668, 0.06418084353208542, -0.06084863841533661, 0.0009532013209536672, -0.005911244545131922, 0.018969111144542694, -0.004956516902893782, -0.002007528906688094, -0.03532419353723526, -0.025995828211307526, -0.03605657443404198, 0.0020255751442164183, -0.04904171824455261, -0.021066656336188316, -0.011436479166150093, 0.007951009087264538, -0.030247630551457405, -0.01591736078262329, -0.014630560763180256, 0.0013581091770902276, -0.004460458643734455, -0.027515152469277382, 0.004863464739173651, -0.0279989093542099, 0.006300127599388361, 0.005701706279069185, -0.02846258506178856, 0.010080261155962944, -0.019742615520954132, 0.016864651814103127, 0.018179435282945633, -0.024500329047441483, -0.018350329250097275, -0.02075306326150894, -0.0033897431567311287, -0.007667366415262222, 0.036398183554410934, -0.012733640149235725, -0.029700439423322678, -0.035933155566453934, -0.017459942027926445, -0.046044547110795975, 0.016917899250984192, -0.04284468665719032, 0.004822864197194576, 0.01921974867582321, 0.05685875937342644, 0.015181941911578178, 0.02153102122247219, -0.019833384081721306, -0.026848699897527695, 0.04646475985646248, -0.0716223493218422, -0.03266064077615738, -0.03835988789796829, -0.05399322509765625, -0.00829953420907259, 0.01348910667002201, 0.02297765575349331, -0.04194701090455055, 0.047344185411930084, 0.02292565256357193, 0.035105109214782715, 0.0339118093252182, -0.004855816252529621, 0.033775199204683304, -0.06590937823057175, 0.0009174818405881524, -0.0814952552318573, 0.012058072723448277, 0.038075268268585205, -0.005135905928909779, -0.006379066500812769, -0.0034150658175349236, -0.044312842190265656, 0.05429435148835182, -0.0698339194059372, -0.014962838962674141, 0.056605540215969086, 0.004579746164381504, -0.003359121736139059, 0.02406826987862587, -0.07555680721998215, 0.046623650938272476, 0.03161151707172394, -0.04097926244139671, -0.02936147153377533, -0.04024859890341759, 0.056812990456819534, 0.0076021612621843815, 0.04791037365794182, -0.03179444745182991, -0.004856284242123365, 0.07386494427919388, 0.014296644367277622, 0.007078976836055517, 0.053693611174821854, -0.007611785549670458, 0.03956533595919609, 0.048455484211444855, 0.021769186481833458, -0.011023404076695442, 0.019054828211665154, -0.008331033401191235, -0.05976003780961037, 0.019646549597382545, 0.026156695559620857, -0.037558313459157944, -0.02784613147377968, 0.06568172574043274, 0.02848975546658039, -0.019298408180475235, -0.04504888132214546, 0.004159764386713505, -0.0725412666797638, -0.004789647180587053, -0.011509762145578861, -0.007925176993012428, -0.046211715787649155, 0.04091210663318634, 0.0024180610198527575, 0.006570782978087664, 0.05681223049759865, -0.0006501831812784076, -0.024376969784498215, -0.015067222528159618, 0.09100738167762756, 0.07261137664318085, 0.06575211882591248, 0.011951271444559097, 0.056372128427028656, -0.01874786987900734, -0.035086583346128464, 0.01952102594077587, -0.0006286612479016185, -0.024421321228146553, -0.03304680436849594, 0.027302740141749382, 0.05274359881877899, -0.01782304234802723, 0.058992184698581696, -0.01719372533261776, -0.004251357167959213, -0.001488962909206748, 0.02644074708223343, 0.0233475249260664, 0.09260240942239761, 0.015001516789197922, -0.003181436099112034, -0.009228953160345554, -0.05027799680829048, 0.01359359547495842, -0.032026004046201706, -0.020663615316152573, 0.03140849247574806, 0.00520949624478817, 0.015905747190117836, 0.008584460243582726, 0.020894354209303856, 0.07983997464179993, -0.04720485210418701, 0.009346322156488895, -0.00898711010813713, 0.03955232724547386, 0.005622261203825474, -0.0005001223180443048, -0.035157736390829086, -0.02004423178732395, 0.015302836894989014, -0.02566247619688511, -0.010585149750113487, -0.008790244348347187, -0.023405132815241814, 0.06074773520231247, -0.012400778010487556, -0.0012738965451717377, 0.030521070584654808, 0.010777453891932964, -0.03043414279818535, -0.05427169054746628, -0.04498056322336197, -0.04512057080864906, -0.04259836673736572, -0.029116664081811905, 0.01976628601551056, -0.010981880128383636, -0.04085046425461769, -0.006290362682193518, -0.03561563417315483, -0.030544012784957886, 0.05659209564328194, -0.051365140825510025, -0.01939990557730198, 0.012146464549005032, 0.01975640282034874, 0.013837028294801712, 0.02070733532309532, 0.050299596041440964, -0.012353031896054745, -0.006066892296075821, -0.026344535872340202, 0.009546702727675438, 0.022664617747068405, 0.016964035108685493, 0.0034472167026251554, -0.07478787004947662, 0.034851714968681335, 0.025418294593691826, -0.009115606546401978, -0.05967066064476967, 0.023796826601028442, 0.0036962958984076977, -0.008914449252188206, 0.05377958342432976, -0.013400615192949772, 0.015956705436110497, -0.01970694027841091, -0.005565351340919733, -0.02221609093248844, 0.010313386097550392, 0.04801054298877716, -0.015886161476373672, 0.08250397443771362, 0.01690971851348877, -0.012726497836411, -0.039241984486579895, -0.0015074547845870256, 0.00010069619747810066, -0.011635945178568363, -0.022818271070718765, -0.03939344733953476, -0.02429473027586937, -0.06315138190984726, -0.01723938249051571, 0.01966521516442299, -0.026357855647802353, -0.03824051842093468, 0.022250419482588768, 0.026243245229125023, -0.04895521327853203, 0.024584723636507988, -0.04271780326962471, 0.046650856733322144, -0.014918330125510693, -0.01166640967130661, -0.0034447244834154844, 0.009413687512278557, 0.0052064331248402596, -0.0023073088377714157, 0.017290834337472916, -0.05441933870315552, -0.005276672076433897, 0.0032101294491440058, 0.029120581224560738, 0.033533964306116104, 0.012120719067752361, 0.0030708895064890385 ]
[ -0.11069189012050629, -0.014262951910495758, -0.028511086478829384, -0.032912593334913254, 0.049795541912317276, -0.04493050277233124, -0.03650950267910957, 0.02812473475933075, -0.007971249520778656, -0.016895940527319908, 0.0004561040841508657, 0.007654124870896339, -0.012724753469228745, -0.010621091350913048, 0.09715159982442856, 0.01800338178873062, -0.021471066400408745, -0.06366842240095139, 0.04037583991885185, 0.023524994030594826, 0.0062011671252548695, -0.04023267328739166, -0.0253665242344141, -0.010366015136241913, 0.00915728509426117, 0.03835644572973251, 0.024762721732258797, -0.024716174229979515, 0.01263346616178751, -0.19352811574935913, -0.005452720448374748, 0.029368644580245018, 0.053302016109228134, -0.010333552025258541, 0.019815005362033844, 0.06813063472509384, 0.0027658543549478054, 0.016740849241614342, -0.029381535947322845, 0.03762753680348396, 0.022852187976241112, 0.042379360646009445, -0.048379551619291306, -0.05331979691982269, 0.004958462901413441, 0.005847591906785965, 0.01171240396797657, -0.0269454438239336, -0.018322333693504333, 0.01744740456342697, -0.06721523404121399, -0.022281887009739876, -0.02372291311621666, -0.016117213293910027, -0.0003399343986529857, 0.02881600894033909, 0.015758091583848, 0.07784347981214523, -0.005480008665472269, 0.015086537227034569, 0.010831335559487343, -0.033461447805166245, -0.12486673891544342, 0.0585184246301651, 0.0628824457526207, 0.07099872082471848, -0.04176333546638489, -0.06154019385576248, -0.017893193289637566, 0.08543621748685837, -0.004363092128187418, -0.027490053325891495, -0.018020562827587128, 0.022864695638418198, 0.022970879450440407, -0.00474389735609293, -0.004031563643366098, 0.03058771602809429, 0.012082193046808243, -0.04866906255483627, -0.022121313959360123, -0.010851387865841389, -0.034101009368896484, 0.0021667368710041046, -0.049895692616701126, 0.019376588985323906, -0.010893969796597958, 0.07864919304847717, 0.03778400644659996, 0.04068196192383766, 0.040656715631484985, -0.01235347893089056, 0.0783136859536171, -0.016689671203494072, -0.07524822652339935, 0.01404617726802826, -0.013478663749992847, 0.017880098894238472, -0.036726031452417374, 0.46266114711761475, -0.014685656875371933, -0.04455336555838585, 0.07508935779333115, 0.036966513842344284, -0.00032175934757106006, 0.025832876563072205, 0.02277378924190998, -0.03300191089510918, 0.031120171770453453, -0.0075112138874828815, -0.001945882337167859, 0.025510167703032494, 0.07721570879220963, -0.05323263257741928, -0.0005272558773867786, 0.023471660912036896, 0.00033879312104545534, 0.01765437237918377, -0.004924285691231489, -0.012258816510438919, -0.0019488708348944783, 0.025714954361319542, 0.009655976668000221, -0.006471570115536451, -0.01940934918820858, -0.018619954586029053, 0.028196441009640694, 0.04220885410904884, 0.02258504182100296, 0.01960861310362816, 0.04604315757751465, -0.035821232944726944, -0.04855884984135628, -0.0037753568030893803, 0.003881933866068721, 0.012008491903543472, 0.03275475651025772, -0.011117206886410713, -0.017899760976433754, 0.03358511999249458, -0.009310847148299217, 0.003158551175147295, 0.013740397989749908, -0.023418644443154335, -0.05018920451402664, 0.0872965082526207, 0.024899259209632874, -0.019167104735970497, 0.007604766171425581, -0.029758600518107414, 0.008748224005103111, 0.019047746434807777, -0.0008050987380556762, -0.055627595633268356, 0.030070189386606216, 0.009299739263951778, 0.08056675642728806, -0.01614987663924694, -0.06892631202936172, 0.009814555756747723, 0.0010818670270964503, -0.018385155126452446, -0.03504481166601181, 0.03630298003554344, 0.05510595813393593, -0.09165683388710022, -0.013573155738413334, 0.002828841796144843, 0.07160106301307678, -0.04573168605566025, -0.030034253373742104, 0.03395191952586174, -0.00900476984679699, -0.017923559993505478, 0.05463678017258644, -0.03159086033701897, -0.029794108122587204, 0.024639368057250977, 0.04266904667019844, 0.020838921889662743, 0.013673625886440277, 0.010110068134963512, -0.04380732774734497, 0.006643664091825485, -0.035181332379579544, -0.09519422054290771, -0.03442349284887314, 0.011176315136253834, -0.042210113257169724, 0.001546513638459146, -0.012841502204537392, -0.014378702268004417, -0.08682207763195038, 0.09170205146074295, -0.015599248930811882, -0.027925338596105576, 0.014365611597895622, 0.006966749671846628, -0.0238161850720644, -0.026607006788253784, -0.03840624913573265, 0.06681399047374725, -0.036457858979701996, 0.012094343081116676, -0.08747363090515137, 0.047867998480796814, 0.04468447342514992, -0.04289475828409195, 0.0748583972454071, 0.05304726958274841, -0.04019646719098091, -0.018277078866958618, 0.014020713046193123, 0.039184607565402985, 0.018362445756793022, -0.02930033765733242, -0.019076107069849968, 0.01045645959675312, 0.008873033337295055, 0.015256842598319054, -0.010521945543587208, 0.015982018783688545, -0.043077994138002396, -0.33357900381088257, -0.024169612675905228, -0.04979030415415764, -0.012671152129769325, 0.013641929253935814, -0.06678690761327744, 0.009972908534109592, -0.03460332751274109, -0.017274901270866394, -0.009783698245882988, 0.07700110226869583, -0.0002512943174224347, 0.00598918367177248, -0.09133905172348022, -0.00689922459423542, -0.0033899175468832254, -0.018150215968489647, -0.004296944011002779, -0.0564287006855011, -0.025511765852570534, -0.007495502475649118, -0.010044706985354424, -0.017851928249001503, -0.060577355325222015, -0.02361510880291462, -0.04612763226032257, 0.10835899412631989, -0.01802639476954937, 0.10058820247650146, -0.020180488005280495, 0.03891418129205704, -0.01726764626801014, 0.03325708582997322, -0.11359260976314545, 0.03473038971424103, 0.003091254038736224, 0.023235797882080078, -0.014649874530732632, 0.02339908294379711, -0.036286771297454834, -0.02809607982635498, 0.0022752895019948483, -0.07260409742593765, -0.04373105987906456, -0.06765548139810562, 0.001531247515231371, -0.04632424935698509, -0.027423573657870293, -0.03143678233027458, 0.07695785909891129, 0.008090614341199398, -0.009019083343446255, 0.015153683722019196, 0.015180903486907482, -0.01072779856622219, -0.029689393937587738, -0.08031193166971207, 0.02692290209233761, 0.03827420249581337, -0.011179246939718723, 0.03104531764984131, 0.06882346421480179, 0.02719080075621605, -0.06135809049010277, 0.01017186138778925, 0.01705671101808548, 0.004736264701932669, 0.015801629051566124, 0.06170481815934181, -0.029770687222480774, -0.002565319649875164, 0.08838982880115509, -0.01650840975344181, -0.024733195081353188, 0.020048294216394424, 0.0408785305917263, -0.019881974905729294, 0.013640526682138443, -0.00015743916446808726, -0.012663031928241253, 0.0006401509745046496, -0.020202001556754112, 0.010162913240492344, -0.04083119332790375, -0.0165744386613369, 0.03178912028670311, -0.022630153223872185, -0.05658353865146637, 0.03977692499756813, 0.033143747597932816, -0.018376274034380913, -0.003416856750845909, -0.01059163361787796, -0.07743111997842789, 0.0915682390332222, -0.002629302442073822, -0.24384404718875885, 0.010390888899564743, 0.0714804008603096, 0.00783978495746851, -0.016799965873360634, 0.04261792078614235, 0.02684025466442108, -0.039614904671907425, 0.01701711304485798, -0.0018884283490478992, 0.03436257690191269, 0.01673603430390358, 0.0023068604059517384, -0.002663989784196019, 0.04141929745674133, -0.017884543165564537, 0.034551799297332764, -0.012410792522132397, 0.040354590862989426, -0.01144091784954071, -0.0001149153322330676, 0.007921142503619194, 0.15106312930583954, 0.005868346430361271, 0.025167889893054962, 0.016261959448456764, 0.002293507568538189, 0.01431081909686327, 0.049681682139635086, 0.02246447093784809, -0.014621904119849205, 0.021496862173080444, 0.023696759715676308, 0.01969497837126255, 0.004208668600767851, -0.05729761719703674, -0.02525843307375908, 0.025257838889956474, 0.012193182483315468, 0.029788177460432053, 0.0018485385226085782, 0.016542896628379822, -0.00009114857675740495, 0.03136923536658287, 0.07726100087165833, 0.0039423732087016106, -0.011023628525435925, -0.01559155248105526, -0.04488078132271767, -0.03519133850932121, -0.04094342142343521, -0.031755026429891586, 0.02511693723499775, -0.013555631041526794, 0.02631569653749466, 0.08090133219957352, 0.0015898692654445767, -0.022008316591382027, -0.014039414003491402, -0.006339923944324255, 0.002006384776905179, -0.0309437308460474, 0.1275143027305603, 0.01139237079769373, 0.02869981899857521 ]
[ -0.01054903119802475, 0.013465393334627151, 0.01461478415876627, 0.0030529885552823544, -0.013017945922911167, -0.0004297808918636292, -0.014695771969854832, 0.021256428211927414, 0.014594510197639465, 0.005796682555228472, -0.014451592229306698, 0.016365375369787216, 0.007125544361770153, -0.021856924518942833, 0.01755506545305252, -0.007620935328304768, -0.008145889267325401, 0.002105879597365856, 0.036300793290138245, 0.0047062174417078495, -0.017848452553153038, 0.005865129642188549, -0.005155249498784542, -0.00623207027092576, -0.008121953345835209, 0.017995251342654228, -0.0017568351468071342, -0.011883898638188839, 0.0409771092236042, -0.14668169617652893, -0.030781768262386322, -0.016001060605049133, -0.0053183832205832005, 0.01326849777251482, -0.0005564025486819446, 0.016154352575540543, 0.008588130585849285, 0.004347166977822781, -0.007226523477584124, -0.013927925378084183, -0.0038587108720093966, 0.007632046472281218, -0.020277533680200577, -0.010017646476626396, -0.004404336679726839, 0.011092104949057102, -0.013613387942314148, -0.06387234479188919, -0.029431765899062157, -0.03250361606478691, -0.03061845153570175, -0.03144194185733795, -0.0017513007624074817, 0.013624469749629498, 0.024330690503120422, -0.02203497476875782, 0.02253100834786892, 0.00857869628816843, 0.014684338122606277, -0.007176966406404972, -0.005198700353503227, -0.013705018907785416, -0.04344029724597931, -0.025773758068680763, -0.011424296535551548, -0.0042744227685034275, 0.0016061961650848389, 0.01018067542463541, -0.013012683019042015, 0.004029136151075363, -0.005900987423956394, 0.023785514757037163, -0.023046189919114113, -0.03018001839518547, 0.022748054936528206, -0.0015103411860764027, -0.008900432847440243, -0.006115844938904047, 0.00649576960131526, -0.013332800008356571, -0.03631790727376938, 0.03401175141334534, -0.007891269400715828, -0.011758792214095592, -0.006145364139229059, 0.001244855229742825, -0.002684563398361206, 0.0003977505548391491, 0.04378955438733101, 0.013638409785926342, 0.0027373647317290306, 0.01921156235039234, 0.0033642638009041548, -0.017680997028946877, -0.07841263711452484, -0.018106408417224884, -0.013506614603102207, -0.02790582738816738, 0.0020252580288797617, 0.8807935118675232, -0.0059391530230641365, 0.0315619595348835, 0.0215537641197443, 0.00109151063952595, 0.005444176960736513, 0.016063546761870384, 0.00033892024657689035, -0.0038057712372392416, -0.003796322038397193, -0.02714698202908039, 0.00148037972394377, 0.02692045085132122, 0.018706064671278, 0.001455214573070407, 0.03463487699627876, 0.008784902282059193, 0.024255722761154175, -0.008209217339754105, -0.0055428119376301765, 0.013024958781898022, 0.02161354012787342, -0.015613419935107231, 0.009545275010168552, 0.0366349071264267, 0.001235850853845477, -0.2032502293586731, -0.01069839671254158, -8.672399121655496e-33, 0.06016499921679497, -0.00010454886069055647, -0.003349239006638527, 0.00027396524092182517, 0.0016458448953926563, -0.010773396119475365, 0.022762060165405273, 0.018444392830133438, -0.017947480082511902, -0.014474720694124699, -0.005581165663897991, -0.01129203476011753, 0.00031056636362336576, -0.025834564119577408, 0.008981510996818542, -0.016935089603066444, -0.015527515672147274, 0.035666462033987045, -0.014036005362868309, 0.020014867186546326, 0.021948499605059624, 0.006632570642977953, -0.010705382563173771, -0.008516056463122368, 0.024539733305573463, -0.0075323316268622875, 0.012080909684300423, 0.016512025147676468, -0.009744132868945599, -0.048475492745637894, -0.037000905722379684, 0.015344399958848953, -0.018190594390034676, 0.007144650910049677, -0.011822528205811977, -0.03916424140334129, -0.02244848944246769, 0.0020146553870290518, -0.017756139859557152, -0.019981075078248978, -0.008304080925881863, 0.004219830501824617, -0.02896333858370781, -0.009515855461359024, 0.0055520846508443356, 0.00038065860280767083, 0.01726279966533184, 0.004235196392983198, 0.014056205749511719, -0.010817881673574448, 0.0024842696730047464, 0.03101826086640358, 0.01888979971408844, 0.025481728836894035, -0.011607792228460312, -0.004671200644224882, 0.01707090064883232, -0.021219907328486443, -0.0012052766978740692, 0.033674150705337524, 0.02969207428395748, 0.012736819684505463, -0.02636753022670746, 0.036542560905218124, -0.018987301737070084, -0.015317793004214764, 0.02315111644566059, 0.018375413492321968, 0.026006044819951057, -0.01708805002272129, -0.054637085646390915, -0.0014279653551056981, -0.010617323219776154, -0.0025501784402877092, -0.0030685593374073505, -0.016315417364239693, -0.010606355033814907, 0.01993977278470993, -0.02288026735186577, 0.046683426946401596, -0.003276716684922576, 0.0015889086062088609, -0.018105367198586464, -0.019848233088850975, -0.002845670795068145, 0.015735134482383728, 0.03209617733955383, -0.004700458608567715, -0.02511097863316536, 0.0182575061917305, 0.04356106370687485, -0.009332162328064442, 0.027369722723960876, -0.011310475878417492, -0.016866322606801987, 8.854966618649644e-33, -0.011666564270853996, -0.0336616225540638, -0.023165298625826836, -0.005036989692598581, 0.025033097714185715, -0.01854710280895233, -0.0013449335237964988, 0.008237192407250404, -0.06205257028341293, 0.020294273272156715, -0.006396420765668154, -0.008596683852374554, -0.0311440359801054, 0.040789131075143814, 0.04262775927782059, -0.0044505419209599495, 0.005347609985619783, -0.023794623091816902, 0.01376665011048317, -0.001352122169919312, 0.016289982944726944, 0.017534082755446434, 0.003564558457583189, 0.012435786426067352, 0.010782311670482159, 0.05902523547410965, -0.01825772039592266, 0.035108841955661774, 0.008513107895851135, -0.0056225815787911415, -0.014657548628747463, -0.032882992178201675, 0.008058104664087296, 0.00859872717410326, -0.008710799738764763, 0.0036634185817092657, -0.024463851004838943, -0.006289482116699219, 0.009594794362783432, 0.0033437013626098633, 0.011281970888376236, 0.00982846599072218, 0.009347697719931602, 0.03865361958742142, -0.006075842771679163, 0.01609811931848526, 0.010126948356628418, -0.015511678531765938, -0.011972114443778992, -0.01659119687974453, 0.0029644411988556385, 0.01881350576877594, 0.017725203186273575, -0.019965268671512604, 0.0013200405519455671, -0.016230754554271698, -0.029606271535158157, -0.0023177899420261383, -0.002475922694429755, 0.024876385927200317, 0.012955610640347004, -0.012752458453178406, -0.01345493458211422, -0.0030260616913437843, -0.02687140740454197, 0.0004922178341075778, 0.01652953028678894, 0.006431600544601679, -0.01582140289247036, -0.00865093432366848, -0.02789771556854248, 0.012635360471904278, -0.0065377564169466496, 0.05986382067203522, 0.02931193634867668, -0.019376372918486595, -0.025745047256350517, 0.016878437250852585, -0.0012867521727457643, 0.02074962854385376, 0.0020604017190635204, -0.002382091246545315, -0.006110761314630508, 0.011005493812263012, -0.0009783897548913956, 0.034115687012672424, -0.019225753843784332, 0.04031762480735779, 0.0014411938609555364, -0.01804351806640625, -0.019126614555716515, -0.0009435830288566649, 0.00877213105559349, 0.038498394191265106, 0.0054274657741189, -1.4121734892569293e-8, 0.0020831862930208445, -0.008879747241735458, -0.008392115123569965, 0.014822959899902344, 0.01908344402909279, 0.0034209005534648895, -0.005097140092402697, -0.005962308496236801, -0.05371757969260216, 0.007109102327376604, 0.03062031976878643, 0.0049048964865505695, -0.0018365915166214108, 0.025275444611907005, 0.02763218805193901, -0.04126898944377899, -0.010499341413378716, 0.004728473257273436, 0.02702995203435421, 0.0026109819300472736, 0.024181218817830086, 0.05096980929374695, -0.013273795135319233, -0.010540180839598179, -0.00028656775248236954, 0.012998518534004688, 0.0023556083906441927, -0.06813082844018936, 0.000515077612362802, 0.02021227777004242, 0.02371060475707054, -0.02740594558417797, -0.048079963773489, 0.02575497329235077, -0.012178828939795494, -0.03104304149746895, 0.008927865885198116, 0.00171669980045408, 0.011386190541088581, -0.00007030501728877425, -0.00046380836283788085, 0.015221578069031239, -0.018737146630883217, -0.017240049317479134, -0.017040949314832687, 0.01488570962101221, -0.009915780276060104, -0.02456759475171566, 0.0116546880453825, -0.02614363469183445, 0.021301597356796265, 0.00901973806321621, 0.01858682744204998, 0.038726430386304855, 0.005239100195467472, -0.007431553211063147, 0.002526892814785242, -0.019202785566449165, -0.02605331502854824, 0.0027728434652090073, 0.020100073888897896, 0.0389135517179966, -0.00551861897110939, -0.015748873353004456 ]
learnings-from-my-first-project-of-2010
https://markhneedham.com/blog/2010/05/09/learnings-from-my-first-project-of-2010
false
2010-05-09 13:04:48
Coding: Paying attention
[ "coding" ]
[ "Coding" ]
http://twitter.com/jeremydmiller[Jeremy Miller] tweeted earlier in the week about http://twitter.com/jeremydmiller/status/13310240804[the dangers of using an auto mocking container] and how it can encourage sloppy design: ____ That whole "Auto Mocking Containers encourage sloppy design" meme that I blew off last week? Seeing an example in our code. ____ I haven't used an auto mocking container but it seems to me that although that type of tool might be useful for reducing the amount of code we have to write in our tests it also hides the actual problem that we have - an object has too many dependencies. By hiding the creation of stubs/mocks for those dependencies in our test we are addressing the effect and not the cause i.e. we are http://www.markhneedham.com/blog/2009/08/06/bear-shaving/[bear shaving]. Jeremy followed this up with http://twitter.com/jeremydmiller/status/13310461017[a couple of] http://twitter.com/jeremydmiller/status/13310483817[quite insightful comments]: ____ You know though, I still think it comes down to +++<strong>+++you being responsible for paying attention. +++</strong>+++ ____ ____ It's no different than still having to worry about DB optimization even though the ORM is shielding you from the details ____ Another somewhat related situation where I've noticed a similar problem is when we have several tests which require a certain method to be stubbed out and in the interests of reducing duplication we http://www.markhneedham.com/blog/2008/12/19/tdd-mock-expectations-in-setup/[pull that up into a setup method]. While this achieves that goal it also means that there is information that is hidden away from us when we read each of our tests. One approach that I've seen encouraged is that we should never use a setup method so that we have to create everything we need for our test in the test body. I quite like this approach because it encourages us to see any problems that we're creating with respect to writing difficult to test code but quite often what ends up happening is we'll http://www.markhneedham.com/blog/2009/09/22/tdd-copying-and-pasting-tests/[copy and paste tests] because there's more code to write for each test. I'm coming to the conclusion that there's no one approach that will stop us making design mistakes and that as Jeremy says, we need to make sure that we pay attention to what we're doing.
null
null
[ 0.03580756485462189, 0.005113108083605766, -0.00468679703772068, 0.04865003749728203, 0.07063231617212296, 0.027874700725078583, 0.045769862830638885, 0.02806697227060795, 0.011180471628904343, -0.027056515216827393, -0.0037602444645017385, -0.006728630047291517, -0.056038882583379745, 0.011685069650411606, -0.052900489419698715, 0.0687989592552185, 0.06910072267055511, 0.001957199303433299, 0.030147608369588852, 0.027868637815117836, 0.04100331664085388, 0.03179733827710152, 0.009149311110377312, 0.016467200592160225, 0.022619381546974182, 0.018929071724414825, 0.008992553688585758, 0.007207587826997042, -0.06568931043148041, -0.038239721208810806, 0.035700056701898575, 0.010240282863378525, 0.024459900334477425, -0.023751014843583107, 0.008587406016886234, -0.017516927793622017, -0.02926185168325901, 0.013027962297201157, 0.009820329025387764, 0.029915791004896164, -0.07943784445524216, 0.04251927509903908, 0.00032825703965499997, 0.005036685150116682, -0.05411407724022865, 0.006975693162530661, -0.014847984537482262, 0.005814583506435156, 0.008977935649454594, -0.007870194502174854, -0.06463602930307388, 0.058072879910469055, -0.03426872193813324, 0.004977365955710411, -0.014315548352897167, 0.03922244533896446, 0.022301867604255676, -0.1000685915350914, 0.02901497669517994, -0.04433849826455116, -0.014374596998095512, 0.0013487336691468954, -0.0020721638575196266, 0.029676169157028198, 0.004297638311982155, -0.024057278409600258, -0.011531971395015717, 0.044349681586027145, -0.05376654118299484, -0.0025957725010812283, -0.0013148406287655234, 0.0029971818439662457, 0.00352326687425375, -0.028574222698807716, 0.01203090138733387, -0.05166925489902496, -0.018965192139148712, 0.06229061260819435, 0.018155090510845184, 0.046509210020303726, -0.019770098850131035, -0.005778101738542318, 0.029198559001088142, 0.030071649700403214, -0.03569021821022034, -0.0318446159362793, -0.004942065104842186, 0.0012522073229774833, -0.04832728952169418, 0.06377583742141724, 0.017829401418566704, -0.031097490340471268, 0.03773331642150879, 0.029906554147601128, -0.014333981089293957, 0.018227247521281242, 0.02509908378124237, 0.009253407828509808, 0.0016647783340886235, -0.003891804488375783, -0.01635519228875637, -0.032290052622556686, -0.0030447300523519516, 0.012509148567914963, -0.07888245582580566, -0.018490293994545937, -0.020495502278208733, -0.009067735634744167, -0.013149609789252281, 0.016124168410897255, -0.03000313974916935, 0.04292324557900429, -0.012057015672326088, -0.005947127006947994, -0.08531365543603897, 0.06498551368713379, 0.004557740408927202, -0.04060627892613411, -0.008609049022197723, 0.02185426838696003, 0.03166918829083443, 0.032530661672353745, 0.0028662290424108505, 0.08792144060134888, 0.016135618090629578, 0.015447747893631458, -0.02328890562057495, 0.0582956001162529, -0.016463356092572212, -0.05024515464901924, 0.00871303305029869, 0.056091416627168655, -0.014704153873026371, 0.009880952537059784, -0.003642079420387745, -0.029682878404855728, -0.0025970949791371822, 0.004909574054181576, 0.05678895488381386, 0.06616590172052383, -0.03433564677834511, -0.04557044804096222, 0.019511930644512177, 0.026932524517178535, 0.008942102082073689, 0.011907807551324368, 0.016281496733427048, -0.01510341465473175, -0.0451044887304306, 0.017865438014268875, 0.04058459773659706, 0.031139815226197243, -0.0030393763445317745, -0.03907432779669762, 0.03679966181516647, 0.08236653357744217, 0.011404511518776417, 0.00793017353862524, -0.00913953222334385, 0.04317652806639671, 0.0384293794631958, 0.03869562968611717, 0.008903351612389088, 0.03664626181125641, 0.047120701521635056, -0.02042095549404621, -0.010704275220632553, 0.04694320261478424, 0.00003245918924221769, -0.011613478884100914, -0.06155458465218544, -0.07387423515319824, 0.06012522429227829, -0.03319432958960533, -0.004869500175118446, 0.04463157057762146, 0.08338979631662369, 0.0068577430211007595, 0.05031009390950203, 0.019049232825636864, -0.08096595108509064, 0.03004312328994274, 0.040901970118284225, 0.03071344457566738, 0.016061967238783836, -0.02398066595196724, 0.06762423366308212, 0.018393145874142647, -0.01613221876323223, 0.043749138712882996, -0.0828586220741272, -0.08818399906158447, 0.0052815331146121025, -0.015516883693635464, 0.06780818104743958, -0.03262907266616821, 0.002324684290215373, 0.07134761661291122, 0.023852823302149773, 0.03843081742525101, 0.0170286875218153, 0.010707376524806023, -0.0020299190655350685, -0.07070161402225494, -0.049097321927547455, 0.054109375923871994, 0.04141034930944443, -0.008142462931573391, -0.06205656751990318, 0.013774235732853413, -0.01433518435806036, -0.03154349327087402, 0.01941794529557228, -0.042150646448135376, 0.020097924396395683, 0.005154556129127741, 0.061418142169713974, -0.02228223718702793, 0.06550705432891846, -0.060597628355026245, -0.002387584885582328, 0.002662813989445567, -0.017024246975779533, 0.011088366620242596, -0.007466084789484739, 0.10359713435173035, 0.04964640364050865, -0.04046184569597244, -0.03511018306016922, -0.0075936513021588326, 0.03359825164079666, -0.02706240303814411, -0.00990979839116335, -0.011877825483679771, -0.005019772332161665, 0.022136541083455086, -0.04055465757846832, -0.02021833509206772, 0.032979533076286316, -0.0420975461602211, 0.009029408916831017, 0.07398580759763718, -0.027792898938059807, 0.05139937251806259, -0.018372349441051483, -0.004375929944217205, -0.019155967980623245, -0.019688569009304047, -0.05867902189493179, -0.003973512910306454, 0.01790638081729412, -0.01477182749658823, 0.05260978266596794, -0.027839072048664093, -0.0072592576034367085, -0.03304086625576019, -0.04206419736146927, 0.024238893762230873, 0.023304516449570656, 0.08332822471857071, -0.038601167500019073, 0.06005791947245598, -0.01656588539481163, 0.017064154148101807, -0.00938627403229475, -0.04389509558677673, -0.02495225891470909, -0.0075950720347464085, 0.00100889231543988, 0.052181441336870193, 0.018239764496684074, 0.013948661275207996, 0.009648826904594898, -0.012265188619494438, -0.003929796628654003, 0.007659102790057659, 0.013340859673917294, 0.005445538554340601, -0.0022371697705239058, -0.01609024405479431, -0.052713777869939804, 0.060725752264261246, -0.016437752172350883, -0.013337135314941406, 0.03281015530228615, -0.08762945234775543, 0.03898541256785393, -0.07108505815267563, -0.05229879543185234, 0.0035220428835600615, 0.028558986261487007, 0.03570571169257164, 0.011724975891411304, 0.04091493785381317, 0.055037252604961395, 0.012115318328142166, 0.004550435114651918, -0.01206264365464449, 0.0034126557875424623, 0.031233200803399086, -0.0032097352668642998, -0.0038124406710267067, 0.02813948318362236, 0.01548836100846529, 0.02540646493434906, -0.051765233278274536, 0.03034382313489914, -0.007781900931149721, -0.28672119975090027, 0.03482603281736374, 0.035149503499269485, -0.037880681455135345, 0.02839914709329605, -0.007773851975798607, 0.004961047787219286, -0.0508236289024353, -0.021321194246411324, 0.040337201207876205, -0.024731121957302094, -0.015446648932993412, -0.005086853168904781, 0.04275263473391533, 0.008278168737888336, 0.0016612447798252106, 0.024867741391062737, -0.04105215147137642, 0.02069321647286415, 0.042867328971624374, -0.009694525972008705, -0.07041050493717194, 0.00345095107331872, 0.02967154234647751, 0.03634607419371605, 0.06721347570419312, -0.08766885101795197, 0.04311668872833252, -0.042364075779914856, 0.01853146217763424, -0.004409696441143751, 0.004068240523338318, -0.023240869864821434, -0.010267588309943676, -0.03468593955039978, -0.00641769589856267, 0.01469081174582243, -0.02414468675851822, -0.013475949876010418, 0.01909022033214569, -0.019654756411910057, -0.03948839381337166, -0.02638116106390953, 0.017243629321455956, 0.06072057783603668, -0.001680348184891045, -0.062033552676439285, -0.0060282121412456036, -0.03501947224140167, 0.06241479516029358, -0.03170749545097351, -0.053961314260959625, 0.0004050021816510707, 0.02899874933063984, -0.01160750724375248, -0.01653182879090309, -0.02002727799117565, -0.021222222596406937, -0.03783433884382248, -0.05181124806404114, -0.03355909883975983, -0.039583589881658554, -0.046521756798028946, -0.01675318367779255, -0.019496764987707138, -0.06456536054611206, -0.045355621725320816, -0.01237962394952774, 0.0894707515835762, -0.002348138950765133, -0.022340500727295876, 0.01929597556591034, -0.00684512872248888, -0.1124095544219017, 0.02897893451154232, 0.00997875165194273, -0.045943159610033035, -0.008520402014255524, 0.01358773186802864, 0.055013298988342285, -0.04053090140223503, -0.0557929165661335, 0.05092039331793785, 0.019521770998835564, 0.013725263997912407, -0.006942747626453638, 0.03182292357087135, 0.015440969727933407, -0.004923381842672825, 0.016044270247220993, 0.06488347798585892, 0.0006466058548539877, -0.031128451228141785, -0.031378161162137985, 0.01732020452618599, 0.04346691444516182, 0.03168289363384247, -0.003147073555737734, 0.014626199379563332, 0.034962765872478485, 0.0027814072091132402, -0.06112617999315262, 0.04497532546520233, -0.0008460731478407979, -0.001677840598858893, -0.02477102167904377, -0.04237142950296402, 0.018434111028909683, 0.025183185935020447, 0.033304423093795776, -0.024049142375588417, -0.03992795944213867, 0.004447827581316233, -0.048349060118198395, -0.040876034647226334, -0.009435071609914303, 0.01113089732825756, 0.04385925829410553, -0.02433294989168644, -0.0006479446310549974, -0.049474578350782394, 0.030046246945858, -0.028074026107788086, -0.011742491275072098, -0.044217903167009354, -0.028316237032413483, 0.0024501990992575884, -0.010495978407561779, 0.0201185941696167, 0.01342945359647274, -0.0017854266334325075, 0.04350323602557182, 0.015455661341547966, -0.026432499289512634, 0.01771680824458599, -0.027633871883153915, -0.03777017444372177, -0.037469737231731415, 0.003861598204821348, -0.017947744578123093, 0.010390129871666431, -0.010476107709109783, -0.006182224489748478, 0.007749626878648996, 0.036523208022117615, 0.017533818259835243, 0.05745519697666168, -0.006457533221691847, 0.019836148247122765, 0.0195896178483963, 0.01301635056734085, -0.07936426252126694, 0.02784491516649723, -0.05101044848561287, -0.015211117453873158, -0.005120336078107357, 0.0361444428563118, -0.0024126404896378517, -0.03520148620009422, -0.018555404618382454, -0.0015805767616257071, -0.03621961921453476, -0.03145577013492584, -0.03192116692662239, 0.010234962217509747, 0.06263446807861328, -0.034226808696985245, 0.01812496781349182, -0.017251355573534966, -0.02768411859869957, 0.003787839086726308, 0.0036028476897627115, -0.05323474481701851, 0.02493354119360447, 0.028497545048594475, -0.019461998715996742, -0.005807987414300442, 0.00820687972009182, 0.039031483232975006, 0.021782372146844864, -0.004999425727874041, -0.015202559530735016, 0.01475585252046585, 0.020168058574199677, 0.056010324507951736, 0.007786530070006847, -0.004107142332941294, -0.013798566535115242, -0.01060674712061882, -0.005031823646277189, -0.049595460295677185, -0.02282826602458954, 0.021258028224110603, 0.04315970838069916, -0.039988256990909576, -0.06265492737293243, 0.049252383410930634, 0.010951373726129532, 0.019689001142978668, 0.022923050448298454, 0.009928249754011631, 0.0000177077017724514, -0.032236646860837936, 0.029766520485281944, 0.057700932025909424, -0.06462397426366806, 0.011080360971391201, 0.008138380013406277, 0.010431323200464249, 0.023080449551343918, 0.005947418976575136, -0.05909758061170578, -0.027446631342172623, -0.016209883615374565, -0.001127416966482997, -0.07983674108982086, -0.009747629053890705, -0.02274850569665432, 0.02554202452301979, -0.013981827534735203, -0.024078369140625, -0.02048000879585743, -0.027763232588768005, -0.00034393343958072364, -0.03637222945690155, 0.013064183294773102, -0.03398478776216507, 0.0012913523241877556, 0.022018421441316605, -0.05315561220049858, 0.018082594498991966, -0.018200289458036423, 0.010321914218366146, 0.04387226700782776, -0.03864201530814171, -0.018276294693350792, -0.015358345583081245, 0.008755204267799854, -0.01238519512116909, 0.013959365896880627, -0.003431615186855197, -0.014930627308785915, -0.04126618430018425, -0.00634104385972023, -0.03759276866912842, 0.010142169892787933, -0.005539111793041229, 0.0032143518328666687, 0.028676744550466537, 0.0555027611553669, 0.02132701501250267, 0.0338069349527359, -0.025983743369579315, 0.008141051046550274, 0.04343302920460701, -0.08416453003883362, -0.028015529736876488, -0.038281362503767014, -0.058096617460250854, 0.01547237765043974, -0.0156475268304348, 0.03280831500887871, -0.015016871504485607, 0.029958972707390785, 0.01468297466635704, 0.010412957519292831, 0.057059645652770996, 0.0004045417008455843, 0.03646764159202576, -0.06484435498714447, -0.0026268663350492716, -0.07552137970924377, 0.009199104271829128, 0.036079201847314835, -0.0028314143419265747, -0.003928266931325197, -0.02229863591492176, -0.04101277515292168, 0.03655456379055977, -0.05489301308989525, -0.01763947680592537, 0.024946505203843117, -0.018642006441950798, -0.00911477580666542, 0.01756054349243641, -0.07289893925189972, 0.0380205474793911, 0.0030966049525886774, -0.03720775246620178, -0.03106532245874405, -0.0017735968576744199, 0.04259496182203293, 0.010528958402574062, 0.0028953249566257, -0.022688468918204308, 0.00328987673856318, 0.0770217701792717, 0.008981195278465748, 0.01443397905677557, 0.02924390695989132, -0.015108367428183556, 0.04295259341597557, 0.04362984001636505, 0.019126761704683304, -0.012669898569583893, 0.0036171202082186937, -0.016854178160429, -0.07067248970270157, 0.030812690034508705, 0.011348816566169262, -0.039939023554325104, -0.03730802237987518, 0.043317969888448715, 0.03330695629119873, -0.036492589861154556, -0.04047441482543945, 0.02474369667470455, -0.04813804104924202, -0.03311183303594589, -0.03788689523935318, -0.017111945897340775, -0.06729308515787125, 0.04213640093803406, 0.006050969939678907, -0.0038035206962376833, 0.06057746708393097, -0.0031844654586166143, -0.010851296596229076, -0.014090376906096935, 0.09201840311288834, 0.09035687893629074, 0.03989711403846741, 0.007130877580493689, 0.054842427372932434, -0.020364398136734962, -0.035781871527433395, 0.03339288383722305, 0.0006658216007053852, -0.01826842501759529, -0.039963025599718094, -0.010515730828046799, 0.04830602556467056, -0.02428017184138298, 0.07090155780315399, -0.021481117233633995, 0.0056108105927705765, -0.011332484893500805, 0.011778651736676693, -0.00045566787593998015, 0.0706421509385109, -0.016385773196816444, 0.009907983243465424, -0.017222197726368904, -0.049789540469646454, 0.02476569265127182, -0.046037446707487106, -0.026493920013308525, 0.028468124568462372, -0.020156320184469223, 0.013074264861643314, 0.015720471739768982, 0.011286973021924496, 0.06083447486162186, -0.043199922889471054, 0.012096291407942772, 0.01919766142964363, 0.03485202416777611, 0.004990904591977596, 0.002649009693413973, -0.017627399414777756, -0.018439261242747307, -0.004355324432253838, -0.020344261080026627, 0.008342677727341652, -0.022238364443182945, -0.016899097710847855, 0.06787366420030594, -0.002667466178536415, -0.012131278403103352, 0.043700721114873886, -0.0005062245763838291, -0.036534346640110016, -0.059525638818740845, -0.041662778705358505, -0.026263389736413956, -0.052867792546749115, -0.022199079394340515, 0.020881643518805504, -0.005921811796724796, -0.02722175233066082, -0.016391539946198463, -0.025253938511013985, -0.02070271223783493, 0.04659034684300423, -0.054548751562833786, -0.03572492673993111, 0.014737595804035664, 0.014778933487832546, 0.017855746671557426, 0.010067683644592762, 0.05604400485754013, 0.020725656300783157, -0.012767706997692585, -0.026826657354831696, 0.009318994358181953, 0.0268693920224905, 0.006538597866892815, 0.0032775611616671085, -0.09165461361408234, 0.007283756975084543, 0.02973112277686596, -0.002981878351420164, -0.05714336037635803, 0.019139019772410393, -0.00944066233932972, -0.0036168433725833893, 0.04658171162009239, -0.02945752441883087, 0.015274489298462868, -0.0451277494430542, -0.00416156742721796, 0.01016465574502945, 0.01136581227183342, 0.0380224734544754, -0.010183568112552166, 0.08504446595907211, 0.0291085597127676, -0.038170915096998215, -0.04377305507659912, -0.022989707067608833, 0.0035171632189303637, 0.017859069630503654, -0.02856813743710518, -0.03805876150727272, -0.04339202493429184, -0.08727026730775833, -0.003320632502436638, 0.031155742704868317, -0.02383408136665821, -0.025389451533555984, 0.030601346865296364, 0.003873998299241066, -0.046136967837810516, 0.022558635100722313, -0.03963802009820938, 0.0447695292532444, -0.04781769588589668, -0.004354466684162617, 0.013620900921523571, 0.01689809001982212, 0.016833659261465073, 0.010830619372427464, 0.009340159595012665, -0.03989952430129051, -0.0001563780097058043, -0.01266299095004797, 0.033031754195690155, 0.028357088565826416, 0.012588188983500004, -0.015467749908566475 ]
[ -0.07715671509504318, 0.002242456655949354, -0.016777312383055687, -0.031218983232975006, 0.06488817185163498, -0.03407438099384308, 0.0028544312808662653, 0.03314608708024025, -0.03560250625014305, -0.011904553510248661, -0.00048509001499041915, -0.026863986626267433, 0.0005768651608377695, -0.016692254692316055, 0.0746288150548935, 0.01938355341553688, -0.01419864222407341, -0.06302204728126526, 0.013077755458652973, 0.009005806408822536, 0.022887546569108963, -0.012914210557937622, -0.01600726880133152, -0.03866618126630783, 0.01479413267225027, 0.010348206385970116, 0.03624913468956947, -0.04852515831589699, 0.004166949540376663, -0.22391261160373688, 0.0562489815056324, -0.009677422232925892, 0.0029377120081335306, -0.046744849532842636, -0.00651926826685667, 0.03807440027594566, 0.026456113904714584, 0.0003520760510582477, -0.005268101580440998, 0.037226106971502304, 0.0015094950795173645, 0.026096796616911888, -0.053998108953237534, -0.026262842118740082, 0.03340430557727814, 0.01669948920607567, -0.0204286091029644, -0.04653199389576912, 0.013144970871508121, 0.012509484775364399, -0.0324440561234951, -0.012003106996417046, -0.017391182482242584, -0.04886510968208313, -0.02792862430214882, -0.004393405746668577, 0.04923256114125252, 0.06656725704669952, -0.00635811872780323, 0.039367176592350006, 0.03204015642404556, -0.023721588775515556, -0.09492017328739166, 0.08718014508485794, 0.050344496965408325, 0.03587016835808754, -0.029854226857423782, -0.01811891607940197, 0.011878123506903648, 0.09926509112119675, 0.00859281700104475, 0.009648855775594711, -0.027864854782819748, 0.08107952773571014, 0.012844030745327473, 0.010229640640318394, 0.0244081299751997, 0.019095228984951973, 0.04268426448106766, -0.051071591675281525, -0.034350983798503876, -0.014834951609373093, -0.006433804985135794, -0.005274498835206032, -0.04455021396279335, -0.03183753788471222, -0.01092856377363205, 0.025929372757673264, 0.045115403831005096, 0.038296036422252655, 0.04791169613599777, -0.015311788767576218, 0.04685394838452339, 0.014778297394514084, -0.06827688962221146, 0.009152146056294441, -0.026039743795990944, -0.013144352473318577, -0.05116461217403412, 0.4715963304042816, -0.012909367680549622, -0.02691231295466423, 0.04457256942987442, 0.016351070255041122, -0.0066277580335736275, 0.007850599475204945, 0.0072891185991466045, -0.06433425098657608, 0.00999799370765686, -0.0240465234965086, 0.01479641068726778, 0.005807682406157255, 0.04404468089342117, -0.03266338258981705, 0.01888551563024521, -0.0032905922271311283, 0.025641178712248802, 0.0058272830210626125, -0.0019017979502677917, 0.001857682247646153, -0.008591853082180023, 0.026475602760910988, 0.052393753081560135, 0.0012140609323978424, 0.009438865818083286, -0.036385830491781235, 0.0344092920422554, 0.0532032772898674, 0.018281662836670876, -0.005147464107722044, 0.004657295998185873, -0.05335037037730217, -0.06428280472755432, -0.005247375462204218, 0.025292079895734787, 0.00681181950494647, 0.01800762303173542, -0.03291799873113632, 0.03714292496442795, 0.0570029579102993, -0.006754945032298565, 0.007825295440852642, 0.03213689848780632, -0.03950801491737366, -0.01579708606004715, 0.07373577356338501, 0.00793128740042448, -0.008703437633812428, -0.012038489803671837, -0.04347432032227516, 0.02895788662135601, 0.047962795943021774, -0.02648003213107586, -0.049866460263729095, 0.026166127994656563, -0.0043604690581560135, 0.010899282060563564, 0.008136746473610401, -0.05562383681535721, -0.014785823412239552, -0.01407505664974451, -0.00914361048489809, -0.025882193818688393, 0.0026137034874409437, -0.004964925814419985, -0.08730141073465347, -0.05097855255007744, 0.011993549764156342, 0.032702118158340454, -0.059004053473472595, 0.0038477976340800524, 0.019316162914037704, -0.05586618185043335, -0.028010962530970573, 0.021174469962716103, -0.045804429799318314, -0.056077130138874054, 0.0077322120778262615, 0.04214445501565933, 0.03371728956699371, 0.009355169720947742, 0.017711235210299492, -0.04675702750682831, 0.021289903670549393, -0.009908026084303856, -0.08171382546424866, -0.05101923644542694, -0.008077731356024742, -0.0055848960764706135, -0.02310728095471859, -0.03331843018531799, -0.024240314960479736, -0.07639387249946594, 0.0692904144525528, -0.03644329681992531, -0.015563076362013817, 0.038117434829473495, -0.016956167295575142, -0.0014204038307070732, -0.025425579398870468, -0.008984125219285488, 0.048735518008470535, -0.0036459402181208134, 0.03161652386188507, -0.0671968087553978, 0.07952950894832611, 0.04545919597148895, -0.0685967355966568, 0.09919988363981247, 0.03401342034339905, -0.06746562570333481, -0.04050496593117714, -0.02850525826215744, 0.019754715263843536, -0.019398542121052742, -0.008515752851963043, 0.008237190544605255, 0.003016803879290819, 0.001982445828616619, 0.01381099782884121, -0.013908585533499718, 0.005539830308407545, -0.02429812029004097, -0.34519603848457336, -0.03597893938422203, -0.018837131559848785, 0.001729275449179113, 0.01721910573542118, -0.04201846942305565, -0.0017394223250448704, 0.005657886154949665, -0.0032806708477437496, -0.005747324321419001, 0.05608446151018143, -0.0347987525165081, 0.0069567677564918995, -0.08265102654695511, 0.0003251900488976389, 0.0015402333810925484, -0.07650840282440186, -0.03848665580153465, -0.044218603521585464, 0.02059049904346466, -0.02401060052216053, -0.004743569530546665, -0.015885211527347565, -0.06714243441820145, 0.020495695993304253, -0.03980877250432968, 0.07505698502063751, -0.005362526513636112, 0.05049264430999756, 0.0011275671422481537, 0.050882965326309204, 0.01343349739909172, 0.024086767807602882, -0.06835750490427017, -0.01641903445124626, -0.0008776719914749265, -0.04337577521800995, -0.0014025310520082712, 0.02876431867480278, -0.022416280582547188, -0.06095525622367859, 0.03264186158776283, -0.05496137589216232, -0.08819112181663513, -0.03753121197223663, -0.008846939541399479, -0.016848742961883545, -0.003238959703594446, -0.04506051167845726, 0.08502104878425598, 0.023001238703727722, -0.009035823866724968, 0.01189246866852045, -0.0069664036855101585, 0.007811433635652065, -0.04958101734519005, -0.0854438990354538, 0.019139092415571213, 0.0017904149135574698, 0.004603554494678974, 0.034282613545656204, 0.06799735873937607, 0.02509625069797039, -0.0706503614783287, -0.01793438009917736, 0.0002834687475115061, -0.01913403905928135, -0.02817055583000183, 0.04509087651968002, -0.022092577069997787, 0.003499356796965003, 0.13310232758522034, 0.007773643359541893, 0.027871962636709213, 0.044265273958444595, 0.01983407512307167, -0.006375982891768217, 0.031020784750580788, -0.017503123730421066, -0.01401450950652361, 0.05511508136987686, -0.003234800649806857, 0.045966170728206635, -0.027891237288713455, -0.0035901768133044243, 0.03129294514656067, -0.044122952967882156, -0.0038895003963261843, 0.0720941498875618, 0.020632505416870117, -0.03544094040989876, 0.011757430620491505, -0.013255306519567966, -0.05657164752483368, 0.06545072793960571, 0.015186919830739498, -0.2351340800523758, -0.00566336652263999, 0.07517888396978378, 0.08534996956586838, -0.0011545917950570583, 0.03508065268397331, 0.03300708159804344, -0.05088549852371216, 0.03564276546239853, -0.009176427498459816, 0.005597410723567009, 0.04886052757501602, 0.010811562649905682, -0.00022541068028658628, 0.04176951199769974, -0.01778865046799183, 0.06007435917854309, -0.010946784168481827, 0.015573075041174889, -0.025436507537961006, 0.002496192930266261, -0.03044375404715538, 0.17843900620937347, 0.0036974819377064705, 0.010766645893454552, 0.03287821635603905, 0.03725982457399368, 0.01904406026005745, 0.06698157638311386, 0.025669941678643227, -0.00565953366458416, 0.006997257471084595, 0.03148810565471649, -0.0003950070822611451, 0.016353921964764595, -0.08123505115509033, -0.021480189636349678, -0.003579207230359316, 0.007383294869214296, -0.007183962967246771, 0.00477618258446455, 0.011686091311275959, -0.02056157775223255, 0.036525893956422806, 0.06649088859558105, -0.001680517802014947, -0.004415945149958134, -0.0371890664100647, -0.026566393673419952, -0.006799392867833376, -0.01075173169374466, -0.03579121455550194, 0.00794958882033825, -0.009944229386746883, 0.020981810986995697, 0.07987506687641144, 0.03757161647081375, -0.002879056381061673, -0.02086271345615387, 0.02714983932673931, 0.0036414209753274918, -0.003056158544495702, 0.10303427278995514, 0.07180610299110413, 0.030774667859077454 ]
[ 0.00038420173223130405, 0.02063608542084694, 0.007419546600431204, -0.007716374006122351, -0.0034989274572581053, -0.011898556724190712, -0.0035674888640642166, 0.013021117076277733, -0.03434069827198982, 0.013008604757487774, -0.018195534124970436, 0.011300304904580116, 0.03465290367603302, -0.012525349855422974, 0.011336752213537693, -0.021459072828292847, 0.019159872084856033, -0.005112200975418091, 0.014344035647809505, -0.011782676912844181, -0.00647854944691062, 0.014783130958676338, 0.03170494735240936, -0.000050635011575650424, -0.0204458050429821, 0.014352019876241684, -0.036223024129867554, 0.0017598842969164252, 0.022292088717222214, -0.1440621167421341, -0.014479086734354496, -0.0360342375934124, -0.020799551159143448, -0.015944885089993477, -0.016595719382166862, -0.012626886367797852, 0.0012926198542118073, 0.024386512115597725, 0.004004381131380796, -0.005964995827525854, 0.008975350297987461, -0.0278262197971344, -0.02981591410934925, 0.007381438743323088, 0.0044355811551213264, -0.022879719734191895, 0.005787556059658527, -0.03269340097904205, -0.013223329558968544, -0.036165036261081696, -0.038156382739543915, -0.04060668870806694, 0.008221146650612354, -0.006327520590275526, -0.005930991843342781, -0.0020295199938118458, 0.0048431893810629845, -0.020272839814424515, 0.0038419810589402914, 0.021012520417571068, -0.013653390109539032, 0.03383041173219681, -0.012346307747066021, -0.016850285232067108, 0.004406346939504147, -0.002114515518769622, 0.003361786250025034, 0.015406273305416107, 0.008590291254222393, -0.0010613574413582683, -0.006329796742647886, 0.01653747819364071, -0.017565986141562462, -0.01956770569086075, 0.013830848969519138, 0.03525026887655258, -0.013719949871301651, -0.004880338907241821, 0.027963895350694656, 0.030451960861682892, -0.036311984062194824, 0.023028429597616196, 0.029155423864722252, -0.009185558184981346, -0.0141527084633708, -0.005494904238730669, 0.01053796336054802, -0.006524155847728252, 0.03150724247097969, 0.013517689891159534, 0.006606763228774071, 0.015987062826752663, -0.006691060960292816, 0.025510961189866066, -0.07818474620580673, -0.03257901966571808, 0.016190527006983757, -0.012331131845712662, 0.008691651746630669, 0.8737574815750122, -0.006565517745912075, 0.025294501334428787, 0.02880239672958851, 0.024000652134418488, 0.016702800989151, -0.010454857721924782, -0.01149840746074915, -0.016069967299699783, 0.034415408968925476, -0.03882838413119316, 0.023446300998330116, 0.03608348220586777, 0.028096364811062813, -0.0031208901200443506, -0.011466382071375847, 0.005984016228467226, -0.009064950048923492, -0.009770677424967289, 0.026929372921586037, 0.007944725453853607, 0.034722961485385895, -0.003829573979601264, 0.025359706953167915, 0.02729054167866707, 0.02118176780641079, -0.1644202470779419, -0.005412477999925613, -8.31115648333636e-33, 0.05043729767203331, -0.018918674439191818, 0.04229713976383209, 0.01137303002178669, 0.02078547701239586, -0.0019123121164739132, 0.04036623239517212, 0.025011641904711723, -0.01138530857861042, -0.0350969135761261, 0.009190598502755165, -0.021456629037857056, -0.012134859338402748, -0.006977018900215626, 0.0183245986700058, 0.009139948524534702, -0.02137690968811512, 0.03805273398756981, 0.0030210409313440323, 0.023469971492886543, -0.0016165695851668715, 0.03963729366660118, -0.015937069430947304, -0.023113802075386047, 0.00996412057429552, 0.032204143702983856, 0.05041881278157234, 0.016637012362480164, -0.0389598049223423, -0.034848976880311966, 0.004825401119887829, 0.017674898728728294, -0.01412933599203825, 0.012851099483668804, 0.0209937933832407, -0.04061320051550865, -0.00903292279690504, 0.015124239958822727, -0.03880902752280235, -0.0171173308044672, -0.009830549359321594, -0.011109543032944202, -0.02476535364985466, -0.017270561307668686, 0.0027840889524668455, -0.021570440381765366, 0.0069635845720767975, -0.0004566627903841436, 0.022551454603672028, -0.015929561108350754, 0.013611315749585629, 0.01623453199863434, 0.005404480267316103, 0.0002668557863216847, -0.012455523014068604, 0.027688808739185333, 0.0157167986035347, 0.0016742706065997481, 0.006217028480023146, 0.028145449236035347, -0.0016003228956833482, -0.004096735268831253, -0.022440360859036446, 0.020076952874660492, -0.0024724663235247135, -0.026085976511240005, -0.006905826274305582, -0.016742093488574028, 0.027925817295908928, 0.019399352371692657, -0.04419972002506256, 0.01581781916320324, -0.03896968439221382, -0.03814689442515373, -0.0056625730358064175, -0.015110211446881294, -0.010767698287963867, 0.04866447672247887, -0.018120961263775826, 0.013785474933683872, 0.01967427134513855, 0.000914062256924808, -0.013481580652296543, -0.02373676747083664, -0.03261176124215126, -0.04418537765741348, 0.00897875614464283, -0.007014136761426926, -0.009774819947779179, -0.02015201933681965, 0.02183511108160019, 0.009576383978128433, -0.002650362206622958, -0.017932046204805374, -0.03377274051308632, 8.960462828532129e-33, 0.013522153720259666, 0.0014034693595021963, -0.011976192705333233, 0.0247571412473917, 0.04038003087043762, -0.023681432008743286, 0.01674935780465603, -0.007512425538152456, -0.04355759918689728, 0.025134252384305, -0.01603146828711033, 0.01046933513134718, -0.005310803651809692, 0.03761197626590729, 0.004870410542935133, 0.003491069423034787, 0.035163529217243195, -0.03397618979215622, 0.004351344890892506, -0.0028595358598977327, 0.022972654551267624, 0.006926178932189941, 0.023705869913101196, -0.020187854766845703, -0.021764272823929787, 0.030478065833449364, -0.025582505390048027, 0.021006712689995766, 0.00926718208938837, 0.002287674229592085, 0.004631401505321264, 0.009002791717648506, 0.028716381639242172, -0.006933399010449648, -0.03462909907102585, 0.02832937240600586, -0.010432449169456959, 0.003922681789845228, 0.008374001830816269, -0.005903882905840874, 0.02735135704278946, -0.007380654104053974, -0.014775355346500874, 0.004789215978235006, -0.0014963499270379543, 0.02204814739525318, 0.0034523240756243467, -0.040360789746046066, 0.008883202448487282, 0.02031462825834751, -0.004134813789278269, 0.006493460852652788, 0.021174466237425804, 0.008861702866852283, 0.01190824806690216, -0.016666006296873093, -0.026580017060041428, 0.03216191381216049, -0.015712672844529152, 0.027074463665485382, 0.014834722504019737, 0.04847245290875435, -0.013255348429083824, 0.004745189566165209, -0.034175973385572433, -0.004018843639642, -0.030185725539922714, -0.01779964566230774, -0.008734624832868576, -0.0064382958225905895, -0.032314401119947433, 0.0020175017416477203, 0.025034509599208832, 0.034411367028951645, 0.046085115522146225, -0.03918113559484482, -0.025975951924920082, -0.010775425471365452, -0.008895388804376125, 0.02009015902876854, 0.0025777865666896105, -0.029700592160224915, -0.004753950983285904, 0.019818199798464775, -0.01283340435475111, 0.01102838758379221, 0.005820124875754118, 0.040422480553388596, 0.004563987720757723, -0.0020518810488283634, 0.007971574552357197, 0.009053557179868221, -0.020007481798529625, 0.02836679480969906, 0.02278379537165165, -1.3873402870956397e-8, 0.025191916152834892, 0.010049652308225632, -0.020036354660987854, 0.017992403358221054, 0.002291199518367648, 0.013385608792304993, -0.008323876187205315, 0.002531663281843066, -0.05016321316361427, 0.009153012186288834, 0.042336367070674896, -0.004712001886218786, -0.000264694303041324, 0.012205040082335472, 0.001211624825373292, -0.06840573996305466, -0.03726797550916672, -0.023470140993595123, 0.014532618224620819, -0.008639924228191376, -0.0019822095055133104, 0.055205024778842926, 0.00875704362988472, 0.015137208625674248, 0.0029829596169292927, 0.004965836647897959, 0.0169052816927433, -0.07562375068664551, 0.011795278638601303, 0.02862423285841942, -0.022092439234256744, -0.03405306860804558, -0.04387360066175461, 0.0005306070088408887, -0.007039867807179689, 0.004497393500059843, -0.016435077413916588, 0.024912605062127113, 0.03897548466920853, -0.0038558649830520153, -0.039273567497730255, -0.0018073850078508258, 0.011729232035577297, -0.03292763605713844, -0.007322908844798803, -0.00111317727714777, -0.047825220972299576, 0.015393667854368687, 0.007789075840264559, -0.034947820007801056, 0.022794216871261597, -0.004813611973077059, -0.01570138894021511, 0.014755221083760262, 0.028072847053408623, 0.009930652566254139, 0.023611200973391533, -0.034228697419166565, -0.019519032910466194, -0.006225571967661381, 0.04107905551791191, -0.001793613308109343, 0.010968431830406189, -0.02016349509358406 ]
coding-paying-attention
https://markhneedham.com/blog/2010/05/09/coding-paying-attention
false
2010-05-30 23:13:25
C#: Using a dictionary instead of if statements
[ "c" ]
[ ".NET" ]
A problem we had to solve on my current project is how to handle form submission where the user can click on a different button depending whether they want to go to the previous page, save the form or go to the next page. An imperative approach to this problem might yield code similar to the following: [source,csharp] ---- public class SomeController { public ActionResult TheAction(string whichButton, UserData userData) { if(whichButton == "Back") { // do the back action } else if(whichButton == "Next") { // do the next action } else if(whichButton == "Save") { // do the save action } throw Exception(""); } } ---- A neat design idea which my colleague http://twitter.com/dermotkilroy[Dermot Kilroy] introduced on our project is the idea of using a dictionary to map to the different actions instead of using if statements. [source,csharp] ---- public class SomeController { private Dictionary<string, Func<UserData,ActionResult>> handleAction = new Dictionary<string, Func<UserData,ActionResult>> { { "Back", SaveAction }, { "Next", NextAction }, { "Save", SaveAction } }; public ActionResult TheAction(string whichButton, UserData userData) { if(handleAction.ContainsKey(whichButton)) { return handleAction[whichButton](userData); } throw Exception(""); } private ActionResult NextAction(UserData userData) { // do cool stuff } } ---- It's quite similar in a way to a problem we had on another project where we needed to http://www.markhneedham.com/blog/2010/01/15/c-a-functional-solutional-to-a-modeling-problem/[deal with user inputs and then create an object appropriately]. The way we have to read the code is a bit more indirect than with the original approach since you now need to click through to the individual methods for each action. On the other hand I like the fact that we don't have if statements all over the place anymore. * Updated * - updated to take Dhananjay Goyani's comments into account
null
null
[ -0.0057014403864741325, -0.03242790699005127, -0.04510442912578583, 0.027859069406986237, 0.05629957467317581, 0.007375478278845549, 0.03207094594836235, 0.010040928609669209, -0.017310282215476036, -0.03953683376312256, -0.0020242822356522083, 0.005359091330319643, -0.04780551791191101, 0.015643609687685966, -0.01642760820686817, 0.06724610924720764, 0.07768812030553818, -0.03302941843867302, 0.05978994444012642, -0.0046369838528335094, -0.02340094745159149, 0.09040636569261551, 0.004099812358617783, 0.03592181205749512, 0.05945325270295143, 0.026998188346624374, -0.0031676737125962973, -0.030735302716493607, -0.05328601971268654, -0.011046132072806358, 0.013369142077863216, 0.02677380107343197, 0.011103499680757523, -0.032132282853126526, 0.010177429765462875, -0.057119280099868774, 0.008373625576496124, 0.01520034484565258, 0.017185987904667854, 0.0020725743379443884, -0.07514231652021408, 0.026808615773916245, -0.03923775255680084, -0.004004762973636389, -0.007539639249444008, 0.007360417395830154, -0.001894523506052792, 0.003889609593898058, -0.02729055844247341, -0.011239507235586643, -0.07380028069019318, 0.04760976508259773, -0.037788767367601395, -0.012201773934066296, 0.011458855122327805, 0.06230587512254715, 0.017832065001130104, -0.04653926566243172, 0.0072076222859323025, -0.0461333766579628, 0.01735992729663849, 0.006892257835716009, 0.02485782839357853, 0.042440902441740036, 0.02240663766860962, -0.007629040163010359, -0.004925287328660488, 0.058982059359550476, -0.03956575319170952, -0.012964565306901932, -0.017700746655464172, 0.017271140590310097, -0.0042009600438177586, 0.008223529905080795, 0.022333038970828056, -0.039199136197566986, 0.017273716628551483, 0.04030561074614525, 0.008769480511546135, 0.047107622027397156, 0.01254237350076437, 0.015395846217870712, 0.0288847703486681, 0.013711233623325825, 0.027892259880900383, -0.040668584406375885, -0.02757609635591507, 0.018477804958820343, -0.010809975676238537, 0.03912406414747238, 0.0016104765236377716, -0.04891224950551987, 0.011678258888423443, 0.057220205664634705, 0.007641194388270378, 0.012898487038910389, -0.00661081587895751, -0.006374171935021877, -0.01157419104129076, 0.012552039697766304, -0.00918581336736679, -0.011157719418406487, 0.025461779907345772, 0.024863222613930702, -0.0838010311126709, 0.0028545090463012457, -0.02935280278325081, -0.035153646022081375, 0.034489184617996216, 0.016572605818510056, -0.036528218537569046, -0.0004852973506785929, -0.055083032697439194, -0.03595724329352379, -0.05820421874523163, 0.055224914103746414, 0.03231331706047058, 0.009085780940949917, -0.0024947538040578365, 0.029547397047281265, 0.05026817321777344, 0.02593231201171875, -0.006611266639083624, 0.09116361290216446, 0.00891681294888258, 0.024004170671105385, -0.0398876816034317, 0.05328773707151413, -0.0013525307876989245, -0.08629998564720154, -0.010666797868907452, 0.05289710313081741, -0.011560281738638878, -0.016011467203497887, -0.0027797985821962357, -0.026332128793001175, 0.011009274050593376, 0.017132632434368134, 0.009676346555352211, 0.031514544039964676, -0.02645312249660492, -0.025006698444485664, 0.02528553642332554, -0.016964836046099663, -0.0009210305288434029, 0.03202282637357712, -0.004502758849412203, -0.0011688456870615482, -0.03254469111561775, 0.057444605976343155, 0.02425413206219673, 0.02731943689286709, 0.05276242271065712, -0.058523472398519516, -0.02095901221036911, 0.0838734358549118, 0.009020810946822166, 0.0018270626896992326, 0.008294039405882359, 0.01394067332148552, 0.058302830904722214, 0.020175889134407043, -0.0031783487647771835, 0.008275453001260757, 0.02611611783504486, -0.021678714081645012, 0.005440728273242712, 0.04331023618578911, 0.015884455293416977, -0.003118942491710186, -0.055988479405641556, -0.03286677226424217, 0.04168705642223358, -0.07759159058332443, -0.006395707372575998, 0.04146299511194229, 0.06472401320934296, 0.013535458594560623, 0.05622082203626633, -0.015306330285966396, -0.07176384329795837, 0.011835909448564053, -0.012176512740552425, 0.002442990429699421, 0.021531252190470695, 0.020346716046333313, 0.05050408095121384, 0.019151916727423668, -0.011311783455312252, 0.03322163224220276, -0.07854759693145752, -0.07577638328075409, -0.04846421629190445, -0.027741383761167526, 0.06852644681930542, -0.008701617829501629, -0.016652150079607964, 0.10009249299764633, 0.0037610342260450125, 0.045812927186489105, 0.024384060874581337, -0.017984334379434586, 0.0012573542771860957, -0.02567528933286667, -0.03452259302139282, 0.026463599875569344, 0.049365267157554626, 0.00550366984680295, -0.03145822137594223, 0.03647952899336815, -0.029217686504125595, 0.01213803794234991, 0.03867649659514427, -0.004933393560349941, 0.05508480593562126, 0.01875709556043148, 0.026154235005378723, -0.03406082093715668, 0.06559038907289505, -0.07841722667217255, 0.025822650641202927, 0.009562489576637745, 0.0022551463916897774, -0.011944612488150597, -0.009102233685553074, 0.11277371644973755, 0.039101164788007736, -0.019102226942777634, -0.04433296620845795, -0.009615692310035229, 0.003892892273142934, -0.033849701285362244, 0.0018670479767024517, -0.020966501906514168, 0.01796826720237732, 0.020353121683001518, -0.034197911620140076, -0.023606935515999794, 0.017561232671141624, -0.04999749734997749, 0.03655657544732094, 0.08955260366201401, -0.037964340299367905, 0.06600964814424515, -0.00016069512639660388, -0.016666928306221962, 0.004351289942860603, 0.007953423075377941, -0.02071402780711651, 0.020535744726657867, 0.027509963139891624, -0.005453082267194986, 0.05963024124503136, -0.017618604004383087, -0.043067868798971176, -0.018410341814160347, -0.012412009760737419, 0.000328495487337932, 0.012928050011396408, 0.06202907860279083, 0.02819252759218216, 0.05551089718937874, -0.022893140092492104, -0.0011577883269637823, -0.013876319862902164, -0.055366192013025284, -0.0024906103499233723, -0.004546378273516893, 0.023406967520713806, 0.07039225846529007, 0.018123606219887733, -0.012259754352271557, 0.036081064492464066, 0.007107870653271675, -0.03479409217834473, -0.005941946990787983, 0.061459027230739594, 0.00850979145616293, -0.05416390672326088, -0.052139513194561005, -0.0386643186211586, 0.02180631086230278, -0.03431142866611481, -0.06840986758470535, 0.03992389887571335, -0.08269625157117844, 0.06257008761167526, -0.059589724987745285, -0.07283420860767365, 0.026065701618790627, 0.03327860310673714, 0.01430908776819706, -0.015881691128015518, 0.017444076016545296, 0.08901847153902054, -0.006871999707072973, -0.004804969299584627, 0.006791049148887396, 0.023140227422118187, -0.00120642245747149, -0.008897535502910614, 0.004819451831281185, 0.034344129264354706, -0.035283662378787994, 0.006905646529048681, -0.060628995299339294, 0.03520740568637848, -0.0005914708599448204, -0.2640313506126404, 0.01317471731454134, -0.014180866070091724, -0.03317543864250183, 0.04094893857836723, 0.0028118009213358164, 0.03811734542250633, -0.026573698967695236, -0.018862860277295113, 0.044150181114673615, -0.033988360315561295, -0.02913772314786911, -0.03429459035396576, 0.05017838254570961, -0.017685450613498688, 0.00797476526349783, -0.010416765697300434, -0.05856584012508392, -0.003442507004365325, 0.02984343282878399, -0.017657741904258728, -0.06769604235887527, -0.005089592654258013, 0.05219200998544693, 0.04550919309258461, 0.044156696647405624, -0.08168494701385498, 0.03219097480177879, -0.014449335634708405, -0.011947289109230042, 0.026317281648516655, 0.012817487120628357, -0.0048750462010502815, -0.02253643050789833, -0.015367545187473297, -0.036886993795633316, 0.007858380675315857, 0.05862347036600113, -0.013655837625265121, 0.015359544195234776, -0.03130012005567551, -0.04906933754682541, -0.02273986116051674, -0.008813469670712948, 0.07606624066829681, -0.009742948226630688, -0.05208832025527954, -0.001728371367789805, -0.05854417383670807, 0.07911545783281326, -0.01240508072078228, -0.048287052661180496, 0.01099470630288124, 0.035003695636987686, 0.010839097201824188, -0.030362799763679504, 0.04697243124246597, 0.023926910012960434, -0.03647557646036148, -0.051832348108291626, -0.0012593903811648488, -0.057200584560632706, -0.02854051999747753, -0.05162639170885086, -0.005642171949148178, -0.07687880098819733, -0.04807944595813751, -0.0067411442287266254, 0.05364064499735832, 0.04197927191853523, -0.015166785567998886, 0.01915355585515499, -0.009445681236684322, -0.11895295977592468, 0.016130488365888596, -0.022065723314881325, -0.017522577196359634, -0.03964652866125107, -0.0013851560652256012, 0.0008912179036997259, -0.023135395720601082, -0.03699176385998726, 0.018456686288118362, -0.004354659002274275, 0.003903595730662346, 0.011081834323704243, 0.03593265265226364, -0.023672521114349365, -0.02051219344139099, 0.01829122193157673, 0.07968591898679733, -0.0014743353240191936, -0.018465479835867882, -0.04487603157758713, -0.004657796584069729, 0.009638653136789799, 0.027500515803694725, -0.03796181082725525, -0.01498665101826191, -0.0179629847407341, 0.034785475581884384, -0.031902603805065155, 0.011504524387419224, -0.03840179741382599, 0.013332000933587551, -0.007014450151473284, -0.07290355116128922, 0.037731196731328964, 0.03587505966424942, 0.03637710586190224, -0.00289279967546463, -0.03183071315288544, -0.018201343715190887, -0.06727804243564606, -0.012221697717905045, -0.02568981610238552, 0.007502793334424496, 0.01718117855489254, -0.007336852606385946, -0.019644146785140038, -0.04487968608736992, 0.030151356011629105, 0.00697789853438735, 0.02718418464064598, -0.06754493713378906, -0.045442044734954834, -0.032104551792144775, -0.01533760130405426, 0.02504720352590084, 0.014351044781506062, -0.014810023829340935, 0.026418225839734077, -0.022134704515337944, -0.03946775570511818, -0.00027727067936211824, 0.005366684403270483, -0.013632096350193024, -0.04057365283370018, -0.010010039433836937, -0.024426203221082687, -0.019295137375593185, -0.0036903817672282457, -0.01649007946252823, -0.006190028507262468, 0.07771628350019455, 0.010830963030457497, 0.003475610166788101, 0.03741387277841568, -0.0059865545481443405, 0.029746875166893005, 0.012605727650225163, -0.07383604347705841, 0.002254234394058585, -0.027522316202521324, -0.043180912733078, -0.03845902904868126, -0.000023850892830523662, -0.052948400378227234, 0.005483665503561497, -0.03257301077246666, 0.021302007138729095, -0.04223454371094704, -0.020390639081597328, -0.02920684777200222, 0.009268730878829956, 0.0497092679142952, -0.0243577528744936, 0.007604959886521101, -0.00989355705678463, -0.034487999975681305, 0.012811541557312012, -0.00038141533150337636, -0.0072501301765441895, 0.0012736370554193854, -0.018449964001774788, 0.000015463203453691676, -0.008953600190579891, -0.0026794637087732553, 0.014664674177765846, 0.012345432303845882, -0.0013386784121394157, -0.03138966113328934, 0.05636805295944214, -0.004599599167704582, 0.042558714747428894, 0.0029565216973423958, 0.0011271891416981816, -0.000673167931381613, -0.0013174853520467877, -0.026987509801983833, -0.05757327377796173, 0.00355748413130641, -0.004374614916741848, 0.0023088299203664064, -0.03401372954249382, -0.06619860976934433, -0.0005727321840822697, -0.00009192581637762487, 0.029098214581608772, 0.027500731870532036, -0.0008119182894006371, 0.010582167655229568, -0.012990023009479046, 0.011331058107316494, 0.03535041958093643, -0.03454188257455826, 0.03570617735385895, 0.010554758831858635, 0.0180827546864748, 0.003380526090040803, -0.0008240313618443906, -0.04182552918791771, -0.002953257644549012, -0.04681558161973953, -0.030890144407749176, -0.041161369532346725, -0.031420838087797165, -0.011804631911218166, 0.008620316162705421, -0.014095933176577091, -0.01594441384077072, -0.005004642531275749, 0.004371799994260073, -0.02745180018246174, -0.001987905241549015, 0.0007396363071165979, -0.04755531996488571, -0.021833477541804314, 0.05026783049106598, -0.003588065505027771, 0.0014501966070383787, 0.004120470490306616, 0.0383649505674839, -0.0005040459218434989, -0.013978462666273117, -0.039722323417663574, -0.06421758979558945, 0.014763693325221539, 0.02661454863846302, 0.04329486936330795, -0.011291591450572014, -0.02066863141953945, -0.033681441098451614, -0.028136270120739937, 0.004647504538297653, 0.011471876874566078, -0.0064541855826973915, -0.0214398130774498, 0.01545638870447874, 0.048517268151044846, 0.03999035805463791, 0.04100082442164421, -0.0035365617368370295, 0.014494936913251877, 0.04342934861779213, -0.052590563893318176, -0.018654270097613335, -0.018699660897254944, -0.04928015545010567, 0.02929682657122612, 0.021905463188886642, 0.04398332163691521, -0.055752597749233246, 0.05042332038283348, 0.027708204463124275, 0.028298908844590187, 0.04713258892297745, -0.0146682383492589, 0.03086165525019169, -0.034384775906801224, 0.018140599131584167, -0.07374833524227142, 0.01797066070139408, 0.03524962067604065, -0.014882918447256088, -0.008313268423080444, -0.023333264514803886, -0.014941111207008362, 0.046853721141815186, -0.06607719510793686, -0.010720448568463326, 0.036142364144325256, 0.011623099446296692, -0.004540846683084965, 0.035911012440919876, -0.043157629668712616, 0.048040881752967834, 0.033749572932720184, -0.043736688792705536, -0.037449177354574203, -0.0372883640229702, 0.05487418547272682, 0.02719750441610813, 0.01736808568239212, -0.06328526139259338, 0.008172950707376003, 0.055440567433834076, 0.00974030327051878, 0.000027475052775116637, 0.07229161262512207, -0.033242300152778625, 0.03633670136332512, 0.015974391251802444, 0.0008204234763979912, -0.05719401687383652, 0.024984240531921387, 0.022621050477027893, -0.06156788021326065, 0.013017332181334496, 0.033076878637075424, -0.026072410866618156, -0.07539381831884384, 0.07014565169811249, 0.011402994394302368, -0.004760961979627609, -0.02979469858109951, 0.001936506712809205, -0.06411248445510864, -0.013475731015205383, -0.03401909023523331, 0.023771589621901512, -0.022416530176997185, 0.07571782916784286, 0.00303428596816957, -0.0059015690349042416, 0.07793034613132477, -0.03135617449879646, 0.0033128145150840282, -0.014220546931028366, 0.07052836567163467, 0.049959857016801834, 0.06093307211995125, -0.018812252208590508, 0.08281859010457993, 0.0028826240450143814, -0.03699842467904091, 0.03308653458952904, -0.03364162892103195, -0.008151987567543983, -0.02391943894326687, -0.009705083444714546, 0.07697920501232147, 0.02075779065489769, 0.03424924239516258, -0.04582790285348892, -0.024527624249458313, 0.010640762746334076, 0.04685451462864876, 0.01031537540256977, 0.039073120802640915, 0.013072889298200607, -0.0012599017936736345, -0.003867852035909891, -0.014213962480425835, 0.04686545953154564, -0.026702463626861572, -0.006227758713066578, 0.02528221718966961, -0.01978025957942009, 0.01637917570769787, -0.010333966463804245, 0.03144519776105881, 0.07689080387353897, -0.019095351919531822, -0.009870997630059719, -0.004021034575998783, 0.033351775258779526, 0.004555016756057739, -0.019349856302142143, 0.007469580043107271, -0.021384242922067642, 0.009182347916066647, -0.012827658094465733, -0.02036900259554386, 0.0018913508392870426, -0.03272806480526924, 0.01632547751069069, -0.05174145847558975, 0.03390582650899887, 0.00838529970496893, 0.01401528064161539, -0.032707713544368744, -0.046262405812740326, -0.05049159750342369, -0.03555677831172943, -0.05236739665269852, -0.023449314758181572, 0.029663125053048134, -0.007306602783501148, -0.04828374832868576, -0.030513253062963486, -0.01776850037276745, -0.01864367537200451, 0.04455065354704857, -0.0193523857742548, -0.013770505785942078, 0.020513562485575676, 0.005818482488393784, 0.05986432358622551, 0.044204168021678925, 0.023235982283949852, -0.028435859829187393, -0.0281392689794302, -0.0582655668258667, -0.021362263709306717, 0.05305498465895653, -0.003490548813715577, 0.016680877655744553, -0.07355915755033493, 0.031260013580322266, 0.0014225359773263335, 0.006347205489873886, -0.0641578808426857, 0.02188093215227127, 0.020540809258818626, 0.0030835343059152365, 0.06074371933937073, -0.03734305500984192, -0.02150794304907322, -0.02602606639266014, 0.006789948791265488, 0.01152193732559681, 0.023463357239961624, 0.04672713205218315, -0.04904759302735329, 0.051105692982673645, 0.030958933755755424, -0.009888225235044956, -0.03384116664528847, -0.01127126719802618, 0.02050994150340557, -0.004229512065649033, -0.020756706595420837, -0.05334428325295448, -0.06537121534347534, -0.04689864441752434, -0.000503998773638159, 0.03836079314351082, 0.002184492303058505, -0.04211759939789772, 0.017686275765299797, 0.057612136006355286, -0.05471498891711235, 0.04989975318312645, -0.047868065536022186, 0.010076881386339664, -0.04362035170197487, -0.027802733704447746, 0.02908036671578884, 0.035384684801101685, 0.006543500814586878, 0.012008109129965305, 0.02910204418003559, -0.014024554751813412, -0.008340274915099144, 0.000855125195812434, 0.0035678986459970474, 0.014615405350923538, -0.03776096552610397, 0.005289953667670488 ]
[ -0.11213626712560654, -0.020014796406030655, -0.016393300145864487, -0.04117706045508385, 0.008482962846755981, -0.02160959132015705, 0.01761722005903721, 0.02282070927321911, 0.017234575003385544, -0.02187071181833744, -0.037020258605480194, -0.0027900610584765673, -0.027874495834112167, 0.009067337028682232, 0.09801112860441208, 0.005641669034957886, -0.017918668687343597, -0.031566035002470016, -0.009490001015365124, 0.03202604129910469, 0.02069714292883873, -0.007499299012124538, -0.01056070625782013, -0.02729491889476776, -0.020930858328938484, 0.03143414109945297, 0.025004791095852852, -0.06007140874862671, 0.00432601198554039, -0.20547522604465485, 0.01836979202926159, -0.02106063812971115, 0.03813256323337555, -0.028756825253367424, -0.007928083650767803, 0.017541809007525444, 0.004183451645076275, 0.025903256610035896, 0.024026548489928246, 0.04840240627527237, 0.005744047462940216, 0.022142337635159492, -0.03509565815329552, -0.029200736433267593, 0.05246857553720474, -0.0005466777365654707, 0.01018530409783125, -0.044959474354982376, -0.00735683785751462, 0.0063014160841703415, -0.05000249668955803, -0.03529021143913269, -0.036695100367069244, -0.03440491855144501, 0.00435630464926362, 0.014205551706254482, 0.03267296776175499, 0.04556946083903313, 0.016645299270749092, 0.03003505989909172, 0.02387678436934948, -0.026507746428251266, -0.140036478638649, 0.09579913318157196, 0.012814483605325222, 0.05104794725775719, 0.0020766411907970905, 0.0061906613409519196, 0.006071988958865404, 0.0869722068309784, -0.0031099412590265274, -0.0157710500061512, -0.017843903973698616, 0.0681699812412262, 0.014193156734108925, -0.031041622161865234, 0.012869658879935741, 0.03865423426032066, 0.027812262997031212, -0.036938413977622986, -0.058847177773714066, -0.0070325215347111225, -0.005700030829757452, 0.0007451768033206463, -0.034490231424570084, 0.012616508640348911, 0.004799061454832554, 0.03169498220086098, 0.015729481354355812, 0.005248378962278366, 0.042647335678339005, -0.008691106922924519, 0.03359873592853546, 0.01319829560816288, -0.0984368771314621, 0.004600174725055695, -0.00840655155479908, 0.010851440951228142, -0.06771917641162872, 0.44082552194595337, -0.02089460752904415, -0.03067835420370102, 0.056545794010162354, 0.001829151064157486, -0.006093716248869896, 0.00482715480029583, 0.01076403260231018, -0.04218803718686104, 0.0002321422507520765, -0.03606363758444786, 0.013367348350584507, -0.0041057574562728405, 0.03253673389554024, -0.03767760097980499, -0.007094026077538729, 0.039859890937805176, 0.022115331143140793, 0.014665129594504833, -0.019269049167633057, -0.039170775562524796, -0.0002156664413632825, -0.0030655942391604185, 0.014110026881098747, -0.00802512839436531, -0.004115805495530367, -0.028780225664377213, 0.03805355727672577, 0.08272650837898254, 0.02521992102265358, 0.010208243504166603, 0.07122918218374252, -0.04266946390271187, -0.08055292814970016, -0.003158304374665022, 0.0004370516398921609, 0.004873071331530809, 0.032126057893037796, -0.027378039434552193, -0.006124841049313545, -0.004252346232533455, 0.016149112954735756, 0.00010477286559762433, 0.025929812341928482, -0.03806810453534126, -0.06692589819431305, 0.1398664116859436, -0.005244316533207893, -0.059955231845378876, -0.018362244591116905, -0.03406441956758499, -0.0002976461255457252, 0.053343575447797775, -0.004732420202344656, -0.04038779065012932, -0.007889330387115479, 0.023455917835235596, 0.07444650679826736, -0.036474548280239105, -0.03670062869787216, -0.010263296775519848, -0.0161930900067091, -0.020779753103852272, -0.04975312203168869, 0.04221570864319801, 0.047718584537506104, -0.11899403482675552, -0.03176211938261986, -0.013528118841350079, 0.0043915011920034885, -0.06475885957479477, -0.022880952805280685, 0.006021024659276009, -0.030915487557649612, -0.02012857422232628, 0.06866278499364853, 0.01187088992446661, -0.024611586704850197, 0.00568866403773427, 0.047814249992370605, 0.02336650900542736, 0.006641197018325329, 0.02901429869234562, -0.039036449044942856, -0.024606360122561455, -0.024961132556200027, -0.07464885711669922, -0.02497873455286026, 0.006534396670758724, 0.009401756338775158, -0.009699603542685509, -0.03244715929031372, -0.027425428852438927, -0.06837107241153717, 0.08692808449268341, -0.047141462564468384, -0.021935420110821724, 0.020232850685715675, -0.04787188023328781, 0.007100203540176153, -0.03696878254413605, 0.006229253951460123, 0.02221902832388878, -0.028913291171193123, 0.0174367967993021, -0.02393592707812786, 0.04123498126864433, 0.02976044826209545, -0.01969335786998272, 0.05765967071056366, 0.029267577454447746, -0.07070015370845795, 0.0030035246163606644, 0.05760850012302399, -0.0007206826703622937, -0.00035191650385968387, -0.023444505408406258, -0.018499301746487617, 0.050232209265232086, 0.0241556316614151, 0.023929623886942863, -0.026149807497859, -0.0035699382424354553, 0.07581068575382233, -0.3340649902820587, -0.04519451782107353, -0.0030705209355801344, -0.010567045770585537, 0.0027579565066844225, -0.061633795499801636, 0.0199737511575222, -0.032007236033678055, -0.037241995334625244, -0.005313223227858543, 0.10985460132360458, -0.048044003546237946, -0.002494985004886985, -0.0487702451646328, 0.015799157321453094, 0.019447464495897293, -0.02407476119697094, -0.023427726700901985, -0.031062595546245575, 0.005967723671346903, 0.006118565797805786, -0.01551517192274332, 0.04133012890815735, -0.05852137506008148, -0.012260882183909416, -0.04052010551095009, 0.09575114399194717, 0.0008076188387349248, 0.090128093957901, -0.04772988334298134, 0.05847141146659851, 0.014369585551321507, -0.011702407151460648, -0.094584621489048, 0.01323377899825573, -0.026735341176390648, -0.01702091097831726, -0.01152572687715292, 0.01573372818529606, -0.02398553676903248, -0.03165820986032486, 0.012663304805755615, -0.028474193066358566, -0.03562750667333603, -0.009746805764734745, -0.010545587167143822, -0.029105234891176224, -0.05575074255466461, -0.010667666792869568, 0.06064612418413162, 0.027184057980775833, -0.04165460914373398, 0.003404237562790513, 0.02700326405465603, -0.006088566966354847, -0.015351229347288609, -0.06199781224131584, -0.0040575116872787476, -0.023739492520689964, -0.0024933142121881247, 0.019987208768725395, 0.03888300806283951, 0.02775942161679268, -0.06281434744596481, 0.010298371315002441, 0.034174710512161255, -0.00020509747264441103, -0.008291040547192097, 0.05813745781779289, -0.06116047501564026, -0.029688119888305664, 0.11288676410913467, 0.004525489639490843, 0.019237512722611427, 0.0312411580234766, 0.03903001546859741, 0.011239263229072094, 0.03661449998617172, 0.011358623392879963, 0.006083290558308363, -0.0012218478368595243, 0.02376580610871315, 0.04944237694144249, -0.026470473036170006, -0.0014315636362880468, 0.020140431821346283, -0.015554255805909634, -0.011549175716936588, 0.06115441769361496, -0.03664831817150116, -0.013248763047158718, -0.004969329107552767, -0.028162766247987747, -0.055121663957834244, 0.0555739589035511, -0.01919383928179741, -0.24758154153823853, 0.015801286324858665, 0.07831364870071411, 0.07368312776088715, -0.017453588545322418, 0.028909171000123024, 0.03198642656207085, -0.057888325303792953, -0.0018798054661601782, 0.025856686756014824, -0.00018111856479663402, 0.04070904478430748, -0.015539184212684631, 0.01315098162740469, 0.02032957412302494, -0.016081318259239197, 0.031530506908893585, -0.01504015177488327, 0.05228182300925255, -0.02075061947107315, 0.03000332973897457, 0.005303502548485994, 0.15098927915096283, 0.010060117579996586, 0.05142731964588165, 0.02099601924419403, 0.03397177904844284, 0.0014987657777965069, 0.10647798329591751, 0.01749487593770027, 0.012295999564230442, -0.017760466784238815, 0.08328720927238464, 0.016921604052186012, 0.037570104002952576, -0.10489433258771896, -0.025234127417206764, 0.04197514429688454, 0.016668202355504036, 0.007939867675304413, -0.029238468036055565, 0.01851635053753853, -0.03680717945098877, -0.0045241303741931915, 0.07265498489141464, -0.0048531582579016685, -0.008971485309302807, -0.004814061336219311, -0.06450890004634857, 0.004672342445701361, -0.011604126542806625, -0.03558119386434555, -0.020662914961576462, -0.00025778880808502436, 0.015626555308699608, 0.08099827915430069, 0.029380997642874718, -0.03078463487327099, -0.023063238710165024, 0.027828127145767212, 0.011275107972323895, 0.014437730424106121, 0.13277678191661835, -0.007762300781905651, 0.036567527800798416 ]
[ -0.022434575483202934, 0.0020031884778290987, -0.036697275936603546, 0.006811853498220444, -0.014985466375946999, 0.06438660621643066, 0.023914333432912827, -0.026771269738674164, -0.014055995270609856, 0.026427241042256355, 0.015934495255351067, 0.0015832839999347925, 0.014762510545551777, -0.015364371240139008, 0.019431792199611664, -0.004583428613841534, -0.010183550417423248, -0.03583687171339989, 0.01762746274471283, 0.0033623126801103354, -0.02648945339024067, 0.044091545045375824, 0.039259087294340134, -0.02806389331817627, -0.053004588931798935, -0.006812963634729385, 0.015507382340729237, -0.03756173327565193, 0.015379653312265873, -0.11653944849967957, -0.030254080891609192, -0.034382522106170654, -0.020845646038651466, -0.009534352459013462, -0.03485802933573723, -0.01888853870332241, -0.019614839926362038, 0.03322190046310425, 0.02240103669464588, -0.03912102431058884, -0.05958352982997894, -0.01584605686366558, -0.011890729889273643, 0.024710126221179962, 0.0073206014931201935, 0.02146439626812935, -0.00400535948574543, -0.02577558532357216, -0.006987125147134066, -0.0012926101917400956, 0.0011481363326311111, -0.003578810254111886, 0.01405987050384283, -0.0022654132917523384, 0.026903610676527023, -0.02916216477751732, -0.01137614157050848, -0.023539062589406967, 0.00787714496254921, 0.017163125798106194, 0.03386170044541359, -0.001797179109416902, -0.05083150789141655, -0.029268378391861916, 0.013579673133790493, 0.009847388602793217, -0.012151739560067654, -0.03353418782353401, -0.005386517848819494, -0.033017490059137344, 0.010005892254412174, 0.017204798758029938, -0.010546637699007988, -0.0037346454337239265, 0.011041550897061825, -0.07095814496278763, 0.017095033079385757, -0.006430068984627724, -0.003401905531063676, -0.013158517889678478, 0.00425858236849308, 0.00435869675129652, -0.03172488138079643, 0.039143458008766174, 0.02094646915793419, -0.025196842849254608, -0.0011302839266136289, -0.018597522750496864, 0.007481125649064779, -0.008221052587032318, -0.03780154883861542, 0.029519440606236458, 0.03640136495232582, 0.024022430181503296, -0.06932512670755386, 0.0047911303117871284, -0.02359096333384514, -0.011923164129257202, -0.008175202645361423, 0.8422375917434692, -0.008637181483209133, 0.018542878329753876, 0.01043972373008728, 0.016681402921676636, 0.05679485201835632, -0.04608073830604553, 0.012126614339649677, -0.04167827218770981, 0.029179582372307777, 0.0002907455200329423, 0.009602964855730534, 0.012860743328928947, 0.0041513824835419655, 0.0459267720580101, 0.03599923849105835, -0.02430192567408085, 0.01289626769721508, -0.008143543265759945, -0.013330761343240738, -0.003652470652014017, 0.022105079144239426, 0.00263701262883842, 0.019643675535917282, -0.011157936416566372, 0.022285882383584976, -0.20171266794204712, 0.00965323206037283, -8.494950902559179e-33, 0.06479610502719879, -0.0016622106777504086, 0.005388807971030474, 0.026517445221543312, 0.013373243622481823, 0.03235112130641937, 0.03230884671211243, 0.01049290131777525, 0.03370984271168709, -0.02981603890657425, -0.02604941464960575, -0.030903387814760208, -0.002740787109360099, 0.003491494106128812, 0.028646031394600868, -0.008076904341578484, -0.0060408879071474075, 0.020490439608693123, -0.022551467642188072, -0.01694001629948616, 0.03571328893303871, 0.040315866470336914, 0.02697921358048916, 0.0021041419822722673, 0.012639656662940979, 0.03064682148396969, -0.013810956850647926, 0.02073499746620655, -0.015226894058287144, -0.04076572507619858, 0.0006808298057876527, 0.0036907284520566463, -0.015433166176080704, 0.009711978025734425, 0.022418035194277763, -0.025863362476229668, -0.022594815120100975, -0.013814523816108704, -0.011313246563076973, -0.06885823607444763, -0.04926031455397606, 0.0007323006866499782, -0.033877916634082794, -0.005692063830792904, -0.04245835542678833, -0.02684139832854271, 0.0018809045432135463, 0.015587838366627693, 0.011782710440456867, 0.014672521501779556, 0.002401326783001423, 0.04208333045244217, 0.027732282876968384, 0.0010800978634506464, -0.040327418595552444, 0.013434290885925293, -0.044061314314603806, 0.008352654986083508, 0.013336407020688057, 0.03638642281293869, 0.019975444301962852, -0.026953399181365967, -0.010450808331370354, 0.01879154145717621, -0.04336126521229744, -0.0034960368648171425, -0.014258211478590965, -0.04334767162799835, 0.044331278651952744, -0.026581279933452606, -0.052545253187417984, -0.024445492774248123, 0.004735632799565792, -0.03827022388577461, 0.008484674617648125, -0.008276047185063362, -0.013766189105808735, 0.000998141011223197, 0.018174897879362106, 0.018679076805710793, -0.0038673572707921267, -0.013237491250038147, -0.014261474832892418, -0.023619182407855988, 0.03234213963150978, -0.01136798970401287, 0.01106314454227686, -0.005918772425502539, 0.01225602813065052, 0.02474150061607361, 0.00966630782932043, 0.04336605966091156, -0.01570292003452778, -0.0021113755647093058, 0.012006149627268314, 7.570850712339623e-33, 0.020613642409443855, -0.033951424062252045, -0.04494616016745567, 0.006710069254040718, 0.03404548391699791, -0.008862316608428955, -0.0019999193027615547, 0.03852361813187599, -0.04380146041512489, -0.0007464436930604279, -0.009757492691278458, 0.024835456162691116, -0.0018514664843678474, 0.0209349412471056, 0.050684478133916855, -0.006930994335561991, 0.03058973141014576, -0.0007704084273427725, 0.01152007281780243, -0.029270466417074203, 0.00789583008736372, 0.019703615456819534, 0.020531417801976204, -0.017215095460414886, -0.013838122598826885, 0.033007219433784485, -0.02407046966254711, -0.00019261983106844127, 0.013807426206767559, 0.02302411198616028, 0.007800691295415163, 0.003695937804877758, 0.013092722743749619, -0.026807816699147224, -0.0257414523512125, 0.004035279620438814, -0.029065974056720734, -0.011588005349040031, 0.011183393187820911, 0.02030199207365513, 0.005057321395725012, -0.027756789699196815, 0.04456007480621338, 0.014967501163482666, 0.025846242904663086, 0.005754939746111631, -0.026158804073929787, -0.003504969412460923, 0.0039618476293981075, 0.025872794911265373, 0.03543993458151817, -0.016179483383893967, -0.03128916025161743, -0.008709860034286976, 0.03814675286412239, -0.0023533336352556944, -0.032895419746637344, -0.014154546894133091, -0.008733658120036125, -0.015537210740149021, -0.005481888074427843, 0.00318455439992249, -0.0031759231351315975, 0.025569941848516464, -0.010548765771090984, 0.024728456512093544, -0.008824658580124378, -0.014050867408514023, 0.018379230052232742, 0.012198453769087791, -0.03679352626204491, -0.015079779550433159, 0.001834052032791078, 0.0070636942982673645, 0.0221025962382555, -0.050458841025829315, -0.0194987989962101, -0.005448358133435249, 0.019261199980974197, 0.0024610187392681837, 0.02565455622971058, -0.007503109984099865, 0.05151040852069855, 0.00042250071419402957, -0.027701690793037415, -0.018015921115875244, -0.0293307863175869, -0.02573971450328827, -0.0011310334084555507, -0.002896975725889206, -0.02050301618874073, 0.020760631188750267, 0.017404530197381973, 0.006658616010099649, -0.0074369763024151325, -1.364556911909176e-8, -0.04149828478693962, 0.04801357910037041, 0.0014799179043620825, 0.03433290868997574, 0.014372756704688072, 0.013104967772960663, -0.03471805527806282, -0.042685460299253464, -0.004738989751785994, -0.0014768025139346719, 0.042454104870557785, 0.024776702746748924, 0.019142482429742813, -0.011060189455747604, -0.00842314399778843, -0.0639418363571167, -0.020573345944285393, -0.021395433694124222, 0.01849174313247204, 0.013895927928388119, 0.016740189865231514, 0.04492555186152458, -0.04582779482007027, 0.007556185591965914, 0.02414156123995781, 0.018383478745818138, 0.007718159817159176, -0.0631420910358429, -0.007028020452708006, 0.010638638399541378, 0.021913444623351097, -0.0388813354074955, -0.0019219437381252646, 0.008184672333300114, -0.05163867771625519, -0.03312382102012634, 0.023315787315368652, -0.003914163447916508, 0.03507493808865547, -0.010906602256000042, 0.03962757810950279, -0.009842275641858578, 0.0221584253013134, 0.00018670815916266292, -0.030837738886475563, 0.02695651911199093, -0.0241798534989357, 0.008257483132183552, 0.03960133343935013, 0.005215189419686794, -0.025631368160247803, -0.00824327114969492, 0.017946412786841393, 0.0474792942404747, 0.03434241935610771, 0.02020997367799282, -0.009018315002322197, -0.005009938031435013, 0.00792288314551115, 0.0025321098510175943, 0.02448739856481552, 0.023524099960923195, -0.035933155566453934, -0.01906864531338215 ]
c-using-a-dictionary-instead-of-if-statements
https://markhneedham.com/blog/2010/05/30/c-using-a-dictionary-instead-of-if-statements
false
2010-05-06 23:36:26
F#: My current coding approach
[ "f" ]
[ "fsharp" ]
I spent a bit of time over the weekend coding http://code.google.com/p/yetanotherbuilder/[a simple generic builder for test objects] in F# and I noticed that although there were similarity with the ways I drive code in C# or Java my approach didn't seem to be exactly the same. I've previously written about the importance of http://www.markhneedham.com/blog/2009/07/20/coding-quick-feedback/[getting quick feedback] when programming and how I believe that this can often be achieved faster by using the REPL rather than unit testing. == Still driving from the outside in This time I decided to apply some of my recent learnings on http://www.markhneedham.com/blog/2010/04/18/coding-another-outside-in-example/[the value of] http://www.markhneedham.com/blog/2010/03/02/riskiest-thing-first-vs-outside-in-development/[driving from the outside in] so I started by writing an acceptance test which described the fluent interface of the code at a high level. I want to use the builder from C# code so I was driving the code from C# tests: [source,csharp] ---- [Test] public void ShouldCreateAFoo() { var foo = Build.A<Foo>().Build(); Assert.That(foo.Bar, Is.EqualTo("Bar")); } ---- I wrote enough code to make that test compile at which stage the test was failing with a null reference exception because I hadn't instantiated 'Foo' yet. At this stage if I was coding in C# I would probably work out what object I needed to create to do that and then I would write a test directly against that object and then write the code to make that pass. In this case I didn't do that but instead I had a rough idea of the functions that I needed to glue together to get that test to pass. I just wrote those functions and combined them together without writing any tests against those individual functions. I extended my initial test to cover all the different types that are being used by the objects in our code base and then I added the code to make the new type pass. == Approach to learning an API Since it's reflection code and I don't know those APIs that well I spent a bit of time tinkering in the REPL until I knew which methods I needed to call. If I was writing C# then I'd have probably spent less time trying out different methods and more time reading through the list of available methods before choosing the one that I wanted. I wrote quite messy code initially until I had the first test passing and then I went back and tidied it up so that it was a bit more readable. At this stage http://code.google.com/p/yetanotherbuilder/source/browse/yab/TypeHelper.fs[common functions] started to reveal themselves and it made sense to have some unit tests directly against those as documentation if nothing else. The tests were all immediately green so those bits of code weren't test driven at that level. == Do we need really granular tests in F#? My overall feeling at the moment is that while it's useful to have tests around code written in F#, we don't need to go as granular with our tests as we might do in C#. Due to the conciseness of the language it's often so obvious that the code written is correct that I don't think tests at the functional level would add that much value. Equally I'm not necessarily convinced that the design would be any different if the individual functions were test driven. I found the high level test gave me enough protection for any changes that I wanted to make and it did protect me a couple of times when I made breaking changes. Having said all that, I'm still only writing toy code so it would be interesting to see if my approach would be any different if I was working on an F# application with a team of other developers.
null
null
[ 0.029929153621196747, -0.017678046599030495, 0.005911232903599739, 0.03843481093645096, 0.07744499295949936, 0.02514084056019783, 0.02554655261337757, 0.04121549800038338, 0.0002572365337982774, -0.02416793815791607, 0.004894888028502464, 0.012624796479940414, -0.08315180242061615, 0.004419188015162945, -0.021969420835375786, 0.05411939322948456, 0.08403973281383514, -0.023219743743538857, 0.04155426099896431, 0.00477303983643651, 0.0035162027925252914, 0.06227536126971245, -0.003560964949429035, 0.03497614711523056, 0.03352433815598488, 0.015823712572455406, 0.011082993820309639, -0.007435779087245464, -0.06505018472671509, -0.013248213566839695, 0.026280969381332397, 0.038897138088941574, 0.010029640980064869, -0.022291235625743866, 0.00021368909801822156, -0.030087577179074287, 0.011294711381196976, 0.005308947525918484, -0.0096513032913208, 0.03182854503393173, -0.06373068690299988, 0.015821538865566254, 0.009947345592081547, 0.01255712192505598, -0.0449107326567173, 0.032024115324020386, -0.04261384531855583, -0.013410396873950958, -0.04096226394176483, -0.017144884914159775, -0.0590825118124485, 0.02907557599246502, -0.021709343418478966, -0.016946598887443542, -0.0032475825864821672, 0.05478388071060181, 0.020805833861231804, -0.06503194570541382, 0.0386107861995697, -0.058750879019498825, 0.009727590717375278, 0.0006152852438390255, 0.023679859936237335, 0.03485139459371567, 0.03420074284076691, -0.006363044027239084, -0.014902031049132347, 0.04521767050027847, -0.04122341796755791, 0.0024217821191996336, -0.01671002246439457, -0.0022383045870810747, -0.02845732495188713, -0.03026348352432251, 0.0046838270500302315, -0.04487228766083717, -0.0007480682688765228, 0.05104469880461693, 0.028940018266439438, 0.03779587149620056, -0.017462456598877907, 0.019807685166597366, 0.02989218197762966, 0.003614909714087844, 0.0199429988861084, -0.011936413124203682, -0.01592443883419037, 0.00371772819198668, -0.0327996164560318, 0.06514521688222885, 0.0237409807741642, -0.035793304443359375, -0.003740875283256173, 0.04564622789621353, 0.015424620360136032, 0.0001253080990863964, 0.018445733934640884, -0.0014359601773321629, -0.0034329716581851244, 0.003815309377387166, -0.029505688697099686, -0.01963074877858162, 0.01701369322836399, 0.016286538913846016, -0.068121999502182, -0.005994116887450218, -0.03379648178815842, -0.032600194215774536, 0.002850752556696534, 0.030835971236228943, -0.04795663058757782, 0.02348669245839119, -0.03040543757379055, 0.005118406377732754, -0.07460905611515045, 0.04153570160269737, 0.006215040571987629, -0.0012479894794523716, -0.01914146915078163, 0.01830555498600006, 0.030610350891947746, -0.0022032088600099087, -0.018095705658197403, 0.06458840519189835, -0.00016767859051469713, 0.06276906281709671, -0.03755369782447815, 0.074114590883255, -0.007889168336987495, -0.06788131594657898, -0.03175649046897888, 0.0460406094789505, -0.02875956892967224, -0.00027035039965994656, -0.0015051258960738778, -0.012912889011204243, -0.02415511943399906, -0.011656051501631737, 0.026439933106303215, 0.051494959741830826, -0.014653606340289116, -0.04340893402695656, 0.030272141098976135, -0.03799799457192421, -0.01374130416661501, 0.011203465051949024, -0.02465185523033142, -0.019708165898919106, -0.01882878690958023, 0.05157928541302681, 0.01141665130853653, 0.05361061170697212, 0.029895449057221413, -0.04488243907690048, 0.005100753158330917, 0.0762690082192421, 0.01307657640427351, 0.0157349593937397, -0.009946775622665882, 0.027725620195269585, 0.05322686582803726, 0.03271450102329254, 0.01117182057350874, 0.02046096883714199, 0.013101894408464432, 0.010469715110957623, -0.0005982975708320737, 0.04139541834592819, -0.03817536681890488, -0.01626107282936573, -0.07235689461231232, -0.022858167067170143, 0.051948655396699905, -0.037672191858291626, -0.02361217327415943, 0.01993296854197979, 0.07374293357133865, 0.0011084472062066197, 0.04437203332781792, 0.013180156238377094, -0.06503558903932571, 0.008055568672716618, 0.02830311842262745, 0.006757437717169523, 0.00980581808835268, -0.0006102272309362888, 0.056742895394563675, 0.013819368556141853, -0.014268962666392326, 0.030931876972317696, -0.04320591688156128, -0.08164679259061813, -0.028829466551542282, -0.027290988713502884, 0.0776447057723999, -0.03617936372756958, -0.02144123986363411, 0.08253854513168335, 0.006995803210884333, 0.04592011123895645, 0.028517162427306175, -0.03724505007266998, 0.02080220729112625, -0.009630681946873665, -0.03544670715928078, 0.06487776339054108, 0.04307485744357109, -0.013081751763820648, -0.058536261320114136, 0.0030408892780542374, 0.012998806312680244, 0.014385934919118881, 0.04920898377895355, -0.0018552353139966726, 0.0423693023622036, 0.015544498339295387, 0.040883827954530716, -0.027373647317290306, 0.06651409715414047, -0.07332484424114227, 0.0046782721765339375, 0.000978836789727211, -0.021356778219342232, -0.01443584356456995, -0.005492632742971182, 0.11660238355398178, 0.04292462393641472, -0.07074110954999924, -0.054753851145505905, 0.006917259655892849, -0.00074756023241207, -0.01720871590077877, 0.007031411863863468, -0.008944270201027393, 0.009452976286411285, -0.0026616407558321953, -0.026879362761974335, -0.0006659868522547185, -0.006021592300385237, -0.029349032789468765, 0.036203909665346146, 0.07916878908872604, -0.038524091243743896, 0.04834889620542526, -0.014560741372406483, -0.041092321276664734, 0.007431532721966505, -0.03141345828771591, -0.029797010123729706, 0.008944409899413586, 0.029709812253713608, -0.017986509948968887, 0.07443100214004517, -0.030286911875009537, -0.02813938446342945, -0.026708804070949554, -0.0299682579934597, 0.012177270837128162, 0.035053689032793045, 0.05461805313825607, 0.014248918741941452, 0.050839051604270935, -0.020456533879041672, 0.014625501818954945, -0.012675660662353039, -0.052438702434301376, -0.0001120869055739604, -0.005089520942419767, 0.010643411427736282, 0.064058318734169, -0.01258348673582077, 0.01663273759186268, 0.03853139653801918, 0.026621758937835693, -0.039968881756067276, 0.001113276113756001, 0.022567640990018845, 0.000288069189991802, -0.05885930359363556, -0.04771905392408371, -0.04066096246242523, 0.035252831876277924, -0.02288714423775673, -0.028099296614527702, 0.018893618136644363, -0.07016831636428833, 0.040524110198020935, -0.08441770076751709, -0.07248427718877792, 0.008068840950727463, 0.0381368063390255, 0.019905107095837593, -0.015406557358801365, 0.024287700653076172, 0.07129909098148346, 0.03404844552278519, 0.015435162000358105, -0.0076708667911589146, -0.006030648946762085, 0.011591706424951553, -0.000007325089427467901, 0.023619292303919792, 0.027975264936685562, -0.006662168074399233, -0.0030656848102808, -0.041947003453969955, 0.007815531454980373, -0.0025572972372174263, -0.2574998736381531, 0.031648293137550354, -0.017326686531305313, -0.039004575461149216, 0.026652002707123756, -0.009136526845395565, 0.010399906896054745, -0.04267527535557747, -0.01738486997783184, 0.05480678007006645, -0.04449746012687683, -0.04134771600365639, -0.03899452090263367, 0.06206049770116806, -0.0024170903488993645, 0.003866854589432478, 0.004486126825213432, -0.03804479166865349, 0.00808126199990511, 0.05283116176724434, -0.013644183985888958, -0.07560807466506958, 0.019932691007852554, 0.025711141526699066, 0.05488596111536026, 0.03956988826394081, -0.11177258938550949, 0.05875139683485031, -0.02457275800406933, 0.0024137021973729134, -0.021848713979125023, 0.017767975106835365, 0.02382718026638031, -0.02579137682914734, -0.02485945075750351, 0.009947839193046093, 0.009584082290530205, 0.013569467701017857, -0.004392716102302074, 0.02383548766374588, -0.043459340929985046, -0.05700656399130821, -0.03138135373592377, -0.005553477443754673, 0.08434674143791199, -0.02117597684264183, -0.06557174026966095, -0.007012641988694668, -0.044958796352148056, 0.06915611028671265, -0.039726026356220245, -0.03337071090936661, -0.006547051947563887, 0.07857994735240936, -0.00913060549646616, -0.05022158473730087, 0.039119113236665726, -0.014893917366862297, -0.03618693724274635, -0.020657585933804512, -0.024455398321151733, -0.04672524333000183, -0.0005472588818520308, -0.04227450489997864, -0.009724374860525131, -0.07841119170188904, -0.06872599571943283, -0.014083781279623508, 0.05621590465307236, 0.022913247346878052, -0.01168793998658657, -0.0010972537565976381, 0.01351847406476736, -0.1322479397058487, -0.008108469657599926, -0.037954460829496384, -0.027035731822252274, -0.05201151594519615, -0.0034200805239379406, 0.06924077868461609, -0.02126881293952465, -0.0430368147790432, 0.04106271639466286, 0.019634004682302475, 0.027701077982783318, 0.011844257824122906, 0.027685096487402916, 0.010581297799944878, -0.008009545505046844, 0.002014763653278351, 0.08424373716115952, -0.015779707580804825, 0.01996711455285549, -0.055958766490221024, 0.018645258620381355, 0.025868523865938187, 0.03735818713903427, -0.002803189679980278, 0.01560992281883955, 0.008858046494424343, 0.020994868129491806, -0.04290836676955223, 0.01995561271905899, -0.017233196645975113, 0.026063719764351845, -0.02849295735359192, -0.05518685281276703, 0.04779538884758949, 0.028522007167339325, 0.0275493785738945, -0.017974887043237686, -0.014291881583631039, 0.0011448180302977562, -0.04984181746840477, -0.03593018278479576, -0.024310937151312828, 0.01217930018901825, 0.016752809286117554, -0.004887276794761419, -0.014573600143194199, -0.04661653935909271, 0.0018024338642135262, 0.03153509646654129, -0.005170452408492565, -0.0695304423570633, -0.026523295789957047, -0.013367685489356518, -0.019873058423399925, -0.008533102460205555, 0.05132314935326576, -0.015248333103954792, 0.05794978141784668, 0.00006196230970090255, -0.03806493431329727, -0.0035093934275209904, 0.01671571284532547, -0.016346346586942673, -0.04172644391655922, -0.024722158908843994, -0.027792880311608315, 0.0021855183877050877, 0.0018734157783910632, 0.03453703597187996, 0.014676611870527267, 0.03122381679713726, -0.0016924742376431823, 0.021065743640065193, 0.012345172464847565, -0.0017936863005161285, 0.018266238272190094, 0.0065323240123689175, -0.07830842584371567, 0.03614867478609085, -0.039243072271347046, -0.04952653869986534, -0.027441516518592834, 0.042401447892189026, -0.044040497392416, -0.04788493737578392, -0.0491151437163353, 0.03657945245504379, -0.033353179693222046, -0.031123241409659386, -0.04392684996128082, 0.02653047814965248, 0.053188975900411606, -0.010343954898416996, 0.04588376730680466, -0.031233901157975197, -0.029231445863842964, 0.005123078357428312, 0.010173237882554531, -0.04337913542985916, 0.02718980982899666, -0.009718486107885838, 0.002323801862075925, -0.027875512838363647, 0.0007668487378396094, 0.03793632611632347, 0.014476477168500423, 0.013968188315629959, -0.019651107490062714, 0.02050730772316456, 0.0008780167554505169, 0.054219722747802734, -0.01579289324581623, 0.017465846613049507, -0.004979864228516817, -0.025855224579572678, 0.003355732187628746, -0.03266162425279617, -0.022191112861037254, -0.019335053861141205, 0.0533367358148098, -0.03677202761173248, -0.07808783650398254, 0.023366671055555344, 0.03612440451979637, 0.026166653260588646, 0.002813652390614152, -0.01982593536376953, 0.006078395061194897, -0.02126576192677021, 0.029244188219308853, 0.07230248302221298, -0.04977327957749367, 0.02583545446395874, -0.01230546459555626, 0.019818050786852837, 0.025385776534676552, 0.01918106898665428, -0.0483546108007431, -0.02778369002044201, -0.007989062927663326, -0.026266582310199738, -0.021017026156187057, -0.018742555752396584, -0.024654077365994453, 0.01712791435420513, -0.016511093825101852, -0.03285958617925644, -0.0037683097179979086, -0.004810342099517584, -0.02222362719476223, -0.014873288571834564, 0.014603878371417522, -0.06710825115442276, 0.0087468596175313, 0.02746942639350891, -0.04320631921291351, 0.015251907519996166, -0.012372764758765697, 0.034924447536468506, 0.01917203888297081, -0.010885359719395638, -0.03998606279492378, -0.043166063725948334, -0.005081842187792063, -0.032631538808345795, 0.036205727607011795, 0.01309981755912304, -0.014974450692534447, -0.042746081948280334, -0.005806120578199625, -0.04014420881867409, 0.005027109291404486, -0.007312021218240261, -0.02363032102584839, 0.02756340801715851, 0.052925460040569305, -0.011534313671290874, 0.03569367155432701, 0.0003659397771116346, -0.0008256136788986623, 0.05175383388996124, -0.053775396198034286, -0.0150616355240345, -0.009401598013937473, -0.06414264440536499, 0.0030921227298676968, 0.004726977087557316, 0.0033611629623919725, -0.042363785207271576, 0.055482473224401474, 0.031485415995121, 0.03460601344704628, 0.037358853965997696, 0.010202797129750252, 0.029200922697782516, -0.05350533127784729, 0.00510936276987195, -0.07233824580907822, 0.040906500071287155, 0.046344392001628876, 0.014897607266902924, -0.0019681090489029884, -0.02025608904659748, -0.010318318381905556, 0.05091729760169983, -0.06034946069121361, -0.0295722596347332, 0.038556911051273346, 0.009406420402228832, -0.009760960005223751, 0.0017597004771232605, -0.026172451674938202, 0.03385189175605774, 0.025645244866609573, -0.03980235755443573, -0.04559765011072159, -0.038842104375362396, 0.04043920338153839, 0.00752562889829278, 0.014673535712063313, -0.03885854035615921, -0.01379544660449028, 0.06278590112924576, 0.020545363426208496, 0.014877020381391048, 0.04732368513941765, -0.0260080024600029, 0.031015530228614807, 0.02442437782883644, -0.029786312952637672, -0.004410074558109045, 0.011284167878329754, 0.0075586107559502125, -0.048879802227020264, 0.018460383638739586, 0.012796621769666672, -0.05539083108305931, -0.048648808151483536, 0.05150943994522095, 0.003205223474651575, -0.024358676746487617, -0.029439540579915047, 0.015354545786976814, -0.06435593217611313, -0.018515266478061676, -0.009876380674540997, 0.01062943134456873, -0.03442066162824631, 0.07423241436481476, 0.00045473797945305705, -0.013854471035301685, 0.07183002680540085, -0.01930425874888897, -0.019764522090554237, -0.023688962683081627, 0.08892277628183365, 0.07047178596258163, 0.03523288667201996, -0.02455119974911213, 0.059248317033052444, -0.012198028154671192, -0.05386175960302353, 0.022429529577493668, -0.03097553364932537, 0.003952717408537865, -0.027556825429201126, 0.03056154027581215, 0.07676837593317032, -0.0029980631079524755, 0.04444165155291557, -0.036879003047943115, -0.004586900118738413, -0.008363144472241402, 0.04332271218299866, 0.00592844421043992, 0.06424852460622787, 0.019539546221494675, 0.014996475540101528, 0.015404973179101944, -0.041760802268981934, 0.01562836393713951, -0.0408615805208683, -0.008065909147262573, 0.0014254802372306585, 0.002129439264535904, 0.01760190911591053, 0.009060787968337536, 0.036227453500032425, 0.07067389786243439, -0.02036832459270954, 0.017943015322089195, -0.002045857021585107, 0.021472327411174774, 0.015377985313534737, -0.037438105791807175, -0.010918529704213142, -0.0187302865087986, -0.018084418028593063, -0.008148862048983574, -0.00991947203874588, -0.012217062525451183, -0.015183470211923122, 0.03914492577314377, -0.011731009930372238, 0.01159690786153078, -0.005563181359320879, -0.006274821236729622, -0.009608933702111244, -0.05899043753743172, -0.056656613945961, -0.025772882625460625, -0.06018760800361633, -0.02418733760714531, 0.012038806453347206, -0.016256174072623253, -0.03316717594861984, -0.03373979404568672, -0.010442612692713737, 0.002814141334965825, 0.05880514532327652, -0.015833040699362755, -0.04211463779211044, 0.04653242975473404, -0.0004824728239327669, 0.034977301955223083, 0.017477547749876976, 0.046300120651721954, -0.011789577081799507, -0.004924427717924118, -0.05999842658638954, -0.04501781240105629, 0.04412158951163292, -0.0008476637303829193, 0.036377839744091034, -0.0603472962975502, 0.01908261328935623, -0.006677370984107256, 0.022446617484092712, -0.07541662454605103, -0.0016500643687322736, -0.008865469135344028, -0.017608249559998512, 0.054107386618852615, -0.0359513983130455, 0.012952935881912708, -0.02532293274998665, -0.005942387972027063, 0.02370893582701683, 0.020122671499848366, 0.04383325204253197, -0.027838129550218582, 0.08277028053998947, -0.0076987240463495255, -0.03398025408387184, -0.01965918205678463, 0.00036411837209016085, -0.01139958668500185, 0.013612576760351658, -0.035913582891225815, -0.051197219640016556, -0.04383208230137825, -0.04925784841179848, 0.011517968028783798, 0.012358191423118114, -0.007235878147184849, -0.007701251655817032, 0.022017866373062134, 0.04588771238923073, -0.07772491872310638, 0.04580884054303169, -0.02716047503054142, 0.04293753206729889, -0.006664814427495003, -0.007050937041640282, 0.04149051010608673, 0.023780882358551025, -0.0005773543962277472, 0.020485688000917435, 0.020403249189257622, -0.03369487076997757, -0.008241266943514347, -0.002840614877641201, 0.026471883058547974, 0.033704616129398346, -0.003566842759028077, 0.045599259436130524 ]
[ -0.1162726953625679, 0.006398725789040327, -0.035721875727176666, -0.010653425008058548, 0.028201498091220856, -0.02575472928583622, 0.013706214725971222, 0.02061118744313717, -0.014989389106631279, -0.03170706704258919, -0.024308456107974052, -0.01542514655739069, -0.011734058149158955, 0.005624366458505392, 0.06097128242254257, 0.013753035105764866, -0.03630470111966133, -0.038029562681913376, -0.0055725001730024815, 0.005196152720600367, 0.019484667107462883, -0.02180478163063526, -0.04803852364420891, -0.04269220679998398, 0.03050236962735653, 0.030829962342977524, 0.06029646843671799, -0.0403902530670166, 0.010746171697974205, -0.18643058836460114, -0.01741054467856884, -0.01286089327186346, 0.026189187541604042, -0.0181527491658926, 0.0013426423538476229, 0.020148253068327904, 0.018468251451849937, 0.035898201167583466, 0.004036692902445793, 0.0378260500729084, -0.005643392447382212, 0.05455245077610016, -0.043084945529699326, 0.014370354823768139, 0.04224701225757599, -0.003174837678670883, 0.004037029109895229, -0.026679158210754395, 0.005429457873106003, -0.0012082494795322418, -0.04329301044344902, -0.052150480449199677, -0.018300512805581093, -0.032937970012426376, -0.0019657276570796967, 0.00846494734287262, 0.03831896558403969, 0.05255782604217529, 0.024266930297017097, 0.028064487501978874, -0.021261343732476234, -0.026192843914031982, -0.1391829252243042, 0.10334351658821106, 0.03316228464245796, 0.06119212135672569, -0.010315957479178905, -0.033206623047590256, 0.007761827204376459, 0.0934532955288887, 0.02167629450559616, -0.03360448032617569, -0.034226056188344955, 0.05089953914284706, 0.03577836602926254, -0.02430199272930622, -0.012873037718236446, 0.02102470211684704, 0.06504781544208527, -0.026535745710134506, -0.046264320611953735, -0.04026591405272484, 0.012659774161875248, 0.001496173208579421, -0.026546552777290344, 0.04227001219987869, -0.003556956769898534, 0.039180509746074677, 0.08181913197040558, 0.04056774824857712, 0.02345849946141243, -0.0272027850151062, 0.025953471660614014, 0.015110713429749012, -0.05836512893438339, -0.016013404354453087, -0.0026528637390583754, -0.0077074565924704075, -0.0411430299282074, 0.3913360834121704, -0.04063690826296806, -0.025540806353092194, 0.03705116733908653, 0.029258765280246735, -0.022411245852708817, 0.02599491737782955, 0.020048169419169426, -0.03960823640227318, 0.0025667983572930098, -0.05094967037439346, -0.015241969376802444, 0.02356059104204178, 0.024607913568615913, -0.037030551582574844, -0.019861668348312378, 0.023624621331691742, 0.04092630743980408, 0.0177770908921957, -0.01317279040813446, 0.014397462829947472, 0.008880848996341228, -0.01820540614426136, 0.02306966856122017, 0.006000967230647802, 0.00250655016861856, -0.03206188231706619, 0.02768339030444622, 0.05437065660953522, 0.038454823195934296, -0.0033851484768092632, 0.049785107374191284, -0.029507432132959366, -0.08980444073677063, -0.005292166490107775, 0.01788657158613205, 0.027493299916386604, 0.030086448416113853, -0.01618499681353569, 0.0037530804984271526, 0.014383390545845032, -0.009393741376698017, -0.008110974915325642, 0.04102422669529915, -0.03457021340727806, -0.06573384255170822, 0.09162373095750809, -0.009640599600970745, 0.0031200782395899296, -0.017298834398388863, -0.038277965039014816, 0.026427527889609337, 0.0383254736661911, -0.014687775634229183, -0.06682750582695007, 0.029044216498732567, 0.014943036250770092, 0.06679338216781616, 0.003964758478105068, -0.018751488998532295, -0.035308945924043655, -0.07010482996702194, 0.01839662902057171, -0.06363373249769211, 0.030264608561992645, 0.03010392375290394, -0.10239940136671066, -0.028954537585377693, 0.02380973845720291, 0.01820887252688408, -0.07806391268968582, 0.0057869055308401585, 0.003472929820418358, -0.056783877313137054, -0.038390617817640305, 0.033894941210746765, 0.0016706612659618258, -0.03996197506785393, 0.01795591600239277, 0.04871480166912079, 0.033033084124326706, 0.016308872029185295, 0.016960427165031433, -0.049105770885944366, 0.008435286581516266, -0.0029491744935512543, -0.0494239442050457, -0.0347197987139225, -0.01592300646007061, -0.03970790281891823, -0.02848230116069317, -0.02639840543270111, -0.042704738676548004, -0.07523058354854584, 0.08840698003768921, -0.04335220530629158, -0.008758981712162495, 0.05649319291114807, -0.012859789654612541, 0.025751691311597824, -0.031293030828237534, 0.006216719280928373, 0.050312671810388565, -0.004486170597374439, 0.0453634113073349, -0.06363744288682938, 0.046199146658182144, 0.06332822889089584, -0.06836097687482834, 0.07556193321943283, 0.05321758985519409, -0.04408717527985573, -0.02380090206861496, 0.004504214506596327, 0.008305750787258148, 0.01133448351174593, -0.05192561447620392, -0.009353463537991047, 0.026864854618906975, 0.008078287355601788, 0.0180168766528368, -0.06948339194059372, -0.03657370060682297, -0.008284736424684525, -0.3412298858165741, -0.027033915743231773, -0.020100196823477745, -0.0072021991945803165, 0.010494409129023552, -0.07284041494131088, -0.0043583521619439125, -0.01225239597260952, -0.02847348526120186, -0.025224508717656136, 0.0977216511964798, -0.01444193534553051, 0.0063348859548568726, -0.09425918012857437, 0.007173503283411264, 0.0007713944651186466, -0.043161541223526, -0.0502183698117733, -0.023422056809067726, 0.03726277872920036, 0.009947521612048149, -0.00547112338244915, -0.0028254177886992693, -0.06930410116910934, 0.016582466661930084, -0.05490042269229889, 0.08384506404399872, -0.05557511746883392, 0.14916835725307465, -0.033026546239852905, 0.06404857337474823, 0.01130716223269701, 0.04236603528261185, -0.08115074783563614, 0.001465272856876254, -0.019263019785284996, -0.017468521371483803, 0.009885929524898529, 0.050359539687633514, -0.0199650339782238, -0.02651546522974968, 0.015815498307347298, -0.05084381625056267, -0.05517634004354477, -0.018824415281414986, -0.018335675820708275, -0.00862914603203535, -0.009769669733941555, -0.012425216846168041, 0.08695264905691147, -0.01850581355392933, -0.027944600209593773, 0.04353989288210869, 0.028880510479211807, -0.002741101197898388, -0.024034377187490463, -0.07821627706289291, 0.0009933324763551354, -0.015355945564806461, -0.00009118926391238347, 0.05425006523728371, 0.043133486062288284, 0.0439453125, -0.027880970388650894, 0.0027225809171795845, 0.025617428123950958, -0.012274481356143951, -0.020770801231265068, 0.052999723702669144, -0.02012968249619007, -0.03849809616804123, 0.06572543829679489, -0.01703675277531147, -0.003669062163680792, 0.011004447005689144, 0.061150092631578445, -0.02702515572309494, 0.005796169396489859, 0.016261475160717964, -0.011556804180145264, -0.01489850040525198, 0.024696368724107742, 0.03092634491622448, -0.014822546392679214, -0.0053713335655629635, 0.032949719578027725, -0.029248975217342377, 0.023866642266511917, 0.036852702498435974, -0.03330710530281067, -0.02745562046766281, 0.004894849378615618, 0.01469963788986206, -0.07706628739833832, 0.04881369322538376, -0.030362611636519432, -0.24685138463974, -0.006378917954862118, 0.06156482174992561, 0.047443728893995285, -0.023645762354135513, 0.0004648116882890463, 0.05425778776407242, -0.06584100425243378, -0.002428274368867278, 0.015044046565890312, 0.019903961569070816, 0.02991054579615593, 0.022165317088365555, 0.017461096867918968, 0.05294666439294815, -0.021778404712677002, 0.025273218750953674, 0.023260414600372314, 0.020066112279891968, -0.01730951853096485, 0.00849104207009077, 0.012354448437690735, 0.19217218458652496, 0.0007165742572396994, 0.045346423983573914, 0.024346522986888885, 0.033214956521987915, 0.01922774687409401, 0.11765394359827042, 0.014420254155993462, 0.0406012088060379, -0.005565891042351723, 0.10130897164344788, 0.004769164137542248, 0.021435990929603577, -0.1161169782280922, -0.0059781745076179504, 0.03677840903401375, -0.002339752623811364, -0.0063233645632863045, -0.002840663306415081, 0.01149314921349287, -0.015851102769374847, 0.018830662593245506, 0.0994337946176529, 0.020505210384726524, -0.003872046945616603, -0.051439180970191956, -0.06909887492656708, -0.028753653168678284, -0.0499211847782135, -0.02356971614062786, 0.025150395929813385, -0.028674881905317307, 0.01654352806508541, 0.04298609122633934, 0.028254961594939232, -0.05353279784321785, -0.03548728674650192, 0.010921097360551357, 0.02744579315185547, 0.005432353354990482, 0.0955391377210617, 0.03694731742143631, 0.050303902477025986 ]
[ -0.038295384496450424, 0.003672704566270113, -0.009886744432151318, 0.030011791735887527, -0.012485085055232048, 0.012976853176951408, -0.03364811837673187, 0.0016164281405508518, -0.01634317636489868, 0.016423719003796577, -0.015015169978141785, -0.03136768564581871, 0.01807257905602455, -0.040451206266880035, 0.023031380027532578, -0.0012798408279195428, -0.0026097616646438837, -0.02531455270946026, 0.009150748141109943, 0.004664127249270678, -0.026255208998918533, 0.023854613304138184, 0.027966627851128578, -0.0036139998119324446, -0.00801546685397625, -0.022133609279990196, -0.009900014847517014, 0.004063581116497517, 0.024775810539722443, -0.13571713864803314, -0.01738661155104637, -0.012301485985517502, -0.021210838109254837, 0.02126510627567768, -0.024464914575219154, 0.017669377848505974, 0.015401072800159454, 0.041675906628370285, -0.0027423249557614326, -0.009475932456552982, -0.014812051318585873, -0.007294313050806522, 0.014873780310153961, 0.007859903387725353, -0.006796665024012327, -0.0025039890315383673, -0.008448518812656403, -0.04409773647785187, -0.019467497244477272, -0.04328960180282593, -0.011210750788450241, -0.01889796555042267, -0.021794460713863373, -0.0050394549034535885, 0.006979114841669798, -0.017319096252322197, -0.001714340760372579, -0.012252542190253735, 0.0161250289529562, -0.003621758660301566, 0.014859636314213276, -0.007996580563485622, -0.02784876897931099, -0.04437493905425072, 0.0047597382217645645, -0.0015451746294274926, 0.004569085780531168, 0.023064179345965385, -0.0034705805592238903, -0.027686236426234245, -0.013803656212985516, 0.02273634262382984, -0.014106620103120804, 0.006539335940033197, 0.02293691411614418, 0.002185346558690071, -0.0063893748447299, 0.01722860336303711, 0.044252630323171616, -0.016660910099744797, -0.027266191318631172, 0.025701120495796204, -0.010514569468796253, 0.010238753631711006, 0.027916377410292625, 0.032315339893102646, 0.03788124397397041, 0.014570695348083973, 0.022846145555377007, 0.04210137575864792, -0.029674669727683067, 0.0229642391204834, 0.01653400808572769, 0.03390266373753548, -0.05907118692994118, -0.026895025745034218, -0.01649082824587822, -0.02651749923825264, 0.01638789474964142, 0.8599461317062378, 0.0038506602868437767, 0.05448610335588455, 0.0301589947193861, -0.0075732939876616, -0.00040273560443893075, -0.010363246314227581, -0.01667614094913006, 0.019290516152977943, 0.05952941253781319, -0.04150453209877014, 0.037230320274829865, 0.01189796719700098, 0.03180595487356186, 0.006764225661754608, 0.0025011624675244093, 0.016303855925798416, -0.0024211243726313114, -0.014330824837088585, -0.003203695872798562, 0.01081177033483982, 0.001284561469219625, -0.01540396735072136, 0.004672826733440161, -0.005975964479148388, 0.002298911102116108, -0.19731378555297852, 0.014278396964073181, -8.914005087735724e-33, 0.06427033990621567, -0.028691984713077545, 0.010425061918795109, 0.007282043341547251, 0.016240118071436882, 0.01585925929248333, 0.051400430500507355, 0.052758749574422836, 0.006490159779787064, -0.0535745695233345, 0.018052825704216957, -0.02563447691500187, -0.028031472116708755, -0.008168434724211693, 0.031680382788181305, -0.008248141035437584, -0.025027822703123093, 0.01580350659787655, -0.014962085522711277, 0.02757832407951355, 0.015493025071918964, 0.030806899070739746, -0.0032727201469242573, -0.02756141684949398, 0.02351875603199005, 0.00853320024907589, 0.016224458813667297, 0.03072621114552021, -0.030151350423693657, -0.03753269836306572, -0.025783535093069077, -0.010575187392532825, -0.02756194956600666, 0.01284207683056593, 0.0069934306666255, -0.029299601912498474, -0.014839156530797482, 0.004742417484521866, -0.009289789013564587, -0.007935616187751293, -0.02175324596464634, -0.009285857900977135, -0.024007178843021393, -0.01646929234266281, -0.012052547186613083, -0.05170827358961105, -0.017257561907172203, 0.0011873162584379315, 0.024932848289608955, -0.005020624957978725, 0.015919199213385582, 0.051293276250362396, 0.004955018870532513, -0.011439848691225052, -0.046693746000528336, 0.030076969414949417, -0.008287296630442142, 0.009482741355895996, -0.008254698477685452, 0.018208730965852737, -0.012149231508374214, 0.008958647958934307, -0.026842361316084862, 0.014465125277638435, -0.03365718573331833, -0.015919314697384834, -0.02443023957312107, -0.01670186221599579, 0.02170128934085369, 0.002250101650133729, -0.01836927980184555, -0.014180706813931465, -0.01848735101521015, -0.019033750519156456, 0.02725420705974102, 0.018015852198004723, -0.017974702641367912, 0.013658273033797741, -0.005176532082259655, 0.021012146025896072, 0.030528374016284943, 0.00837370753288269, 0.0007026136736385524, -0.005539745092391968, 0.009690520353615284, -0.00024365306308027357, 0.017772484570741653, -0.0386427566409111, -0.0012489646906033158, -0.0064727533608675, 0.01909688673913479, 0.01991216652095318, -0.01878245174884796, -0.02379690296947956, -0.005116210784763098, 8.550687701887387e-33, -0.008268631994724274, -0.01999763958156109, -0.011110984720289707, -0.002990697044879198, 0.01566055417060852, -0.015922678634524345, 0.01596606709063053, -0.00011018490476999432, -0.05180887505412102, 0.040624748915433884, -0.01228594034910202, 0.021269049495458603, -0.009912184439599514, 0.024997981265187263, 0.053536608815193176, -0.03871281072497368, 0.02635338343679905, -0.024710021913051605, 0.024785613641142845, -0.006360299419611692, 0.050522562116384506, 0.012542172335088253, 0.035280898213386536, 0.005292531102895737, 0.006655944045633078, 0.04816294088959694, -0.05557931587100029, 0.026283439248800278, 0.01773257926106453, 0.0038939029909670353, 0.01387754362076521, 0.003323982935398817, 0.023628469556570053, -0.0454464890062809, -0.0037581492215394974, 0.01543938834220171, 0.010115273296833038, -0.027413194999098778, 0.03196481615304947, -0.010872382670640945, 0.009698954410851002, -0.02501167356967926, 0.03277595713734627, 0.01205747202038765, 0.018127989023923874, -0.003262398298829794, 0.003425592789426446, -0.032603103667497635, -0.00640326552093029, 0.03709639236330986, 0.03344990685582161, 0.04437652975320816, 0.018279965966939926, 0.013402131386101246, 0.006424776278436184, -0.016148526221513748, -0.03968826308846474, -0.020446915179491043, -0.005335358437150717, 0.05592724308371544, -0.01431832741945982, -0.0008263476192951202, -0.005776484962552786, 0.010646432638168335, -0.021991029381752014, -0.010802865028381348, -0.031844720244407654, -0.016877587884664536, -0.027977274730801582, -0.007147267460823059, -0.03926650807261467, -0.010877018794417381, 0.004346567206084728, 0.020389512181282043, -0.005981256254017353, -0.03631741926074028, 0.0045416951179504395, 0.006522587966173887, 0.004162520635873079, 0.006267138756811619, 0.017465120181441307, -0.03314976766705513, 0.031735729426145554, -0.0015887324698269367, -0.002825055504217744, -0.0011011139722540975, 0.010948450304567814, 0.004150858148932457, 0.007979145273566246, -0.004005249589681625, -0.0216207392513752, 0.012271353043615818, 0.012410552240908146, -0.0167453121393919, -0.0013702791184186935, -1.4000625547794243e-8, -0.02310519479215145, 0.008158436976373196, -0.013718366622924805, 0.018833201378583908, 0.01367698423564434, 0.010931127704679966, -0.03082152083516121, -0.016288219019770622, -0.02183295041322708, -0.002641481813043356, 0.046249013394117355, -0.013955076225101948, 0.018378647044301033, 0.014498535543680191, 0.001662484253756702, -0.07577059417963028, -0.027002708986401558, -0.029430057853460312, 0.025836244225502014, 0.00946503784507513, 0.0011589402565732598, 0.027656929567456245, -0.043318744748830795, 0.011268972419202328, 0.0061838324181735516, -0.02205478772521019, 0.014193148352205753, -0.07296232879161835, -0.010499111376702785, 0.020668035373091698, -0.01984443888068199, -0.0005213212571106851, -0.039962828159332275, 0.014463039115071297, -0.037557508796453476, -0.0025975534226745367, 0.04605317488312721, 0.02296367846429348, -0.009324212558567524, -0.003096702741459012, 0.006248959805816412, -0.0036058896221220493, 0.011381642892956734, -0.01711464114487171, 0.014508632011711597, -0.010173148475587368, -0.0005810332950204611, -0.0009746187715791166, 0.009676397778093815, -0.029640091583132744, 0.015110591426491737, 0.026270229369401932, 0.004824062809348106, 0.014043762348592281, 0.012658180668950081, 0.01392902247607708, -0.0055594067089259624, -0.004552881699055433, -0.03408551216125488, 0.0058129290118813515, 0.03902006149291992, 0.014173604547977448, -0.019191008061170578, -0.032521042972803116 ]
f-my-current-coding-approach
https://markhneedham.com/blog/2010/05/06/f-my-current-coding-approach
false
2010-05-13 07:00:18
Evolving a design: Some thoughts
[ "software-development" ]
[ "Software Development" ]
Phil wrote http://fragmental.tw/2010/05/09/agile-anti-patterns-democratic-design/[an interesting post recently about the Ubuntu decision making process with respect to design] and suggested that we should look to follow something similar on agile software development teams. The Ubuntu design process basically comes down to this: ____ This is not a democracy. Good feedback, good data, are welcome. But we are not voting on design decisions. ____ Phil suggests the following: ____ That doesn't mean that there is an Architect (capital A, please), designing the system for the less-skilled developers to write. Architecture is an ongoing thing; team members make architecture decisions every day. What that means is that, every time a design decision has to be made, the decision must come from an individual or very small group of people that have the skills and experience required --excluding coaching and teaching, of course. ____ I agree with this to an extent. At a higher level it does make sense that the Tech Lead of the team makes the decisions on the general direction of the code but when it comes down to specifics of a certain part of an application I don't know how well this works. If they aren't actually working in that part then it can be very difficult to make a decision about how it should be designed. == Evolving a design From my experience it's often the case that the pair working in that area is best placed to evolve the design. The tech lead on a team can make a suggestion about the way that they want that part of the system to be designed but if it evolves slightly differently then I think that's still fine and we don't need to re-discuss it and check that they agree with that evolution. For example http://twitter.com/dermotkilroy[Dermot] and I were working on a bit of code that is used to validate forms and the original design that we had quite tightly coupled the form creation and the adding of validators to each of the fields. [source,csharp] ---- public class FormFactory { public AForm CreateWithValidation(UserData userData) { ... } } ---- We had a requirement to validate the same form in a different context which had never happened previously so we had to change the design. When we talked about this problem abstractly it seemed that the easiest way to do this was to add another method to the object which would create a form with validation for the new context. We started trying to do that but as we did so it became really obvious that it would make our life easier if we split the form creation and adding of validators - we would be driving towards the builder pattern. That was a decision that was made while in the code and it wasn't clear that the code would end up going that way when we discussed it beforehand. I think it's fine for a pair to make this type of decision. == Tech lead facilitating design I spoke to Phil about this and he suggested that what will often happen is that the tech lead will act as a facilitator and help the pair address all the issues of the part of the system that they're designing. I like this way of describing the approach better as it ensures that the design we come up with will be compatible with any upcoming requirements - which the tech lead would be more aware of - and the other developers still have input on the way that the code is designed. From my experience if the tech lead makes these decisions without being seen to take into consideration the opinions of the others on the team then it will quickly create a culture where developers on the team stop thinking about design problems and just delegate their thinking to the tech lead. Equally as they won't have any buy in they'll probably be secretly hoping the design fails rather than looking for ways that it can evolve successfully. The facilitation approach helps address this.
null
null
[ 0.03684118762612343, 0.01496290136128664, -0.0036119697615504265, 0.042739011347293854, 0.08641387522220612, 0.01886916719377041, 0.01028131041675806, 0.03294844552874565, 0.013554388657212257, -0.04738721251487732, -0.025379575788974762, -0.00030127883655950427, -0.05209990218281746, 0.018679458647966385, -0.04889646917581558, 0.07231217622756958, 0.06261350959539413, 0.009465320035815239, 0.020982587710022926, 0.014009659178555012, 0.033291205763816833, 0.0562652088701725, 0.007807260379195213, 0.03402922675013542, 0.045527178794145584, 0.01740909554064274, 0.00645630294457078, -0.006885108537971973, -0.0510883703827858, -0.013134818524122238, 0.04645908623933792, -0.008450830355286598, -0.0005154983955435455, -0.020004384219646454, 0.0038288552314043045, -0.021087905392050743, -0.027843015268445015, 0.032660458236932755, 0.000574082019738853, -0.009851368144154549, -0.059463758021593094, 0.05274273827672005, 0.00519366143271327, 0.008566404692828655, -0.026895208284258842, 0.022946208715438843, -0.03417368233203888, 0.021088438108563423, -0.00018778513185679913, 0.006522542331367731, -0.0577409565448761, 0.03079836443066597, -0.030663548037409782, 0.0019449485698714852, -0.006241636350750923, 0.03365484997630119, 0.01710166409611702, -0.06754009425640106, -0.00835978239774704, -0.04173547774553299, 0.001998399617150426, -0.009873498231172562, 0.003483919659629464, 0.037429362535476685, 0.018039708957076073, -0.02388148568570614, 0.005792546551674604, 0.024142960086464882, -0.03881186246871948, 0.01491077896207571, -0.010299934074282646, 0.018503829836845398, 0.004027994815260172, -0.019966866821050644, 0.002365916036069393, -0.06193920597434044, -0.003683675779029727, 0.07743875682353973, 0.018355652689933777, 0.0244024358689785, -0.0031518228352069855, 0.005723337177187204, 0.012488429434597492, 0.028143154457211494, -0.030482757836580276, -0.04396727308630943, -0.0007516082259826362, -0.023778967559337616, -0.04560040310025215, 0.055301230400800705, 0.017734836786985397, -0.07025963813066483, 0.04986600577831268, 0.05684574320912361, 0.0032916960772126913, -0.0027441882994025946, 0.018809787929058075, 0.023009829223155975, -0.00444352300837636, -0.013609817251563072, -0.03319456800818443, -0.02820170670747757, -0.008285760879516602, 0.009942753240466118, -0.08085047453641891, -0.025872357189655304, -0.02845742367208004, -0.008615019731223583, -0.0050601172260940075, 0.011666480451822281, -0.01593855582177639, 0.017348282039165497, -0.007293447852134705, -0.015247988514602184, -0.07004064321517944, 0.07975205034017563, 0.003984364215284586, -0.05736013501882553, 0.0006940482999198139, 0.011975867673754692, 0.04712122678756714, 0.026425575837492943, -0.015141995623707771, 0.07947894185781479, 0.014132793061435223, 0.0066927713342010975, -0.01585295982658863, 0.06782146543264389, -0.0370929129421711, -0.06617575138807297, -0.019834155216813087, 0.0652601420879364, -0.04093027859926224, -0.010872007347643375, -0.01626581884920597, -0.027938123792409897, 0.008857423439621925, 0.00015053909737616777, 0.021966565400362015, 0.04885425046086311, -0.022131498903036118, -0.04239710792899132, 0.016706502065062523, 0.019516443833708763, 0.0315195694565773, -0.004729642998427153, 0.03227252885699272, -0.03236958384513855, -0.049506112933158875, -0.026790570467710495, 0.017971856519579887, 0.031087778508663177, 0.010778865776956081, -0.040631670504808426, 0.021824344992637634, 0.08744894713163376, 0.0614897757768631, -0.0016967885894700885, -0.009818469174206257, 0.03262441232800484, 0.03046402893960476, 0.024800525978207588, 0.030543513596057892, 0.024261660873889923, 0.03689640760421753, 0.012590832076966763, -0.0122231999412179, 0.03883734345436096, 0.03487098589539528, 0.009117710404098034, -0.04909666255116463, -0.06467151641845703, 0.03994254395365715, -0.038359470665454865, -0.003224062966182828, 0.04137684032320976, 0.08139456808567047, 0.030306801199913025, 0.03584876284003258, 0.012099508196115494, -0.08707022666931152, 0.018087148666381836, 0.0048658703453838825, 0.02598412334918976, 0.03984806314110756, -0.01754944398999214, 0.07154744118452072, 0.03297646716237068, 0.009568754583597183, 0.04447319358587265, -0.08147825300693512, -0.0912475436925888, -0.010903865098953247, -0.011776736006140709, 0.03783514350652695, -0.04030005633831024, -0.01561333704739809, 0.07153495401144028, 0.018250273540616035, 0.06504150480031967, 0.024821454659104347, 0.012071414850652218, 0.004921559244394302, -0.05713259056210518, -0.02698875032365322, 0.050446320325136185, 0.04695729538798332, 0.015554378740489483, -0.05785942077636719, 0.02538393810391426, -0.006456183735281229, -0.01931077614426613, 0.03114544041454792, -0.018673157319426537, 0.05396156758069992, -0.0210417490452528, 0.07079628109931946, -0.047021180391311646, 0.046056024730205536, -0.05361813306808472, 0.004374067299067974, 0.00220358744263649, -0.019933590665459633, 0.038106732070446014, 0.003959338646382093, 0.1002403274178505, 0.05684948340058327, -0.05143957957625389, -0.02990937978029251, 0.011198724620044231, 0.013574397191405296, -0.03111160732805729, -0.011829960159957409, -0.0026257960125803947, 0.011231457814574242, 0.0016426531365141273, -0.05862646922469139, -0.035492703318595886, 0.050020940601825714, -0.04441727325320244, 0.017607763409614563, 0.056314658373594284, -0.010488650761544704, 0.05518966540694237, -0.018337897956371307, -0.019759580492973328, -0.020966771990060806, -0.00744392815977335, -0.045777827501297, 0.01409380417317152, 0.00810210220515728, -0.01669367030262947, 0.04604138061404228, -0.017172900959849358, -0.045961957424879074, -0.03898458555340767, -0.024426471441984177, 0.00014933526108507067, 0.03345766291022301, 0.057804543524980545, -0.033217210322618484, 0.04379601031541824, 0.005917737260460854, 0.03170659393072128, 0.008624251931905746, -0.056593745946884155, -0.037818800657987595, -0.012927490286529064, 0.010326601564884186, 0.04196133464574814, 0.0048234108835458755, 0.012713444419205189, 0.01811848394572735, -0.012245919555425644, -0.013709803111851215, 0.009284058585762978, 0.029053116217255592, 0.004803486634045839, -0.003240284975618124, -0.008789490908384323, -0.024831535294651985, 0.050944868475198746, -0.039855752140283585, -0.0256235022097826, 0.02539372257888317, -0.06869116425514221, 0.05458173528313637, -0.0823586955666542, -0.030938049778342247, 0.017906323075294495, 0.03274323046207428, 0.03720434382557869, -0.006448831874877214, 0.016731586307287216, 0.0655147060751915, 0.0083449836820364, 0.01165552344173193, -0.009599306620657444, -0.012716516852378845, 0.02135048620402813, 0.016145458444952965, -0.010267741046845913, 0.0468856580555439, 0.01723787561058998, 0.014339229092001915, -0.04683036729693413, 0.052409615367650986, -0.02757132612168789, -0.28364571928977966, 0.021026721224188805, 0.006845233496278524, -0.04007198289036751, 0.00407199515029788, -0.0033532700035721064, 0.008378948085010052, -0.04847627133131027, -0.0171391312032938, 0.007515100296586752, -0.05152694880962372, -0.04619810730218887, -0.005433877930045128, 0.06005265563726425, 0.0067496830597519875, 0.024493945762515068, 0.03785393014550209, -0.03558659926056862, -0.01202829834073782, 0.039147086441516876, -0.005824033636599779, -0.08707495033740997, 0.008836925029754639, 0.02786056138575077, 0.04834451526403427, 0.044150859117507935, -0.07358671724796295, 0.0337478332221508, -0.04815429821610451, -0.0014564954908564687, 0.03336379677057266, 0.011904474347829819, -0.019425060600042343, -0.014474251307547092, -0.0025087057147175074, -0.01074275653809309, 0.02965693175792694, -0.0001549316948512569, -0.006314932834357023, 0.01213596761226654, -0.009705203585326672, -0.02711130678653717, 0.010237663984298706, 0.02776213362812996, 0.05405642092227936, 0.018525242805480957, -0.08498194068670273, -0.014586567878723145, -0.02201291173696518, 0.07941605150699615, -0.027878111228346825, -0.03195812925696373, 0.0015692529268562794, 0.06067094951868057, -0.009911837056279182, -0.013723478652536869, 0.005526374094188213, -0.019251225516200066, -0.04836159944534302, -0.01260873582214117, -0.016521424055099487, -0.03468899428844452, -0.01045913901180029, -0.05639857426285744, 0.007061208598315716, -0.052643705159425735, -0.07512614130973816, -0.012184422463178635, 0.06795062869787216, 0.0008887966396287084, -0.027443526312708855, 0.015238281339406967, -0.008516058325767517, -0.11087021231651306, 0.02618975006043911, -0.003964879550039768, -0.02300988882780075, -0.01917169988155365, 0.011082310229539871, 0.04019486531615257, -0.01613781414926052, -0.06827698647975922, 0.016822727397084236, 0.016726002097129822, 0.0050515602342784405, -0.00936595443636179, 0.05225571617484093, 0.03692158684134483, -0.022246690467000008, 0.018161050975322723, 0.05920036509633064, 0.011648143641650677, -0.03862665966153145, -0.030409980565309525, 0.02552984468638897, -0.000514925573952496, 0.038415227085351944, -0.024885574355721474, 0.01680268719792366, 0.041199423372745514, -0.013004097156226635, -0.061885397881269455, 0.02205546386539936, -0.025219371542334557, -0.005240784492343664, -0.02347148023545742, -0.05045459419488907, 0.003826944390311837, 0.05373469367623329, 0.03787258267402649, 0.0054787807166576385, -0.054193392395973206, 0.008273373357951641, -0.05957265570759773, -0.02966136671602726, -0.021093761548399925, 0.006342025939375162, 0.04594928398728371, -0.024455415084958076, -0.008427316322922707, -0.03780483454465866, 0.023236604407429695, -0.04437798634171486, -0.0047899652272462845, -0.06743590533733368, 0.0035622434224933386, -0.015531506389379501, -0.03328005224466324, 0.0035119939129799604, 0.008977260440587997, -0.023582743480801582, 0.03830546513199806, 0.013756577856838703, -0.04826917499303818, 0.011813011020421982, -0.0062752072699368, -0.04893920570611954, -0.019592661410570145, -0.00417337566614151, -0.01924256980419159, 0.0009109218954108655, 0.024790583178400993, 0.029027484357357025, -0.0034197457134723663, 0.04451135918498039, 0.013527775183320045, 0.029537474736571312, -0.013014202937483788, 0.04174944758415222, 0.016391150653362274, 0.005384018644690514, -0.07349151372909546, 0.012909777462482452, -0.0444323755800724, -0.03682217746973038, -0.04266266152262688, 0.029535572975873947, -0.01854368858039379, -0.021072493866086006, -0.008369555696845055, -0.01903793029487133, -0.033963318914175034, -0.05530421808362007, -0.0202815979719162, 0.020867133513092995, 0.06985735893249512, -0.0013915507588535547, 0.0053075458854436874, -0.018250973895192146, -0.02355991303920746, 0.02864297479391098, 0.03027840331196785, -0.0503709502518177, 0.004029054660350084, 0.008372017182409763, -0.007746709045022726, -0.0037009064108133316, -0.004375693388283253, 0.044031959027051926, 0.010459048673510551, -0.0146138034760952, -0.01565800979733467, -0.0005194514524191618, 0.0113389166072011, 0.04844788834452629, 0.013201819732785225, -0.01585054025053978, -0.005412652622908354, -0.014949170872569084, -0.034860435873270035, -0.04625710844993591, -0.0017857113853096962, 0.018983613699674606, 0.01800154335796833, -0.03762952610850334, -0.06505754590034485, 0.05597642436623573, 0.010715232230722904, 0.029157085344195366, 0.013003175146877766, 0.0024181820917874575, -0.006138851400464773, -0.021047914400696754, 0.0317104235291481, 0.04937686398625374, -0.07136127352714539, 0.007826483808457851, -0.0008151978836394846, 0.00823597889393568, 0.013086965307593346, -0.006434150040149689, -0.04917668551206589, -0.019733089953660965, -0.0287565179169178, -0.004433716181665659, -0.06387753039598465, -0.012386324815452099, -0.019565477967262268, 0.003143249312415719, 0.0033121102023869753, -0.010767956264317036, -0.0014703926863148808, -0.014117267914116383, 0.0027341260574758053, -0.033080216497182846, 0.015653682872653008, -0.04415757581591606, -0.004269287921488285, 0.010277372784912586, -0.04242892935872078, 0.004062743857502937, -0.02526824176311493, -0.016332264989614487, 0.013247144408524036, -0.03126990422606468, -0.011023414321243763, -0.02997848019003868, -0.0030230132397264242, -0.0011798376217484474, 0.04177936539053917, -0.027480175718665123, -0.02483513206243515, -0.03895130380988121, -0.02607821114361286, -0.035175763070583344, 0.005509486887603998, -0.032827094197273254, 0.014234655536711216, 0.018702037632465363, 0.06555190682411194, 0.024091869592666626, 0.03333494812250137, -0.029233567416667938, -0.01724948361515999, 0.038458917289972305, -0.07973245531320572, -0.029413169249892235, -0.0283844992518425, -0.036658670753240585, 0.00990908220410347, -0.00155968579929322, 0.019714200869202614, -0.022269945591688156, 0.03440781310200691, 0.007924042642116547, 0.024820681661367416, 0.02877458557486534, 0.0010518260532990098, 0.021324070170521736, -0.054896190762519836, 0.0007279933779500425, -0.07704140990972519, 0.023552296683192253, 0.01877542771399021, 0.003537215292453766, -0.0004652277857530862, -0.005042661912739277, -0.049120623618364334, 0.050033390522003174, -0.06835321336984634, -0.02130996808409691, 0.03604792058467865, 0.0033014079090207815, -0.01928439922630787, 0.009667178615927696, -0.07475261390209198, 0.032379698008298874, 0.015069015324115753, -0.05462527647614479, -0.03823668882250786, 0.0046210214495658875, 0.0416378490626812, -0.005562456324696541, 0.04129738733172417, -0.044720347970724106, 0.006068588700145483, 0.07156427949666977, -0.007347403094172478, -0.006510889623314142, 0.035178206861019135, -0.015359207056462765, 0.04934471473097801, 0.03595013543963432, 0.03252216428518295, -0.021974759176373482, 0.02243715710937977, -0.000004986632120562717, -0.058739155530929565, 0.03407413512468338, 0.013950142078101635, -0.03488323092460632, -0.041347041726112366, 0.0651211366057396, 0.018010670319199562, -0.04158525541424751, -0.0285367239266634, 0.0032621920108795166, -0.05952218174934387, 0.019782451912760735, -0.02446906454861164, -0.005485746078193188, -0.06405390053987503, 0.04811737313866615, 0.0024610443506389856, 0.013942073099315166, 0.06565554440021515, 0.00026856345357373357, -0.016354091465473175, -0.0008461120305582881, 0.09050055593252182, 0.088692806661129, 0.06411561369895935, 0.010164250619709492, 0.06679607182741165, -0.02170770801603794, -0.039745088666677475, 0.029181182384490967, 0.0009676428162492812, -0.015080640092492104, -0.0192938931286335, 0.01653754897415638, 0.054201263934373856, -0.01468843687325716, 0.06911595910787582, -0.013867284171283245, -0.031238025054335594, 0.009065610356628895, 0.03365489840507507, 0.0032403809018433094, 0.07856747508049011, -0.011750143952667713, -0.001567826489917934, -0.015406223013997078, -0.03204215317964554, 0.021075433120131493, -0.039715543389320374, -0.027421265840530396, 0.05238776654005051, -0.006165624130517244, 0.03276349604129791, -0.0015819896943867207, 0.020515143871307373, 0.09044815599918365, -0.05838824436068535, -0.019001441076397896, 0.002357260324060917, 0.017246831208467484, -0.005564699415117502, 0.004315132275223732, -0.008258311077952385, -0.01653280481696129, 0.004748800303786993, -0.020853949710726738, -0.0005638997536152601, -0.010378140956163406, -0.004242837894707918, 0.05982336774468422, -0.012952277436852455, -0.015590366907417774, 0.04355325549840927, 0.007764908019453287, -0.04373123124241829, -0.047451432794332504, -0.0284807737916708, -0.04055480286478996, -0.0656437799334526, 0.0010274542728438973, 0.028295474126935005, -0.018218934535980225, -0.03975759074091911, -0.013800070621073246, -0.010295910760760307, -0.014213659800589085, 0.05794581025838852, -0.05698487162590027, -0.029694730415940285, 0.020414074882864952, 0.01584303379058838, 0.030822614207863808, 0.012232215143740177, 0.05323072522878647, -0.011558317579329014, -0.012146594934165478, -0.032611291855573654, 0.00967361405491829, 0.007831336930394173, 0.017749933525919914, 0.005597894545644522, -0.07877404242753983, 0.028658753260970116, 0.02664385363459587, -0.015346956439316273, -0.056060194969177246, 0.04623791202902794, -0.002892519813030958, 0.017076808959245682, 0.05927149951457977, -0.0078050908632576466, 0.011917836032807827, -0.05325368046760559, -0.004460725001990795, -0.011208871379494667, -0.007522383239120245, 0.04778442904353142, -0.02719280496239662, 0.08758711069822311, 0.013662113808095455, -0.01737084612250328, -0.04515627399086952, -0.010070523247122765, 0.010696984827518463, -0.0032680428121238947, -0.005936122965067625, -0.02883307635784149, -0.02285528928041458, -0.07797364145517349, -0.01378510519862175, 0.025567490607500076, -0.03611273691058159, -0.04246135801076889, 0.03362032026052475, 0.009778669103980064, -0.02866818569600582, 0.02005593106150627, -0.06094080209732056, 0.030851658433675766, -0.03547065705060959, -0.013617357239127159, -0.008084103465080261, 0.024357281625270844, -0.007445367984473705, 0.007295834366232157, 0.024196824058890343, -0.05771947279572487, -0.009753404185175896, 0.0044961730018258095, 0.00972060114145279, 0.037228260189294815, 0.02644457295536995, 0.009089573286473751 ]
[ -0.10078458487987518, -0.009069008752703667, -0.023685622960329056, -0.048133764415979385, 0.024440214037895203, -0.010025457479059696, -0.02804245613515377, 0.04061471298336983, -0.005430386867374182, -0.014658062718808651, -0.011905497871339321, 0.01702640764415264, -0.017490753903985023, -0.05087311193346977, 0.06457941979169846, -0.0022653399500995874, -0.024897441267967224, -0.04678311198949814, 0.04922337457537651, 0.044746678322553635, 0.01115416269749403, -0.036030106246471405, -0.025905553251504898, -0.00881257001310587, 0.007251713890582323, 0.03531597554683685, 0.019447851926088333, -0.03898901119828224, 0.005914780311286449, -0.19315487146377563, 0.018695808947086334, 0.026515774428844452, 0.05419839918613434, -0.03964082896709442, 0.034334830939769745, 0.08002884685993195, 0.010662400163710117, 0.018157724291086197, -0.01436521764844656, 0.021691547706723213, -0.014147188514471054, 0.02465721033513546, -0.03126579895615578, -0.03146273270249367, 0.026266658678650856, 0.028988156467676163, -0.0033522204030305147, -0.06543523818254471, -0.06775699555873871, 0.00012031123333144933, -0.021650543436408043, -0.010870454832911491, -0.020915301516652107, -0.02177036553621292, -0.009394995868206024, 0.044001366943120956, 0.042391080409288406, 0.06030717492103577, 0.030047675594687462, 0.0024239555932581425, 0.030332881957292557, -0.01611986756324768, -0.1486140936613083, 0.10169975459575653, 0.04216235503554344, 0.0645497515797615, -0.04890616238117218, -0.034562017768621445, -0.028895491734147072, 0.07920978218317032, 0.029767626896500587, -0.04381917789578438, -0.015370595268905163, 0.007272662129253149, 0.04331793263554573, 0.021825628355145454, 0.012208503670990467, -0.0018595389556139708, 0.03134768083691597, -0.051887523382902145, -0.036895815283060074, -0.012108649127185345, -0.03571471944451332, -0.0075706723146140575, -0.046646688133478165, 0.027394406497478485, -0.016110144555568695, 0.06515157967805862, 0.02320338413119316, 0.03317562863230705, 0.04683796316385269, -0.004061919171363115, 0.020371323451399803, 0.0017852133605629206, -0.06931130588054657, -0.0009461406152695417, -0.010815395042300224, -0.003084676107391715, -0.07442234456539154, 0.45895859599113464, -0.040592074394226074, -0.025022270157933235, 0.061227135360240936, 0.04768442362546921, 0.015693003311753273, 0.016179831698536873, 0.030485481023788452, -0.06038859859108925, 0.009125888347625732, -0.0025033941492438316, 0.026356486603617668, 0.024376923218369484, 0.04722348600625992, -0.02662578597664833, 0.012273414991796017, 0.02239060029387474, -0.015511373057961464, 0.015298889949917793, -0.01429560873657465, -0.020917536690831184, -0.029787588864564896, 0.01484196912497282, 0.03582599014043808, 0.02003069967031479, -0.004830871243029833, -0.0351903960108757, 0.01025296188890934, 0.04817471280694008, 0.025593673810362816, 0.017493676394224167, 0.03725394606590271, -0.03772364556789398, -0.057209305465221405, -0.008580537512898445, 0.018934454768896103, 0.01879623532295227, 0.01477394625544548, -0.020387427881360054, -0.019132276996970177, 0.03473483771085739, -0.005631828214973211, 0.010010932572185993, 0.051233869045972824, -0.026931963860988617, -0.052448466420173645, 0.103828065097332, 0.033654168248176575, -0.014821364544332027, -0.03663846105337143, -0.012661871500313282, -0.011130722239613533, 0.019121771678328514, -0.006537596695125103, -0.04743928834795952, 0.01311697531491518, 0.020647872239351273, 0.051362309604883194, -0.011768883094191551, -0.06874512135982513, -0.013046951964497566, 0.017682816833257675, -0.023873407393693924, -0.05147053673863411, 0.0916191041469574, 0.04588084667921066, -0.09537885338068008, -0.021741533651947975, 0.008036235347390175, 0.04459690302610397, -0.039175644516944885, -0.03056417405605316, 0.02218887396156788, -0.004634731449186802, 0.002592087024822831, 0.0681447684764862, -0.03466223180294037, -0.027955658733844757, -0.0011467389995232224, 0.05361277610063553, 0.0004776249697897583, 0.048614319413900375, 0.03987395018339157, -0.013066790997982025, -0.000502123381011188, -0.02871744893491268, -0.07532008737325668, -0.05746080353856087, -0.038063377141952515, -0.022580420598387718, -0.004067791160196066, -0.04211543872952461, 0.025075111538171768, -0.05919109657406807, 0.12029626220464706, -0.045375023037195206, -0.030173124745488167, 0.034402187913656235, -0.01599707640707493, -0.03890056163072586, -0.017296437174081802, -0.08055754750967026, 0.036355361342430115, -0.05504007264971733, 0.016982154920697212, -0.06637688726186752, 0.03992225229740143, 0.045301225036382675, -0.015783535316586494, 0.06966979056596756, 0.047084297984838486, -0.04526524990797043, -0.0005976565298624337, 0.020823273807764053, 0.040587425231933594, 0.022455088794231415, 0.01746136136353016, -0.006320333108305931, 0.021781323477625847, 0.008963597007095814, 0.006881009787321091, -0.018371090292930603, 0.03626635670661926, -0.023516561836004257, -0.34052109718322754, -0.05661159008741379, -0.04836731404066086, 0.008223098702728748, 0.011118163354694843, -0.02956613525748253, 0.012788601219654083, -0.038102760910987854, -0.05173701420426369, 0.0016500521451234818, 0.0646781250834465, 0.005569267086684704, -0.00972700584679842, -0.052121348679065704, -0.014563108794391155, 0.018948102369904518, -0.01809425838291645, -0.027022169902920723, -0.06765181571245193, -0.02692219242453575, -0.005709587596356869, 0.008141818456351757, -0.0035633943043649197, -0.07588347792625427, -0.005038098432123661, -0.006033997051417828, 0.103200763463974, -0.0050778137519955635, 0.07125120609998703, 0.0043354276567697525, 0.03331007435917854, 0.00686743063852191, 0.025416962802410126, -0.10547032952308655, 0.03280009329319, 0.013822103850543499, 0.00751474779099226, -0.04042771831154823, 0.00962990615516901, -0.04654253274202347, -0.044159673154354095, 0.017834722995758057, -0.06753750890493393, -0.05689160153269768, -0.05437875911593437, -0.0071434443816542625, -0.03550276905298233, -0.012056968174874783, -0.032843757420778275, 0.044259585440158844, -0.002472575521096587, 0.014116346836090088, 0.021998023614287376, 0.02500385232269764, -0.015424460172653198, -0.0351950079202652, -0.09420525282621384, 0.023903556168079376, 0.03534788265824318, 0.014993094839155674, 0.035877250134944916, 0.046861838549375534, 0.027073223143815994, -0.05344584211707115, 0.006352709606289864, 0.015695322304964066, -0.01168896071612835, 0.0026443160604685545, 0.05735248699784279, -0.03564954921603203, 0.009337715804576874, 0.0926445946097374, 0.004879134241491556, -0.048865143209695816, 0.06476248800754547, 0.025656821206212044, -0.002451124368235469, 0.020799871534109116, 0.019183555617928505, -0.0008867012802511454, -0.01445724442601204, -0.02864661067724228, 0.026577556505799294, -0.03259621188044548, 0.006902284920215607, 0.02003297582268715, -0.021958936005830765, -0.05276113376021385, 0.046189822256565094, -0.02320532314479351, -0.010124173015356064, 0.019720276817679405, -0.046479642391204834, -0.030379757285118103, 0.05878906697034836, -0.005198892205953598, -0.23409490287303925, 0.027927549555897713, 0.058811865746974945, 0.055751826614141464, -0.011121779680252075, 0.020376894623041153, 0.032801903784275055, -0.05333350598812103, -0.01437603123486042, 0.01774853840470314, 0.0034320689737796783, 0.005246561020612717, -0.017894158139824867, 0.007554355543106794, 0.03871839866042137, -0.026307931169867516, 0.07197575271129608, -0.03521902486681938, 0.04330165311694145, -0.04531725496053696, -0.011113208718597889, -0.009884234517812729, 0.15096578001976013, -0.026245277374982834, 0.028023961931467056, 0.0038468963466584682, 0.001665141200646758, 0.009195178747177124, 0.025459321215748787, 0.021675050258636475, 0.004144742153584957, -0.007209348492324352, 0.05061031132936478, -0.004188518971204758, 0.005049918778240681, -0.051021818071603775, -0.018565330654382706, 0.004247375298291445, -0.002311497461050749, 0.017069684341549873, 0.011156992986798286, 0.008090033195912838, 0.019978538155555725, 0.048119883984327316, 0.06435800343751907, 0.018169721588492393, -0.011322367936372757, 0.007541279774159193, -0.038181185722351074, -0.000826816656626761, -0.03995904698967934, -0.02899090386927128, -0.018535714596509933, -0.03763732314109802, 0.016461091116070747, 0.061951927840709686, 0.051886286586523056, -0.031411997973918915, 0.0028876597061753273, 0.011930874548852444, -0.01718808338046074, 0.004852347541600466, 0.12587526440620422, 0.03256215900182724, 0.06837063282728195 ]
[ -0.02644266001880169, 0.039569344371557236, -0.01851172000169754, -0.016294054687023163, 0.0064767575822770596, -0.018705924972891808, -0.018504004925489426, 0.003893734887242317, -0.0018566474318504333, 0.013406733982264996, -0.009707549586892128, -0.015746168792247772, 0.035124845802783966, -0.02794676646590233, 0.02680893801152706, -0.0034694697242230177, -0.005772537551820278, -0.03083518147468567, 0.03975202143192291, 0.027702610939741135, -0.010112067684531212, 0.017239373177289963, -0.010586399585008621, -0.007874149829149246, -0.009180065244436264, 0.016915462911128998, 0.004227281082421541, -0.0038624899461865425, 0.0314091295003891, -0.12626846134662628, -0.02603338472545147, -0.025767335668206215, 0.0043179746717214584, 0.03913997858762741, -0.005993369501084089, 0.0025435301940888166, -0.007547727786004543, 0.013911206275224686, -0.017026104032993317, -0.02403721585869789, -0.05053195357322693, -0.020867424085736275, -0.018586570397019386, 0.027362745255231857, -0.012262091040611267, 0.019057519733905792, -0.020589690655469894, -0.04597880318760872, -0.016860047355294228, -0.00820706132799387, -0.05077166482806206, -0.012820008210837841, -0.000077986711403355, 0.009472322650253773, 0.029360514134168625, 0.0020361067727208138, 0.020526790991425514, 0.013418421149253845, -0.00016911553393583745, -0.040376245975494385, 0.020199749618768692, -0.006094638723880053, -0.04412275552749634, -0.011602862738072872, -0.02220608852803707, 0.01869029924273491, -0.014930035918951035, -0.008149050176143646, -0.01839952915906906, -0.026297571137547493, 0.024909283965826035, -0.0040193479508161545, 0.013858734630048275, -0.02268737368285656, 0.012448341585695744, 0.0029093697667121887, 0.00012150742259109393, -0.013283078558743, 0.024247510358691216, -0.01045350730419159, -0.023854341357946396, 0.03310517221689224, -0.023028302937746048, -0.0005020583630539477, 0.020529169589281082, 0.0025333331432193518, -0.003045756136998534, -0.02311953529715538, 0.015636516734957695, 0.021127838641405106, -0.000485691474750638, 0.03928032144904137, -0.0037799961864948273, 0.017018934711813927, -0.08252748847007751, 0.008762385696172714, -0.017978545278310776, -0.04165211319923401, -0.00944707915186882, 0.8623015284538269, -0.03869655728340149, 0.009042264893651009, 0.008308365009725094, 0.01838538981974125, 0.016702041029930115, 0.013774375431239605, 0.00729288998991251, -0.01283001434057951, 0.010997934266924858, 0.0018566028447821736, 0.01858019456267357, 0.018410971388220787, 0.022951770573854446, 0.030669912695884705, 0.04503859207034111, 0.003566892584785819, 0.013339572586119175, 0.01718221791088581, -0.017676936462521553, 0.01692957989871502, 0.03233375400304794, -0.015732694417238235, 0.01244425494223833, -0.026199813932180405, 0.031132346019148827, -0.21573661267757416, 0.0004689304914791137, -9.42317854731806e-33, 0.051499079912900925, 0.005058285780251026, -0.011777497828006744, 0.02563546970486641, 0.02482650987803936, -0.015681998804211617, 0.03602887690067291, 0.020835578441619873, -0.006102143786847591, -0.024767061695456505, -0.008386695757508278, -0.022956697270274162, 0.023211736232042313, 0.0003174825105816126, 0.03697101026773453, -0.04385700449347496, -0.014124875888228416, 0.024465397000312805, -0.025633053854107857, 0.021205784752964973, 0.023145116865634918, 0.02598302997648716, 0.0183192677795887, -0.010765052400529385, 0.017778800800442696, 0.025088703259825706, 0.003439444350078702, 0.014963471330702305, -0.0084306001663208, -0.034349460154771805, -0.0470149964094162, 0.01449323259294033, -0.02586294151842594, -0.006998008117079735, 0.014504901133477688, -0.03154882416129112, -0.0076043810695409775, -0.0027255441527813673, -0.01682540401816368, -0.013377586379647255, -0.017202280461788177, 0.01440457347780466, -0.0243047084659338, -0.020719829946756363, 0.008147051557898521, 0.0034222526010125875, 0.03650294616818428, 0.02416105568408966, 0.0205948855727911, -0.04363866150379181, 0.009197107516229153, 0.02361954376101494, 0.0221876110881567, 0.0002544575836509466, -0.011152259074151516, -0.009114859625697136, -0.023148654028773308, 0.014129149727523327, 0.013763969764113426, 0.016233550384640694, 0.013249232433736324, -0.004371578339487314, -0.031204648315906525, 0.011493518948554993, -0.030528180301189423, -0.02930600568652153, -0.014010013081133366, -0.019350022077560425, 0.05257883295416832, -0.03504378721117973, -0.03857790678739548, -0.01005188561975956, -0.010915367864072323, 0.005135399755090475, -0.003887284779921174, -0.004667950328439474, 0.009295471012592316, 0.028665481135249138, -0.0236575435847044, 0.014827807433903217, -0.0032677873969078064, 0.020518455654382706, -0.004862395580857992, -0.022390088066458702, 0.019962189719080925, 0.02276570163667202, 0.015336653217673302, 0.004167093429714441, -0.009333619847893715, 0.02472231537103653, 0.02212667465209961, -0.002683728700503707, -0.000735229579731822, -0.019374623894691467, -0.009960374794900417, 9.011549813018866e-33, -0.013356023468077183, -0.0463172048330307, -0.04666636884212494, 0.011787607334554195, 0.05018889531493187, -0.03488532081246376, -0.009618092328310013, 0.013002128340303898, -0.0577496699988842, 0.009279510006308556, 0.008964610286056995, 0.019295137375593185, -0.005508644040673971, 0.019382081925868988, 0.02883540280163288, -0.008989973925054073, 0.01802707463502884, -0.03705764189362526, 0.027960533276200294, -0.015878908336162567, 0.04369261488318443, 0.01415121741592884, -0.004275363404303789, 0.004909927491098642, 0.031134940683841705, 0.05817323923110962, -0.0343329943716526, 0.016073400154709816, 0.024497656151652336, -0.008143492043018341, 0.002386059146374464, -0.018099412322044373, 0.009071601554751396, -0.006344103254377842, 0.009703492745757103, 0.0024260906502604485, -0.03268187493085861, -0.017249980941414833, 0.015212773345410824, 0.012268664315342903, 0.013237210921943188, -0.02120218239724636, -0.001565435086376965, 0.007176733110100031, 0.02223523147404194, -0.020332103595137596, -0.00008896562940208241, -0.022139396518468857, -0.015028435736894608, 0.0000027572079943638528, 0.04831171780824661, 0.01791255921125412, 0.0060006701387465, -0.01612786576151848, 0.005717253778129816, -0.01978577859699726, 0.0069579859264194965, -0.015487042255699635, 0.02079610899090767, 0.014643446542322636, 0.001347962417639792, 0.02284148521721363, -0.010174327529966831, -0.002816990716382861, -0.03628256544470787, 0.01168067567050457, -0.015500839799642563, -0.000193257030332461, -0.010814730077981949, 0.003060025628656149, -0.03538625314831734, -0.014685933478176594, -0.007253590971231461, 0.03254029154777527, 0.020658863708376884, -0.02406424656510353, -0.012604372575879097, 0.0165716540068388, 0.003383985487744212, 0.010235343128442764, -0.009856250137090683, -0.009286006912589073, 0.0235709547996521, -0.003055475652217865, -0.009684963151812553, 0.023461386561393738, -0.03155878931283951, 0.006212412845343351, -0.0323900543153286, 0.0006177359609864652, -0.03876158222556114, -0.02490883134305477, 0.022456403821706772, 0.007498421240597963, -0.011182303540408611, -1.4536408521337307e-8, 0.0051402016542851925, 0.0225493386387825, 0.0033180236350744963, 0.0084270304068923, 0.013111943379044533, 0.011031611822545528, -0.021385781466960907, -0.02172485925257206, 0.015830880030989647, -0.007298920303583145, 0.06265176832675934, -0.005417509004473686, 0.002921445993706584, 0.014215944334864616, 0.03223537653684616, -0.011680644936859608, -0.012028178200125694, -0.017519943416118622, 0.012899691238999367, -0.01609180122613907, 0.02179432101547718, 0.05514121428132057, -0.060207776725292206, 0.020564015954732895, 0.030659381300210953, 0.0019985560793429613, -0.03365073725581169, -0.07912816852331161, -0.022850025445222855, 0.033218249678611755, -0.016807667911052704, -0.018241599202156067, -0.013041735626757145, 0.021123278886079788, -0.008146553300321102, -0.02134060487151146, 0.03212243691086769, -0.010080765932798386, 0.034731291234493256, -0.007869738154113293, 0.002992226043716073, 0.013615354895591736, -0.0005170768708921969, -0.02477995492517948, -0.021537799388170242, 0.01355602964758873, -0.00881554838269949, -0.0023629029747098684, 0.002371990354731679, -0.0367577038705349, 0.0013773152604699135, -0.01283947005867958, -0.011814589612185955, 0.031172867864370346, 0.004066235851496458, -0.0029029997531324625, 0.003544385777786374, -0.02975117787718773, -0.009910003282129765, -0.03719170391559601, 0.025775931775569916, 0.03185174614191055, 0.013943586498498917, -0.023621482774615288 ]
evolving-a-design-some-thoughts
https://markhneedham.com/blog/2010/05/13/evolving-a-design-some-thoughts
false
2010-02-05 18:06:28
Functional C#: LINQ vs Method chaining
[ "c" ]
[ ".NET" ]
One of the common discussions that I've had with several colleagues when we're making use of some of the higher order functions that can be applied on collections is whether to use the LINQ style syntax or to chain the different methods together. I tend to prefer the latter approach although when asked the question after http://www.markhneedham.com/blog/2010/01/31/ddd8-mixing-functional-and-object-oriented-approaches-to-programming-in-c/[my talk at Developer Developer Developer] I didn't really have a good answer other than to suggest that it seemed to just be a personal preference thing. http://www.twitter.com/damianpowell[Damian Marshall] suggested that he *preferred the method chaining approach because it more clearly describes the idea of passing a collection through a pipeline where we can apply different operations to that collection*. I quite like that explanation and I think my preference for it would have probably been influenced by the fact that when coding in F# we can use the http://www.markhneedham.com/blog/2009/01/06/f-forward-operator/[forward piping operator] to achieve code which reads like this. For example if we had a list and wanted to get all the even numbers, double them and then add them up we might do this: [source,ocaml] ---- [1..10] |> List.filter (fun x -> x % 2 = 0) |> List.map (fun x -> x * 2) |> List.fold (fun acc x -> acc + x) 0 ---- If I was in C# I'd probably do this: [source,csharp] ---- Enumerable.Range(1, 10) .Where(x => x % 2 == 0) .Select(x => x * 2) .Sum(x => x); ---- I found it quite difficult to work out what the equivalent LINQ syntax would be because I don't use it but I think something like this would be what you'd need to write to do the same thing: [source,csharp] ---- from x in Enumerable.Range(1, 10) where x%2 == 0 select x * 2).Sum(x => x); ---- I'm not sure if there's a way to do the sum within the LINQ statement or whether you need to do it using the method as I have here. Even just writing this example I found that the way I had to write the LINQ code seemed quite counter intuitive for me with the way that I typically try to solve problems like this. At least now thanks to Damian I now understand why that is!
null
null
[ 0.005373733583837748, -0.019119152799248695, -0.014868976548314095, 0.007541239261627197, 0.0625123530626297, 0.004375196062028408, 0.0001599850511411205, 0.015843918547034264, 0.013409159146249294, -0.028875084593892097, 0.012173380702733994, 0.028916237875819206, -0.08936804533004761, 0.004243534989655018, -0.003394262632355094, 0.06944742798805237, 0.07425403594970703, -0.05388728529214859, 0.012844338081777096, -0.03426969796419144, -0.0021694276947528124, 0.07145746052265167, -0.004627138841897249, 0.009258563630282879, 0.022060442715883255, 0.030567903071641922, -0.013003898784518242, 0.0037222574464976788, -0.044298894703388214, -0.03448212146759033, 0.040213603526353836, 0.026603449136018753, -0.014563890174031258, -0.02951756864786148, 0.002037478145211935, -0.03996703028678894, -0.00004425166844157502, -0.0023710899986326694, -0.010294795036315918, 0.02764802984893322, -0.07237756252288818, 0.029906686395406723, -0.013068762607872486, 0.01750795729458332, -0.04361056163907051, 0.02111651934683323, -0.04231807589530945, -0.010350356809794903, -0.04989273473620415, -0.01040634699165821, -0.04958460479974747, 0.01821908727288246, -0.04085518419742584, 0.004625857342034578, -0.0002120200515491888, 0.05358021333813667, -0.011596404947340488, -0.07757767289876938, 0.017458871006965637, -0.03478783741593361, 0.01496689673513174, 0.009455133229494095, 0.009929222986102104, 0.018615933135151863, 0.05056706815958023, -0.001439828658476472, -0.05041993036866188, 0.04161377623677254, -0.05101405456662178, -0.014430489391088486, -0.0007677047397010028, 0.027497708797454834, 0.012317129410803318, -0.01817965880036354, 0.004676227457821369, -0.024268679320812225, -0.016597621142864227, 0.046971820294857025, 0.016285834833979607, 0.05790458992123604, -0.010315184481441975, 0.0208183191716671, 0.033727969974279404, 0.010861735790967941, 0.034544866532087326, -0.0205527376383543, -0.004265097435563803, 0.006684247404336929, -0.023241784423589706, 0.06484490633010864, 0.012905726209282875, -0.03728187084197998, 0.005995922721922398, 0.008097484707832336, 0.01467923354357481, -0.002374523552134633, 0.011143477633595467, -0.021664725616574287, -0.018137244507670403, 0.018231412395834923, -0.023662973195314407, -0.03036670945584774, 0.037439681589603424, -0.019101521000266075, -0.07586777955293655, -0.01551054883748293, -0.016436047852039337, 0.005809613037854433, 0.020880229771137238, 0.02346748672425747, -0.06151711940765381, 0.0050519295036792755, -0.010683451779186726, 0.021797917783260345, -0.06942935287952423, 0.03173522278666496, 0.010158154182136059, 0.0008512957720085979, -0.012512837536633015, 0.023038355633616447, 0.051205530762672424, 0.023422814905643463, -0.006917290855199099, 0.06420431286096573, 0.019982315599918365, 0.021817274391651154, -0.011663934215903282, 0.08058860152959824, 0.00647311843931675, -0.10516178607940674, -0.001723568420857191, 0.04515046998858452, -0.06419673562049866, -0.021638981997966766, -0.03114643320441246, -0.04337753355503082, -0.03249199688434601, 0.03862272575497627, 0.04631473496556282, 0.03791981562972069, -0.007619784213602543, -0.059346117079257965, 0.033184267580509186, -0.044768013060092926, 0.004449860192835331, 0.023905880749225616, -0.018872734159231186, -0.0014912256738170981, 0.010400976985692978, 0.03811769187450409, 0.022458486258983612, 0.07403344660997391, 0.03938111662864685, -0.053996700793504715, 0.026971485465765, 0.07205847650766373, -0.00024573711561970413, 0.04314335435628891, 0.014041810296475887, 0.0045550609938800335, 0.03370397537946701, 0.010869570076465607, 0.0200318843126297, 0.04809165000915527, 0.018774574622511864, 0.0025184995029121637, -0.005407370161265135, 0.06061773747205734, -0.026073845103383064, -0.026419799774885178, -0.05739748477935791, -0.014262089505791664, 0.05039950832724571, -0.03546072915196419, 0.004405229352414608, 0.02245362102985382, 0.05987466499209404, 0.016607828438282013, 0.08426643908023834, 0.00019349553622305393, -0.06510315090417862, 0.01006145216524601, 0.0007797898724675179, -0.001958324806764722, 0.006967523600906134, 0.0062874495051801205, 0.06258156895637512, 0.03516438230872154, 0.011245105415582657, 0.024546334519982338, -0.05920632183551788, -0.06011848896741867, -0.04026179760694504, -0.008937709033489227, 0.06234417110681534, -0.03260796144604683, -0.016076592728495598, 0.07574466615915298, 0.022022105753421783, 0.038634296506643295, 0.05289814993739128, -0.01783437468111515, 0.011789778247475624, -0.012967237271368504, -0.03083401918411255, 0.04662111774086952, 0.03002852201461792, 0.0064910827204585075, -0.04197480529546738, 0.023333847522735596, 0.003087160177528858, 0.0020016825292259455, 0.01604866050183773, -0.003893424989655614, 0.050021059811115265, 0.022400924935936928, 0.02232835628092289, -0.02841581031680107, 0.05208410695195198, -0.07244110107421875, 0.018083520233631134, 0.032035570591688156, -0.0052956100553274155, -0.003170149400830269, -0.00007423345959978178, 0.13049376010894775, 0.051924414932727814, -0.025249265134334564, -0.04563729465007782, 0.009027929976582527, 0.027066698297858238, -0.03134307637810707, 0.0018367544980719686, -0.017553985118865967, 0.022237638011574745, -0.00612150551751256, -0.029848096892237663, -0.011675259098410606, 0.008988567627966404, -0.0208151675760746, 0.0024472821969538927, 0.07111000269651413, -0.038044922053813934, 0.051694754511117935, 0.026013480499386787, -0.0374470129609108, -0.021337227895855904, -0.037890028208494186, -0.06407474726438522, 0.004875516053289175, -0.0010429571848362684, -0.01671230047941208, 0.04983322694897652, -0.023763541132211685, -0.014768974855542183, -0.009031731635332108, -0.02927236631512642, 0.04176700487732887, 0.027098482474684715, 0.06475509703159332, -0.01516292430460453, 0.05835624784231186, -0.004429678898304701, -0.007310835644602776, -0.01440336462110281, -0.04190073162317276, -0.030537381768226624, -0.010584469884634018, 0.04222436994314194, 0.022121235728263855, 0.028405867516994476, 0.01615997776389122, 0.01043647713959217, -0.014181768521666527, -0.0416843444108963, -0.03086991421878338, 0.04325610399246216, 0.002866515424102545, -0.05107512325048447, -0.06497279554605484, -0.04621916264295578, 0.054104048758745193, -0.027936013415455818, -0.014368485659360886, -0.024283412843942642, -0.046691689640283585, 0.0587104931473732, -0.08021500706672668, -0.06558915972709656, 0.008414124138653278, 0.053531717509031296, 0.033139925450086594, -0.025396274402737617, 0.003700089640915394, 0.0684165433049202, 0.011935431510210037, 0.01914709247648716, 0.01704404503107071, 0.01863902620971203, 0.004083218984305859, -0.033665843307971954, 0.006836843676865101, 0.07054542750120163, 0.0008473314810544252, -0.014346455223858356, -0.059776466339826584, 0.03106118179857731, 0.008899090811610222, -0.26073992252349854, 0.03085852786898613, -0.0308807585388422, -0.015099966898560524, 0.01551992166787386, -0.023373179137706757, -0.004327005706727505, -0.050583384931087494, -0.01197668258100748, 0.045080479234457016, -0.027039138600230217, -0.03965550288558006, -0.04121062904596329, 0.03964901715517044, 0.009566093795001507, 0.02940097451210022, -0.010526149533689022, -0.04719551280140877, -0.0009811329655349255, 0.07772133499383926, -0.006042983382940292, -0.06677942723035812, 0.006490207742899656, 0.051136866211891174, 0.036919254809617996, 0.04895137995481491, -0.07215112447738647, 0.028061015531420708, -0.04520611837506294, -0.020349090918898582, -0.016592437401413918, 0.01630588248372078, 0.008128794841468334, -0.0301524605602026, -0.03508314490318298, -0.026113832369446754, 0.038792844861745834, 0.02729276940226555, 0.009277794510126114, 0.039752066135406494, -0.037263188511133194, -0.04489586874842644, -0.015488622710108757, 0.000674273818731308, 0.07191164046525955, -0.01908564381301403, -0.06044657528400421, -0.003515820950269699, -0.025785639882087708, 0.05277002230286598, -0.031000778079032898, -0.03879007697105408, -0.0018520737066864967, 0.04451382905244827, -0.004188615828752518, -0.0323919877409935, -0.00825796090066433, 0.006589503493160009, -0.04180632904171944, -0.0029558332171291113, -0.03195550665259361, -0.07251131534576416, 0.008115850389003754, -0.04351338371634483, -0.02440350502729416, -0.0448048897087574, -0.053966280072927475, 0.00408666068688035, 0.06710357218980789, 0.02516970783472061, 0.012917965650558472, -0.015385030768811703, -0.014816551469266415, -0.1233452558517456, -0.03421751782298088, -0.02740187756717205, -0.01883823052048683, -0.022425588220357895, 0.03870565816760063, 0.038987040519714355, -0.02634252794086933, -0.069076307117939, 0.028485696762800217, 0.0497170016169548, 0.02511386014521122, -0.006422837730497122, 0.007677765097469091, -0.0001670474885031581, -0.041608452796936035, -0.003043138887733221, 0.05908597260713577, 0.008617008104920387, -0.011248145252466202, -0.02097920887172222, 0.015754692256450653, 0.00870941299945116, 0.01750985160470009, -0.011633277870714664, 0.022510774433612823, 0.016072507947683334, 0.0523698627948761, -0.05185585096478462, 0.02606775052845478, -0.038614772260189056, -0.01540608424693346, -0.015325840562582016, -0.04976573958992958, 0.031165841966867447, 0.027921512722969055, 0.002119357930496335, -0.018059855327010155, -0.02092861570417881, 0.03125951439142227, -0.06714186817407608, -0.0254956167191267, -0.03871697932481766, 0.013132522813975811, 0.028752490878105164, 0.013614765368402004, -0.02822188474237919, -0.06915969401597977, 0.021567465737462044, 0.013454019092023373, -0.020631754770874977, -0.06933707743883133, -0.03852476552128792, -0.014828842133283615, -0.017583049833774567, -0.007747776806354523, 0.04613916575908661, -0.03241847828030586, 0.0329032801091671, 0.01878400892019272, -0.04224863648414612, 0.025154853239655495, -0.01781369186937809, -0.018899640068411827, -0.03254079446196556, -0.04709121212363243, -0.013025043532252312, 0.015985317528247833, -0.013339524157345295, 0.01905955746769905, 0.03399736434221268, 0.024527061730623245, 0.023587826639413834, 0.033950041979551315, 0.025039298459887505, -0.00854071881622076, 0.030577022582292557, -0.009687087498605251, -0.044514045119285583, 0.023321110755205154, -0.030034195631742477, -0.0011507192393764853, -0.009962072595953941, 0.03405936434864998, -0.03516232222318649, -0.04552781954407692, -0.05943647399544716, 0.03491339087486267, -0.026525229215621948, -0.01899622194468975, -0.03733053058385849, 0.00481486925855279, 0.0482901930809021, -0.05769547447562218, 0.046517472714185715, -0.04251080006361008, 0.01668562740087509, 0.023153498768806458, 0.027660073712468147, -0.030426576733589172, 0.033708356320858, -0.012193086557090282, -0.026736361905932426, -0.004875083453953266, 0.024527687579393387, 0.017076827585697174, 0.01754576712846756, 0.00030905668972991407, -0.01300143077969551, 0.002731356071308255, 0.011631120927631855, 0.048208996653556824, 0.016677552834153175, 0.01888718083500862, 0.004296605009585619, -0.009073003195226192, -0.009536735713481903, -0.0450984463095665, -0.01634560525417328, -0.020936869084835052, 0.02187705598771572, -0.05314059928059578, -0.04405222460627556, 0.04200989380478859, 0.021711938083171844, 0.0050599477253854275, 0.004644832573831081, 0.03429142013192177, -0.006450697313994169, -0.002059885999187827, -0.008815770037472248, 0.045432332903146744, -0.05671738088130951, 0.01798146590590477, 0.0010672680800780654, 0.01588321477174759, 0.03398354351520538, 0.03424113988876343, -0.04354694485664368, 0.008762756362557411, -0.03485618159174919, 0.002095617586746812, -0.012052266858518124, -0.019561493769288063, 0.019076187163591385, 0.022931547835469246, -0.02361132949590683, -0.01819666288793087, -0.028548086062073708, -0.006619215477257967, -0.008628962561488152, -0.02875574305653572, 0.015041343867778778, -0.05717387795448303, -0.014865851029753685, 0.030125731602311134, -0.029157325625419617, 0.01035577617585659, -0.03422040492296219, -0.0003561738121788949, 0.027741167694330215, 0.0006452862289734185, -0.005188001785427332, -0.07011394202709198, 0.036969467997550964, -0.03318028151988983, 0.06589218229055405, 0.004684769082814455, -0.03817591443657875, 0.007087032776325941, -0.02998628281056881, -0.04090709984302521, -0.0005873729242011905, 0.006429614964872599, -0.0421481691300869, 0.00254910159856081, 0.0460285060107708, -0.02691754512488842, 0.04228253290057182, 0.008244768716394901, 0.008868329226970673, 0.07259499281644821, -0.03374931588768959, 0.0012685359688475728, -0.023070314899086952, -0.0721919909119606, 0.021883180364966393, -0.021526232361793518, 0.04220406711101532, -0.04561031609773636, 0.023633912205696106, 0.05952071771025658, 0.03408849239349365, 0.049966320395469666, 0.01950731687247753, 0.033888690173625946, -0.014372809790074825, 0.019826389849185944, -0.07952329516410828, 0.009450879879295826, 0.018337924033403397, 0.03307149186730385, -0.019937001168727875, -0.020174173638224602, -0.015830088406801224, 0.05049671232700348, -0.06457402557134628, -0.02875080518424511, 0.013397809118032455, -0.0036752987653017044, 0.01849374733865261, 0.005440615117549896, -0.04542771354317665, 0.01768404059112072, 0.03788287937641144, 0.006514875218272209, -0.02344801276922226, -0.05684608966112137, 0.05349795147776604, 0.015040382742881775, 0.015256994403898716, -0.030834320932626724, 0.017050575464963913, 0.052793942391872406, 0.03704419359564781, 0.009265383705496788, 0.07066299766302109, -0.027560852468013763, 0.019329389557242393, 0.02144867740571499, -0.014283077791333199, -0.0186462365090847, -0.005920118652284145, 0.0017236663261428475, -0.04829879850149155, 0.020536275580525398, 0.013280742801725864, -0.05274515971541405, -0.05604911223053932, 0.06116874888539314, 0.01594194583594799, -0.005480405408889055, -0.05719391629099846, 0.025460943579673767, -0.027468642219901085, -0.004566750954836607, -0.03382554650306702, 0.020111924037337303, -0.014045928604900837, 0.05266954004764557, 0.007576945703476667, -0.001146593363955617, 0.0755973532795906, -0.0045168171636760235, -0.017791658639907837, 0.008830774575471878, 0.0842808187007904, 0.06967654079198837, 0.07983643561601639, -0.023651545867323875, 0.05741079896688461, -0.04119133949279785, -0.052585262805223465, -0.013573466800153255, -0.027457697317004204, 0.006464248988777399, -0.02401699312031269, 0.03971268981695175, 0.07484246790409088, -0.017032407224178314, 0.043735068291425705, -0.05199970677495003, -0.008879275061190128, -0.0073393057100474834, 0.00640582712367177, 0.015384838916361332, 0.05758087337017059, 0.01501596812158823, 0.006138256751000881, 0.0012141835177317262, -0.0651133581995964, 0.04324302822351456, -0.011332730762660503, -0.03911663591861725, 0.011496637016534805, 0.022904997691512108, -0.008497842587530613, 0.0037995295133441687, 0.05645749717950821, 0.06015075370669365, -0.053855638951063156, -0.008649436756968498, -0.0076095471158623695, 0.018337054178118706, 0.012495562434196472, -0.04378942772746086, 0.002316625090315938, -0.05361638963222504, 0.004903367720544338, -0.002756224013864994, -0.0116455452516675, -0.02186736650764942, -0.020242124795913696, 0.04062600061297417, -0.03261983022093773, 0.009998328052461147, 0.020274290814995766, -0.008132529444992542, -0.03789868205785751, -0.05091697350144386, -0.03803367167711258, -0.020938249304890633, -0.06731732934713364, -0.028579173609614372, 0.04367746040225029, -0.04035671800374985, -0.02451069839298725, -0.01907489448785782, 0.009152643382549286, -0.02721170336008072, 0.05933038517832756, -0.021568048745393753, -0.03486775606870651, 0.0014590623322874308, 0.024350104853510857, 0.03481701761484146, 0.035100311040878296, 0.02845357172191143, -0.02454892359673977, 0.0030290940776467323, -0.049163248389959335, -0.006114250048995018, 0.05108347162604332, 0.02379673160612583, 0.004152345005422831, -0.06463776528835297, 0.012301824986934662, 0.019179459661245346, -0.004667031113058329, -0.08977895230054855, -0.01042835135012865, 0.028985025361180305, -0.036103490740060806, 0.03202759101986885, -0.004128299653530121, -0.03081764280796051, -0.030776293948292732, 0.0016972575103864074, 0.03141366317868233, 0.030304700136184692, 0.06069779023528099, -0.025053657591342926, 0.06059817969799042, 0.014748253859579563, -0.030100854113698006, -0.03847412392497063, 0.006018707994371653, 0.006205146666616201, 0.0065453234128654, -0.024299131706357002, -0.046415504068136215, -0.019862953573465347, -0.034578658640384674, -0.011347361840307713, 0.014986108057200909, -0.016210949048399925, -0.026424065232276917, 0.01117668766528368, 0.07237443327903748, -0.06761518865823746, 0.055714815855026245, -0.023246780037879944, 0.030587900429964066, -0.00722293509170413, -0.03328685089945793, 0.008696853183209896, 0.03255315497517586, -0.006178404204547405, 0.0011610779911279678, 0.02699366584420204, -0.03548738360404968, -0.0352344885468483, -0.016399744898080826, 0.005167587194591761, 0.03190965577960014, -0.02299400232732296, 0.018297379836440086 ]
[ -0.11444061994552612, -0.014887083321809769, -0.0595431812107563, -0.025269640609622, 0.0430699847638607, -0.029574589803814888, 0.005583066493272781, -0.01917346939444542, 0.006186945363879204, -0.01569976471364498, -0.006175669375807047, 0.014866933226585388, -0.007832546718418598, -0.004793083760887384, 0.061080094426870346, 0.013155675493180752, -0.004586408846080303, -0.03491973504424095, -0.053583648055791855, 0.035185184329748154, 0.029065901413559914, -0.022671544924378395, -0.07419972121715546, -0.03795111924409866, 0.02923726849257946, 0.037569981068372726, 0.03020261600613594, -0.060410358011722565, 0.027969546616077423, -0.1897398829460144, -0.022274665534496307, 0.01598168909549713, 0.03236117213964462, -0.029621455818414688, -0.03853190317749977, -0.0041055455803871155, 0.03805668279528618, 0.0274038165807724, -0.028192395344376564, 0.03291711211204529, 0.03712201863527298, 0.036770615726709366, -0.05431903526186943, 0.0020894629415124655, 0.04663560166954994, -0.011656158603727818, -0.03863995149731636, -0.010461697354912758, -0.04214680567383766, 0.021242866292595863, -0.06631351262331009, -0.049142397940158844, -0.05740110203623772, -0.02259018085896969, 0.009083975106477737, 0.04977801442146301, 0.004700602497905493, 0.035878680646419525, 0.0215669684112072, 0.0473521389067173, -0.015220637433230877, -0.00832965038716793, -0.11012772470712662, 0.1154995858669281, 0.018917156383395195, 0.050139252096414566, -0.010830177925527096, -0.02798442542552948, 0.0072797322645783424, 0.08941426873207092, 0.041709497570991516, -0.015975385904312134, -0.05145341902971268, 0.022478997707366943, 0.01037006638944149, -0.03178177401423454, 0.001564344041980803, 0.018890246748924255, 0.04006337374448776, -0.005922424141317606, -0.04293854162096977, -0.04114760085940361, 0.04467583820223808, -0.024638673290610313, -0.0023599842097610235, -0.0002673994458746165, 0.0037626861594617367, -0.0009910669177770615, 0.03904132544994354, 0.023523174226284027, 0.045432452112436295, 0.0009343577548861504, 0.04009988158941269, 0.013588323257863522, -0.055006492882966995, -0.029874999076128006, -0.016324907541275024, -0.002595681231468916, -0.020192598924040794, 0.38764309883117676, -0.0339880995452404, -0.03709404170513153, 0.06710164248943329, 0.03152092918753624, -0.05809541046619415, -0.006930334493517876, 0.00541219487786293, -0.08782397210597992, 0.02640647068619728, -0.07436734437942505, -0.006345598492771387, -0.000555685197468847, 0.02932184562087059, -0.05541253089904785, -0.019800078123807907, 0.026900529861450195, 0.020820967853069305, 0.011436967179179192, -0.002983161248266697, -0.004799450282007456, 0.01462513953447342, 0.003578740870580077, 0.010596907697618008, 0.039902929216623306, -0.013954395428299904, 0.0030113651882857084, 0.025313232094049454, 0.055846937000751495, 0.04704716056585312, 0.025115959346294403, 0.0719846859574318, -0.04934240132570267, -0.10196812450885773, -0.014174392446875572, -0.02452240139245987, 0.016523975878953934, 0.04743310064077377, -0.026443444192409515, 0.03843366727232933, 0.007397971581667662, -0.0021359126549214125, -0.0001015428570099175, 0.02772049978375435, -0.026755332946777344, -0.03302513808012009, 0.13812518119812012, -0.01438368484377861, -0.047298889607191086, -0.029187170788645744, -0.02423686347901821, 0.0047093341127038, 0.03269980847835541, -0.021409373730421066, -0.058380376547575, 0.010221992619335651, 0.028832407668232918, 0.07238414138555527, -0.025157690048217773, -0.03938595950603485, -0.024103088304400444, -0.05812006816267967, 0.005503171589225531, -0.03278166428208351, 0.03375304490327835, 0.010013672523200512, -0.11028680950403214, -0.03778683394193649, 0.004401627462357283, 0.005427245981991291, -0.08049158751964569, -0.0025581016670912504, 0.02402147464454174, -0.0568382628262043, 0.01362121943384409, 0.03823772072792053, -0.011971035040915012, -0.04341365396976471, -0.025083625689148903, 0.04359792172908783, 0.049117688089609146, 0.0073124710470438, 0.04319223016500473, -0.04174521937966347, 0.02886381931602955, 0.00037498355959542096, -0.08645932376384735, -0.034837011247873306, 0.007212713360786438, -0.011050439439713955, -0.017495324835181236, -0.01964770257472992, -0.033369436860084534, -0.007399804424494505, 0.12142085283994675, -0.04017581418156624, -0.020383654162287712, 0.03376934304833412, -0.001074155792593956, 0.014493162743747234, -0.0005393763422034681, 0.03104512393474579, 0.06736242026090622, 0.005315746646374464, 0.043572597205638885, -0.046136096119880676, 0.01757996156811714, 0.05229366943240166, -0.07730299234390259, 0.03083709254860878, 0.05534482002258301, -0.06164681166410446, 0.007242364808917046, -0.00270833563990891, 0.04995471239089966, -0.008492588996887207, -0.026951629668474197, -0.0035912056919187307, 0.03837111219763756, 0.007911250926554203, -0.006020356435328722, -0.06060520559549332, -0.05844477191567421, 0.007733752951025963, -0.32252246141433716, -0.0010949389543384314, -0.02446722611784935, -0.014805513434112072, 0.011522725224494934, -0.07230821251869202, -0.007205482572317123, -0.02696187049150467, -0.07809542119503021, 0.03985424339771271, 0.06228260323405266, 0.010986707173287868, 0.014855347573757172, -0.07850169390439987, 0.004043815657496452, 0.03877825662493706, -0.021933969110250473, -0.0880475789308548, -0.02967003919184208, 0.03989224508404732, 0.019084837287664413, 0.009941760450601578, -0.016901906579732895, -0.06127127632498741, -0.0028083701618015766, -0.03622094914317131, 0.08469720184803009, -0.04324670508503914, 0.09428445249795914, 0.0033660726621747017, 0.047637589275836945, 0.004563196562230587, 0.0006702726823277771, -0.055260542780160904, -0.0022869452368468046, -0.047084011137485504, -0.006234942004084587, -0.04027180001139641, 0.040501996874809265, -0.03552649915218353, -0.03475561365485191, 0.010561974719166756, -0.03393988683819771, -0.04480476677417755, -0.00977523997426033, 0.02296517789363861, -0.027881460264325142, -0.010355337522923946, -0.0014297006418928504, 0.07258568704128265, -0.02665361389517784, 0.0016891733976081014, 0.0342630036175251, 0.052853260189294815, -0.018625419586896896, 0.007414300460368395, -0.09691228717565536, -0.02807244472205639, -0.013780736364424229, 0.015087977983057499, 0.02110128477215767, 0.04749099910259247, 0.03819698095321655, -0.03140479698777199, -0.004966707434505224, 0.021302489563822746, 0.009133662097156048, 0.004178035072982311, 0.04042348638176918, -0.043073222041130066, -0.038261778652668, 0.0807875245809555, -0.020462336018681526, 0.011672680266201496, 0.03462676331400871, 0.09604419022798538, -0.04380771517753601, 0.032905470579862595, 0.001806773478165269, 0.0014724952634423971, 0.018795950338244438, 0.004739047028124332, 0.025033308193087578, -0.008651715703308582, 0.028887340798974037, 0.011069534346461296, -0.03130945935845375, 0.013843621127307415, 0.004054367076605558, -0.002229660749435425, -0.03927133232355118, -0.01442920695990324, -0.0021363464184105396, -0.05283595994114876, 0.03947056457400322, 0.008027021773159504, -0.2346649020910263, 0.01835576444864273, 0.09731271117925644, 0.055285897105932236, -0.010327836498618126, 0.032871585339307785, 0.036639075726270676, -0.09714022278785706, 0.03051472268998623, -0.016192961484193802, 0.03461610525846481, 0.046340253204107285, 0.02039201371371746, -0.010813714936375618, 0.048570383340120316, -0.04277241602540016, 0.05671820789575577, 0.00234807888045907, 0.04853450506925583, 0.02792709693312645, 0.045778896659612656, 0.005818241275846958, 0.20164765417575836, 0.030334588140249252, 0.04988982155919075, 0.0009225337416864932, 0.020705824717879295, 0.02257649600505829, 0.04731065779924393, 0.007391414605081081, 0.04709746316075325, 0.0011165892938151956, 0.08537764847278595, 0.002175590256229043, 0.0330602303147316, -0.10708575695753098, -0.002238268032670021, 0.05351358279585838, 0.017674222588539124, -0.01654304377734661, -0.0374089777469635, 0.02133125253021717, -0.058839574456214905, 0.0017503119306638837, 0.10200876742601395, 0.014883240684866905, -0.020383844152092934, -0.045967184007167816, -0.0295934546738863, 0.0007964657270349562, -0.05575961992144585, -0.003480746177956462, 0.03780795633792877, -0.020328819751739502, 0.022281544283032417, 0.04538903757929802, 0.006906995549798012, -0.026731979101896286, -0.06169665604829788, 0.04173775017261505, 0.03286868333816528, -0.0032105878926813602, 0.05844786763191223, 0.02812587469816208, 0.02962728776037693 ]
[ -0.005967405159026384, 0.025393059477210045, 0.005992939695715904, 0.014888069592416286, 0.0006607450195588171, -0.011427582241594791, 0.0037635955959558487, 0.027391629293560982, -0.0028516638558357954, -0.006698646582663059, -0.02933351695537567, -0.0145395053550601, -0.0008570546633563936, -0.030997471883893013, 0.026131533086299896, 0.002699377713724971, -0.007462291978299618, 0.010380787774920464, 0.04444505646824837, 0.0017241225577890873, -0.002704666228964925, 0.04449092596769333, 0.007123863790184259, -0.006931511219590902, -0.021851947531104088, 0.022042831405997276, -0.037748876959085464, -0.0421241894364357, 0.012924276292324066, -0.14493204653263092, -0.03961661830544472, -0.0201988834887743, -0.017956377938389778, 0.021609853953123093, -0.005809000227600336, -0.036498989909887314, 0.01889122650027275, 0.03830735385417938, -0.023816226050257683, 0.004071883391588926, -0.02900303155183792, 0.023683449253439903, -0.014665747061371803, -0.039770156145095825, 0.011705964803695679, 0.003605825128033757, 0.01989153027534485, -0.01920381560921669, 0.005437490064650774, 0.04766097292304039, -0.031321313232183456, 0.013541135005652905, -0.04546729847788811, 0.0013402969343587756, 0.060821596533060074, -0.006569276563823223, -0.00902049895375967, -0.04696940630674362, -0.0036883435677736998, -0.0080487672239542, -0.013118197210133076, -0.0009494098485447466, -0.04969872161746025, -0.005340116564184427, 0.011856268160045147, -0.04047912359237671, -0.026442335918545723, -0.00033623119816184044, -0.006622924469411373, -0.02026311121881008, -0.01662387326359749, 0.02089204452931881, -0.008631852455437183, -0.04719063639640808, 0.02940051071345806, 0.010181793943047523, 0.03584514558315277, -0.03711177036166191, -0.005579621065407991, -0.019534535706043243, -0.022221652790904045, 0.00938030518591404, 0.009178848005831242, -0.002353715244680643, -0.01785549893975258, -0.0231886375695467, 0.00501692108809948, 0.016293616965413094, 0.018927177414298058, 0.009138994850218296, -0.01983368955552578, 0.03810012713074684, 0.04004954919219017, 0.008583269082009792, -0.04328498989343643, 0.01316822785884142, 0.012950197793543339, 0.0008128410554490983, -0.004420064389705658, 0.8375512957572937, -0.028900839388370514, 0.054201338440179825, 0.0323871374130249, -0.03259154409170151, 0.01448608934879303, -0.020696064457297325, 0.015624701976776123, -0.01579241268336773, 0.02592248097062111, -0.08722508698701859, 0.03526761010289192, -0.0024724644608795643, 0.018210304901003838, -0.01820184476673603, 0.022139711305499077, 0.030241969972848892, 0.015734229236841202, -0.008508504368364811, -0.013852402567863464, -0.02456306666135788, 0.01706792786717415, -0.02521771378815174, 0.020932309329509735, 0.02229424938559532, 0.025201305747032166, -0.1624881774187088, 0.015597118064761162, -8.354748956652636e-33, 0.009778870269656181, -0.03346516937017441, 0.018724912777543068, 0.013639353215694427, 0.05381558835506439, -0.010491644032299519, 0.05294624716043472, 0.006426246836781502, -0.0004113216418772936, -0.011480733752250671, 0.01836480386555195, -0.02889702469110489, -0.013018555007874966, 0.018753845244646072, 0.03751342371106148, -0.032536283135414124, 0.006991853471845388, 0.04628666490316391, 0.01158121321350336, -0.006989877205342054, 0.025402532890439034, 0.022065171971917152, 0.043133314698934555, 0.008086814545094967, 0.009260183200240135, 0.021594028919935226, -0.014847916550934315, 0.017009632661938667, -0.009678279049694538, -0.03478383645415306, -0.015344199724495411, 0.041771989315748215, -0.010737862437963486, -0.003942376002669334, 0.056265685707330704, -0.01411760225892067, 0.008597085252404213, -0.0014297704910859466, 0.023887205868959427, -0.029480386525392532, -0.03755861148238182, 0.0007876132731325924, -0.02593989484012127, -0.005283956415951252, -0.005479116458445787, -0.04732019826769829, 0.004322037100791931, 0.019027765840291977, 0.017490727826952934, 0.03556855767965317, 0.018078254535794258, 0.027804424986243248, -0.015176869928836823, 0.010020063258707523, 0.016135040670633316, 0.0008596069528721273, -0.016307875514030457, 0.014996682293713093, 0.02803265117108822, 0.038209881633520126, -0.0008907692390494049, 0.035034459084272385, 0.00005847178545081988, 0.029325442388653755, -0.012442377395927906, -0.020617252215743065, -0.006941024214029312, -0.006094852462410927, 0.026558591052889824, 0.010239334776997566, -0.03719788417220116, 0.00343346712179482, -0.012475155293941498, -0.039575230330228806, 0.03680556267499924, -0.020863696932792664, -0.02298116497695446, -0.028969526290893555, 0.005848687142133713, 0.01660323701798916, 0.015366421081125736, -0.00224665948189795, -0.0032443373929709196, 0.0058408454060554504, -0.02345181070268154, 0.002556737046688795, 0.00774525897577405, 0.03598783537745476, -0.02551104500889778, -0.005688375327736139, 0.0012069959193468094, 0.009466550312936306, 0.006483480799943209, -0.013598049059510231, 0.004480506759136915, 8.350010979734853e-33, -0.005938634276390076, 0.007817267440259457, -0.000838348176330328, 0.01914275996387005, 0.010015630163252354, -0.02900395542383194, 0.025090845301747322, -0.03637717664241791, -0.005892283748835325, 0.03142091631889343, 0.0001519909274065867, 0.033448897302150726, -0.025297315791249275, 0.027321241796016693, 0.08718208223581314, -0.032503727823495865, 0.008722838945686817, -0.009867407381534576, -0.013390947133302689, 0.003760039806365967, 0.003434370504692197, -0.011925321072340012, 0.029425542801618576, -0.02654096856713295, -0.0018313518958166242, 0.06761827319860458, -0.026178060099482536, -0.014903965406119823, 0.015478511340916157, 0.015287170186638832, -0.008863305673003197, 0.017757585272192955, 0.02985515631735325, -0.016000475734472275, 0.0022263594437390566, -0.0036661557387560606, 0.026827169582247734, -0.006262771785259247, 0.031321775168180466, -0.004029796924442053, 0.0038102534599602222, -0.00617982679978013, 0.022472389042377472, -0.008377201855182648, 0.010435855016112328, 0.0013077871408313513, 0.012221948243677616, -0.00419441144913435, -0.014830859377980232, 0.028690336272120476, 0.01906456984579563, 0.001975215505808592, -0.036605220288038254, 0.0356433168053627, 0.0040496899746358395, 0.00848942156881094, -0.042121920734643936, -0.0004228817706461996, -0.006583071779459715, -0.01773161068558693, -0.02241036482155323, 0.029340408742427826, -0.023430826142430305, -0.020958028733730316, -0.003331416519358754, 0.014177177101373672, -0.02300327457487583, -0.053126055747270584, -0.045642752200365067, -0.004883582703769207, -0.012568505480885506, -0.010946773923933506, -0.0031550293788313866, 0.027898838743567467, -0.053073301911354065, -0.029087044298648834, -0.009484811685979366, -0.00690813921391964, 0.011959373019635677, 0.03670506551861763, 0.011297591030597687, -0.01855545863509178, 0.05379391089081764, 0.03199243173003197, -0.04268735274672508, 0.0003144912188872695, 0.012396536767482758, 0.001645300188101828, 0.024304302409291267, -0.027881905436515808, -0.0070533351972699165, -0.0416240394115448, 0.008937880396842957, 0.011315655894577503, 0.029515940696001053, -1.3477757576652039e-8, -0.08704524487257004, 0.0007198700914159417, -0.017386335879564285, 0.042848147451877594, 0.03697257488965988, 0.0060734995640814304, -0.05920782312750816, 0.0012613823637366295, -0.0031365007162094116, -0.001308674574829638, 0.03650733828544617, 0.0051367999985814095, 0.02449713461101055, -0.0026106592267751694, 0.05404014140367508, -0.050978634506464005, 0.026097331196069717, -0.020404111593961716, 0.0054313065484166145, 0.0036962423473596573, -0.061386436223983765, 0.026664990931749344, -0.001228383625857532, -0.015040282160043716, -0.02201443538069725, -0.014128069393336773, 0.007558716926723719, -0.0810358002781868, 0.023712215945124626, 0.014000759460031986, -0.0013698539696633816, -0.03142933547496796, -0.018602393567562103, 0.04730699583888054, -0.01888692006468773, -0.07680866867303848, 0.006885624956339598, 0.009484020061790943, 0.02247585915029049, -0.0197355467826128, -0.009269008412957191, 0.006792224012315273, 0.034850385040044785, -0.008618790656328201, -0.01364050805568695, -0.04262521490454674, -0.013542474247515202, -0.01879115402698517, 0.007955698296427727, -0.018802311271429062, 0.011593117378652096, 0.015154886059463024, 0.017727604135870934, 0.010971907526254654, 0.021982891485095024, 0.02970324084162712, 0.0012844476150348783, -0.05590269714593887, -0.05477670580148697, 0.02443394809961319, 0.023167846724390984, 0.023781143128871918, -0.0325305350124836, -0.017866265028715134 ]
functional-c-linq-vs-method-chaining
https://markhneedham.com/blog/2010/02/05/functional-c-linq-vs-method-chaining
false
2010-02-02 23:54:21
Coding: Wrapping/not wrapping 3rd party libraries and DSLs
[ "coding" ]
[ "Coding" ]
One of the things which Nat Pryce and Steve Freeman suggest in their book http://www.amazon.com/gp/product/0321503627?ie=UTF8&tag=marneesblo-20&linkCode=as2&camp=1789&creative=390957&creativeASIN=0321503627[Growing Object Oriented Software guided by tests] is the idea of wrapping any third party libraries that we use in our own code. We came across a situation where we did this and then later on I made the mistake of not following this advice. To start with my colleague http://ilovemartinfowler.com/[David] had created a DSL which kept all the calls to Selenium nicely wrapped inside one class. The problem we were experiencing was that we hadn't evolved the DSL with the webpage evolution to the point where we weren't taking into account that some fields on the page weren't visible until ones before them had been filled in. We needed to change the DSL slightly and it seemed like an interesting opportunity to try and convert them to use Webdriver as it seems more suited for heavy filling in of forms which is our use case. My first thought was that it should just be possible to change those Selenium calls to call the equivalent Webdriver methods instead but having done that we realised that the way the two tools interact with the page is slightly different so the direct replacement approach wasn't really working. We decided to adopt a different approach whereby we would just try and change individual tests to use Webdriver instead and leave all the other tests as they are using Selenium. I thought about creating another version of the DSL to encapsulate the Webdriver interaction with the page but decided against the idea as it didn't seem like it would add much value and the only way I thought of at the time was to create a clone of the original DSL. We managed to get one of our tests working more effectively using Webdriver having sorted out the problems with the different interactions between fields but unfortunately the current C# API doesn't seem that stable and seems to fail somewhat randomly for reasons we haven't been able to work out yet. As a result we now want to convert those tests I'd rewritten to take advantage of the new way they're written but to use Selenium instead! Sadly the approach I took has made this really difficult and it's now a very frustrating journey to get the tests back into shape. It's quite frustrating to make this type of mistake especially when I read about a solution so recently. In hindsight I think a better approach may have been to pull our an interface to represent our DSL - currently it's a series of method calls on a few classes - and then create Webdriver and Selenium specific versions of that. A few of things stand out for me from this experience: * I talked myself out of wrapping Webdriver because I saw the main reason for doing so being to shield us in case we chose to change the library and I didn't anticipate having to do that. As it is I was wrong but I didn't totally appreciate how we can benefit from defining an API that defines how we want to interact with the web page rather than how the library wants us to. * We need to evolve our DSLs with the application and not be afraid to change them if the application changes. * It probably wasn't a good idea to try and fix the DSL and change the underlying library at the same time. Small steps!
null
null
[ 0.009463666006922722, 0.0031407494097948074, -0.020463066175580025, 0.03311067074537277, 0.08640800416469574, 0.0054686414077878, 0.027345091104507446, 0.040758825838565826, 0.03619333729147911, -0.03590733930468559, -0.01139040570706129, 0.029512271285057068, -0.07701489329338074, 0.002312659053131938, -0.033867839723825455, 0.08220130205154419, 0.07378149777650833, 0.0024048928171396255, 0.00833685789257288, -0.002304468536749482, 0.015761198475956917, 0.06665533035993576, 0.012571045197546482, 0.04176259785890579, 0.01718394085764885, 0.01931420899927616, 0.004527274984866381, -0.006802604999393225, -0.062371205538511276, -0.011911740526556969, 0.034181419759988785, 0.01317554246634245, 0.005707903765141964, -0.0031532375141978264, 0.009519402869045734, -0.0354345440864563, -0.021176306530833244, -0.013632720336318016, 0.01692487671971321, 0.038738131523132324, -0.07116282731294632, 0.051996469497680664, -0.015243216417729855, 0.027959221974015236, -0.033703967928886414, 0.008323866873979568, -0.040753915905952454, 0.005884181708097458, -0.008433528244495392, -0.01488994900137186, -0.042345255613327026, 0.034141186624765396, -0.02935653366148472, 0.017225375398993492, -0.0006751391338184476, 0.04598499462008476, 0.030842436477541924, -0.06695381551980972, 0.03394821658730507, -0.041086725890636444, 0.00044639574480243027, 0.01689007692039013, 0.001177745871245861, 0.05451139435172081, 0.01812066324055195, -0.005155432969331741, -0.01788025163114071, 0.04313688725233078, -0.05283327028155327, -0.017404470592737198, -0.03275114670395851, 0.003954303916543722, -0.02620537579059601, -0.01756407879292965, 0.028059912845492363, -0.03658733516931534, -0.019302448257803917, 0.05854933336377144, 0.00788301881402731, 0.0240457896143198, -0.016408711671829224, 0.035882994532585144, 0.036585498601198196, 0.02477891743183136, -0.019314797595143318, -0.034465111792087555, -0.02876436710357666, 0.010757087729871273, -0.03555862233042717, 0.06373626738786697, 0.015750838443636894, -0.050566062331199646, -0.009002082981169224, 0.0303567536175251, 0.0050859893672168255, 0.0036647124215960503, 0.031847137957811356, -0.003628941485658288, -0.01955406367778778, -0.010043419897556305, -0.023190999403595924, -0.028812596574425697, 0.015585890971124172, -0.0000016944788967521163, -0.08335001766681671, 0.013879804871976376, -0.01675753854215145, 0.0056519233621656895, 0.014086955226957798, 0.015220788307487965, -0.046284690499305725, 0.03322899341583252, -0.03173593059182167, -0.006032339297235012, -0.07982582598924637, 0.050709355622529984, 0.010764331556856632, -0.033247701823711395, 0.008397546596825123, 0.03204143047332764, 0.016882790252566338, 0.021753858774900436, -0.025238079950213432, 0.07374472916126251, 0.020750200375914574, 0.0497441291809082, -0.030666261911392212, 0.062426477670669556, -0.017457732930779457, -0.07373566925525665, 0.019984759390354156, 0.02846808359026909, -0.01797863282263279, -0.009160101413726807, -0.001656866166740656, -0.025169972330331802, 0.009593188762664795, -0.00996473804116249, 0.03670177608728409, 0.057912565767765045, -0.027765512466430664, -0.042511533945798874, 0.02239109016954899, 0.01737482100725174, 0.033660028129816055, 0.0033623306080698967, 0.009788447991013527, -0.003919717390090227, -0.04348793625831604, 0.03062245436012745, 0.0158707182854414, 0.008031691424548626, 0.02293003536760807, -0.030019287019968033, 0.020385872572660446, 0.08812635391950607, 0.009453512728214264, 0.01180806290358305, -0.01522079948335886, 0.024511242285370827, 0.05228136479854584, 0.03430008515715599, 0.01605629175901413, 0.016000527888536453, 0.004961722996085882, 0.006273727864027023, -0.008941223844885826, 0.060918815433979034, 0.014230851083993912, -0.0067847250029444695, -0.07097788900136948, -0.040687255561351776, 0.037035927176475525, -0.0768483504652977, -0.01827382482588291, 0.052286356687545776, 0.08148391544818878, 0.019194647669792175, 0.05719852074980736, -0.012163248844444752, -0.08543158322572708, 0.008887188509106636, 0.017500832676887512, 0.027034640312194824, 0.007897848263382912, -0.025532279163599014, 0.0691225454211235, 0.03571571782231331, -0.004727412015199661, 0.02750018611550331, -0.0904383659362793, -0.08689334988594055, -0.03554970771074295, -0.04344896227121353, 0.07780216634273529, -0.0297608133405447, 0.0028416363056749105, 0.07186543196439743, 0.0064665041863918304, 0.03826889395713806, 0.011085676029324532, -0.0031447368673980236, 0.0019518269691616297, -0.05092316493391991, -0.03216903656721115, 0.037636712193489075, 0.03437953442335129, -0.01001459825783968, -0.05195444077253342, 0.008607983589172363, -0.017121652141213417, -0.0134213762357831, 0.03679037094116211, -0.010848750360310078, 0.030957162380218506, 0.02185756154358387, 0.07829194515943527, -0.03312971070408821, 0.0643993616104126, -0.04740341007709503, 0.014635422267019749, -0.002720537595450878, -0.021422915160655975, 0.007025732193142176, -0.008049732074141502, 0.12211846560239792, 0.07115665078163147, -0.04002813249826431, -0.07196547836065292, 0.02210748940706253, 0.012324138544499874, -0.053441841155290604, 0.0029528371524065733, -0.033707089722156525, 0.0040265885181725025, -0.011677262373268604, -0.07128316164016724, -0.03590233623981476, -0.004750784486532211, -0.03737078979611397, 0.02734728902578354, 0.05871095880866051, -0.01739656925201416, 0.05720376595854759, 0.003900605021044612, -0.004931096453219652, -0.008638019673526287, -0.010526620782911777, -0.03231512010097504, 0.0022007953375577927, 0.013338016346096992, -0.016576241701841354, 0.031597211956977844, -0.018988588824868202, -0.029815133661031723, -0.016749778762459755, -0.03525806590914726, 0.006492071319371462, 0.06196126714348793, 0.06351809203624725, -0.0053972178138792515, 0.04069311544299126, -0.031428348273038864, 0.03673793002963066, 0.0036521160509437323, -0.04562203958630562, -0.012515471316874027, -0.020710470154881477, -0.003813746850937605, 0.05247494578361511, -0.00832354836165905, 0.034287549555301666, 0.027641883119940758, 0.00015819573309272528, -0.028973855078220367, -0.00948820449411869, 0.04332004114985466, -0.012887571007013321, -0.029122311621904373, -0.029599206522107124, -0.028148651123046875, 0.04657136648893356, -0.02696150541305542, -0.015520828776061535, -0.008868749253451824, -0.07568610459566116, 0.04090648144483566, -0.0826408639550209, -0.058473534882068634, -0.004264232236891985, 0.005667081568390131, 0.03443692624568939, 0.02407733164727688, 0.04181864112615585, 0.05911916866898537, 0.009591054171323776, 0.00998527929186821, 0.006343023851513863, 0.024623004719614983, 0.016949180513620377, 0.018973559141159058, 0.004713703412562609, 0.018077922984957695, 0.0010472445283085108, 0.02222052775323391, -0.048690639436244965, 0.04512044042348862, -0.013338537886738777, -0.27541691064834595, 0.04222143068909645, 0.0028177204076200724, -0.04726887121796608, 0.036135587841272354, 0.012541168369352818, 0.018420806154608727, -0.0638786107301712, -0.00917033851146698, 0.02749638631939888, -0.025057557970285416, -0.03102000243961811, -0.015256968326866627, 0.052819494158029556, 0.003752598073333502, 0.022363150492310524, 0.03697677329182625, -0.03811779245734215, 0.011289102956652641, 0.05431767925620079, -0.0014051432954147458, -0.08695574104785919, 0.011121280491352081, 0.04098363593220711, 0.029782388359308243, 0.05341428518295288, -0.0829525887966156, 0.039886120706796646, -0.02795431949198246, 0.0008109007612802088, 0.024339715018868446, -0.009538714773952961, 0.0036659541074186563, -0.016864482313394547, -0.022677987813949585, -0.006255467422306538, 0.036241307854652405, 0.004919335246086121, -0.012090737000107765, -0.0058974614366889, -0.023678867146372795, -0.016474692150950432, -0.019132735207676888, -0.0035995643120259047, 0.0788584053516388, -0.009058448486030102, -0.0633547455072403, -0.01594717614352703, -0.04178575053811073, 0.08088664710521698, -0.03998618572950363, -0.022176608443260193, 0.0022678556852042675, 0.04039875045418739, 0.008740751072764397, -0.012429517693817616, -0.008223126642405987, 0.006334184668958187, -0.03888421505689621, -0.04827200248837471, 0.005873595364391804, -0.030138034373521805, -0.03214752674102783, -0.05226100981235504, -0.007442472502589226, -0.06142774969339371, -0.04271746799349785, -0.01434811670333147, 0.08194092661142349, 0.024281829595565796, -0.039146460592746735, 0.0299672968685627, 0.008105575107038021, -0.10808072239160538, 0.021313870325684547, -0.026540251448750496, -0.020035043358802795, -0.031188897788524628, -0.010074815712869167, 0.05536402389407158, -0.03858967125415802, -0.04549302160739899, 0.028271609917283058, 0.012447838671505451, 0.018354317173361778, -0.004838054068386555, 0.02346625179052353, -0.0005792699521407485, -0.03422662243247032, -0.005683950614184141, 0.0916895791888237, -0.001411375473253429, -0.02156672812998295, -0.029678326100111008, 0.023375706747174263, 0.028803374618291855, 0.030387219041585922, 0.010613813064992428, 0.011201866902410984, 0.0335158035159111, 0.025334486737847328, -0.05902409926056862, 0.03987335041165352, -0.026373563334345818, -0.0038380904588848352, -0.013889066874980927, -0.05123766511678696, 0.007258427795022726, 0.021430807188153267, 0.005523580126464367, -0.009457644075155258, -0.025229571387171745, 0.009519637562334538, -0.027578415349125862, -0.04524494335055351, -0.0128092085942626, 0.006281421519815922, 0.03902428597211838, -0.0438026562333107, -0.01928727701306343, -0.056947045028209686, 0.01677151769399643, 0.012931744568049908, -0.028249962255358696, -0.055187780410051346, -0.049664922058582306, -0.004183238837867975, 0.005818054545670748, 0.021223220974206924, 0.014980372041463852, -0.007714115548878908, 0.0467967689037323, 0.019453978165984154, -0.03364110365509987, -0.010239838622510433, -0.006025428418070078, -0.05869060009717941, -0.03636663779616356, -0.0006872846279293299, 0.0060264235362410545, -0.020716071128845215, -0.006547047756612301, 0.0104560861364007, -0.00013042155478615314, 0.05225500836968422, 0.010672998614609241, 0.03736095875501633, 0.0053679561242461205, 0.001767605310305953, 0.014186584390699863, -0.0017838880885392427, -0.06453518569469452, 0.011371942237019539, -0.0395047590136528, -0.037340302020311356, -0.046493567526340485, 0.03045651875436306, 0.0024300292134284973, -0.02457933872938156, -0.026654552668333054, 0.008029340766370296, -0.06833408772945404, -0.010262105613946915, -0.022276556119322777, 0.006527443882077932, 0.062033459544181824, -0.01901661604642868, 0.024149253964424133, -0.02238566055893898, -0.012476014904677868, 0.012108637019991875, 0.016341835260391235, -0.04397829994559288, 0.021449889987707138, -0.006867453455924988, -0.021225448697805405, -0.003919997252523899, -0.009841556660830975, 0.04422341287136078, 0.007501389365643263, -0.0032233474776148796, -0.024451060220599174, 0.010200378485023975, -0.0157012939453125, 0.05316796153783798, -0.008871560916304588, -0.025544894859194756, -0.005257122218608856, -0.022302567958831787, -0.013321438804268837, -0.03566504642367363, -0.01422090083360672, -0.0020536319352686405, 0.033361420035362244, -0.040963314473629, -0.08085687458515167, 0.037721049040555954, 0.0003960280737373978, 0.016620894894003868, 0.012751488015055656, -0.012946488335728645, 0.004874116741120815, -0.014544295147061348, 0.02856791391968727, 0.025774484500288963, -0.06777455657720566, 0.01213789451867342, -0.004224183037877083, -0.008760222233831882, 0.027014603838324547, 0.0036255393642932177, -0.04089314863085747, -0.025631308555603027, -0.024929974228143692, 0.0010575475171208382, -0.03430604562163353, -0.01746959239244461, -0.039531223475933075, 0.004226416349411011, -0.022244291380047798, 0.0030662594363093376, -0.020095668733119965, -0.007601071614772081, -0.02024720422923565, -0.02662021666765213, 0.0122700659558177, -0.022522343322634697, 0.0002369869325775653, 0.02672882191836834, -0.032722268253564835, 0.027562929317355156, -0.021986551582813263, 0.013687645085155964, 0.024837227538228035, -0.014267925173044205, -0.008061560802161694, -0.05500248447060585, -0.004234191495925188, -0.0067382873967289925, 0.03986341506242752, 0.013688549399375916, 0.002008277690038085, -0.052130356431007385, -0.009245626628398895, -0.03673072159290314, 0.023746013641357422, -0.01773424819111824, -0.03310205787420273, 0.032556165009737015, 0.05537791922688484, 0.005329314153641462, 0.01587012968957424, 0.003114796942099929, 0.010787880048155785, 0.049724843353033066, -0.06334013491868973, -0.024815142154693604, -0.025425733998417854, -0.07852648943662643, 0.016744602471590042, 0.012535694986581802, 0.0369076207280159, -0.0306587852537632, 0.05379165709018707, 0.019849685952067375, -0.0008061126573011279, 0.047164514660835266, -0.009154352359473705, 0.04162957891821861, -0.058900389820337296, 0.006522977724671364, -0.07884634286165237, 0.016473805531859398, 0.03307778388261795, -0.0040437025018036366, -0.04232611507177353, 0.0067339870147407055, -0.033390361815690994, 0.04306744411587715, -0.07541974633932114, -0.03453776612877846, 0.040451761335134506, 0.005712876096367836, -0.002137979259714484, 0.00263655255548656, -0.05165306478738785, 0.03358248993754387, 0.01501720305532217, -0.045357998460531235, -0.03435233235359192, -0.022278282791376114, 0.06371711939573288, 0.008945858106017113, 0.006565742660313845, -0.020020464435219765, -0.010920854285359383, 0.07994742691516876, 0.0069451103918254375, 0.005157820414751768, 0.01868033967912197, -0.003165402915328741, 0.04743148386478424, 0.03787337243556976, 0.005011816509068012, -0.013143244199454784, 0.022132456302642822, 0.010211003944277763, -0.044239968061447144, 0.024239912629127502, 0.004640545230358839, -0.014794529415667057, -0.03956814855337143, 0.04710851237177849, 0.047841090708971024, -0.04043184220790863, -0.05887328460812569, 0.0030925231985747814, -0.05743030086159706, -0.025004826486110687, -0.015225762501358986, 0.0020910699386149645, -0.03378865122795105, 0.04029699042439461, -0.026280423626303673, -0.011094524525105953, 0.07433824241161346, -0.013398812152445316, -0.010557993315160275, -0.03127500042319298, 0.08541257679462433, 0.07415863126516342, 0.0441473163664341, 0.019713522866368294, 0.07085578143596649, -0.007452096790075302, -0.06685318052768707, 0.012486830353736877, -0.021445874124765396, -0.0312529094517231, -0.02730417437851429, 0.00693447794765234, 0.06137239187955856, 0.005500785540789366, 0.06630630046129227, -0.043059974908828735, -0.007916026748716831, -0.014835956506431103, 0.024051081389188766, 0.002825138857588172, 0.0544360913336277, 0.019746435806155205, -0.006696077063679695, -0.03298913314938545, -0.025701282545924187, 0.03853660821914673, -0.029963547363877296, -0.030772315338253975, 0.008676358498632908, -0.005627975799143314, 0.0310011338442564, 0.0056343767791986465, 0.05881483107805252, 0.09746160358190536, -0.026335416361689568, 0.004792674910277128, -0.007763407193124294, 0.025616316124796867, 0.009594850242137909, -0.01132806297391653, -0.021418647840619087, -0.022320222109556198, -0.019214661791920662, -0.03498610109090805, -0.025563756003975868, -0.013473709113895893, -0.015757787972688675, 0.051695000380277634, -0.014775754883885384, 0.026501312851905823, 0.04292720556259155, 0.019323982298374176, -0.034733619540929794, -0.05004383251070976, -0.06378640234470367, -0.020742591470479965, -0.05091782659292221, -0.036939587444067, 0.0442890040576458, 0.016245776787400246, -0.043393656611442566, -0.005498245824128389, -0.015609771944582462, -0.023496095091104507, 0.021508481353521347, -0.048978518694639206, -0.030526092275977135, 0.02050311677157879, 0.033296819776296616, 0.018008477985858917, 0.010096694342792034, 0.05469370260834694, -0.013840089552104473, -0.007255032192915678, -0.018551362678408623, 0.010767375119030476, 0.03724345564842224, 0.005539490841329098, 0.044687528163194656, -0.07932053506374359, 0.008068201132118702, 0.0050408486276865005, -0.014122376218438148, -0.06802405416965485, 0.01864086277782917, 0.023806801065802574, -0.007267829030752182, 0.0565914660692215, -0.013254990801215172, -0.00964619591832161, -0.011977702379226685, -0.004436429589986801, 0.021059082821011543, 0.011473087593913078, 0.03454121574759483, -0.013851819559931755, 0.09604450315237045, 0.01769147627055645, -0.00878932885825634, -0.05000752955675125, 0.0017769489204511046, 0.02294895425438881, 0.016733983531594276, -0.023255379870533943, -0.038988444954156876, -0.04747886210680008, -0.07728816568851471, -0.017479177564382553, 0.012577272020280361, -0.012127467431128025, -0.020537491887807846, 0.0003730434109456837, 0.051246363669633865, -0.051006484776735306, 0.03918296843767166, -0.04181496798992157, 0.02241446077823639, -0.018661944195628166, -0.019548775628209114, 0.03382469713687897, 0.026168107986450195, 0.010488082654774189, 0.009789617732167244, 0.006026487331837416, -0.022558482363820076, -0.011180717498064041, -0.008959519676864147, 0.054327305406332016, 0.028588496148586273, 0.016319241374731064, -0.015566113404929638 ]
[ -0.09590284526348114, -0.011210880242288113, -0.04965147748589516, -0.020202800631523132, 0.02776223234832287, -0.036844413727521896, -0.040689002722501755, 0.025262700393795967, -0.04413001984357834, -0.03556479886174202, 0.00850798562169075, -0.020011240616440773, -0.026513271033763885, -0.029062015935778618, 0.07638134062290192, 0.013975993730127811, 0.005934497807174921, -0.0620824433863163, -0.025115760043263435, 0.03070393018424511, 0.012242509983479977, -0.019358718767762184, -0.04019748419523239, -0.039095956832170486, -0.0023935523349791765, 0.027566442266106606, 0.043614279478788376, -0.010765244252979755, 0.0024720467627048492, -0.18837973475456238, 0.015266564674675465, -0.022023091092705727, 0.021197637543082237, -0.01775946095585823, 0.013933075591921806, 0.012763451784849167, 0.05283460021018982, 0.006991419941186905, -0.007956338115036488, 0.027310527861118317, 0.02244223840534687, 0.006158784963190556, -0.06161832436919212, 0.028396597132086754, 0.013918288983404636, 0.01759413443505764, 0.004566276911646128, -0.02801799774169922, 0.018524233251810074, 0.016396474093198776, -0.049203645437955856, -0.010859363712370396, 0.0027795766945928335, -0.03159821033477783, -0.014446079730987549, 0.0008422124665230513, 0.010073109529912472, 0.08764712512493134, 0.009130122140049934, 0.037352923303842545, -0.009482144378125668, -0.01658354140818119, -0.13284529745578766, 0.09678120166063309, 0.03749511018395424, 0.04662477970123291, -0.05494244769215584, -0.04488927870988846, -0.009954328648746014, 0.08876121044158936, 0.0069142840802669525, -0.04490476846694946, -0.050994813442230225, 0.056607961654663086, 0.019106678664684296, 0.0021759774535894394, -0.005688693840056658, 0.007799962069839239, 0.037183426320552826, -0.02936703898012638, -0.04969782754778862, -0.04503034055233002, -0.00631320383399725, -0.02102849818766117, -0.026953071355819702, 0.02653420902788639, -0.009009195491671562, 0.04556461051106453, 0.029369071125984192, 0.030481282621622086, 0.025274386629462242, -0.033406876027584076, 0.03444213420152664, 0.0062239463441073895, -0.08656997978687286, -0.026927810162305832, -0.009560603648424149, 0.02845010533928871, -0.043330367654561996, 0.4313204288482666, -0.01789345033466816, -0.022521182894706726, 0.07282993942499161, 0.014948822557926178, -0.012235754169523716, 0.0010165614075958729, 0.011367983184754848, -0.023493681102991104, 0.015216131694614887, -0.044798560440540314, 0.036896225064992905, 0.012647737748920918, 0.05668229982256889, -0.025487035512924194, -0.024464381858706474, 0.023053806275129318, 0.006822786759585142, -0.007638174574822187, 0.023571429774165154, 0.0005804941756650805, -0.012089400552213192, 0.018412470817565918, 0.02384266071021557, 0.00936502031981945, 0.031557198613882065, -0.03335864841938019, 0.038946207612752914, 0.048827122896909714, -0.017640992999076843, 0.03260372579097748, 0.03580870106816292, -0.0625290647149086, -0.06363246589899063, -0.016529986634850502, 0.00639441329985857, 0.024461345747113228, 0.0416233129799366, -0.009604758583009243, 0.01085821446031332, 0.039637356996536255, 0.004930289462208748, -0.02355966717004776, 0.019957413896918297, -0.005902549251914024, -0.027712933719158173, 0.07784314453601837, 0.020816700533032417, -0.0423591174185276, -0.030739039182662964, -0.03334858641028404, 0.01731950417160988, 0.05310647189617157, -0.01960698701441288, -0.05116819217801094, 0.010226952843368053, 0.02559378370642662, 0.09418317675590515, -0.0015783739509060979, -0.03857436403632164, 0.0009183353977277875, -0.01689441129565239, -0.022538814693689346, -0.0403909906744957, 0.07176997512578964, 0.04933406785130501, -0.12156591564416885, -0.024292580783367157, 0.012092100456357002, 0.01938359998166561, -0.07839550077915192, -0.040807753801345825, 0.024349525570869446, -0.03271399810910225, -0.020325589925050735, 0.05040514096617699, -0.014048466458916664, -0.02330065704882145, 0.02392430603504181, 0.027981463819742203, -0.008583654649555683, 0.0027428078465163708, 0.015482480637729168, -0.0638774111866951, -0.017918670549988747, -0.04005805402994156, -0.06174793839454651, -0.05675105005502701, -0.00502395024523139, -0.027082424610853195, 0.01107843592762947, -0.01227013859897852, 0.0033259415067732334, -0.058610301464796066, 0.10024917125701904, -0.00815201923251152, -0.002493450650945306, -0.00931033305823803, -0.012045291252434254, -0.0017659052973613143, -0.004228450823575258, 0.005331764928996563, 0.01011861301958561, -0.03389646112918854, 0.03711917623877525, -0.07810495793819427, 0.0418185219168663, 0.08427247405052185, -0.05380575358867645, 0.09162504225969315, 0.04378141835331917, -0.036656878888607025, -0.026761533692479134, 0.01278834417462349, 0.018293602392077446, -0.025388382375240326, -0.025422781705856323, -0.011499564163386822, 0.012785393744707108, 0.03452540934085846, 0.05947485938668251, -0.026470409706234932, -0.00014812956214882433, -0.006167820654809475, -0.33789417147636414, -0.04765591025352478, -0.049901239573955536, 0.0021585668437182903, 0.0372006930410862, -0.06709126383066177, 0.024101128801703453, -0.009755373932421207, -0.03216831013560295, 0.01906953938305378, 0.08886987715959549, 0.01051624957472086, 0.019453469663858414, -0.07996625453233719, -0.0012378711253404617, 0.011253095231950283, -0.028000276535749435, -0.041072309017181396, -0.04432209953665733, 0.03728479519486427, -0.021367665380239487, -0.008702585473656654, -0.016239745542407036, -0.04482882097363472, 0.025923291221261024, -0.04783113673329353, 0.10087016224861145, -0.023098323494195938, 0.11571138352155685, -0.03035123646259308, 0.04639241471886635, 0.00035653708619065583, 0.03029412403702736, -0.06790267676115036, -0.04114985838532448, -0.014141331426799297, 0.00514915119856596, -0.011119560338556767, 0.060486722737550735, -0.007795248180627823, -0.06165161356329918, 0.008243745192885399, -0.06522555649280548, -0.0611957348883152, -0.020427996292710304, 0.001063765026628971, -0.02542268857359886, -0.03492789715528488, -0.015795167535543442, 0.08694726228713989, 0.000054291293054120615, -0.018322749063372612, 0.017990795895457268, 0.02316037006676197, -0.015115147456526756, -0.030963413417339325, -0.0513836108148098, -0.013715972192585468, 0.016545366495847702, -0.021135667338967323, 0.00841059722006321, 0.09220774471759796, 0.03409479930996895, -0.05155536159873009, -0.006304813548922539, 0.04066772758960724, 0.02008006162941456, 0.0021247402764856815, 0.040359124541282654, -0.04526204615831375, -0.022712644189596176, 0.09938141703605652, -0.0017760107293725014, 0.02831014059484005, 0.0006781896227039397, 0.08065196871757507, -0.00252884766086936, 0.045613911002874374, 0.041242074221372604, -0.008842314593493938, -0.009092623367905617, 0.035065434873104095, 0.04956579580903053, -0.005168400704860687, -0.016656871885061264, 0.03498782217502594, -0.019025294110178947, -0.037014685571193695, 0.024265989661216736, -0.017336223274469376, -0.012609538622200489, 0.006326254457235336, -0.011454680934548378, -0.06470321118831635, 0.07228723913431168, -0.01187028270214796, -0.2219281941652298, -0.0032606380991637707, 0.058713387697935104, 0.056967221200466156, -0.02683415450155735, 0.020114367827773094, 0.036159697920084, -0.05404811352491379, 0.014206436462700367, 0.004499603062868118, -0.0016556057380512357, 0.03206195682287216, 0.020875170826911926, -0.007256745360791683, 0.07020316272974014, -0.0015361184487119317, 0.039233189076185226, 0.010815417394042015, -0.001054128515534103, 0.025072861462831497, 0.002360372105613351, -0.0036385967396199703, 0.17202910780906677, 0.019427884370088577, 0.016979200765490532, 0.046997297555208206, 0.007874550297856331, 0.02083803340792656, 0.08619487285614014, 0.031766004860401154, 0.02145216055214405, -0.014815624803304672, 0.01621728576719761, -0.0009671508450992405, 0.028214186429977417, -0.11945310980081558, -0.04642808809876442, 0.02251896634697914, 0.0203645471483469, -0.02811010368168354, 0.004646738059818745, 0.022701140493154526, -0.06233535334467888, -0.015494166873395443, 0.08316073566675186, 0.018189992755651474, -0.01658238284289837, -0.04460185766220093, -0.028307966887950897, -0.015672527253627777, -0.02758856862783432, -0.08042842149734497, 0.012861019931733608, -0.014129369519650936, 0.003216938581317663, 0.0822453573346138, 0.014372865669429302, -0.02913251891732216, -0.038285840302705765, 0.013449653051793575, 0.025720132514834404, -0.024916214868426323, 0.0920247882604599, 0.02964392490684986, 0.07214365899562836 ]
[ -0.038695257157087326, -0.0019415684510022402, -0.007736638188362122, 0.02868027053773403, -0.00930944923311472, -0.047874417155981064, -0.0015889422502368689, 0.02244115248322487, -0.010059673339128494, -0.051382873207330704, -0.018281882628798485, 0.01020168885588646, -0.003760754130780697, -0.04376319423317909, 0.03532762825489044, -0.017985282465815544, 0.009240232408046722, -0.006104076746851206, 0.0036854760255664587, 0.012601644732058048, -0.018929244950413704, 0.025452110916376114, 0.0032714141998440027, 0.00006789853068767115, -0.014811195433139801, 0.02874557487666607, 0.011588028632104397, -0.0016797437565401196, 0.01895798183977604, -0.14881160855293274, 0.0020209180656820536, -0.019533859565854073, -0.015117119066417217, 0.02005898579955101, -0.012300408445298672, -0.036074575036764145, -0.003203795524314046, 0.023859966546297073, 0.00046019209548830986, -0.024682102724909782, 0.008937246166169643, -0.01625317893922329, -0.00865099299699068, 0.026857752352952957, -0.01801874488592148, -0.046568192541599274, -0.042843952775001526, -0.011468722485005856, -0.01502956822514534, -0.008363508619368076, -0.028756801038980484, -0.01760464534163475, 0.0024569586385041475, 0.03279707208275795, -0.02869269996881485, 0.006731342524290085, 0.022314492613077164, -0.013858359307050705, 0.0036128354258835316, 0.023852085694670677, -0.01342435646802187, -0.02542213350534439, -0.002060835948213935, -0.015832943841814995, -0.00987148191779852, 0.027661290019750595, -0.00508253276348114, -0.017946217209100723, -0.023120786994695663, -0.016652006655931473, -0.03292158618569374, 0.016367342323064804, -0.005814085714519024, 0.008006024174392223, 0.008429456502199173, -0.000011342063771735411, -0.022007334977388382, -0.0016317572444677353, 0.024747703224420547, -0.007209017872810364, -0.02133019082248211, -0.012325046584010124, 0.022598812356591225, 0.0475614070892334, -0.016802921891212463, 0.0031516917515546083, 0.015599552541971207, -0.010436168871819973, -0.0014373284066095948, 0.012526367790997028, -0.03381342440843582, 0.003382839495316148, -0.020066605880856514, 0.03790346160531044, -0.09615170210599899, -0.003996554762125015, 0.00628109322860837, -0.0064321099780499935, -0.004174088593572378, 0.8580607771873474, -0.005317951086908579, 0.03256944939494133, 0.031246233731508255, 0.007844635285437107, -0.027109816670417786, -0.019985457882285118, -0.012955032289028168, -0.013410801067948341, 0.022800860926508904, -0.048887159675359726, 0.041882582008838654, 0.018329259008169174, 0.0253696758300066, 0.017477568238973618, 0.0004130736051592976, -0.010379635728895664, 0.00912599079310894, 0.03007594123482704, 0.05390612408518791, -0.0036933054216206074, 0.026931948959827423, 0.03329089656472206, 0.0004938176716677845, -0.009240636602044106, 0.03440892696380615, -0.17684997618198395, 0.017626378685235977, -7.561872139551249e-33, 0.03958257660269737, -0.02323378250002861, -0.023449204862117767, 0.024791112169623375, 0.031229589134454727, 0.010729937814176083, 0.04237579554319382, 0.06074580177664757, -0.017557011917233467, -0.03765404224395752, -0.02393469400703907, -0.018045341596007347, 0.007168673910200596, -0.029729174450039864, 0.05102648586034775, 0.014881711453199387, -0.0226946659386158, 0.028108641505241394, -0.0011856378987431526, -0.006379592698067427, 0.05703991651535034, 0.020831523463129997, 0.022468281909823418, 0.011246034875512123, -0.009701767936348915, 0.04071519896388054, -0.01708182319998741, 0.04148368909955025, -0.007781891617923975, -0.042609985917806625, -0.005751593969762325, 0.01694127731025219, 0.003125646384432912, 0.03232678771018982, 0.01917172037065029, -0.024241041392087936, -0.05290858447551727, -0.0005670079262927175, -0.03674021363258362, -0.0025309063494205475, -0.04982954263687134, -0.005006947088986635, -0.021663134917616844, -0.028453592211008072, -0.019661812111735344, -0.01974429190158844, 0.01281929574906826, 0.025073416531085968, 0.0035530284512788057, 0.026507705450057983, -0.007677908521145582, 0.013051653280854225, 0.005390708800405264, -0.002608005190268159, -0.020824439823627472, 0.007868746295571327, -0.025492167100310326, 0.021739274263381958, 0.02044224925339222, 0.01756814867258072, 0.03555623069405556, 0.004146728664636612, -0.01779549941420555, -0.002821392845362425, -0.011543028056621552, 0.0020972779020667076, 0.035598624497652054, 0.022321101278066635, -0.01875191181898117, -0.026258734986186028, -0.012224329635500908, 0.005772012285888195, -0.045398369431495667, 0.017659388482570648, 0.011431805789470673, -0.012484939768910408, 0.00681720394641161, 0.008974103257060051, 0.03963922709226608, -0.00474961893633008, 0.017738351598381996, -0.004380950704216957, 0.002629996743053198, -0.02747671864926815, -0.032866038382053375, -0.01816631108522415, 0.0037222420796751976, 0.0013856363948434591, -0.008713486604392529, 0.025514574721455574, 0.017786510288715363, -0.010029712691903114, -0.019096704199910164, -0.017235012724995613, -0.016266321763396263, 7.180062758196539e-33, -0.0024863979779183865, -0.02681702747941017, -0.015055155381560326, 0.020039953291416168, 0.01031922735273838, -0.011482666246592999, 0.021181900054216385, 0.018958719447255135, -0.02233770675957203, 0.02208576537668705, 0.003037633839994669, 0.036241915076971054, -0.004998708143830299, 0.03227733448147774, 0.030887041240930557, -0.005341243930160999, -0.004136926028877497, -0.03637528419494629, 0.0251651369035244, -0.0038069109432399273, 0.015021228231489658, 0.03396879881620407, -0.013855190016329288, 0.005737309344112873, 0.019168587401509285, 0.011687474325299263, -0.005711492151021957, 0.01569228433072567, 0.005883048288524151, 0.01664556935429573, 0.02198663167655468, 0.04007355868816376, 0.0277066882699728, -0.008115160278975964, -0.03130079433321953, 0.035866256803274155, 0.009893379174172878, -0.003189101815223694, 0.041396431624889374, -0.000874596880748868, -0.008574741892516613, -0.0038839560002088547, 0.023997168987989426, 0.02978423982858658, 0.033625196665525436, 0.022830473259091377, -0.017186908051371574, -0.004068841226398945, -0.012460635975003242, 0.0343693308532238, -0.0018349485471844673, 0.02546173334121704, -0.005810038652271032, -0.009540099650621414, -0.011207034811377525, -0.024669701233506203, -0.03319750353693962, -0.02066359668970108, -0.03934529796242714, -0.02128622680902481, -0.0088149169459939, -0.004602340050041676, -0.02577066235244274, 0.03533559292554855, -0.03025161847472191, 0.003065835451707244, -0.051749296486377716, 0.006216602865606546, 0.0018247844418510795, -0.0015652327565476298, -0.007819158025085926, -0.006818968802690506, -0.0312188733369112, 0.016140170395374298, 0.014549486339092255, -0.03698150813579559, -0.008277826011180878, 0.03151877224445343, -0.009905428625643253, 0.01704343408346176, -0.003244992345571518, 0.017017120495438576, 0.019539693370461464, -0.020595455542206764, -0.02939736098051071, 0.005186940543353558, -0.007124234456568956, 0.018487239256501198, -0.016038386151194572, -0.0023550833575427532, -0.04431727156043053, 0.007055462803691626, -0.027149373665452003, 0.021074917167425156, 0.02553384192287922, -1.2981218766583424e-8, -0.005234625656157732, 0.018944663926959038, -0.008875119499862194, 0.01950058899819851, 0.04521118476986885, 0.02123907394707203, -0.014003527350723743, 0.014628392644226551, -0.03612152114510536, -0.0014706897782161832, 0.010333983227610588, -0.01182270236313343, -0.004668012261390686, 0.007404747419059277, -0.003865445265546441, -0.044561874121427536, -0.03205539658665657, -0.005549385212361813, 0.023772304877638817, -0.005238249432295561, 0.06810913234949112, 0.01351232547312975, 0.01718558929860592, 0.025196518748998642, 0.05961661785840988, -0.008993837051093578, 0.01808709278702736, -0.06433206051588058, -0.004879658110439777, 0.004180789925158024, -0.003275003982707858, -0.02260535955429077, -0.03813209757208824, 0.002067619003355503, -0.022685479372739792, -0.03545919060707092, -0.00935994740575552, 0.021325254812836647, 0.006006760522723198, 0.007245066575706005, -0.0016263691941276193, -0.0005032258341088891, -0.0342613123357296, -0.02330719865858555, -0.0032630430068820715, -0.0055184029042720795, -0.04951050132513046, 0.013562703505158424, 0.0232130978256464, -0.022639205679297447, -0.021975670009851456, -0.02542494796216488, 0.00922034028917551, 0.04452625289559364, 0.036773521453142166, -0.015052194707095623, 0.014193546026945114, 0.008977286517620087, -0.02644374407827854, 0.021500317379832268, 0.0035166533198207617, 0.03235412389039993, -0.00732584111392498, -0.03021891415119171 ]
coding-wrappingnot-wrapping-3rd-party-libraries-and-dsls
https://markhneedham.com/blog/2010/02/02/coding-wrappingnot-wrapping-3rd-party-libraries-and-dsls
false
2010-02-20 12:17:16
C#: A lack of covariance with generics example
[ "c", "linq" ]
[ ".NET" ]
One of the things I find most confusing when reading about programming languages is the idea of http://codebetter.com/blogs/raymond.lewallen/archive/2006/12/28/Covariance-and-Contravariance.aspx[covariance and contravariance] and while I've previously read that covariance is not possible when using generics in C# I recently came across an example where I saw that this was true. I came across this problem while looking at how to refactor some code which has been written in an imperative style: [source,csharp] ---- public interface IFoo { string Bar { get; set; } } public class Foo : IFoo { public string Bar { get; set; } } ---- [source,csharp] ---- private IEnumerable<IFoo> GetMeFoos() { var someStrings = new[] { "mike", "mark" }; var someFoos = new List<IFoo>(); foreach (var s in someStrings) { someFoos.Add(new Foo { Bar = s }); } return someFoos; } ---- I changed the code to read like so: [source,csharp] ---- private IEnumerable<IFoo> GetMeFoos() { var someStrings = new[] { "mike", "mark" }; return someStrings.Select(s => new Foo { Bar = s }); } ---- Which fails with the following compilation error: [source,text] ---- Error 1 Cannot implicitly convert type 'System.Collections.Generic.IEnumerable<Test.Foo>' to 'System.Collections.Generic.IEnumerable<Test.IFoo>'. An explicit conversion exists (are you missing a cast?) ---- I thought the compiler would infer that I actually wanted a collection of 'IFoo' given that I was returning from the method directly after the call to Select but it doesn't. As I understand it the reason that we can't downcast an IEnumerable of 'Foo' to an IEnumberable of 'IFoo' is that we would run into problems if we worked of the assumption that our original collection only contained Foos in it later on in our program. For example it would be possible to add any item which implemented the 'IFoo' interface into the collection even if it wasn't a 'Foo': [source,csharp] ---- // this code won't compile List<Foo> foos = new List<Foo>(); // add some foos List<IFoo> ifoos = foos; foos.Add(new SomeOtherTypeThatImplementsIFoo()); ---- It's not possible to convert 'SomeOtherTypeThatImplementsIFoo' to 'Foo' so we would run ourself into problems. http://blogs.msdn.com/rmbyers/archive/2005/02/16/375079.aspx[Rick Byers has a post from a few years ago where he explains how this works in more detail] and also points out that covariance of generics is actually supported by the CLR, just not by C#. In the case I described we can get around the problem by casting 'Foo' to 'IFoo' inside the 'Select': [source,csharp] ---- private IEnumerable<IFoo> GetMeFoos() { var someStrings = new[] { "mike", "mark" }; return someStrings.Select(s => (IFoo) new Foo { Bar = s }); } ----
null
null
[ 0.011945509351789951, -0.03371604532003403, -0.0230642631649971, 0.004499158822000027, 0.06913084536790848, 0.007605080492794514, 0.0401824489235878, 0.015315971337258816, -0.012490482069551945, -0.014758706092834473, 0.0050820535980165005, 0.028555551543831825, -0.08253365010023117, 0.025149298831820488, -0.042794354259967804, 0.06700445711612701, 0.08969830721616745, -0.03789784386754036, 0.008227926678955555, 0.007323405705392361, -0.010242142714560032, 0.06898273527622223, -0.021361948922276497, 0.03311787545681, 0.026565810665488243, 0.049401745200157166, 0.008719108067452908, -0.021968256682157516, -0.05176785960793495, -0.002140815369784832, 0.05030016228556633, 0.04977190122008324, 0.00342333666048944, -0.003395837265998125, -0.001958408858627081, -0.0196787491440773, 0.019778981804847717, 0.0015385005390271544, -0.009408564306795597, 0.02636723220348358, -0.05064436420798302, 0.014944043941795826, -0.002778133377432823, 0.015573243610560894, -0.042481161653995514, -0.0023189818020910025, -0.03216133266687393, -0.007606542203575373, -0.054017145186662674, -0.026751315221190453, -0.058760542422533035, 0.0193887110799551, -0.0600367896258831, 0.017833231016993523, -0.0036707313265651464, 0.05583161488175392, 0.004503415431827307, -0.08554906398057938, 0.000004569313659885665, -0.07563772797584534, -0.009507513605058193, -0.011111021973192692, -0.005482832435518503, 0.025124769657850266, 0.018649524077773094, 0.011200611479580402, -0.01792614534497261, 0.04766732081770897, -0.059198152273893356, -0.011359220370650291, -0.020096169784665108, 0.01405260432511568, -0.007071145810186863, 0.010703161358833313, 0.01604040339589119, -0.036979787051677704, -0.03026394546031952, 0.05815880745649338, 0.03970157355070114, 0.04253499209880829, -0.0020440719090402126, -0.007778916973620653, 0.04938875883817673, -0.014164681546390057, 0.057994503527879715, -0.030923107638955116, -0.02239358238875866, 0.006512643303722143, -0.022725284099578857, 0.04890340194106102, 0.03562677651643753, -0.026293011382222176, -0.02938653714954853, 0.02711322344839573, 0.0013590642483904958, -0.003446238348260522, -0.00361103774048388, -0.021509716287255287, 0.000910945818759501, -0.009297458454966545, -0.026125704869627953, -0.010636525228619576, 0.029028739780187607, -0.013057109899818897, -0.0769224539399147, -0.019381025806069374, -0.02195328287780285, -0.011280802078545094, 0.00777991209179163, 0.013810371980071068, -0.07211869955062866, 0.03154481574892998, -0.03527475893497467, -0.011619113385677338, -0.07652254402637482, 0.028447380289435387, 0.01482105627655983, 0.025516163557767868, -0.001980225322768092, 0.029889358207583427, 0.04196998476982117, 0.027209196239709854, -0.028823068365454674, 0.07282769680023193, 0.004205519799143076, 0.059150345623493195, -0.028523432090878487, 0.06890150904655457, 0.002310760784894228, -0.06601762771606445, 0.008008236065506935, 0.038430921733379364, -0.03929111361503601, 0.00926944799721241, -0.0023251113016158342, -0.00791524164378643, -0.037879329174757004, 0.014115126803517342, 0.03318638354539871, 0.038186125457286835, -0.032810308039188385, -0.02455952763557434, 0.014613093808293343, -0.01146163884550333, 0.009704037569463253, 0.013357890769839287, -0.033364083617925644, -0.00623802887275815, -0.008484897203743458, 0.05999636650085449, 0.009096558205783367, 0.06963466107845306, 0.060821838676929474, -0.054063618183135986, 0.0088582718744874, 0.04442090541124344, -0.011221136897802353, 0.028787722811102867, 0.026569964364171028, 0.015855005010962486, 0.06574106216430664, 0.03154658526182175, 0.0006566451047547162, 0.029018988832831383, 0.0297545213252306, -0.013576727360486984, -0.024800226092338562, 0.054896123707294464, -0.027291852980852127, -0.033066023141145706, -0.06689199805259705, -0.04367544874548912, 0.024471571668982506, -0.062310293316841125, 0.0024599654134362936, 0.00859715323895216, 0.055520571768283844, 0.008348028175532818, 0.07246886193752289, -0.02419673092663288, -0.07003235071897507, -0.000646316388156265, -0.0004072283918503672, -0.012368726544082165, 0.02124699205160141, 0.02252344973385334, 0.05695386603474617, 0.030658718198537827, 0.006766125559806824, 0.024856140837073326, -0.05690934136509895, -0.06805059313774109, -0.04610436409711838, -0.021779246628284454, 0.07618758082389832, -0.024917960166931152, -0.03079092875123024, 0.09051292389631271, 0.018662968650460243, 0.03518513962626457, 0.029807869344949722, -0.04243147373199463, 0.024099810048937798, -0.005926010198891163, -0.021332211792469025, 0.05095941200852394, 0.03194982185959816, 0.027303583920001984, -0.04547075927257538, -0.008906178176403046, -0.006038411986082792, -0.0010717989644035697, 0.033121947199106216, -0.029178928583860397, 0.03440839797258377, 0.02532181888818741, -0.004659596830606461, -0.030676890164613724, 0.03938445448875427, -0.05887378752231598, 0.026246147230267525, 0.010556313209235668, 0.00953499786555767, -0.018200017511844635, -0.00010262834985041991, 0.12968045473098755, 0.05488516762852669, -0.03758174180984497, -0.0635717511177063, 0.014129716902971268, 0.024598591029644012, -0.026719404384493828, -0.003854889888316393, -0.0426369234919548, 0.027222832664847374, 0.00717546371743083, -0.033816397190093994, -0.001056695356965065, -0.010430380702018738, -0.029880551621317863, 0.031106358394026756, 0.08789554983377457, -0.03934489190578461, 0.04582652449607849, 0.008347210474312305, -0.023856541141867638, -0.0055023725144565105, -0.03147559240460396, -0.05603015422821045, 0.017164088785648346, 0.005803323350846767, -0.012899603694677353, 0.07068333774805069, -0.00933113880455494, -0.022146189585328102, 0.007738539483398199, -0.03593533858656883, -0.003394908271729946, 0.035095348954200745, 0.062435660511255264, 0.007571669295430183, 0.05800614506006241, -0.017163416370749474, 0.00930456817150116, 0.004067438188940287, -0.05067756026983261, -0.0016698393737897277, 0.01266357209533453, 0.03304664418101311, 0.02508947066962719, 0.010072505101561546, 0.026932526379823685, 0.034484315663576126, 0.016127604991197586, -0.06501956284046173, -0.02918132022023201, 0.022732680663466454, -0.01139682438224554, -0.0483953058719635, -0.046290501952171326, -0.05420951172709465, 0.021370138972997665, -0.04191349819302559, -0.06937629729509354, -0.014154522679746151, -0.059250954538583755, 0.033240899443626404, -0.07854455709457397, -0.07098647952079773, -0.01765718124806881, 0.029427427798509598, 0.025139089673757553, -0.009269939735531807, 0.010706441476941109, 0.06373685598373413, 0.008028796873986721, 0.007615207694470882, -0.0020897313952445984, 0.019473427906632423, 0.001067896606400609, -0.014056363143026829, 0.0407424196600914, 0.05677136406302452, 0.026763346046209335, -0.018586980178952217, -0.07705292850732803, 0.03725055977702141, 0.007069462910294533, -0.24890153110027313, 0.02390165813267231, -0.015088250860571861, -0.05012216418981552, 0.03241727873682976, 0.00197959435172379, 0.018460847437381744, -0.06096094101667404, -0.010684661567211151, 0.06280152499675751, -0.004030970856547356, -0.02364867366850376, -0.039449095726013184, 0.05079881474375725, -0.004296318162232637, -0.012453846633434296, -0.004005469847470522, -0.02774631232023239, 0.011607741005718708, 0.05860615894198418, -0.003245034720748663, -0.06732232868671417, 0.0043830652721226215, 0.04539833962917328, 0.01206384226679802, 0.054874490946531296, -0.081073097884655, 0.0625196099281311, -0.025657983496785164, 0.009256511926651001, -0.025970453396439552, 0.03519576042890549, 0.0501568578183651, -0.031122630462050438, -0.03195907548069954, -0.006192149128764868, 0.0013164117699488997, 0.03637651354074478, -0.014547770842909813, 0.019280103966593742, -0.04577106237411499, -0.06298127770423889, -0.009407869540154934, -0.014700970612466335, 0.07919541746377945, -0.007434249855577946, -0.059374090284109116, -0.01081408653408289, -0.05920008569955826, 0.08513028919696808, -0.05212307348847389, -0.054452914744615555, 0.0201851949095726, 0.06827134639024734, -0.009376619942486286, -0.030763335525989532, 0.022308995947241783, -0.010656652972102165, -0.034855082631111145, 0.003941772505640984, -0.0015182234346866608, -0.03695254772901535, -0.016714440658688545, -0.05682695284485817, -0.008252637460827827, -0.05694102123379707, -0.05320321395993233, -0.01382438000291586, 0.057321906089782715, 0.03907446935772896, -0.0036606716457754374, 0.003733445657417178, -0.008201860822737217, -0.1086781769990921, 0.00006416863470803946, -0.041627831757068634, -0.016841232776641846, -0.05825664848089218, 0.00027360854437574744, 0.03990641236305237, -0.031632814556360245, -0.051338259130716324, 0.025570198893547058, 0.028905916959047318, 0.014519166201353073, 0.011391539126634598, 0.02401200868189335, -0.021519023925065994, -0.029314525425434113, 0.008753866888582706, 0.06282361596822739, 0.00810352060943842, 0.005062607116997242, -0.024470744654536247, 0.00719899358227849, 0.030827797949314117, 0.04060574993491173, 0.007718016859143972, 0.049426257610321045, 0.0292802844196558, 0.054333850741386414, -0.059336524456739426, 0.024048632010817528, -0.04435081034898758, 0.006656165234744549, -0.029291357845067978, -0.06188523396849632, 0.03553537651896477, 0.026057811453938484, -0.011693652719259262, -0.00810460839420557, -0.02860642410814762, -0.005691825412213802, -0.051359374076128006, -0.03768645599484444, -0.00782916508615017, 0.0069998688995838165, 0.03330409154295921, -0.002900854218751192, -0.03408810496330261, -0.03564757481217384, 0.019928110763430595, 0.007109197787940502, -0.004653495270758867, -0.09136337786912918, -0.04856524616479874, -0.011303960345685482, 0.007751426659524441, -0.024257512763142586, 0.034814395010471344, -0.03181830048561096, 0.03161086142063141, 0.012363286688923836, -0.04430549219250679, 0.006968537345528603, -0.001477296114899218, 0.011976581998169422, -0.02809581533074379, -0.03530874475836754, -0.015141765587031841, 0.014633593149483204, -0.03216756507754326, 0.010512304492294788, 0.03279237449169159, 0.04459058865904808, 0.007266702130436897, 0.024364551529288292, 0.012850955128669739, -0.010929930955171585, 0.03453335538506508, 0.0314064584672451, -0.08018963783979416, 0.029567893594503403, -0.01683966815471649, -0.04311973229050636, -0.009787025861442089, 0.02279050275683403, -0.01868729665875435, -0.007257742807269096, -0.05048924684524536, 0.04947635158896446, -0.03135287016630173, -0.03380860760807991, -0.052425187081098557, 0.008118370547890663, 0.04461918771266937, -0.04141876846551895, 0.043404389172792435, -0.026833174750208855, 0.008579669520258904, 0.006746937986463308, -0.000004800020633410895, -0.00992951076477766, 0.04963208734989166, -0.0030116133857518435, 0.011208659037947655, -0.00721971970051527, 0.016044046729803085, 0.02572008967399597, 0.025696560740470886, 0.0365833081305027, -0.0131357591599226, 0.029568340629339218, -0.004191851709038019, 0.032791465520858765, -0.015198337845504284, -0.00041255776886828244, -0.018924705684185028, -0.007659396156668663, -0.014918982051312923, -0.05237239599227905, -0.022103969007730484, -0.02065134607255459, 0.025129102170467377, -0.04231242090463638, -0.040035612881183624, 0.019580967724323273, -0.02167714200913906, 0.036851294338703156, 0.0004287551564630121, -0.0075718979351222515, 0.03322208672761917, -0.015894772484898567, -0.0005512890056706965, 0.04259515926241875, -0.04639793187379837, 0.00560217397287488, -0.00003538719465723261, -0.006746858824044466, 0.03237724304199219, 0.03491352126002312, -0.03185037150979042, -0.019399238750338554, -0.006775570102035999, -0.01142162550240755, -0.027394596487283707, -0.0433952696621418, -0.027481205761432648, 0.020660577341914177, -0.009293046779930592, -0.019251976162195206, -0.015720877796411514, 0.00584173109382391, -0.029349924996495247, 0.009578617289662361, 0.02117774821817875, -0.0435020886361599, -0.008046948350965977, 0.03810166195034981, -0.030707890167832375, 0.010779282078146935, -0.020614655688405037, 0.012053212150931358, 0.015032964758574963, -0.006619554478675127, -0.04117371141910553, -0.04032822325825691, 0.01083518285304308, -0.001407749019563198, 0.05014101788401604, -0.001538463169708848, -0.021860627457499504, -0.02798551693558693, -0.024404361844062805, -0.02399444580078125, 0.006768008228391409, -0.0009437082917429507, -0.023543326184153557, -0.0022135048639029264, 0.029254283756017685, -0.00269454438239336, 0.01683785766363144, -0.006398746278136969, -0.00872322078794241, 0.09127913415431976, -0.037625815719366074, -0.009042682126164436, -0.008945254608988762, -0.052456047385931015, 0.009291641414165497, 0.02036958560347557, 0.035070423036813736, -0.03365594148635864, 0.01267650444060564, 0.06102663651108742, 0.014341031201183796, 0.03758818283677101, 0.01266051921993494, 0.05187487229704857, -0.029566992074251175, -0.009089936502277851, -0.06597303599119186, 0.0152969378978014, 0.019725864753127098, 0.03227885439991951, -0.04168581962585449, -0.03468837961554527, -0.0067600710317492485, 0.04959414526820183, -0.06988625228404999, -0.028393344953656197, 0.006131161469966173, -0.016390616074204445, 0.004989873617887497, -0.0018823817372322083, -0.03684317693114281, 0.02159314975142479, 0.03037976287305355, -0.023599788546562195, -0.06981638818979263, -0.03809171915054321, 0.043167803436517715, 0.03526311367750168, 0.013566209003329277, -0.04147772863507271, 0.013022799044847488, 0.032241709530353546, 0.02483885921537876, 0.027566730976104736, 0.055196527391672134, -0.023041749373078346, 0.03684438765048981, 0.01968681812286377, -0.02543296478688717, -0.003400037530809641, 0.01597571186721325, 0.02466142363846302, -0.06602118164300919, -0.010529219172894955, 0.009092804975807667, -0.022985294461250305, -0.05267248675227165, 0.0764322578907013, 0.013076563365757465, -0.020316243171691895, -0.035795629024505615, 0.008385825902223587, -0.025755945593118668, -0.011585019528865814, -0.00008868304576026276, 0.0031339458655565977, -0.03447209671139717, 0.08809112757444382, 0.011590882204473019, -0.005815817043185234, 0.06386704742908478, -0.007916757836937904, 0.01644458808004856, -0.02287711389362812, 0.0582115538418293, 0.05950739234685898, 0.03378380089998245, -0.007099867332726717, 0.05356356129050255, -0.03911665081977844, -0.04856138676404953, 0.004060832317918539, -0.03141605108976364, -0.019259700551629066, -0.0186561681330204, 0.03284698352217674, 0.09018729627132416, 0.015783166512846947, 0.054011669009923935, -0.06690385937690735, -0.0011473187478259206, -0.029273584485054016, 0.04879618436098099, 0.019420398399233818, 0.04727771878242493, 0.0014189949724823236, 0.024014655500650406, 0.021422749385237694, -0.034910861402750015, 0.03794315457344055, 0.0022356717381626368, -0.014688710682094097, -0.008233979344367981, 0.019461393356323242, 0.013309720903635025, 0.016333183273673058, 0.039128344506025314, 0.0767747163772583, -0.021727239713072777, -0.007557953707873821, -0.009992565028369427, 0.013101596385240555, 0.008093032985925674, -0.01567063480615616, -0.0009219159837812185, -0.04786090552806854, -0.02435782551765442, -0.013093903660774231, -0.007449918892234564, -0.03514738380908966, -0.009471161291003227, 0.03451734781265259, -0.018990693613886833, 0.02128124050796032, -0.0006266955169849098, -0.010428615845739841, -0.03615444153547287, -0.058099545538425446, -0.031848061829805374, -0.019401585683226585, -0.05926557630300522, -0.005556202027946711, 0.03994472697377205, -0.010695720091462135, -0.010963593609631062, -0.028304094448685646, 0.004502773750573397, -0.03315430507063866, 0.06593900173902512, -0.004085506312549114, -0.04722345992922783, 0.05164966359734535, -0.005825893487781286, 0.03519938886165619, 0.04677418991923332, 0.02180195413529873, -0.033459294587373734, 0.0025010243989527225, -0.04021808132529259, 0.0015869989292696118, 0.04844418540596962, 0.01783902943134308, 0.02220773510634899, -0.07843522727489471, -0.011281901970505714, -0.011146224103868008, 0.002216141438111663, -0.07377653568983078, -0.007027293089777231, 0.01732785627245903, -0.027206799015402794, 0.026904109865427017, -0.025057801976799965, -0.025407100096344948, -0.006860166788101196, -0.020234838128089905, 0.01878896728157997, 0.021563399583101273, 0.047199517488479614, -0.0332641638815403, 0.07260680198669434, 0.04395793378353119, -0.013607908971607685, -0.030432313680648804, 0.005320279859006405, -0.01257247943431139, 0.015463089570403099, -0.040272630751132965, -0.027934640645980835, -0.032935235649347305, -0.03551710769534111, 0.007937122136354446, 0.014681046828627586, 0.0023991018533706665, -0.01339048519730568, 0.012851813808083534, 0.051749780774116516, -0.08907058835029602, 0.05587729439139366, -0.019224729388952255, 0.04332993924617767, -0.012516791932284832, -0.027568727731704712, 0.027952339500188828, 0.017790507525205612, 0.0017972587374970317, 0.02194926142692566, 0.020748544484376907, -0.03996388614177704, -0.01952175423502922, -0.028625914826989174, 0.009712514467537403, 0.046533189713954926, -0.014046975411474705, 0.054234035313129425 ]
[ -0.1186407133936882, -0.015408208593726158, -0.05346947908401489, -0.008030498400330544, -0.012300216592848301, -0.061658360064029694, 0.04866984114050865, 0.001854026224464178, -0.024292221292853355, -0.017854278907179832, 0.010858544148504734, 0.012084336951375008, 0.01306167058646679, 0.006720233708620071, 0.022765597328543663, 0.02473415993154049, -0.03171722963452339, 0.0009087524376809597, -0.051401540637016296, 0.06405393779277802, 0.06554937362670898, 0.00351224304176867, -0.031039388850331306, -0.002869043732061982, 0.03921006992459297, 0.044185981154441833, 0.0506344698369503, -0.044970255345106125, 0.0010533101158216596, -0.21096540987491608, -0.03662686049938202, -0.03881998360157013, -0.006543718744069338, -0.00853685662150383, -0.0027727754786610603, -0.002014482393860817, -0.006802760064601898, 0.027435021474957466, -0.0070078507997095585, 0.07119463384151459, -0.018508825451135635, 0.05850321799516678, -0.03695114701986313, 0.0002103024162352085, -0.0043983012437820435, -0.027880771085619926, -0.03825286403298378, 0.020332030951976776, -0.04019525274634361, -0.013223526068031788, -0.049909185618162155, -0.01796579360961914, 0.00009367216262035072, 0.024275612086057663, -0.00003483152249827981, 0.06788873672485352, 0.039504509419202805, 0.05862611532211304, 0.02844231016933918, -0.009706143289804459, -0.005011424887925386, -0.01437555905431509, -0.1307612657546997, 0.11252732574939728, -0.01830178312957287, 0.07004957646131516, 0.051637470722198486, -0.023383913561701775, -0.0010240102419629693, 0.026552047580480576, 0.029205741360783577, 0.011373363435268402, -0.017919721081852913, 0.02931620180606842, 0.03976300731301308, -0.02034788951277733, -0.02465236745774746, -0.0030784893315285444, 0.0741998478770256, -0.008864963427186012, -0.013919469900429249, -0.016525914892554283, 0.06035793200135231, 0.0019847056828439236, -0.017123321071267128, -0.0009835879318416119, 0.003126695053651929, 0.010121027939021587, 0.057378996163606644, -0.001353394822217524, 0.018576841801404953, -0.038597941398620605, 0.048086754977703094, 0.021298788487911224, -0.03483249992132187, 0.011707395315170288, -0.011970971710979939, -0.013281185179948807, 0.008846364915370941, 0.3919827938079834, -0.013875002972781658, -0.03163618966937065, 0.013744291849434376, 0.0399773083627224, -0.029616201296448708, 0.003517427248880267, -0.0006631264113821089, -0.0376703180372715, 0.008944932371377945, -0.034191157668828964, -0.01282900758087635, 0.014910804107785225, 0.004084974527359009, -0.05549924820661545, -0.05680073797702789, -0.009417460300028324, 0.04316061735153198, -0.006479818373918533, 0.024088090285658836, -0.00662379851564765, 0.019345633685588837, -0.0011706355726346374, 0.01430424302816391, 0.03843135014176369, 0.035148654133081436, -0.01345006376504898, -0.012748169712722301, 0.072487972676754, 0.07966767996549606, 0.012676569633185863, 0.06401289999485016, -0.039271507412195206, -0.07408801466226578, -0.006603048648685217, 0.04388158768415451, 0.013789739459753036, 0.050701212137937546, -0.04447263851761818, 0.016847554594278336, -0.0031307279132306576, 0.018142253160476685, -0.051306918263435364, 0.048047251999378204, -0.0325639471411705, -0.035739000886678696, 0.1571483314037323, -0.002502534771338105, -0.00966306496411562, -0.04797501489520073, 0.006136886775493622, -0.02703435905277729, 0.019553713500499725, -0.035341255366802216, -0.025397131219506264, -0.027233514934778214, 0.04177634418010712, 0.04120770841836929, 0.004789062310010195, -0.035025861114263535, -0.04535714164376259, -0.036468397825956345, 0.03578650578856468, -0.04295673221349716, 0.0544939823448658, -0.00779310567304492, -0.05092799291014671, -0.0422421433031559, 0.042662426829338074, -0.00966999214142561, -0.05781438201665878, 0.006337358616292477, 0.0002563053276389837, -0.05754486471414566, -0.0072692446410655975, 0.050258856266736984, 0.0261045154184103, -0.061482254415750504, -0.033247143030166626, 0.032830860465765, 0.03844301030039787, 0.007445207796990871, 0.01728496514260769, -0.009993241168558598, 0.04046597704291344, 0.015811827033758163, -0.0281774140894413, -0.04064464569091797, -0.04122994840145111, -0.01307115238159895, -0.01141210924834013, 0.021154113113880157, -0.05267542228102684, -0.06251010298728943, 0.041925281286239624, -0.015762856230139732, 0.020139897242188454, 0.035791296511888504, 0.009497225284576416, 0.033137597143650055, -0.011593307368457317, 0.04660787060856819, 0.051399651914834976, 0.020953692495822906, 0.037448152899742126, -0.050257034599781036, -0.021290281787514687, 0.018822332844138145, -0.06064488738775253, 0.044598538428545, 0.01125861145555973, -0.03199796751141548, -0.009575274772942066, -0.02654190920293331, 0.07431765645742416, -0.031336262822151184, -0.02514968253672123, -0.00984012708067894, 0.05022842809557915, 0.020317748188972473, 0.01152353547513485, -0.07456868886947632, -0.03908165544271469, -0.014324819669127464, -0.34508463740348816, -0.029806403443217278, -0.004390547052025795, -0.021108094602823257, -0.003241547616198659, -0.0667208880186081, -0.029919559136033058, -0.004298269748687744, -0.05150306224822998, 0.01560323964804411, 0.052585456520318985, 0.04973474517464638, -0.019224463030695915, -0.05384925752878189, -0.0034456520806998014, 0.018551941961050034, -0.020556339994072914, -0.07492134720087051, -0.023818308487534523, 0.008489365689456463, -0.023754335939884186, 0.03989196941256523, -0.01740703172981739, -0.06672146171331406, 0.012660474516451359, -0.03709861636161804, 0.06423573195934296, -0.04423559457063675, 0.1186273917555809, -0.007785500958561897, 0.05373283103108406, -0.013261751271784306, 0.03867306187748909, -0.03789884224534035, -0.012163487263023853, -0.04064003750681877, -0.01862695813179016, 0.023709120228886604, 0.05393458157777786, -0.009476068429648876, 0.005440777167677879, -0.006070163566619158, -0.028924714773893356, -0.03366941213607788, -0.013580058701336384, -0.02229318395256996, -0.044455837458372116, -0.006136169657111168, 0.008017215877771378, 0.09564191848039627, -0.010887546464800835, 0.019939301535487175, 0.015139331109821796, 0.03935837000608444, -0.012656831182539463, 0.008771099150180817, -0.05888330936431885, -0.022721530869603157, 0.008156600408256054, -0.01952718198299408, 0.04951830953359604, 0.052127763628959656, 0.030242523178458214, -0.009322154335677624, -0.022995460778474808, -0.006263354327529669, -0.0013505327515304089, -0.038754336535930634, 0.010594522580504417, -0.030722593888640404, -0.04293324425816536, 0.10091477632522583, -0.0272419061511755, -0.0016133578028529882, 0.00437766732648015, 0.05660759285092354, -0.019158784300088882, 0.005867240484803915, -0.012102709151804447, -0.004137200769037008, -0.015393711626529694, 0.023758606985211372, 0.03699617087841034, -0.028839517384767532, 0.0030461119022220373, 0.0331006795167923, -0.06702173501253128, 0.038512177765369415, 0.03220304101705551, -0.01810067892074585, -0.010771808214485645, 0.007027007639408112, 0.0023227515630424023, -0.07960056513547897, 0.050997089594602585, -0.003163086250424385, -0.2560427784919739, -0.012603191658854485, 0.07425229996442795, 0.06387194246053696, 0.0038496905472129583, 0.02642383985221386, 0.019548291340470314, -0.12682348489761353, -0.06226048991084099, 0.019573546946048737, 0.0030116275884211063, 0.014594587497413158, 0.04927777871489525, 0.009670780971646309, 0.04115898534655571, 0.0011709395330399275, 0.05744612589478493, -0.015316241420805454, 0.03690453991293907, -0.023403914645314217, 0.05108192563056946, -0.0013323271414265037, 0.19897110760211945, -0.01084419246762991, 0.031676873564720154, 0.0018371518235653639, 0.04012548178434372, 0.025288181379437447, 0.04112205654382706, 0.040508389472961426, 0.0006196835893206298, -0.02372531034052372, 0.0983375832438469, -0.011099804192781448, 0.018232110887765884, -0.09369675815105438, -0.01509005855768919, 0.029535675421357155, 0.018660541623830795, -0.03013930842280388, -0.05976347252726555, 0.025920098647475243, -0.04071749746799469, -0.009691393002867699, 0.12311803549528122, 0.02670847252011299, -0.038249846547842026, -0.059272922575473785, -0.018589170649647713, 0.007417178247123957, -0.05479016900062561, 0.0160800963640213, 0.06409977376461029, -0.031072495505213737, 0.014571630395948887, -0.012791555374860764, -0.03898540139198303, -0.04951499402523041, -0.04508258029818535, 0.024346940219402313, 0.04241274669766426, -0.027329880744218826, 0.0379239097237587, 0.04673703759908676, 0.02464570477604866 ]
[ -0.015478930436074734, 0.013896321877837181, -0.007116520311683416, 0.03380803391337395, -0.016464093700051308, 0.03443167731165886, 0.03683105856180191, 0.00805298425257206, -0.02294827625155449, 0.013273793272674084, -0.03085215948522091, -0.026234213262796402, -0.0008290880941785872, -0.009452451020479202, 0.016401588916778564, 0.00504020182415843, 0.04155822843313217, -0.030902203172445297, 0.042903605848550797, 0.007645078469067812, -0.018149076029658318, 0.04197847098112106, 0.008894565515220165, 0.0026419158093631268, -0.014941699802875519, 0.005081355106085539, 0.00014548083709087223, -0.024254782125353813, 0.031532179564237595, -0.14757725596427917, -0.0640159398317337, -0.02997293509542942, -0.03887474909424782, 0.02802560292184353, -0.016087070107460022, -0.010162943042814732, 0.021760759875178337, -0.006270723417401314, 0.012871523387730122, 0.020228035748004913, -0.025809770449995995, 0.012703397311270237, -0.005768703296780586, 0.000363804487278685, 0.028159821406006813, -0.0056602261029183865, -0.02363698184490204, -0.02896365150809288, -0.022114800289273262, -0.0152047798037529, -0.010923364199697971, -0.0065366788767278194, -0.01938309334218502, -0.0014324666699394584, 0.027502302080392838, -0.025839321315288544, -0.02748173289000988, -0.02372118830680847, 0.015335925854742527, -0.0015850296476855874, 0.002451883628964424, -0.003425881965085864, -0.02152179926633835, -0.016216810792684555, 0.009003833867609501, -0.0065833888947963715, 0.009617256931960583, 0.0062744165770709515, -0.024430004879832268, -0.03510986268520355, -0.041284799575805664, 0.01181547436863184, -0.006157125346362591, 0.03003758005797863, 0.005268193781375885, -0.03017774224281311, 0.03942065313458443, -0.04352959245443344, 0.024105573073029518, -0.01354975625872612, -0.028927018865942955, 0.013948982581496239, 0.01936059258878231, -0.002319412073120475, 0.018988898023962975, -0.014580007642507553, 0.0031546761747449636, -0.003177810460329056, 0.0246671661734581, 0.00986407045274973, -0.034656401723623276, -0.007184275425970554, 0.05017070472240448, 0.058558836579322815, -0.05069940909743309, 0.02184738777577877, -0.003590173088014126, -0.026922866702079773, 0.0016661478439345956, 0.8371109366416931, -0.03306945040822029, 0.06523024290800095, 0.029769988730549812, 0.021417314186692238, -0.018644290044903755, -0.030350366607308388, 0.034157894551754, 0.007002722471952438, 0.019610334187746048, -0.06015443056821823, 0.01116151176393032, 0.02064751647412777, 0.02356300689280033, 0.00466005178168416, -0.012014024890959263, 0.017585938796401024, 0.03360769897699356, -0.007816404104232788, 0.0029399306513369083, -0.011429890058934689, 0.012029897421598434, -0.014875032007694244, 0.00871837418526411, 0.003367249621078372, 0.025245780125260353, -0.15658462047576904, 0.03660235181450844, -8.692280404547747e-33, 0.041519731283187866, -0.012655454687774181, 0.010944007895886898, 0.01898775063455105, 0.018539318814873695, 0.01186998002231121, 0.022010687738656998, 0.00563436932861805, 0.009291067719459534, -0.0581817626953125, 0.03847341611981392, -0.03038191609084606, -0.008807828649878502, -0.0025394849944859743, 0.07396350800991058, -0.013477640226483345, 0.0070746298879384995, 0.05181676894426346, 0.01970626413822174, -0.004745804239064455, 0.023227356374263763, 0.054597072303295135, 0.02797655202448368, -0.003939771093428135, -0.0330960676074028, 0.045948099344968796, -0.014062500558793545, 0.0015217250911518931, -0.03505539149045944, -0.040413275361061096, 0.016245286911725998, 0.008356193080544472, -0.0023973495699465275, 0.008951681666076183, 0.014853270724415779, -0.044657766819000244, -0.008177587762475014, 0.0034848693758249283, 0.011704440228641033, -0.04012076556682587, -0.016947321593761444, 0.01904045045375824, -0.010613901540637016, 0.011532527394592762, -0.030029423534870148, -0.06113439053297043, 0.0057963537983596325, 0.02022569067776203, 0.01822691410779953, 0.017578579485416412, 0.009845294989645481, 0.05694448947906494, -0.020205074921250343, 0.021167853847146034, -0.007960143499076366, 0.0522201769053936, -0.009537815116345882, 0.0011511016637086868, 0.027903994545340538, -0.008971129544079304, 0.014856544323265553, -0.002443526638671756, 0.008770940825343132, 0.005397448781877756, 0.005612432491034269, -0.031216861680150032, 0.02632523886859417, -0.029582029208540916, 0.026651553809642792, -0.005584739148616791, -0.04273651912808418, -0.004345011431723833, -0.038805052638053894, 0.002831332851201296, 0.0004694342496804893, -0.0005403076647780836, -0.016267305240035057, -0.010490138083696365, 0.005965143442153931, 0.003163454122841358, 0.009771846234798431, 0.004667134489864111, 0.021365061402320862, -0.021654080599546432, 0.027370570227503777, -0.009212244302034378, 0.010761810466647148, -0.014752876944839954, 0.05525702238082886, -0.01791537180542946, 0.040794726461172104, 0.040943220257759094, -0.015057469718158245, -0.05171627923846245, -0.020402487367391586, 8.446660125259461e-33, 0.018794184550642967, 0.0004803785413969308, -0.04085131362080574, 0.023658156394958496, -0.03324001282453537, -0.026143280789256096, 0.019650552421808243, 0.005398688372224569, -0.04658723622560501, 0.027048684656620026, 0.01191628910601139, 0.03643804043531418, -0.028501760214567184, 0.02366427518427372, 0.06710196286439896, -0.02869623526930809, -0.0012812494533136487, 0.002325870329514146, 0.03359520807862282, -0.023909416049718857, 0.030749943107366562, 0.0062024458311498165, 0.008644957095384598, -0.02129569835960865, -0.007287243381142616, 0.06042691692709923, -0.06296944618225098, -0.024884052574634552, -0.010834858752787113, 0.0038675805553793907, -0.007719155866652727, 0.005494408775120974, 0.00862489640712738, -0.028602706268429756, -0.027810197323560715, -0.004927987698465586, 0.010080255568027496, 0.0014831923181191087, 0.03960249200463295, 0.011666594073176384, 0.017814243212342262, -0.02059364691376686, 0.00022025321959517896, -0.025208260864019394, 0.017162909731268883, -0.007037189323455095, -0.010195640847086906, 0.0014693263219669461, 0.02941872738301754, 0.043170828372240067, 0.029132654890418053, 0.019990945234894753, 0.003870813176035881, 0.0005938728572800756, 0.005705126561224461, -0.006540204398334026, -0.025662800297141075, -0.04062029346823692, 0.010387321934103966, 0.025526786223053932, -0.017603060230612755, 0.016595864668488503, -0.011973822489380836, -0.011359353549778461, 0.003971824422478676, 0.006118376273661852, -0.05821387842297554, -0.054784875363111496, -0.009886547923088074, -0.05772481858730316, -0.02207942306995392, 0.0029006304685026407, -0.019813407212495804, -0.0042879944667220116, -0.024145061150193214, -0.04488278180360794, 0.00539371045306325, -0.0038747016806155443, 0.020727498456835747, -0.0012719111982733011, 0.0021837896201759577, -0.025032777339220047, 0.06341944634914398, -0.022351255640387535, -0.006531500723212957, 0.03041284717619419, -0.017007872462272644, -0.02109275944530964, 0.021629832684993744, -0.012164837680757046, -0.005747202783823013, -0.03020537458360195, 0.025516612455248833, -0.027565903961658478, 0.015524053946137428, -1.3557374778372377e-8, -0.08859241008758545, 0.024955345317721367, -0.02286401018500328, 0.015738241374492645, 0.04135729372501373, 0.02235039509832859, -0.06756771355867386, -0.05535892769694328, 0.029866373166441917, 0.0018009530613198876, 0.005553141701966524, -0.015268543735146523, 0.024354752153158188, 0.024771207943558693, 0.03360264003276825, -0.046232011169195175, -0.023707693442702293, 0.0034341977443546057, 0.001705001574009657, 0.023088084533810616, 0.0005392760504037142, 0.01128433644771576, -0.0067968121729791164, 0.002660593716427684, 0.02042924053966999, 0.002347384812310338, 0.02762635610997677, -0.06623785197734833, 0.012681369669735432, 0.03323998674750328, -0.003491127397865057, -0.004782175179570913, -0.03378259763121605, -0.0004497696063481271, -0.035488974303007126, -0.009284804575145245, 0.0029149455949664116, 0.013423123396933079, 0.01276883203536272, -0.018207157030701637, 0.014421574771404266, -0.027553774416446686, 0.0032419119961559772, 0.005298887379467487, 0.009947001002728939, -0.010673027485609055, -0.008099974133074284, -0.012296823784708977, 0.01404622197151184, -0.008811220526695251, 0.013266858644783497, 0.0014917069347575307, 0.04388323798775673, 0.005600439850240946, 0.004345959052443504, 0.014355460181832314, 0.021647846326231956, -0.03788824751973152, -0.016669172793626785, 0.010424826294183731, 0.042508408427238464, -0.01617170311510563, -0.03443405404686928, -0.013552277348935604 ]
c-a-lack-of-covariance-with-generics-example
https://markhneedham.com/blog/2010/02/20/c-a-lack-of-covariance-with-generics-example
false
2010-02-18 22:28:12
C#: Causing myself pain with LINQ's delayed evaluation
[ "c" ]
[ ".NET" ]
I recently came across some code was imperatively looping through a collection and then mapping each value to go to something else by using an injected dependency to do that. I thought I'd try to make use of functional collection parameters to try and simplify the code a bit but actually ended up breaking one of the tests. About a month ago I wrote about how I'd written a http://www.markhneedham.com/blog/2010/01/25/tdd-simplifying-a-test-with-a-hand-rolled-stub/[hand rolled stub to simplify a test] and this was actually where I caused myself the problem! The hand rolled stub was defined like this: [source,csharp] ---- public class AValueOnFirstCallThenAnotherValueService : IService { private int numberOfCalls = 0; public string SomeMethod(string parameter) { if(numberOfCalls == 0) { numberOfCalls++; return "aValue"; } else { numberOfCalls++; return "differentValue"; } } } ---- The test was something like this: [source,csharp] ---- [Test] public void SomeTest() { var fooOne = new Foo { Bar = "barOne" }; var fooTwo = new Foo { Bar = "barTwo" }; var aCollectionOfFoos = new List<Foo> { fooOne, fooTwo }; var service = new AValueOnFirstCallThenAnotherValueService(); var someObject = new SomeObject(service); var fooBars = someObject.Method(aCollectionOfFoos); Assert.That(fooBars[0].Other, Is.EqualTo("aValue")); // and so on } ---- The object under test looked something like this: [source,csharp] ---- public class SomeObject { private IService service; public SomeObject(IService service) { this.service = service; } public IEnumerable<FooBar> Method(List<Foo> foos) { var fooBars = new List<FooBar(); foreach(var foo in foos) { fooBars.Add(new FooBar { Bar = foo.Bar, Other = service.SomeMethod(foo.Bar) }; } // a bit further down var sortedFooBars = fooBars.OrderBy(f => f.Other); return fooBars; } } ---- I decided to try and incrementally refactor the code like so: [source,csharp] ---- public class SomeObject { ... public IEnumerable<FooBar> Method(List<Foo> foos) { var fooBars = foos.Select(f => new FooBar { Bar = f.Bar, Other = service.SomeMethod(f.Bar) }; // a bit further down var sortedFooBars = fooBars.OrderBy(f => f.Other); return fooBars; } } ---- I ran the tests after doing this and the test I described above failed - it was expecting a return value for 'Other' of 'aValue' but was actually returning 'differentValue'. I was a bit confused about what was going on until I started watching what the test was doing through the debugger and realised that on the 'OrderBy' call on line 10 the 'Select' call on line 7 was being reevaluated which meant that the value returned by 'service.SomeMethod' would be 'differentValue' since it was being called for the 3rd and 4th time and it's set up to return 'aValue' only on the 1st time. The way to get around this problem was to force the evaluation of 'fooBars' to happen immediately by calling 'ToList()': [source,csharp] ---- public class SomeObject { ... public IEnumerable<FooBar> Method(List<Foo> foos) { var fooBars = foos.Select(f => new FooBar { Bar = f.Bar, Other = service.SomeMethod(f.Bar) }.ToList(); ... } } ---- In this case it was fairly easy to identify the problem but I've written similar code before which has ended up reordering collections with thousands of items in because it's been lazy evaluated every time the collection is needed. In http://msdn.microsoft.com/en-us/magazine/ee309512.aspx[Jeremy Miller's article about functional C#] he suggests the idea of memoization as an optimisation technique to stop expensive calls being made more times than they need to be so perhaps this would be another way to solve the problem although I haven't tried that approach before.
null
null
[ 0.011664326302707195, -0.03871940076351166, -0.0295837614685297, 0.024744197726249695, 0.04754754155874252, -0.0021553789265453815, 0.0455443412065506, -0.010832770727574825, 0.0004763960896525532, -0.028455032035708427, 0.014697239734232426, 0.006100607570260763, -0.07682791352272034, 0.009627417661249638, -0.029027026146650314, 0.07127811014652252, 0.08307873457670212, -0.05670946463942528, 0.034460294991731644, -0.015094504691660404, -0.0072671715170145035, 0.0824989452958107, -0.0030371134635061026, 0.028450939804315567, 0.01676717959344387, 0.03152748942375183, 0.003992180339992046, -0.008991640992462635, -0.05489702522754669, -0.016036411747336388, 0.02584230713546276, 0.014861294068396091, -0.011666550301015377, -0.004667730536311865, -0.012731180526316166, -0.04913616180419922, 0.007123684510588646, -0.0017450243467465043, 0.0065297288820147514, 0.012546345591545105, -0.06463921815156937, -0.0056798080913722515, -0.00756849953904748, 0.005450328346341848, -0.051832713186740875, 0.01154416985809803, -0.03947565332055092, -0.0014255465939640999, -0.05755084380507469, 0.010989580303430557, -0.06218767166137695, 0.01846173033118248, -0.0599752813577652, 0.013927084393799305, -0.006889148149639368, 0.0614311583340168, -0.016740361228585243, -0.08854776620864868, 0.04158329218626022, -0.06702983379364014, -0.007586577441543341, 0.010811814107000828, -0.018272142857313156, 0.03397446498274803, 0.02737526223063469, 0.009705980308353901, -0.01642136089503765, 0.057604994624853134, -0.05378475785255432, -0.030950618907809258, -0.015418886207044125, -0.0031581611838191748, -0.0040312716737389565, -0.018825532868504524, 0.001958780689164996, -0.06587719172239304, -0.03775470331311226, 0.040204159915447235, -0.009167765267193317, 0.0506310909986496, -0.011208221316337585, 0.013282663188874722, 0.0423436164855957, -0.00015909540525171906, 0.027874229475855827, -0.026486845687031746, -0.04204430431127548, 0.007609763648360968, -0.007608186919242144, 0.06435862183570862, 0.03229627013206482, -0.0294352937489748, -0.015299154445528984, 0.03601076826453209, -0.010180579498410225, -0.0003243468818254769, 0.0007012455025687814, -0.012486987747251987, 0.0052767484448850155, 0.024174300953745842, -0.026168959215283394, -0.01858505606651306, 0.04040995240211487, -0.004517944995313883, -0.07847820967435837, -0.010789068415760994, -0.03191303089261055, -0.020074933767318726, -0.0033987269271165133, 0.009328990243375301, -0.07083392143249512, 0.02893166057765484, -0.031289760023355484, 0.034994158893823624, -0.08138663321733475, 0.04094449058175087, 0.020931214094161987, 0.014873433858156204, -0.005249002482742071, 0.04254603013396263, 0.043556585907936096, 0.006975118070840836, -0.018090173602104187, 0.07852208614349365, -0.00643099844455719, 0.04167000576853752, -0.024885624647140503, 0.060893211513757706, 0.019282428547739983, -0.06633427739143372, -0.003565785475075245, 0.036414436995983124, -0.006205794867128134, 0.008753107860684395, -0.012358574196696281, -0.05347645655274391, -0.017930442467331886, 0.004387942608445883, 0.03822590783238411, 0.03679056093096733, -0.027330834418535233, -0.03176238015294075, 0.0094138253480196, -0.02819986641407013, 0.014418055303394794, 0.006619051098823547, -0.002954232506453991, -0.005918255541473627, -0.004165035672485828, 0.05756848305463791, 0.048756878823041916, 0.08991719782352448, 0.06151691824197769, -0.039831921458244324, 0.007844853214919567, 0.09244336932897568, -0.01142050139605999, 0.03279001638293266, 0.015059581957757473, 0.020015127956867218, 0.060015689581632614, 0.044852904975414276, 0.0024235383607447147, 0.05788253992795944, 0.016860999166965485, 0.014815832488238811, -0.018440740182995796, 0.057283494621515274, 0.0033535684924572706, -0.03465376794338226, -0.06009010970592499, -0.058099232614040375, 0.04268380627036095, -0.02883238159120083, -0.008995028212666512, 0.032415829598903656, 0.07166298478841782, -0.008414207026362419, 0.0674305409193039, 0.0195609163492918, -0.0653185173869133, 0.010803383775055408, 0.02373172529041767, -0.003905950114130974, 0.012709181755781174, 0.01890444941818714, 0.07057252526283264, 0.050701528787612915, -0.01501199509948492, 0.03877974674105644, -0.06544969975948334, -0.0622723326086998, -0.0515022948384285, -0.005317859351634979, 0.06375336647033691, -0.037590496242046356, -0.027164140716195107, 0.0896315947175026, 0.03364502266049385, 0.025751639157533646, 0.02127161994576454, -0.030517786741256714, 0.0007847183151170611, -0.012658857740461826, -0.0203914325684309, 0.060128942131996155, 0.04688187316060066, 0.012929750606417656, -0.05681879445910454, 0.0004901959910057485, -0.009949840605258942, 0.024759618565440178, 0.02065502665936947, -0.0049283187836408615, 0.0499977208673954, 0.015831856057047844, -0.00196840800344944, -0.030936602503061295, 0.07197356969118118, -0.08227985352277756, 0.01010418962687254, -0.008506390266120434, -0.012323428876698017, -0.008776308037340641, -0.0401020422577858, 0.09936217963695526, 0.04315802827477455, -0.024248722940683365, -0.03985438123345375, -0.007949450984597206, 0.020428605377674103, -0.026515834033489227, 0.002553432248532772, -0.05040401965379715, 0.026158299297094345, 0.008520098403096199, -0.010730531997978687, 0.02110861986875534, 0.007416669744998217, -0.035926297307014465, -0.0005080208065919578, 0.05566808953881264, -0.0009255068143829703, 0.06777213513851166, 0.014333647675812244, -0.04638806730508804, -0.012535653077065945, -0.04140276834368706, -0.054362744092941284, 0.002734124893322587, 0.03645208850502968, -0.009114782325923443, 0.047717176377773285, -0.008388341404497623, -0.01874634437263012, 0.008375704288482666, -0.03518373519182205, 0.00808256957679987, 0.006986062508076429, 0.07095210999250412, -0.013854563236236572, 0.05509414151310921, -0.014414742588996887, -0.0031711324118077755, 0.003506854409351945, -0.04059259593486786, 0.012021828442811966, 0.030732810497283936, 0.03170086070895195, 0.04671913757920265, 0.01885165460407734, 0.004406374879181385, 0.04668920114636421, 0.006734829396009445, -0.029141681268811226, -0.015684062615036964, 0.02660372480750084, 0.008876528590917587, -0.059553179889917374, -0.025183742865920067, -0.07015278190374374, 0.01775146834552288, -0.02613845467567444, -0.0414588637650013, 0.011101449839770794, -0.08010321110486984, 0.041416384279727936, -0.06317926943302155, -0.05644657835364342, 0.006144741550087929, 0.03898847848176956, 0.04043138399720192, -0.01387771125882864, 0.0010546186240389943, 0.031180057674646378, -0.0003920526651199907, -0.005376633256673813, 0.01170308981090784, 0.02447921223938465, -0.018028652295470238, -0.015936993062496185, 0.010452158749103546, 0.05538531765341759, 0.0032730833627283573, 0.004031465854495764, -0.05488980934023857, 0.0056436266750097275, -0.014520877972245216, -0.2642069458961487, 0.037280429154634476, -0.018644213676452637, -0.03703711926937103, 0.03818952664732933, 0.001148501760326326, 0.016871655359864235, -0.046775903552770615, -0.04029237478971481, 0.07379648834466934, -0.004417940974235535, -0.012220392003655434, -0.018705634400248528, 0.06138990446925163, -0.0032050684094429016, 0.0053643654100596905, -0.009701108559966087, -0.049261197447776794, -0.0030218183528631926, 0.05753658339381218, -0.0014789687702432275, -0.07883308827877045, -0.020682819187641144, 0.05682975798845291, 0.015363657847046852, 0.0513988621532917, -0.07775687426328659, 0.052906740456819534, -0.016609186306595802, -0.0338975265622139, 0.013639588840305805, -0.018044738098978996, 0.016197575256228447, -0.02897820621728897, -0.027301602065563202, -0.008229984901845455, 0.007017875090241432, 0.011437563225626945, -0.018681688234210014, 0.02269783243536949, -0.021544231101870537, -0.06713950634002686, -0.026262234896421432, 0.028438856825232506, 0.062397684901952744, -0.025612618774175644, -0.041406650096178055, -0.01069561205804348, -0.06422413885593414, 0.06653106212615967, -0.03295328840613365, -0.05215663090348244, 0.006929738912731409, 0.03587310388684273, -0.028984680771827698, -0.04077091068029404, -0.005990599747747183, -0.004232669714838266, -0.03170911222696304, 0.00839517917484045, -0.02754802629351616, -0.04916899651288986, -0.03301101177930832, -0.027578746899962425, -0.03958405926823616, -0.06857278943061829, -0.04308919608592987, 0.006455826573073864, 0.053011126816272736, 0.015639979392290115, 0.00015263874956872314, -0.004279238171875477, 0.0011630663648247719, -0.12420551478862762, 0.007205448113381863, -0.057641323655843735, -0.02058442309498787, -0.047414734959602356, -0.0035344725474715233, 0.038238003849983215, -0.0343947671353817, -0.04480980709195137, 0.02525041252374649, 0.02955467998981476, 0.01048908568918705, 0.001353466766886413, 0.017681563273072243, -0.004126992076635361, -0.04174303263425827, -0.014710846357047558, 0.07506095618009567, 0.007690824568271637, 0.023851916193962097, -0.014709594659507275, -0.0018503379542380571, 0.033768054097890854, 0.045646391808986664, 0.0012976446887478232, 0.005452179815620184, 0.0340600460767746, 0.05143514275550842, -0.049978919327259064, 0.04091545194387436, -0.0178856011480093, -0.020968109369277954, -0.02974599413573742, -0.06608112156391144, 0.04029503092169762, 0.022432055324316025, -0.005359210539609194, -0.023521652445197105, -0.021952955052256584, -0.002798601286485791, -0.05902142822742462, -0.03402327001094818, -0.01995290257036686, 0.006248099729418755, 0.022457856684923172, -0.0067994254641234875, -0.02280365489423275, -0.053678158670663834, 0.023125598207116127, 0.032937563955783844, -0.010611054487526417, -0.06444140523672104, -0.04152759164571762, -0.026421550661325455, 0.02515299990773201, 0.001971106743440032, 0.020870709791779518, -0.00007555919728474692, 0.02732929028570652, -0.01835077442228794, -0.02183111384510994, 0.02152365818619728, -0.0183423962444067, -0.011003199964761734, -0.022321373224258423, -0.033139392733573914, -0.016354281455278397, 0.013103825971484184, -0.05230533331632614, 0.015524917282164097, 0.04434161260724068, 0.011470400728285313, -0.006901819724589586, 0.03425132483243942, 0.025519810616970062, -0.005144909955561161, 0.026476416736841202, 0.002632938092574477, -0.06398167461156845, -0.00047394883586093783, -0.0476975217461586, -0.01750064827501774, -0.015782255679368973, 0.036044396460056305, -0.038380056619644165, -0.025885537266731262, -0.05720514431595802, 0.020157959312200546, -0.04789865016937256, -0.03568863868713379, -0.014982336200773716, -0.01979951560497284, 0.051157765090465546, -0.0548735186457634, 0.021697713062167168, -0.0290974248200655, -0.017836367711424828, -0.012519911862909794, -0.01805328018963337, 0.0004336407291702926, 0.047699254006147385, 0.005356720183044672, 0.014519223012030125, -0.0038090187590569258, 0.023756058886647224, 0.018298480659723282, 0.03084094449877739, 0.03225729614496231, -0.0003884032485075295, 0.03600836917757988, -0.003583566751331091, 0.03829764947295189, -0.007590888068079948, 0.01419738493859768, -0.020567409694194794, -0.008432984352111816, 0.0044726100750267506, -0.059466276317834854, -0.04345767945051193, -0.019315319135785103, 0.039266325533390045, -0.038087841123342514, -0.07155443727970123, 0.036429084837436676, 0.013666955754160881, 0.025315599516034126, -0.0056174034252762794, 0.022488795220851898, 0.008561498485505581, -0.02689487114548683, 0.004749384243041277, 0.05161546543240547, -0.06624960899353027, 0.01636355184018612, -0.009245749562978745, 0.01736673340201378, 0.03764541447162628, 0.02572845295071602, -0.04683796316385269, -0.018165426328778267, -0.004387528635561466, 0.005963114555925131, -0.012664582580327988, -0.02239060029387474, -0.013307788409292698, 0.011795549653470516, -0.02308228611946106, -0.013548980467021465, 0.0000668409193167463, -0.014456096105277538, -0.032359592616558075, -0.015065031126141548, 0.027635805308818817, -0.03203323855996132, -0.012985474430024624, 0.022816454991698265, -0.038411278277635574, 0.02321227639913559, -0.029510701075196266, 0.03259935602545738, 0.02122291550040245, -0.014392754063010216, -0.010061063803732395, -0.03383907675743103, 0.010000408627092838, 0.0035316089633852243, 0.02728026546537876, 0.0024772093165665865, -0.005552528891712427, 0.028787117451429367, -0.02921929955482483, -0.012465106323361397, 0.006742131896317005, 0.03991631045937538, -0.010533959604799747, 0.003022853285074234, 0.060135502368211746, 0.0041732508689165115, 0.04434787482023239, 0.018783116713166237, 0.008380324579775333, 0.09371352195739746, -0.05557818338274956, 0.013647862710058689, -0.025815891101956367, -0.06527481973171234, -0.013035701587796211, 0.002542483387514949, 0.02569754235446453, -0.03273076191544533, 0.02399911731481552, 0.03411727026104927, 0.019176604226231575, 0.05742250755429268, 0.010065313428640366, 0.04371620714664459, -0.026592284440994263, 0.02038971520960331, -0.05802719667553902, 0.016122234985232353, 0.042623937129974365, 0.02370067872107029, -0.048326727002859116, -0.04178091883659363, -0.013189432211220264, 0.04524393007159233, -0.034837506711483, -0.00032758250017650425, -0.0006090081878937781, -0.033322133123874664, -0.004445280879735947, 0.03569769114255905, -0.0512404665350914, 0.03703423961997032, 0.007970013655722141, -0.011961715295910835, -0.03471347317099571, -0.02679109200835228, 0.03511736914515495, 0.038355473428964615, -0.012881483882665634, -0.029209956526756287, 0.02321382611989975, 0.050912532955408096, 0.016744447872042656, 0.04404708743095398, 0.040217332541942596, -0.019222809001803398, 0.03008638694882393, 0.007525934372097254, -0.0357745960354805, -0.018767397850751877, 0.004518037661910057, -0.001592928310856223, -0.04980168119072914, 0.014735761098563671, 0.006891237571835518, -0.055921752005815506, -0.04706306383013725, 0.06817065179347992, 0.00025803103926591575, -0.0223686620593071, -0.03200451657176018, 0.0011959781404584646, -0.04288267716765404, -0.03724553436040878, -0.011946245096623898, 0.004592910408973694, -0.015987511724233627, 0.07566126435995102, 0.01438570860773325, -0.0018565988866612315, 0.07070492208003998, -0.008275861851871014, -0.002956351498141885, -0.023812567815184593, 0.06553921848535538, 0.07893829792737961, 0.028907548636198044, 0.003890733700245619, 0.05436209961771965, -0.02829747460782528, -0.04862175136804581, 0.014749626629054546, -0.015194767154753208, 0.003986580763012171, -0.005580400116741657, 0.02355872467160225, 0.08103373646736145, 0.022803666070103645, 0.0405324250459671, -0.050984013825654984, -0.008292264305055141, -0.013249995186924934, 0.020542288199067116, 0.027340997010469437, 0.033177200704813004, 0.0026551850605756044, 0.005954664666205645, 0.027757951989769936, -0.032532043755054474, 0.029156938195228577, -0.03222769871354103, -0.005796902347356081, 0.03572751209139824, 0.00444805296137929, 0.00574610335752368, 0.008809479884803295, 0.011781904846429825, 0.053701333701610565, -0.002552226185798645, -0.021268794313073158, -0.007124044466763735, 0.009040962904691696, 0.01935402862727642, -0.026209324598312378, -0.013750447891652584, -0.05357907712459564, 0.02355208806693554, 0.0160776786506176, -0.00894999597221613, -0.02688797377049923, -0.031080488115549088, 0.04773686081171036, -0.008747532032430172, 0.04343579337000847, 0.02699587680399418, 0.013369609601795673, -0.03577553853392601, -0.057229187339544296, -0.04937804490327835, -0.02304379642009735, -0.05215655267238617, -0.013749390840530396, 0.030950821936130524, -0.019004743546247482, -0.041417837142944336, -0.012931219302117825, -0.011665643192827702, -0.023267090320587158, 0.06517912447452545, -0.02762274444103241, -0.04225844517350197, 0.02733602374792099, 0.010584165342152119, 0.05490804836153984, 0.013877379707992077, 0.03352392837405205, 0.0051263561472296715, 0.019986534491181374, -0.03515971824526787, -0.0345890186727047, 0.052900414913892746, 0.008687113411724567, 0.024214211851358414, -0.053128432482481, 0.008923210203647614, -0.005147488787770271, 0.011110642924904823, -0.07397139072418213, -0.002855258760973811, 0.0030360384844243526, -0.015436848625540733, 0.018555913120508194, -0.030329428613185883, -0.042498450726270676, -0.02720140665769577, -0.007438883651047945, 0.04516051337122917, 0.03840067982673645, 0.05586588382720947, -0.03214222192764282, 0.05356217920780182, 0.014390953816473484, -0.040820132941007614, -0.03383040428161621, 0.01841125823557377, -0.024433692917227745, 0.015024099498987198, -0.032987311482429504, -0.07434225082397461, -0.03015279397368431, -0.03282995522022247, 0.0027657493483275175, 0.032013650983572006, -0.020520854741334915, -0.03136492520570755, 0.016152646392583847, 0.056580062955617905, -0.08146935701370239, 0.03392903879284859, -0.009670131839811802, 0.05695347487926483, -0.022768396884202957, -0.01801842637360096, 0.019664252176880836, 0.03290935233235359, 0.011459308676421642, 0.02469693310558796, 0.02622227929532528, -0.03132385015487671, -0.003898651571944356, -0.024157967418432236, 0.011503994464874268, 0.061270590871572495, -0.024344811215996742, 0.04167616739869118 ]
[ -0.08063644915819168, 0.0073528774082660675, -0.0510634183883667, -0.026536976918578148, 0.061341263353824615, -0.047472674399614334, 0.044076770544052124, 0.01509208045899868, 0.0005974611849524081, -0.016015702858567238, -0.006608868949115276, -0.011853913776576519, 0.00911873858422041, -0.006277784239500761, 0.06355096399784088, 0.015355843119323254, -0.02941819839179516, -0.027959903702139854, -0.012821938842535019, 0.038542743772268295, 0.044391460716724396, -0.01823514886200428, -0.06244220212101936, -0.018543481826782227, 0.04499788582324982, 0.05583681911230087, 0.04507410153746605, -0.07367459684610367, 0.009284437634050846, -0.22536377608776093, 0.00969020277261734, -0.008591954596340656, 0.0019728282932192087, -0.03999156132340431, -0.009382974356412888, 0.05382729694247246, 0.019316814839839935, 0.015427499078214169, -0.009580045007169247, 0.051691122353076935, 0.01571526937186718, 0.02600795030593872, -0.07209139317274094, -0.01790662482380867, 0.004320221953094006, -0.011645115911960602, -0.03142675757408142, -0.009993253275752068, -0.006536493077874184, 0.006583466660231352, -0.06010802835226059, -0.03446654975414276, 0.006328198593109846, -0.015332045964896679, -0.032857101410627365, -0.005386770237237215, 0.049450647085905075, 0.049645327031612396, 0.026491502299904823, 0.057236623018980026, 0.02457038313150406, -0.027385495603084564, -0.10716743767261505, 0.08946895599365234, 0.023976368829607964, 0.061605799943208694, 0.0013385837664827704, -0.025549739599227905, 0.0057427058927714825, 0.0865887925028801, 0.04929565638303757, -0.025190284475684166, -0.027694739401340485, 0.07812073081731796, 0.023504922166466713, -0.026803482323884964, -0.0000231705325859366, 0.013632313348352909, 0.044971976429224014, -0.03210941702127457, -0.05726360157132149, -0.01851506158709526, 0.01894330233335495, 0.008677186444401741, -0.004765643272548914, 0.005003294441848993, 0.0018071455415338278, 0.014624223113059998, 0.053525883704423904, 0.046110574156045914, 0.06062302365899086, -0.0016729896888136864, 0.03237561881542206, -0.0031114977318793535, -0.10108685493469238, -0.02637660503387451, -0.014681887812912464, -0.005056153982877731, -0.04495113343000412, 0.4342438280582428, -0.00016846938524395227, -0.005689390003681183, 0.028540078550577164, 0.023662254214286804, -0.013676246628165245, -0.008709071204066277, 0.017612196505069733, -0.054390233010053635, -0.011686880141496658, -0.041342515498399734, -0.003277127631008625, -0.007655911613255739, 0.041178278625011444, -0.06968745589256287, 0.006066289730370045, 0.008567689917981625, 0.001079761073924601, 0.003998328931629658, -0.024643395096063614, 0.025444461032748222, 0.00844932533800602, 0.01806759275496006, 0.0331009216606617, 0.005027303472161293, -0.0011136381654068828, -0.027229342609643936, 0.02794434130191803, 0.06695419549942017, 0.02524617686867714, -0.0035502673126757145, 0.0378536581993103, -0.06367765367031097, -0.10612678527832031, -0.01989044062793255, 0.0020639279391616583, 0.03674757853150368, 0.04111266881227493, -0.04243817552924156, 0.022089272737503052, 0.04729270190000534, -0.013687723316252232, 0.01236712746322155, 0.015538882464170456, -0.02662895992398262, -0.07016783952713013, 0.08447089046239853, 0.002957393182441592, -0.001180929015390575, -0.01260930486023426, -0.039502374827861786, 0.01109359785914421, 0.037980012595653534, -0.0038153263740241528, -0.05135638266801834, 0.016215864568948746, 0.013663392513990402, 0.06112368777394295, -0.002398258773609996, -0.021194523200392723, -0.018220435827970505, -0.02592909149825573, -0.02229267731308937, -0.06062321737408638, 0.051895707845687866, -0.002976334886625409, -0.0727485716342926, -0.03748321160674095, 0.006718204356729984, 0.004663825035095215, -0.0561666414141655, 0.004092692397534847, 0.005859662778675556, -0.055256523191928864, 0.0015049770008772612, 0.035476502031087875, -0.01478254422545433, -0.007432225160300732, 0.0009715851047076285, 0.022497959434986115, 0.01920110546052456, 0.005646234378218651, 0.02559528313577175, -0.05615043267607689, 0.02210916578769684, 0.0031548391561955214, -0.06432751566171646, -0.060022879391908646, -0.021071208640933037, -0.02820039913058281, -0.029149871319532394, -0.01889672502875328, -0.016473643481731415, -0.07614534348249435, 0.060934584587812424, -0.023011067882180214, -0.01852947473526001, 0.03875143453478813, 0.0050719245336949825, 0.020902328193187714, -0.00871935486793518, 0.04198908805847168, 0.04928954690694809, 0.012986935675144196, 0.03286813199520111, -0.04072306677699089, 0.04121588543057442, 0.012265311554074287, -0.05291341245174408, 0.037033017724752426, 0.0365261547267437, -0.03766712546348572, 0.0032535993959754705, -0.0038406304083764553, 0.035475071519613266, -0.00011471958714537323, -0.008262267336249352, -0.0014744726940989494, 0.01914030872285366, -0.0034103998914361, 0.021572811529040337, -0.0419795997440815, -0.05151020735502243, 0.03504153713583946, -0.3539491593837738, -0.03747307509183884, -0.011219453997910023, -0.019970368593931198, -0.0014284133212640882, -0.034132279455661774, -0.0013074881862848997, -0.004712418187409639, -0.03316780924797058, 0.0033834243658930063, 0.06597879528999329, -0.023159630596637726, -0.00033235110458917916, -0.08751093596220016, 0.016472384333610535, 0.006765366531908512, -0.049713969230651855, -0.059862978756427765, -0.041608452796936035, 0.02573494240641594, -0.0015032419469207525, -0.004915304481983185, -0.006131769623607397, -0.0648355707526207, 0.008965635672211647, -0.019910169765353203, 0.10982946306467056, -0.03930804505944252, 0.047198131680488586, -0.035428352653980255, 0.05422702804207802, 0.0034500022884458303, 0.02632923610508442, -0.042418479919433594, -0.022465620189905167, -0.058920592069625854, -0.02064385823905468, 0.026594027876853943, 0.04438062757253647, -0.010190697386860847, -0.05519498884677887, 0.02682388760149479, -0.054555315524339676, -0.07818355411291122, -0.007140021771192551, -0.012826560065150261, -0.026167934760451317, -0.03132813423871994, 0.016801830381155014, 0.07706797868013382, -0.02370317094027996, -0.030278511345386505, 0.0032198114786297083, 0.025552043691277504, 0.03089429996907711, -0.032915856689214706, -0.06703813374042511, 0.008310673758387566, 0.005852913949638605, -0.0030021294951438904, 0.02408464066684246, 0.0821799710392952, 0.049888987094163895, -0.045632630586624146, 0.007919616997241974, -0.00002274130929436069, -0.01256514061242342, -0.012213149107992649, 0.039709459990262985, -0.0608108788728714, -0.034914031624794006, 0.08097320050001144, 0.004507722798734903, 0.006215291563421488, 0.017638936638832092, 0.05608036369085312, -0.024570705369114876, 0.027064284309744835, 0.03028329461812973, 0.001032321946695447, 0.010769578628242016, 0.046010952442884445, 0.03403814882040024, -0.038659654557704926, -0.05104249343276024, 0.01890169456601143, -0.02832711674273014, 0.005362202413380146, 0.07323648035526276, -0.013157197274267673, -0.026463335379958153, -0.01712060160934925, -0.004618230275809765, -0.05180346965789795, 0.07244031876325607, -0.022185884416103363, -0.2781955897808075, 0.012056387960910797, 0.08011719584465027, 0.043164730072021484, -0.023374473676085472, 0.05562298744916916, 0.024975476786494255, -0.05285312235355377, 0.02335570938885212, 0.011412613093852997, 0.024397436529397964, 0.033987775444984436, 0.015165059827268124, -0.01626087725162506, 0.031201768666505814, -0.01648329198360443, 0.03721059113740921, -0.016278402879834175, 0.04170390963554382, -0.03751317411661148, 0.02660364657640457, -0.010755800642073154, 0.1915275752544403, 0.006748031824827194, 0.010126626119017601, 0.006443810183554888, 0.03730173781514168, 0.006019855849444866, 0.08481259644031525, 0.01825067773461342, 0.02010452002286911, -0.01895100809633732, 0.08399274945259094, 0.02001151815056801, 0.03379029035568237, -0.062563456594944, -0.01587720401585102, 0.03857140988111496, 0.008409225381910801, 0.0040365527383983135, -0.023789897561073303, 0.002505962736904621, -0.03649565204977989, 0.024916626513004303, 0.08913955092430115, 0.011510576121509075, -0.014408438466489315, -0.03324775770306587, -0.03885651379823685, -0.010122129693627357, -0.015733275562524796, -0.018976394087076187, 0.018355857580900192, -0.027667125687003136, 0.009536631405353546, 0.04764816164970398, 0.029565155506134033, -0.011121288873255253, -0.01834927126765251, 0.026043850928544998, -0.012080179527401924, 0.0016474566655233502, 0.087504543364048, 0.02005881629884243, 0.04604821279644966 ]
[ -0.052505768835544586, 0.03726202994585037, -0.012592999264597893, 0.03009689785540104, -0.04160295054316521, 0.01588224060833454, 0.0055020032450556755, 0.009477922692894936, 0.012751612812280655, 0.01397046260535717, 0.024981653317809105, -0.0015312025789171457, -0.001649305922910571, -0.0058822971768677235, 0.07644906640052795, 0.0022078659385442734, 0.030246784910559654, -0.024419473484158516, 0.021604863926768303, 0.01276747789233923, 0.0008515245281159878, 0.051150910556316376, -0.01690845936536789, -0.012756900861859322, -0.0410814993083477, 0.01551468763500452, -0.02410133369266987, -0.05148811265826225, 0.005693171173334122, -0.1250384896993637, 0.01973523572087288, -0.00890078954398632, -0.03853819519281387, 0.019718263298273087, -0.027827318757772446, -0.020450586453080177, 0.04881861060857773, 0.02188357152044773, 0.035630419850349426, 0.01989644765853882, 0.018008625134825706, 0.014939654618501663, 0.0034919974859803915, 0.01606345735490322, 0.01638401672244072, -0.014734125696122646, 0.023704275488853455, -0.03146420791745186, -0.013064341619610786, 0.001571114407852292, -0.014458797872066498, -0.01818207837641239, -0.004069616552442312, 0.047984275966882706, 0.016330072656273842, -0.04263847693800926, -0.016257066279649734, -0.01011168584227562, -0.007148611359298229, 0.06533357501029968, -0.004572240170091391, 0.009951317682862282, -0.01047903299331665, -0.0017521962290629745, 0.005286000203341246, -0.018709665164351463, 0.011311227455735207, -0.02236304059624672, -0.019374454393982887, -0.01526848878711462, -0.011567075736820698, 0.0028420700691640377, 0.014324181713163853, 0.005920502822846174, -0.021332018077373505, -0.015028484165668488, 0.019599217921495438, -0.02171044796705246, 0.02679477073252201, -0.025635559111833572, -0.02569238282740116, 0.013343258760869503, -0.002363628474995494, 0.051326822489500046, 0.00016158043581526726, -0.009836548008024693, 0.009011209942400455, -0.018227750435471535, 0.04029972106218338, 0.00271673989482224, -0.005676988046616316, 0.009760303422808647, 0.027433345094323158, 0.01814369484782219, -0.04861501604318619, 0.02758147567510605, -0.00009668851271271706, -0.06013628840446472, -0.04441338777542114, 0.8237774968147278, -0.012851502746343613, 0.06729742884635925, 0.05501950532197952, 0.004857201129198074, -0.047069527208805084, -0.001013783272355795, -0.02601974457502365, -0.036834217607975006, -0.008347572758793831, -0.01988092251121998, 0.0383896678686142, 0.01917039416730404, 0.015208789147436619, 0.021508630365133286, -0.03655881807208061, 0.009463987313210964, 0.02627231366932392, -0.01608067750930786, 0.008719668723642826, 0.01961662620306015, 0.008116752840578556, -0.0024450672790408134, 0.019540464505553246, 0.0023714927956461906, 0.037256091833114624, -0.16512754559516907, 0.028049977496266365, -8.853097582631837e-33, 0.039723530411720276, -0.01683267578482628, 0.03891480341553688, 0.034754421561956406, 0.02272859215736389, -0.012015308253467083, 0.03406481444835663, 0.009455540217459202, 0.02205919846892357, -0.019106034189462662, 0.03882240876555443, -0.007997858338057995, 0.011202920228242874, 0.00464217783883214, 0.01745741255581379, -0.012552198022603989, 0.006716856267303228, -0.0019695174414664507, 0.000724164885468781, 0.0003312992339488119, -0.013589585199952126, 0.02249511331319809, 0.014691295102238655, -0.04790462553501129, 0.0027629260439425707, 0.011550022289156914, 0.014864683151245117, 0.03764205425977707, -0.00046763551654294133, -0.04475327953696251, 0.046604055911302567, 0.0024214761797338724, -0.04249857738614082, 0.0010626560542732477, 0.03626111522316933, -0.00968950055539608, -0.0058225910179317, -0.01235797069966793, -0.044214386492967606, -0.031649280339479446, -0.02303464338183403, 0.010053601115942001, -0.028774002566933632, 0.04431145638227463, -0.029130518436431885, -0.03510398417711258, -0.011858807876706123, -0.02919657714664936, 0.06812526285648346, 0.0256403349339962, 0.02049313485622406, 0.025706090033054352, -0.007915590889751911, -0.01727273315191269, 0.0013937832554802299, 0.03735644370317459, -0.007250574883073568, 0.011109482496976852, -0.0004779077717103064, 0.03360816091299057, 0.0011963874567300081, -0.04944293200969696, -0.0238490030169487, 0.01466561108827591, -0.004249664954841137, -0.028059285134077072, -0.006460334174335003, -0.025769589468836784, 0.011437393724918365, -0.022420627996325493, 0.0007151612662710249, -0.01209027599543333, -0.01035330444574356, -0.0167242418974638, -0.004052719101309776, -0.004619861487299204, -0.01217212900519371, 0.004795128013938665, -0.013321909122169018, -0.03988822177052498, 0.00987991876900196, -0.035565681755542755, 0.008078672923147678, 0.0013572098687291145, -0.02110976353287697, -0.003454054705798626, 0.025919798761606216, 0.006905995309352875, 0.006728436332195997, -0.00990941934287548, 0.0016053764848038554, 0.08970018476247787, -0.0029124899301677942, -0.007114142179489136, -0.018581420183181763, 8.277890727892059e-33, -0.039201825857162476, 0.020551608875393867, -0.012365295551717281, 0.020887834951281548, 0.033212628215551376, -0.013006199151277542, 0.04461623728275299, 0.017815295606851578, -0.051508575677871704, 0.026124408468604088, -0.015249021351337433, 0.01823776587843895, -0.019115502014756203, 0.04462263733148575, 0.07602225989103317, 0.006667499430477619, 0.006387897301465273, -0.01628771238029003, 0.024755390360951424, 0.00531739229336381, -0.007516770623624325, 0.018777500838041306, 0.04082689806818962, -0.005984025076031685, -0.027857951819896698, 0.0354350283741951, -0.05991586297750473, 0.018047630786895752, -0.0007332072127610445, -0.015822025015950203, 0.023472940549254417, -0.0064023821614682674, 0.005181403830647469, -0.051383547484874725, -0.01740487664937973, 0.02523813769221306, -0.017417918890714645, 0.004722044803202152, 0.02785172127187252, -0.0036783646792173386, 0.028081974014639854, -0.08184908330440521, -0.02825188636779785, 0.006363226100802422, -0.014366313815116882, -0.058455295860767365, -0.02533286064863205, -0.025596555322408676, 0.03539080172777176, 0.0428045354783535, 0.025102421641349792, -0.010558607056736946, -0.01007323618978262, 0.06228483468294144, 0.020631665363907814, -0.00648138765245676, -0.0414908230304718, -0.04038575291633606, 0.0005883034900762141, -0.013885759748518467, 0.005287572275847197, 0.027051735669374466, -0.015951989218592644, 0.017535515129566193, 0.011967453174293041, -0.015753168612718582, -0.01807611808180809, -0.05798475444316864, -0.03058985248208046, 0.0010097745107486844, -0.03167792409658432, -0.007791771553456783, -0.016618140041828156, -0.005212591961026192, 0.014176595024764538, -0.05258771777153015, 0.02038160152733326, -0.03423577547073364, 0.002434400375932455, 0.00018463714513927698, 0.029526885598897934, -0.046738654375076294, 0.016725221648812294, -0.026386158540844917, -0.06526742875576019, 0.0021835844963788986, 0.02078186720609665, -0.04386329650878906, 0.02840271219611168, 0.01958567462861538, -0.0167851522564888, -0.02420182339847088, -0.014525317586958408, 0.009648265317082405, 0.03194437175989151, -1.3600103265787311e-8, -0.05262176692485809, 0.03461717441678047, -0.015740571543574333, 0.022226424887776375, 0.01673751324415207, -0.022406263276934624, -0.03268645703792572, -0.033665385097265244, -0.004379559308290482, 0.009331196546554565, -0.012199138291180134, -0.010952623561024666, 0.024843284860253334, 0.032882291823625565, 0.0362006239593029, -0.057535361498594284, -0.04429337754845619, -0.021764496341347694, 0.010023276321589947, 0.03146977722644806, -0.005578471813350916, 0.01496030017733574, 0.008821741677820683, -0.017525838688015938, 0.0038664296735078096, 0.04654918983578682, 0.01521112397313118, -0.05713345482945442, 0.018968261778354645, 0.059937573969364166, 0.001786165521480143, -0.01859184354543686, -0.004544511903077364, -0.04354657977819443, -0.05923108756542206, -0.007814755663275719, -0.00011556935351109132, -0.00598889822140336, 0.026867955923080444, 0.009973973967134953, -0.011512141674757004, -0.007284770254045725, 0.01591244339942932, 0.003035894827917218, 0.00927526131272316, -0.013805590569972992, -0.027740702033042908, 0.021481763571500778, 0.006199912633746862, 0.005094480235129595, -0.027779918164014816, 0.014879591763019562, 0.02081993781030178, -0.02093636803328991, -0.026549668982625008, 0.02195829339325428, 0.035297781229019165, -0.022749528288841248, -0.036372676491737366, 0.04192989319562912, 0.022356856614351273, -0.0303278099745512, -0.032676778733730316, -0.02194185182452202 ]
c-causing-myself-pain-with-linqs-delayed-evaluation
https://markhneedham.com/blog/2010/02/18/c-causing-myself-pain-with-linqs-delayed-evaluation
false
2010-02-16 23:19:09
Rules of Thumb: Don't use the session
[ "coding" ]
[ "Coding" ]
A while ago I wrote about some http://www.markhneedham.com/blog/2009/10/04/coding-rules-of-thumb/[rules of thumb] that I'd been taught by my colleagues with respect to software development and I was reminded of one of them - don't put anything in the session - during a presentation my colleague http://www.lucagrulla.it/blog/[Luca Grulla] gave at our client on scaling applications by making use of the infrastructure of the web. The problem with putting state in the session is that it means that requests from a specific user have to be tied to a specific server i.e. we have to use a http://stackoverflow.com/questions/1040025/difference-between-session-affinity-and-sticky-session[sticky session/session affinity]. This reduces our ability to scale our system horizontally (scale out) i.e. by adding more servers to handle requests. If, for example, we have a small amount of users (whose first request went to the same server) making a lot of requests (perhaps through AJAX calls) then we may quickly put one of our servers under load while the others are sitting there idle. In addition we have increased complexity around our deployment process. If we want to do an incremental deployment of a new version of our website across some of our servers then we need to ensure that we create a copy of any sessions on those servers and copy them to the ones we're not updating so that any users still on the system don't experience loss of data. There are no doubts products which can allow us to do this more easily but it seems to me to be an unnecessary product in the first place since we can just design our application to not rely on the session. As I understand it the web was designed to be stateless i.e. each request is independent and all the information is contained within that request and the idea of the session was only something which was added in later on. == How does the way we code change if we don't use the session? One thing we've often used the session for on projects that I've worked on is to store the current state of a form that the user is filling in. When they've completed the form then we would probably store some representation of what they've entered in a database. If we don't use the session then we need to store this intermediate data somewhere and include a key to load it in the request. On the project I'm working on at the moment we're storing that data in a database but then clearing out that data every other day since it's not needed once the user has completed the form. An alternative perhaps could be to store it in a cache since in reality all we have is a key/value pair which we need to keep for a relatively short amount of time. == Advantages/disadvantages of this approach The disadvantage of this approach is that we have to make more reads and writes to the database to deal with this temporary data. Apart from the advantages I outlined initially, we are also more protected if a server handling a user's request goes down. If we were using the session to store intermediate state then that information would be lost and they would have to start over. In the approach we've using this isn't a problem and when the request is sent to another server we can still query the database and get whatever data the user had already saved. As with most things there's a trade off to be made but in this case it seems a fair one to me. == Alternative approaches I've come across some alternative approaches where we avoid using the session but don't store intermediate state in a database. One way is to store that state in hidden fields on the form and another is to send it in the request parameters. Neither of these approaches seem particularly clean to me and they give the user an easier way to change the intermediate data in ways that the form might not allow them to do. From my experience our server side code becomes more complicated since we're always writing all of the data entered so far back into the page. In addition the url becomes a complete mess with the second approach.
null
null
[ 0.01649889536201954, -0.02010519430041313, 0.010079518891870975, 0.044330812990665436, 0.08962472528219223, -0.029602106660604477, 0.024685021489858627, 0.019185272976756096, -0.005450548604130745, -0.03038482554256916, -0.009396685287356377, -0.023548634722828865, -0.06909052282571793, -0.004035176709294319, -0.028072906658053398, 0.05857584998011589, 0.08066824078559875, -0.01280948892235756, 0.03940052539110184, 0.0023907034192234278, 0.01568974368274212, 0.08099552243947983, 0.006381734274327755, 0.017197592183947563, 0.03557224199175835, 0.03431543707847595, -0.00920848734676838, -0.0006072138785384595, -0.055666789412498474, -0.0018202272476628423, 0.0305557269603014, 0.0069441040977835655, -0.017576992511749268, 0.009057734161615372, 0.03565751016139984, -0.024472642689943314, 0.0024660411290824413, 0.048641275614500046, -0.004483543802052736, 0.002646651351824403, -0.06396133452653885, 0.036732155829668045, -0.00034865844645537436, -0.0009304065606556833, -0.025340525433421135, -0.01887744665145874, -0.024365203455090523, 0.012961993925273418, 0.00901965145021677, -0.004884872119873762, -0.08202449232339859, 0.04488276317715645, -0.021663671359419823, 0.014003030955791473, -0.0006730288732796907, 0.04361584410071373, 0.011680367402732372, -0.05286305770277977, -0.0009034406393766403, -0.046553704887628555, 0.006124534644186497, 0.008246195502579212, 0.006775699555873871, 0.01944221742451191, 0.00579541502520442, -0.03408975526690483, 0.018170809373259544, 0.04048755392432213, -0.009525162167847157, 0.0012513847323134542, 0.014785750769078732, 0.01744074933230877, -0.005750220734626055, 0.012237191200256348, 0.012514994479715824, -0.02713622711598873, 0.0073065138421952724, 0.05139261484146118, 0.00798221305012703, 0.05732288584113121, -0.024393510073423386, 0.0028584033716470003, 0.01640268601477146, 0.029896898195147514, -0.01774609461426735, -0.06876781582832336, -0.013276878744363785, -0.004048462025821209, -0.053408220410346985, 0.06103949248790741, 0.015245947986841202, -0.05124320834875107, 0.04885246232151985, 0.04112153500318527, -0.024805810302495956, -0.012171443551778793, 0.02622227370738983, 0.006843551527708769, -0.006753434892743826, 0.004373133648186922, -0.021994810551404953, -0.014590599574148655, -0.011451393365859985, -0.0040823291055858135, -0.06633111089468002, 0.01964361034333706, -0.0215036291629076, -0.01806354708969593, 0.01041270513087511, -0.006899322848767042, -0.024637283757328987, 0.001978378975763917, -0.011040284298360348, 0.006287336815148592, -0.06856352090835571, 0.06520284712314606, -0.01116557139903307, -0.056248683482408524, 0.0023330121766775846, 0.01743529550731182, 0.05622290074825287, 0.035535939037799835, -0.01828908734023571, 0.06742911785840988, 0.0012238776544108987, -0.0012274595210328698, 0.01875949651002884, 0.043755318969488144, -0.02963639609515667, -0.07415010780096054, 0.0009451003279536963, 0.039520036429166794, -0.0011426331475377083, -0.007069402374327183, -0.008050038479268551, -0.008823985233902931, 0.00655705388635397, -0.0016489431727677584, 0.058239031583070755, 0.053662583231925964, 0.006076768506318331, -0.061849333345890045, 0.013432448729872704, 0.017195601016283035, 0.04660763218998909, -0.002456993330270052, 0.016627123579382896, -0.05324248969554901, -0.04633892700076103, -0.0027698546182364225, 0.017198873683810234, 0.028665481135249138, 0.038272980600595474, -0.04273737594485283, 0.022921426221728325, 0.09272655099630356, 0.016936738044023514, 0.0009595690062269568, -0.016217924654483795, -0.0022240886464715004, 0.028852874413132668, 0.0026905948761850595, 0.005504113156348467, 0.0385645292699337, 0.01605144329369068, 0.01681462861597538, -0.021943939849734306, 0.04759753495454788, 0.01417562272399664, 0.005584109108895063, -0.07018643617630005, -0.0471893772482872, 0.04931055009365082, -0.053817491978406906, -0.033570822328329086, 0.06628470867872238, 0.06619236618280411, 0.03999028727412224, 0.03142348676919937, -0.00533954007551074, -0.0684594064950943, 0.01596708409488201, 0.008218422532081604, 0.013477969914674759, 0.0144970016553998, 0.0007870469707995653, 0.06768860667943954, 0.03964703530073166, 0.003269998822361231, 0.026368629187345505, -0.07857970893383026, -0.05624556541442871, -0.03910578787326813, 0.010777787305414677, 0.05671728029847145, -0.03664947301149368, 0.00791329238563776, 0.10064686834812164, 0.026752645149827003, 0.049579448997974396, 0.042857371270656586, 0.0037098689936101437, 0.027079667896032333, -0.03306611627340317, -0.031029056757688522, 0.03763359412550926, 0.022049512714147568, -0.017909107729792595, -0.04044700041413307, 0.017350858077406883, -0.021539293229579926, -0.015073321759700775, 0.019031811505556107, -0.007871213369071484, 0.008955346420407295, 0.006397672463208437, 0.06060091033577919, -0.03647962212562561, 0.0695003941655159, -0.05054054409265518, 0.035589221864938736, 0.011384349316358566, -0.006522161886096001, 0.02445754036307335, 0.0029298863373696804, 0.11087052524089813, 0.042084723711013794, -0.04037722945213318, -0.04191691055893898, 0.0104646822437644, 0.010800596326589584, -0.06548313796520233, 0.0028164968825876713, -0.011088928207755089, -0.002017031656578183, 0.02534448727965355, -0.024235568940639496, -0.0394035279750824, 0.008908713236451149, -0.040604542940855026, -0.014102413319051266, 0.07047624886035919, -0.010138018056750298, 0.058253318071365356, -0.0181120615452528, -0.002809553872793913, -0.01828860491514206, -0.016160715371370316, -0.048771437257528305, -0.004185907077044249, 0.024409744888544083, -0.013723681680858135, 0.04173070192337036, -0.03128775954246521, -0.020210132002830505, -0.03183708339929581, -0.02757386304438114, 0.03148631379008293, 0.005097926128655672, 0.05705256015062332, -0.03502442687749863, 0.05978997424244881, 0.001390538876876235, 0.00898770522326231, -0.009365635924041271, -0.0496106892824173, -0.027324529364705086, -0.0480215847492218, -0.013956244103610516, 0.03776228800415993, 0.03109547309577465, -0.022400015965104103, 0.04300146922469139, 0.013381474651396275, -0.00915495678782463, -0.00429457426071167, 0.03399370610713959, -0.0036787432618439198, 0.01663687452673912, -0.03395034745335579, -0.01945664919912815, 0.04261736199259758, -0.03384264558553696, -0.029580991715192795, 0.02067669853568077, -0.07653436064720154, 0.04274976998567581, -0.07879900932312012, -0.06255615502595901, -0.009976106695830822, 0.04357868805527687, 0.044511355459690094, 0.022623835131525993, 0.01245947740972042, 0.08099966496229172, 0.02666810341179371, 0.02033759467303753, 0.011912518180906773, 0.00895771849900484, 0.04584776237607002, -0.01684923842549324, -0.03010244108736515, 0.018053827807307243, -0.0063861883245408535, 0.012669582851231098, -0.06918186694383621, 0.03006957471370697, -0.027295511215925217, -0.2853025794029236, 0.03631425276398659, 0.02346595749258995, -0.03544284403324127, 0.018293963745236397, -0.0005344808450900018, 0.01875881478190422, -0.040182314813137054, -0.023474592715501785, 0.02688390016555786, -0.034245334565639496, -0.029176590964198112, -0.009400789625942707, 0.05965874344110489, -0.01230251882225275, 0.06065652519464493, 0.034208524972200394, -0.03186342120170593, 0.00843644980341196, 0.028167804703116417, -0.022807829082012177, -0.07333540916442871, 0.011522641405463219, 0.04298577830195427, 0.043950460851192474, 0.05746285244822502, -0.06987075507640839, 0.03745526820421219, -0.04539138078689575, -0.005038308445364237, 0.007632641587406397, 0.0020951908081769943, 0.002245561918243766, -0.01768360659480095, -0.026132000610232353, -0.020963946357369423, 0.05527396872639656, 0.023742569610476494, 0.012847552075982094, -0.0028026921208947897, -0.034761033952236176, -0.039739008992910385, -0.011656612157821655, 0.02352939546108246, 0.07221102714538574, 0.0020526216831058264, -0.07690141350030899, 0.007682872470468283, -0.03924965858459473, 0.0522863008081913, -0.012161201797425747, -0.05696100369095802, -0.015347887761890888, 0.04087913781404495, -0.005448918789625168, -0.022599447518587112, -0.008379827253520489, -0.007821446284651756, -0.048554908484220505, -0.04790123552083969, -0.004301447421312332, -0.05321190133690834, -0.039303384721279144, -0.0614461749792099, 0.019405165687203407, -0.06235434487462044, -0.04904136061668396, 0.00484798988327384, 0.07613049447536469, 0.032008036971092224, -0.020577700808644295, 0.004421136807650328, 0.012410582043230534, -0.10919386893510818, 0.001824958366341889, -0.033002667129039764, -0.021722661331295967, 0.01609744131565094, 0.018344158306717873, 0.03812699392437935, -0.02915079891681671, -0.03826180100440979, 0.009289726614952087, 0.0022503468208014965, 0.03538791835308075, -0.007788168732076883, 0.04352222755551338, 0.018331235274672508, -0.030225027352571487, 0.016231711953878403, 0.07941769063472748, -0.006875705439597368, -0.025075865909457207, -0.03438268601894379, 0.004421827849000692, 0.030520571395754814, 0.009610189124941826, 0.00019638362573459744, -0.005684906616806984, 0.026953257620334625, 0.016195792704820633, -0.03748674690723419, 0.03032967820763588, -0.01395578496158123, -0.02484036237001419, 0.015273379161953926, -0.05447441712021828, 0.030215255916118622, 0.041164983063936234, 0.040414392948150635, -0.03428120166063309, -0.04089998081326485, -0.0036398707889020443, -0.05714757367968559, -0.04289998486638069, -0.0038726921193301678, -0.00008433756738668308, 0.026330461725592613, -0.034024354070425034, -0.01789640635251999, -0.03277112916111946, 0.014796157367527485, 0.03331613168120384, -0.007459428161382675, -0.05601517856121063, -0.0214903075248003, -0.014906471595168114, -0.017423056066036224, 0.038791995495557785, 0.02500191144645214, -0.01540482696145773, 0.026733096688985825, 0.019550884142518044, -0.05258803069591522, 0.006041189190000296, -0.002119427779689431, -0.035266853868961334, -0.03079953044652939, 0.016459763050079346, -0.014630191028118134, -0.005473583471029997, 0.03009970113635063, 0.018328584730625153, 0.036042314022779465, 0.03750569373369217, 0.02583189122378826, 0.033896706998348236, -0.004342387430369854, 0.027293525636196136, 0.011333530768752098, 0.0069966684095561504, -0.06843433529138565, -0.021391091868281364, -0.03179558739066124, -0.053349677473306656, -0.023222414776682854, 0.03329625353217125, -0.01826818659901619, -0.023338310420513153, 0.006798207759857178, -0.021299265325069427, -0.08697382360696793, -0.048962488770484924, -0.026346217840909958, 0.008911717683076859, 0.057648662477731705, -0.00738757336512208, 0.009284785948693752, -0.011225019581615925, -0.01438665110617876, 0.009294562041759491, 0.024536950513720512, -0.048046499490737915, 0.025142621248960495, 0.03648943081498146, -0.02367783524096012, -0.004926017019897699, 0.0014991953503340483, 0.053794167935848236, 0.006409622263163328, 0.0039547281339764595, -0.013172215782105923, 0.004946891684085131, 0.0032656919211149216, 0.040215637534856796, 0.007183057721704245, -0.0016055143205448985, 0.023071834817528725, -0.005839088466018438, -0.014114798977971077, -0.03299961984157562, 0.0002505150914657861, 0.005086968652904034, 0.004000008571892977, 0.00012133254494983703, -0.06867901235818863, 0.051174815744161606, 0.017604289576411247, 0.01061411015689373, 0.021674957126379013, 0.013509643264114857, -0.011235777288675308, -0.007502529304474592, 0.04262980818748474, 0.04265189543366432, -0.04967382922768593, -0.0007332441164180636, -0.0070190723054111, 0.022120535373687744, 0.012752404436469078, -0.016539374366402626, -0.04785724729299545, -0.02780064009130001, -0.012918439693748951, 0.012837992049753666, -0.05309661850333214, -0.027788899838924408, -0.029560869559645653, -0.009007928892970085, -0.012803940102458, 0.01841704174876213, -0.005198284052312374, -0.009112331084907055, -0.03443610668182373, -0.024802882224321365, -0.015290903858840466, -0.014069115743041039, -0.011436529457569122, 0.0054867686703801155, -0.028799107298254967, -0.00026701670140028, -0.028660286217927933, 0.008652313612401485, -0.0021845747251063585, -0.05648662522435188, -0.004805063828825951, -0.04581870138645172, 0.01986043155193329, 0.030613919720053673, 0.04439649358391762, -0.028925085440278053, -0.010301453992724419, -0.02255052514374256, -0.011832972057163715, -0.03338329866528511, 0.004124283790588379, -0.0474185012280941, -0.023257305845618248, 0.03754768893122673, 0.050286851823329926, 0.014377686195075512, 0.02839715965092182, 0.009035075083374977, -0.01918504387140274, 0.05573118478059769, -0.06870999932289124, -0.01442850474268198, -0.06846798211336136, -0.05170764401555061, 0.0017679402371868491, 0.008381650783121586, 0.02560093253850937, -0.06181291118264198, 0.005729988217353821, 0.023554274812340736, 0.01968015730381012, 0.05738382786512375, -0.006539372727274895, 0.04527781531214714, -0.05139956250786781, -0.0018269617576152086, -0.08434812724590302, 0.0069283549673855305, 0.013505754061043262, 0.010696295648813248, -0.021788327023386955, 0.010279815644025803, -0.02632860280573368, 0.06484059989452362, -0.05639486759901047, -0.019288452342152596, 0.04145835340023041, -0.0007207798189483583, -0.02905001863837242, 0.022582247853279114, -0.07692595571279526, 0.02020406723022461, 0.012993372045457363, -0.03942234069108963, -0.007069309242069721, -0.00845592562109232, 0.05256594717502594, 0.02127470262348652, 0.022704647853970528, -0.05555099621415138, -0.0020258205477148294, 0.07431229203939438, 0.0010110294679179788, -0.008749701082706451, 0.05524192005395889, -0.008842346258461475, 0.03204047307372093, 0.015343250706791878, -0.014400075189769268, -0.0015567843802273273, 0.010130969807505608, -0.004098198842257261, -0.07194830477237701, 0.0312217865139246, -0.0012654124293476343, -0.032484088093042374, -0.054797571152448654, 0.07170985639095306, 0.017801787704229355, -0.03569148853421211, -0.07172596454620361, 0.02200162224471569, -0.04722924530506134, -0.02218671701848507, -0.028765099123120308, 0.004128617700189352, -0.05120282620191574, 0.053550515323877335, 0.00473277922719717, 0.020519893616437912, 0.06733738631010056, -0.004628556780517101, -0.022156888619065285, -0.015807336196303368, 0.07354329526424408, 0.08629092574119568, 0.06234366074204445, 0.009991873987019062, 0.051043227314949036, 0.018713975325226784, -0.02841350808739662, 0.005221804138273001, -0.03325844928622246, -0.05599124729633331, -0.0434226356446743, 0.00040456323768012226, 0.029807092621922493, -0.028323961421847343, 0.06658093631267548, -0.02522607333958149, -0.007104463875293732, 0.018308419734239578, 0.04978398233652115, 0.04028742387890816, 0.03365084528923035, 0.013880230486392975, 0.030373547226190567, -0.011492609977722168, -0.04335187375545502, 0.02141130343079567, -0.03079666942358017, -0.029818130657076836, 0.02090301364660263, -0.003058159491047263, -0.0023746569640934467, 0.009473652578890324, 0.020864320918917656, 0.05969025194644928, -0.030814718455076218, 0.016291536390781403, 0.000652081856969744, 0.03337693586945534, -0.009098496288061142, 0.017063401639461517, -0.02289760485291481, -0.03279561176896095, 0.0017892899923026562, -0.040723852813243866, -0.009803662076592445, -0.01724756509065628, -0.032187581062316895, 0.05307891592383385, -0.024940339848399162, 0.003884047968313098, 0.019935572519898415, 0.022740185260772705, -0.06999680399894714, -0.032334405928850174, -0.07251528650522232, -0.027993960306048393, -0.055039484053850174, 0.007254593074321747, 0.0450158566236496, 0.001441851258277893, -0.0358174704015255, -0.012474648654460907, -0.0159820057451725, -0.014123001135885715, 0.032116685062646866, -0.03584868833422661, -0.023435700684785843, 0.010421916842460632, 0.02097613923251629, 0.03901388496160507, 0.028891516849398613, 0.06792383641004562, -0.018555769696831703, 0.016706135123968124, -0.04769193381071091, 0.008943334221839905, 0.04256964102387428, -0.0028042381163686514, -0.018799087032675743, -0.0842016190290451, 0.03779902309179306, 0.012115971185266972, -0.009229166433215141, -0.04654407873749733, 0.018287882208824158, 0.01571929268538952, -0.002889663679525256, 0.07327673584222794, -0.02112715132534504, -0.0020548610482364893, -0.05705549567937851, -0.029823672026395798, -0.0022411737591028214, 0.023209907114505768, 0.04679173231124878, 0.0130270104855299, 0.09166359901428223, 0.03658269718289375, -0.023953789845108986, -0.03630881756544113, 0.01279120147228241, -0.0032928488217294216, -0.01453088503330946, -0.014401386491954327, -0.037243109196424484, -0.04085454344749451, -0.061657700687646866, -0.03869442269206047, 0.02936803176999092, -0.023574581369757652, -0.019624430686235428, 0.00494975782930851, 0.04893634095788002, -0.05103612691164017, 0.006465062033385038, -0.03443533182144165, 0.018489817157387733, -0.04809844121336937, -0.004114294424653053, -0.006357052829116583, 0.02412245236337185, -0.004144362173974514, -0.025686029344797134, 0.02091282233595848, -0.05623532459139824, -0.00880487635731697, 0.014950531534850597, 0.029696498066186905, 0.043233271688222885, -0.018936581909656525, 0.0015652431175112724 ]
[ -0.08255161345005035, -0.020703602582216263, -0.027377013117074966, -0.05365097522735596, 0.03511439263820648, -0.0235559344291687, -0.0017322239000350237, -0.0018471478251740336, 0.018443837761878967, -0.016473500058054924, 0.0220060795545578, 0.007179379463195801, -0.01450907438993454, 0.032488010823726654, 0.08417481929063797, 0.01118109468370676, -0.022745853289961815, -0.07496403902769089, -0.017961811274290085, 0.05450274050235748, 0.02318878285586834, -0.014264089055359364, -0.04206227511167526, -0.0181876327842474, -0.02130165323615074, 0.007522413041442633, 0.01669382117688656, -0.0415559783577919, 0.009729013778269291, -0.1671476662158966, 0.02132231369614601, -0.017976654693484306, 0.011534297838807106, -0.02870781719684601, 0.010110908187925816, 0.037877172231674194, 0.054912734776735306, 0.005261946003884077, 0.010200057178735733, 0.040706817060709, 0.02053092047572136, 0.055469587445259094, -0.05601052939891815, -0.02596484310925007, 0.006026000250130892, -0.008018722757697105, -0.01118116732686758, -0.04163810983300209, -0.04357818141579628, 0.05189509317278862, 0.0011234928388148546, -0.01759665086865425, 0.002463138895109296, -0.010267239063978195, -0.020878789946436882, 0.027860699221491814, 0.009152044542133808, 0.07497183978557587, -0.027971982955932617, 0.028144802898168564, -0.001168257324025035, -0.03016366995871067, -0.134689599275589, 0.08518216013908386, 0.04048512876033783, 0.07471007108688354, -0.06243297457695007, 0.0021093650721013546, -0.006725842133164406, 0.11200853437185287, -0.02170870266854763, -0.00971117615699768, -0.06013805419206619, 0.046221956610679626, 0.02902032807469368, -0.027705708518624306, -0.002316900994628668, 0.06570440530776978, 0.05104546621441841, -0.04015706852078438, -0.030124228447675705, -0.02665255218744278, 0.0002281865308759734, 0.003077074885368347, -0.05444680154323578, 0.004070315044373274, -0.007679896429181099, 0.05540595203638077, 0.037562817335128784, 0.008590743876993656, 0.0245561171323061, -0.021755462512373924, 0.02896887995302677, -0.02186654321849346, -0.06219889223575592, 0.012760474346578121, -0.020819587633013725, 0.0550476536154747, -0.07579699158668518, 0.39879313111305237, -0.010036765597760677, -0.015705008059740067, 0.05441369116306305, 0.0324246883392334, -0.022675348445773125, -0.0032947519794106483, 0.024689406156539917, -0.019246861338615417, 0.019422734156250954, -0.023801343515515327, -0.004042812157422304, 0.0147431381046772, 0.03711827099323273, -0.041769880801439285, 0.008896814659237862, 0.014733401127159595, 0.002942917635664344, 0.021618366241455078, 0.012677697464823723, -0.0007769596995785832, -0.01899798773229122, 0.0016489563276991248, 0.05555760860443115, 0.008588595315814018, 0.0172701645642519, 0.003984970040619373, 0.03827439248561859, 0.06888014078140259, 0.017992403358221054, -0.0012902019079774618, 0.028134237974882126, -0.0434795618057251, -0.06003187224268913, 0.0031449096277356148, -0.004831161815673113, 0.003313666908070445, 0.024061156436800957, -0.034697480499744415, 0.013832783326506615, 0.03480739891529083, 0.021960614249110222, 0.0019151602173224092, 0.009461544454097748, -0.022093692794442177, -0.030555181205272675, 0.12339344620704651, 0.03702802211046219, -0.03473525494337082, -0.048921871930360794, -0.03675069659948349, -0.0028461627662181854, 0.04779389873147011, -0.01497872918844223, -0.07062239944934845, 0.012913594953715801, 0.037355776876211166, 0.06439827382564545, -0.024678640067577362, -0.057020269334316254, -0.02722098119556904, -0.01480626780539751, -0.018456922844052315, -0.02821499854326248, 0.05376401171088219, 0.07603655010461807, -0.11943334341049194, -0.03670485317707062, 0.013266216963529587, 0.023518258705735207, -0.06158697232604027, -0.028966203331947327, 0.003673870349302888, -0.03038107044994831, -0.033426590263843536, 0.06816366314888, -0.04290331155061722, -0.039299510419368744, -0.0013545926194638014, 0.031176062300801277, 0.0014872398460283875, 0.02206793799996376, 0.014163362793624401, -0.04645826667547226, 0.006638421211391687, -0.0575307235121727, -0.07873855531215668, -0.04137324541807175, 0.010607210919260979, -0.020034348592162132, -0.025104744359850883, -0.055790044367313385, -0.04098918288946152, -0.08744039386510849, 0.056799501180648804, -0.016300614923238754, -0.005119740962982178, 0.030328959226608276, -0.01489182747900486, -0.03208354488015175, -0.02670946530997753, 0.013995583169162273, 0.054320644587278366, -0.023029232397675514, 0.0367506705224514, -0.03357050567865372, 0.1027650386095047, 0.054968807846307755, -0.028930889442563057, 0.05558255687355995, 0.042422741651535034, -0.052998725324869156, -0.00047899677883833647, -0.0005863011465407908, 0.007927791215479374, -0.0006263963878154755, -0.028017057105898857, 0.010519911535084248, 0.03232843801379204, 0.01834629848599434, 0.03920963034033775, -0.00986817479133606, 0.0007810129900462925, 0.010169034823775291, -0.3500983417034149, -0.047738928347826004, -0.022551430389285088, 0.004536103922873735, 0.03163578361272812, -0.0534544475376606, 0.03900964558124542, -0.004963646177202463, -0.03076365403831005, 0.00683671934530139, 0.09094733744859695, -0.008135233074426651, -0.0017194738611578941, -0.06660211086273193, -0.007936108857393265, 0.010427840985357761, -0.028674429282546043, -0.02467327006161213, -0.01981598138809204, -0.007198070641607046, 0.006738053634762764, -0.015848897397518158, -0.008537979796528816, -0.08095814287662506, 0.005749473348259926, -0.03139030188322067, 0.10839476436376572, -0.0224662683904171, 0.06654088199138641, -0.06708872318267822, 0.06336359679698944, 0.0007121865637600422, 0.0005424622795544565, -0.1377769559621811, 0.00384219060651958, -0.022045064717531204, -0.004668203182518482, 0.018922043964266777, 0.06887110322713852, -0.036936040967702866, -0.061348773539066315, 0.023533249273896217, -0.04598686844110489, -0.053000885993242264, -0.04846182093024254, 0.015341424383223057, -0.016173940151929855, -0.05420737341046333, -0.03955857828259468, 0.03727703541517258, 0.011893406510353088, -0.009416844695806503, 0.004933403804898262, 0.017514847218990326, 0.0014052260667085648, -0.03406805545091629, -0.07385420799255371, 0.010002195835113525, -0.007144673727452755, 0.03149805963039398, 0.013558289036154747, 0.03094968944787979, 0.014771022833883762, -0.055991873145103455, 0.01858392171561718, 0.0180643443018198, 0.02111063152551651, -0.009174331091344357, 0.08603063970804214, -0.04083678871393204, -0.03225594013929367, 0.10462777316570282, 0.0034762637224048376, 0.0056055812165141106, 0.04447063431143761, 0.02750505693256855, -0.04092308133840561, 0.04001524671912193, 0.0029834136366844177, 0.011358747258782387, 0.007084311917424202, -0.021590348333120346, 0.051223210990428925, -0.040318526327610016, -0.0048780194483697414, 0.04081834480166435, -0.03474222496151924, -0.015555601567029953, 0.0360574834048748, 0.003143807640299201, -0.01580265536904335, -0.021778324618935585, -0.04933232069015503, -0.07403045892715454, 0.05622172728180885, -0.020484456792473793, -0.25553005933761597, 0.013492579571902752, 0.06328341364860535, 0.061197202652692795, -0.002142560901120305, 0.04915454238653183, 0.040298957377672195, -0.011872728355228901, -0.006693596951663494, 0.005314614158123732, 0.03350444883108139, 0.010556300170719624, -0.0070105381309986115, 0.003836516523733735, 0.04653453826904297, 0.01282668299973011, 0.03752343729138374, -0.006050528958439827, 0.018896136432886124, -0.03202406316995621, 0.020298928022384644, -0.014328490011394024, 0.16522978246212006, 0.017523540183901787, 0.027924712747335434, 0.04056055471301079, 0.010219821706414223, 0.03904525563120842, 0.09800262004137039, 0.017630644142627716, -0.027465615421533585, -0.0005835639894939959, 0.054449621587991714, -0.010494904592633247, 0.012825562618672848, -0.11602114140987396, -0.013630635105073452, -0.023724935948848724, 0.03805441036820412, -0.004790124483406544, -0.004234796855598688, -0.01517486572265625, 0.00008874796913005412, 0.04581086337566376, 0.05838257074356079, 0.011515626683831215, 0.019504256546497345, -0.04816097021102905, -0.026452135294675827, -0.01640121079981327, -0.03716255724430084, -0.055214185267686844, 0.018891945481300354, 0.009486885741353035, 0.026593515649437904, 0.07432479411363602, 0.033657971769571304, -0.02654366008937359, -0.012660989537835121, 0.024679094552993774, 0.011157545261085033, -0.00803560670465231, 0.130914106965065, 0.00017609907081350684, 0.0009438369888812304 ]
[ -0.022215718403458595, 0.025594506412744522, 0.007245693355798721, 0.028058359399437904, -0.016933346167206764, 0.00011283416097285226, 0.029395250603556633, -0.0015929813962429762, 0.006747355218976736, 0.0064468844793736935, -0.03229130804538727, -0.0003763767017517239, 0.037525683641433716, 0.0014433341566473246, 0.04511924088001251, 0.0003587077371776104, -0.008358817547559738, -0.013239113613963127, 0.03863095864653587, 0.023393893614411354, -0.00838202703744173, 0.005709487944841385, 0.019291209056973457, -0.015108361840248108, -0.00760135380551219, 0.03515639901161194, -0.031141920015215874, -0.03074042871594429, 0.029560601338744164, -0.1100616529583931, -0.03225252032279968, -0.024435942992568016, -0.025208333507180214, -0.02038651332259178, -0.022938059642910957, -0.01419408991932869, 0.001408600714057684, 0.022791095077991486, 0.010935001075267792, 0.018107738345861435, -0.00676336046308279, -0.026596182957291603, 0.00943845883011818, 0.025864172726869583, -0.019883286207914352, -0.009869617410004139, -0.02870532125234604, -0.03984864428639412, -0.02945646084845066, -0.020913872867822647, -0.00910260807722807, -0.017599448561668396, 0.00811041984707117, 0.028212880715727806, -0.012405294924974442, -0.02635841630399227, -0.006462763529270887, 0.00930675957351923, -0.01940738596022129, 0.03243853896856308, -0.013634802773594856, -0.004814434796571732, -0.014060345478355885, -0.013110721483826637, 0.010341133922338486, 0.00010050116543425247, 0.016784774139523506, -0.018806008622050285, 0.009860939346253872, -0.003057781606912613, -0.03581992909312248, 0.00906948558986187, -0.02502257749438286, -0.030347490683197975, 0.006360315717756748, -0.04304264113306999, 0.008300579153001308, 0.02713163010776043, 0.005568869411945343, 0.023860741406679153, -0.03484009951353073, 0.015409047715365887, 0.03253740072250366, 0.019393302500247955, -0.0319330096244812, -0.043673235923051834, 0.008908711373806, -0.0027074511162936687, 0.01579432561993599, -0.006413259077817202, -0.05383085459470749, 0.05604486167430878, -0.025925684720277786, 0.0028385091572999954, -0.08811618387699127, -0.011674920096993446, -0.013682682067155838, 0.030760372057557106, -0.0003454265824984759, 0.848942220211029, 0.009117183275520802, 0.02485179901123047, 0.016778578981757164, 0.04192544147372246, -0.005946153774857521, -0.022927124053239822, -0.005038323812186718, 0.009997409768402576, 0.036506518721580505, -0.028053902089595795, -0.006467597093433142, 0.016294322907924652, 0.02549353428184986, 0.039759278297424316, -0.001147937378846109, -0.0064295376650989056, 0.03820140287280083, -0.025027655065059662, -0.03762196749448776, 0.02220582589507103, 0.05250338464975357, -0.023151494562625885, 0.01456433441489935, 0.015450239181518555, 0.0013060581404715776, -0.1794387251138687, 0.025810400024056435, -8.790376877491806e-33, 0.046484727412462234, -0.025112207978963852, 0.003972110338509083, 0.0022595650516450405, 0.020935583859682083, 0.025729650631546974, 0.017443731427192688, 0.005220539402216673, -0.016074998304247856, -0.02045675367116928, 0.0004877836036030203, -0.004613033030182123, 0.018392033874988556, 0.005562129430472851, 0.02652103081345558, -0.03355251997709274, -0.019425205886363983, 0.04232243075966835, 0.04411287233233452, -0.01888158544898033, 0.019561707973480225, 0.029435068368911743, 0.011425883509218693, 0.014612139202654362, 0.006385933607816696, 0.032998885959386826, -0.0047455751337111, 0.01829695701599121, -0.008386037312448025, -0.05854925885796547, 0.02506718970835209, -0.007723224349319935, -0.008594031445682049, -0.029980093240737915, 0.005793966818600893, -0.042957860976457596, -0.010055978782474995, 0.01122323889285326, -0.01750250905752182, -0.055223941802978516, -0.019328758120536804, 0.013680684380233288, -0.022110819816589355, -0.005823804531246424, -0.04473702609539032, -0.02380233258008957, -0.008155735209584236, 0.03306494280695915, 0.004088434390723705, -0.026971513405442238, -0.007148026023060083, 0.018337272107601166, 0.010330475866794586, 0.029337454587221146, -0.05170782655477524, 0.011161032132804394, -0.007792758289724588, 0.019127212464809418, -0.014097636565566063, 0.03452266380190849, 0.014900414273142815, -0.042129747569561005, -0.03403012454509735, -0.010638830251991749, -0.02160440757870674, -0.01888224296271801, 0.01612323708832264, 0.0269770547747612, 0.02367572858929634, -0.010368291288614273, -0.03977595642209053, 0.022464904934167862, -0.0266090277582407, -0.009292785078287125, 0.012023745104670525, -0.015100891701877117, 0.0015230003045871854, 0.047235045582056046, -0.02318376675248146, 0.05320793017745018, 0.026900919154286385, 0.013655714690685272, -0.025683535262942314, -0.008444837294518948, -0.025036102160811424, -0.02730831503868103, 0.015836184844374657, 0.00580689636990428, -0.0024124642368406057, -0.005835055373609066, 0.026463890448212624, -0.0008620191365480423, 0.032714612782001495, -0.024307439103722572, -0.010840675793588161, 9.070220205436344e-33, -0.0012558534508571029, -0.04140954092144966, -0.04237866401672363, -0.0027990711387246847, 0.0627799704670906, 0.022577209398150444, 0.028430938720703125, 0.014239977113902569, -0.06853940337896347, 0.016916370019316673, -0.0011710845865309238, 0.01919393427670002, -0.024983059614896774, 0.03970135375857353, -0.011967266909778118, -0.005245194770395756, 0.008402440696954727, -0.03013221174478531, 0.020995771512389183, 0.004236551467329264, 0.026246123015880585, 0.014415739104151726, -0.016599085181951523, -0.003696195548400283, 0.034116536378860474, 0.04437863826751709, -0.020273208618164062, -0.0070489211939275265, -0.008601153269410133, 0.013172097504138947, -0.010292929597198963, -0.020417585968971252, 0.008498805575072765, -0.03893854841589928, -0.017121657729148865, 0.010448988527059555, -0.008958998136222363, 0.0004120213561691344, -0.007782215252518654, -0.006596151739358902, 0.024526000022888184, 0.006805370561778545, -0.012901796028017998, 0.011112337000668049, 0.04303978011012077, 0.04698556661605835, -0.029813449829816818, 0.018765173852443695, -0.031030969694256783, 0.03192153573036194, -0.015353087335824966, 0.007256918121129274, -0.013913827948272228, -0.029788469895720482, 0.0041889408603310585, -0.02506711147725582, -0.049555812031030655, 0.003366927383467555, -0.013158373534679413, -0.022639505565166473, 0.01328807882964611, 0.012010608799755573, -0.03636586666107178, 0.038716740906238556, -0.027735823765397072, 0.0026648691855371, -0.0022217342630028725, 0.010790456086397171, 0.02273954078555107, -0.0024528084322810173, -0.02872999757528305, 0.007441787049174309, -0.01495986059308052, 0.035818178206682205, 0.06740628182888031, -0.03843572363257408, 0.004214428830891848, -0.026937875896692276, 0.014733576215803623, 0.022803399711847305, -0.01129944995045662, 0.009433708153665066, 0.005288506858050823, -0.03902781009674072, 0.019962353631854057, 0.03206368163228035, -0.023517275229096413, 0.020771849900484085, -0.017665745690464973, -0.007394966669380665, -0.028855232521891594, 0.0001627858728170395, -0.026256464421749115, 0.009932439774274826, 0.009691264480352402, -1.3908705298604218e-8, 0.009205039590597153, 0.002982702339068055, 0.0024006254971027374, 0.028590237721800804, 0.03191739320755005, 0.022919951006770134, -0.01536999735981226, -0.017642349004745483, -0.02346489019691944, 0.009187018498778343, 0.0458793044090271, -0.027821939438581467, 0.018536852672696114, -0.001043609925545752, 0.0019031631527468562, -0.04392952471971512, 0.0027745768893510103, 0.006533117964863777, 0.039376113563776016, 0.012639094144105911, 0.003256679279729724, 0.039749134331941605, -0.007990374229848385, 0.013591650873422623, 0.05091525986790657, -0.016779862344264984, 0.018173417076468468, -0.03974999487400055, -0.03496386483311653, 0.00017027206195052713, -0.026815295219421387, -0.018485665321350098, -0.03602064400911331, -0.004159147851169109, -0.01204685214906931, -0.01739257574081421, -0.03002895601093769, 0.013511231169104576, 0.01229996606707573, -0.004080202430486679, -0.004189521074295044, 0.010370876640081406, 0.005789000540971756, -0.011460604146122932, 0.013044980354607105, 0.022607333958148956, -0.014251379296183586, 0.038626234978437424, 0.046312104910612106, -0.04987271875143051, 0.02944648079574108, -0.040960896760225296, 0.03126198425889015, 0.032174840569496155, 0.03833230212330818, 0.00427274638786912, 0.02803782746195793, -0.00970238447189331, 0.013360016979277134, 0.0013732279185205698, 0.040144775062799454, 0.028138795867562294, -0.03338325768709183, -0.05178288742899895 ]
rules-of-thumb-dont-use-the-session
https://markhneedham.com/blog/2010/02/16/rules-of-thumb-dont-use-the-session
false
2010-02-28 01:45:49
Javascript: Confusing 'call' and 'apply'
[ "javascript" ]
[ "Javascript" ]
I wrote a couple of weeks ago about http://www.markhneedham.com/blog/2010/02/12/javascript-passing-functions-around-with-call-and-apply/[using the 'call' and 'apply' functions in Javascript when passing functions around] and while working on http://www.markhneedham.com/blog/2010/02/28/javascript-isolating-browser-specific-code/[our IE6 specific code] I realised that I'd got them mixed up. We were writing some code to override one of our functions so that we could call the original function and then do something else after that. The code was roughly like this: [source,javascript] ---- Foo = { bar : function(duck) { console.log("bar " + duck.quack()); } }; ---- The code that I originally wrote to capture the original function, call it and then do the additional behaviour was like this: [source,javascript] ---- (function() { var originalBar = Foo.bar; Foo.bar = function(duck) { originalBar.call(this, arguments); console.log("new bar"); }; })(); ---- When we call the function: [source,javascript] ---- Foo.bar({ quack : function() { return "quacking" } }); ---- We get the following error: [source,text] ---- TypeError: duck.quack is not a function ---- 'arguments' is a local variable in any Javascript function which contains all the arguments passed to the function stored in an array type structure. However, I had forgotten that when using the 'call' function we need to pass the full list of parameters individually rather than as an array so in this case we would need to pass 'duck' in specifically: [source,javascript] ---- (function() { var originalBar = Foo.bar; Foo.bar = function(duck) { originalBar.call(this, duck); console.log("new bar"); }; })(); ---- Now when we run the function we get the expected behaviour: [source,javascript] ---- Foo.bar({ quack : function() { return "quacking" } }); ---- [source,text] ---- bar quacking new bar ---- This is where apply comes in handy because apply allows us to pass in 'arguments' as the second parameter and it will send all the arguments of the function that we're inside to the function that we're calling which is exactly what we want in this case. Using 'apply' we would end up with the following code: [source,javascript] ---- (function() { var originalBar = Foo.bar; Foo.bar = function(duck) { originalBar.apply(this, arguments); console.log("new bar"); }; })(); ---- In this case the function only takes in one argument so there's not much noticeable improvement in the code but when a function takes multiple arguments then using 'apply' is certainly a cleaner approach.
null
null
[ -0.020006664097309113, 0.0022738617844879627, -0.008157878182828426, -0.0026903091929852962, 0.06664379686117172, 0.013382971286773682, 0.016717134043574333, -0.0011866595596075058, -0.010096187703311443, -0.012631756253540516, -0.018861733376979828, -0.003893926041200757, -0.08434707671403885, 0.003188418922945857, -0.003607512451708317, 0.0644780620932579, 0.08583568036556244, -0.01802820712327957, 0.04242551326751709, -0.0016004719072952867, 0.020034680142998695, 0.06333960592746735, -0.0031108588445931673, 0.01269181352108717, 0.04882442206144333, 0.017192400991916656, 0.006319322157651186, 0.006281194277107716, -0.06332376599311829, -0.007509245537221432, 0.02772018499672413, 0.04825478047132492, -0.023819072172045708, -0.009508511982858181, -0.01632753573358059, -0.0043687354773283005, -0.005387599114328623, 0.0021699208300560713, 0.008530160412192345, 0.08447577059268951, -0.051467668265104294, 0.01596406102180481, -0.01262025535106659, 0.010702750645577908, -0.05864124000072479, -0.009495653212070465, -0.05144776403903961, 0.004901666194200516, -0.009911520406603813, -0.0009985323995351791, -0.08622638136148453, 0.03398708999156952, -0.014657211489975452, -0.0068023656494915485, -0.013342863880097866, 0.023452909663319588, 0.01965443603694439, -0.0731213390827179, 0.013013825751841068, -0.043333012610673904, 0.009342702105641365, 0.028046950697898865, -0.007802776526659727, 0.05499134585261345, 0.024282405152916908, 0.032829202711582184, 0.004831066820770502, 0.047806430608034134, -0.04875853285193443, -0.01221765112131834, -0.013844192028045654, -0.017269184812903404, -0.058497555553913116, -0.038119375705718994, -0.001955632818862796, -0.01547436323016882, -0.017585206776857376, 0.0616547167301178, -0.019480261951684952, 0.03958585113286972, -0.016656430438160896, 0.001681703026406467, 0.012189273722469807, 0.0021448845509439707, 0.00948060117661953, -0.048291902989149094, -0.014956057071685791, 0.029981113970279694, -0.047035012394189835, 0.06987667083740234, 0.025467922911047935, -0.08787038177251816, 0.01133798435330391, 0.03189267963171005, 0.011209606193006039, 0.0019294340163469315, 0.01135275699198246, -0.01506082620471716, 0.03120526112616062, 0.0046002501621842384, -0.052486855536699295, -0.011095836758613586, 0.024977276101708412, -0.02073930948972702, -0.07195749878883362, 0.02553827501833439, -0.012277650646865368, -0.032314132899045944, -0.02659815177321434, 0.004454068373888731, -0.00466972216963768, 0.0240462739020586, 0.0014018261572346091, -0.008548380807042122, -0.07701150327920914, 0.051236383616924286, -0.006761899683624506, -0.011352692730724812, -0.013256826438009739, 0.03773985430598259, 0.06394156813621521, 0.026610592380166054, -0.03302666172385216, 0.08020788431167603, 0.029099656268954277, 0.03673408553004265, 0.00486112292855978, 0.07438991963863373, -0.008426464162766933, -0.05569849908351898, -0.03375542536377907, 0.043673522770404816, -0.013699662871658802, 0.006707040127366781, -0.030369335785508156, -0.014284428209066391, -0.0331299714744091, -0.003699153196066618, 0.04210037365555763, 0.042196474969387054, 0.004200408700853586, -0.0291316956281662, -0.028611671179533005, -0.03491252288222313, 0.006685136817395687, 0.0053354594856500626, -0.009675931185483932, -0.02887129969894886, -0.006605655886232853, 0.031166182830929756, 0.021681372076272964, 0.03881146013736725, 0.047425344586372375, -0.033162929117679596, 0.02671685814857483, 0.06703189760446548, 0.00956356804817915, -0.0001853948342613876, -0.020604470744729042, 0.0037430794909596443, 0.05531282722949982, 0.02417883090674877, -0.006211758591234684, 0.05598761513829231, -0.012376506812870502, -0.001218160497955978, -0.008568958379328251, 0.0637952908873558, -0.00613093888387084, -0.04078514128923416, -0.05948184058070183, -0.02757147327065468, 0.10021030902862549, -0.007678452879190445, -0.0344032347202301, 0.02074325643479824, 0.07385986298322678, -0.005768695380538702, 0.05156288668513298, 0.01917942427098751, -0.06702981889247894, 0.028794322162866592, 0.013780632987618446, 0.029623467475175858, 0.03108685091137886, 0.004484871868044138, 0.07389995455741882, 0.021062226966023445, -0.011533406563103199, 0.009614418260753155, -0.062258414924144745, -0.06863659620285034, -0.046190354973077774, 0.018902432173490524, 0.057701535522937775, -0.037927549332380295, -0.023916330188512802, 0.0931389182806015, 0.05400877445936203, 0.04227973148226738, -0.0025897056329995394, -0.06267280876636505, 0.019131049513816833, -0.01139634009450674, -0.028814498335123062, 0.05942663550376892, 0.05554499104619026, -0.02725924178957939, -0.01449891459196806, 0.028582440689206123, -0.027370329946279526, 0.02801477536559105, 0.039280395954847336, -0.014995903708040714, 0.04877005144953728, 0.009645306505262852, 0.04690534248948097, -0.054885897785425186, 0.01377565972507, -0.06060127913951874, 0.016620511189103127, 0.03363415598869324, -0.002416433999314904, 0.01032711286097765, 0.02889275550842285, 0.13221006095409393, 0.0662156343460083, -0.04076870530843735, -0.038454510271549225, 0.004240584094077349, -0.0034271320328116417, -0.03496970981359482, 0.0005811934825032949, 0.005599222145974636, -0.01974288560450077, -0.025385169312357903, -0.010873968712985516, 0.031908076256513596, 0.0022944845259189606, -0.04218970239162445, 0.01635219156742096, 0.06732359528541565, -0.012099973857402802, 0.0708792433142662, -0.038967642933130264, -0.019929300993680954, 0.007053483743220568, -0.04497696831822395, -0.027102656662464142, -0.029053596779704094, 0.031844139099121094, -0.0021991904359310865, 0.0728069394826889, -0.046055279672145844, 0.0024270054418593645, -0.025048760697245598, -0.04767896980047226, 0.017565833404660225, 0.05287528783082962, 0.03617345541715622, 0.0017476474167779088, 0.06064680591225624, 0.03337830677628517, 0.0070560285821557045, -0.011335538700222969, -0.0529501773416996, -0.024188607931137085, -0.009114878252148628, 0.0005584614118561149, 0.05045952647924423, 0.01797238178551197, 0.01630539447069168, 0.007576758041977882, 0.0001352117833448574, -0.0058207749389112, -0.010519472882151604, -0.004744572564959526, -0.04578341916203499, -0.04209970310330391, -0.0115258963778615, -0.024027014151215553, 0.05056529864668846, -0.034807853400707245, -0.03760361671447754, 0.008440996520221233, -0.05728241056203842, 0.007851481437683105, -0.07634570449590683, -0.033684831112623215, 0.02929636649787426, 0.04917244613170624, 0.017185932025313377, -0.011832143180072308, 0.02665277011692524, 0.05123874545097351, -0.022847313433885574, 0.03275952860713005, 0.01765543781220913, 0.0076136463321745396, 0.02256561629474163, 0.0064485035836696625, 0.007462731096893549, 0.025015179067850113, 0.006397593300789595, -0.006367402616888285, -0.044971201568841934, -0.025480711832642555, -0.008492272347211838, -0.2605251669883728, 0.04479850083589554, 0.014606041833758354, 0.010508093051612377, 0.016734104603528976, -0.037125665694475174, 0.01800239272415638, -0.03615029901266098, -0.014998972415924072, 0.017885424196720123, -0.013417685404419899, -0.04518924281001091, -0.011502868495881557, 0.03326976299285889, -0.02210637368261814, -0.03657013550400734, 0.011624419130384922, -0.020880617201328278, 0.007931607775390148, 0.041793543845415115, 0.011411406099796295, -0.07813499122858047, 0.02322046272456646, 0.03815402463078499, 0.04390847310423851, 0.01073429174721241, -0.07299630343914032, 0.020880868658423424, -0.037499357014894485, -0.021907608956098557, -0.014563292264938354, -0.00034769560443237424, 0.004484835546463728, 0.010233672335743904, -0.024594662711024284, -0.007340236566960812, 0.053147654980421066, 0.0067774285562336445, 0.04223594814538956, 0.01706841215491295, -0.03060479834675789, -0.031774234026670456, -0.006453606765717268, 0.02394520863890648, 0.06241237744688988, -0.025066839531064034, -0.06798240542411804, 0.007019094191491604, -0.041507620364427567, 0.06318548321723938, -0.013736964203417301, -0.0290183424949646, -0.019730424508452415, 0.04901217669248581, 0.012506715022027493, -0.032400403171777725, -0.019366461783647537, -0.015417752787470818, 0.008660354651510715, -0.03612793609499931, 0.029841173440217972, -0.029871802777051926, -0.0417974554002285, -0.03344036638736725, 0.013360287994146347, -0.08791283518075943, -0.07800186425447464, -0.024564795196056366, 0.08458074927330017, 0.03512154892086983, 0.015806276351213455, -0.015529191121459007, -0.010939178057014942, -0.11059826612472534, 0.01276953611522913, -0.05976228788495064, -0.033039651811122894, -0.029896581545472145, 0.00812632404267788, 0.026456372812390327, -0.010229353792965412, -0.029305890202522278, 0.040434595197439194, -0.0008635352714918554, 0.016654787585139275, -0.026434214785695076, 0.0026827557012438774, 0.01563306339085102, -0.007210256531834602, -0.02304927445948124, 0.08645900338888168, -0.0061215590685606, -0.014517039991915226, -0.024253131821751595, -0.00044531942694447935, 0.043434347957372665, -0.0027451366186141968, 0.008702735416591167, 0.038187842816114426, 0.021589701995253563, 0.03766179829835892, -0.026927398517727852, -0.002417816547676921, -0.026764357462525368, -0.0015703908866271377, 0.022610781714320183, -0.0442698672413826, 0.03667215630412102, 0.03877939283847809, 0.010022494941949844, -0.02946436032652855, -0.03238474577665329, 0.011588306166231632, -0.05878391116857529, -0.044038303196430206, -0.015002843923866749, 0.004772263579070568, -0.00842364877462387, 0.003924448508769274, -0.051951851695775986, -0.055518098175525665, 0.0064479210413992405, -0.001949163037352264, -0.015095227397978306, -0.07240616530179977, -0.04807259887456894, -0.018869126215577126, 0.003374433843418956, 0.006088179536163807, 0.014978677965700626, 0.02398468554019928, 0.014983030036091805, -0.0023153070360422134, -0.029644625261425972, -0.0043743690475821495, -0.003646551864221692, -0.01315965037792921, -0.015092424117028713, -0.0200666394084692, -0.009216907434165478, -0.001373036066070199, 0.006090533919632435, 0.036739133298397064, 0.014378415420651436, 0.01395708229392767, 0.0017963110003620386, -0.006021766923367977, 0.004455819260329008, -0.004968977067619562, 0.027494559064507484, 0.006974235642701387, -0.06443644315004349, 0.002876936225220561, -0.021445471793413162, -0.023467933759093285, -0.008462886326014996, 0.049713026732206345, -0.01697031408548355, -0.02011456899344921, -0.02402033843100071, 0.007481496315449476, -0.032331742346286774, -0.024817612022161484, -0.02635551430284977, -0.005554023198783398, 0.03458382561802864, -0.005522729363292456, 0.050771068781614304, -0.008858496323227882, -0.014412490651011467, -0.008984915912151337, 0.02455059066414833, -0.04060402512550354, 0.009321418590843678, 0.004336690064519644, -0.010526266880333424, -0.01486785989254713, 0.018209777772426605, 0.020443158224225044, 0.0171088557690382, 0.023321595042943954, -0.018247002735733986, 0.03365218639373779, 0.044185344129800797, 0.041429728269577026, -0.02303009107708931, -0.006373508833348751, -0.0030256761237978935, -0.040704287588596344, -0.01897434890270233, -0.04891832917928696, -0.017919588834047318, -0.014069686643779278, 0.02293173223733902, -0.03309538960456848, -0.07279817759990692, 0.02422291599214077, 0.03890019655227661, -0.022356688976287842, 0.00670049712061882, 0.009082836098968983, 0.002989409491419792, -0.026265902444720268, 0.04664316773414612, 0.030528346076607704, -0.0656200423836708, 0.005453541874885559, -0.0014971557538956404, 0.02079766057431698, 0.03616148605942726, 0.0277557410299778, -0.032705556601285934, -0.04029371216893196, -0.0039007070008665323, 0.011472954414784908, -0.02525736764073372, -0.007758920080959797, -0.026384009048342705, -0.012549781240522861, 0.01657010428607464, -0.012443297542631626, -0.01917126029729843, 0.022002095356583595, -0.03740008920431137, -0.025876833125948906, 0.00606384826824069, -0.07796456664800644, 0.005357618443667889, 0.031944312155246735, -0.04665985330939293, 0.04172436147928238, 0.005692279431968927, 0.0461287647485733, 0.029962612316012383, -0.020581107586622238, -0.020783914253115654, -0.057763658463954926, -0.027875838801264763, -0.02601499855518341, 0.06125864014029503, -0.008639632724225521, -0.02579682320356369, -0.029858391731977463, 0.0015782526461407542, -0.039490047842264175, -0.014278868213295937, -0.03737412020564079, -0.04743875190615654, -0.00028649845626205206, 0.056475695222616196, -0.004687419626861811, 0.040915101766586304, 0.03322631120681763, 0.02665795385837555, 0.062063101679086685, -0.03240123391151428, -0.03467528149485588, -0.013562333770096302, -0.03868928551673889, 0.01791663095355034, 0.000999142648652196, 0.0555761344730854, -0.06619714200496674, 0.03917435556650162, 0.020477596670389175, -0.001486332737840712, 0.015568788163363934, -0.016104895621538162, 0.030663682147860527, -0.02065623551607132, 0.013996971771121025, -0.09868285059928894, 0.005367170087993145, 0.022217534482479095, 0.03143817558884621, -0.03779560700058937, 0.0028126658871769905, -0.03591261804103851, 0.04609102010726929, -0.05586613714694977, 0.00746684055775404, 0.026339147239923477, -0.0014932207996025681, -0.025023531168699265, 0.02082238718867302, -0.05916905403137207, -0.00879696011543274, 0.032153163105249405, -0.020424475893378258, -0.04636991769075394, -0.025026900693774223, 0.06828420609235764, 0.040651652961969376, 0.027896109968423843, -0.0016642811242491007, 0.024130115285515785, 0.04104284942150116, 0.027460945770144463, 0.005020292475819588, 0.030856920406222343, 0.0001565822894917801, 0.0013894845033064485, 0.020749665796756744, 0.02765551768243313, 0.006078615318983793, 0.03101508505642414, -0.009904342703521252, -0.06284840404987335, 0.005093551240861416, 0.016271257773041725, -0.028569452464580536, -0.0500282347202301, 0.0509503111243248, -0.0006572881829924881, -0.021781377494335175, -0.05198747664690018, -0.009516634047031403, -0.07309301197528839, 0.02726566791534424, -0.030140453949570656, -0.0034788709599524736, -0.022284789010882378, 0.08819612860679626, -0.0017358631594106555, -0.009277303703129292, 0.051495444029569626, 0.02766340598464012, -0.0007289681816473603, -0.012355315499007702, 0.05316329374909401, 0.08896347880363464, 0.059600792825222015, 0.024218300357460976, 0.035979945212602615, 0.001346335280686617, -0.06216539070010185, -0.003837855067104101, -0.04381997510790825, -0.013348118402063847, -0.010048115625977516, 0.036166638135910034, 0.09109281003475189, -0.006124051287770271, 0.07716289162635803, -0.029772689566016197, 0.00032141164410859346, 0.0002959859266411513, 0.03292889893054962, 0.0069618490524590015, 0.07464597374200821, 0.013667992316186428, 0.024218155071139336, 0.02224409207701683, -0.03404621407389641, 0.0459345318377018, -0.04126323387026787, -0.02335323765873909, 0.01918964833021164, 0.024877527728676796, 0.014718336053192616, 0.027837874367833138, 0.027021236717700958, 0.06126725673675537, -0.031024765223264694, 0.00014331353304442018, -0.012596143409609795, 0.04595370590686798, 0.02252938598394394, -0.013611690141260624, -0.009334911592304707, -0.03309250995516777, -0.01706750877201557, -0.012781195342540741, -0.0337979830801487, -0.01848943904042244, -0.030031071975827217, 0.05648519843816757, -0.04845310002565384, 0.008546614088118076, 0.010816588066518307, -0.028610706329345703, -0.024571161717176437, -0.06819483637809753, -0.04222638159990311, -0.06412605941295624, -0.05070458725094795, -0.05425890162587166, 0.0453375019133091, -0.026425804942846298, -0.05758628249168396, -0.02619462087750435, 0.005818138364702463, -0.008017321117222309, 0.0328306220471859, -0.01705029606819153, -0.027003156021237373, 0.012426183559000492, -0.012689560651779175, 0.05019421502947807, 0.034623559564352036, 0.01621362566947937, 0.004004531539976597, -0.024416755884885788, -0.010266934521496296, -0.016969013959169388, 0.044679194688797, 0.025370651856064796, 0.03228588029742241, -0.06688767671585083, 0.006918624043464661, 0.00984826497733593, 0.005014351569116116, -0.07521561533212662, 0.017937107011675835, 0.009045470505952835, -0.040386151522397995, 0.07027846574783325, -0.03480667993426323, -0.023275693878531456, -0.05860579013824463, -0.01777399517595768, 0.0024529078509658575, 0.009763794019818306, 0.01768292672932148, -0.0245737973600626, 0.08438489586114883, 0.020986562594771385, 0.003514045849442482, -0.010542142204940319, -0.012139844708144665, -0.03350870683789253, -0.009815555065870285, -0.043619513511657715, -0.01761052757501602, -0.02530866488814354, -0.07938316464424133, -0.026423968374729156, 0.03228294104337692, -0.011164983734488487, -0.01705865189433098, 0.013889258727431297, 0.023509139195084572, -0.05451509729027748, 0.04333769157528877, -0.04548890143632889, 0.031077496707439423, -0.00685306079685688, -0.023522667586803436, 0.01741616241633892, 0.03602079674601555, 0.03418250009417534, -0.01914377324283123, 0.017652451992034912, -0.021356146782636642, -0.021200887858867645, -0.0057121324352920055, 0.01784360036253929, 0.05213303118944168, -0.037034641951322556, 0.03455544635653496 ]
[ -0.09217402338981628, -0.034396685659885406, -0.0318126417696476, -0.05020963028073311, 0.009774420410394669, -0.033673301339149475, 0.0271404217928648, 0.02006576769053936, 0.025953225791454315, -0.01910596899688244, -0.04022806137800217, -0.012286283075809479, -0.025527937337756157, -0.011272259056568146, 0.059727493673563004, 0.03528161719441414, -0.04885312542319298, -0.0599014088511467, -0.07205811887979507, 0.012608425691723824, 0.037953004240989685, 0.013098379597067833, -0.03296758979558945, -0.06256481260061264, 0.021507568657398224, 0.033671826124191284, 0.035722363740205765, -0.016441959887742996, 0.02347390167415142, -0.17606927454471588, -0.0020158637780696154, -0.04894867166876793, -0.005810936912894249, -0.024717161431908607, -0.038564085960388184, 0.010498958639800549, 0.015274005942046642, 0.03643201291561127, 0.01872653141617775, 0.06375055760145187, 0.04001682996749878, 0.02544414810836315, -0.03218303248286247, -0.03050582855939865, 0.06488314270973206, -0.009545136243104935, -0.037930745631456375, -0.04643423855304718, -0.035898566246032715, 0.0016306297620758414, -0.04932284727692604, -0.009134535677731037, -0.004318438470363617, -0.041966941207647324, 0.02180372178554535, 0.043600935488939285, 0.024770241230726242, 0.07806607335805893, 0.02707553096115589, 0.05075468868017197, 0.021847909316420555, -0.03385088965296745, -0.11722135543823242, 0.14257386326789856, 0.026299405843019485, 0.058939967304468155, -0.016731129959225655, -0.029252072796225548, -0.022780779749155045, 0.08861014991998672, 0.007587608881294727, -0.014405070804059505, -0.021187197417020798, 0.08179798722267151, 0.02672557346522808, -0.059901271015405655, -0.018781395629048347, 0.020495494827628136, 0.04676547273993492, -0.01898239739239216, -0.016813216730952263, -0.05252363905310631, 0.0057920049875974655, -0.017335906624794006, -0.0034003397449851036, 0.009714975021779537, -0.009036253206431866, 0.02342592552304268, 0.04224853590130806, 0.03070809319615364, 0.025925248861312866, -0.033513862639665604, 0.04391638562083244, 0.015476658940315247, -0.0828666165471077, 0.026610316708683968, 0.018017731606960297, 0.0029341119807213545, -0.04776680842041969, 0.3815723955631256, -0.04598686844110489, -0.0174233578145504, 0.04329673945903778, 0.0030641795601695776, -0.015785174444317818, -0.01219913735985756, -0.011376481503248215, -0.06432434171438217, 0.005386444739997387, -0.03058595582842827, -0.02298711985349655, -0.02785256877541542, 0.07153519988059998, -0.019802266731858253, -0.02478143572807312, 0.018922138959169388, 0.006094906944781542, -0.014157100580632687, 0.011523976922035217, 0.001739697763696313, 0.04092219099402428, 0.009320045821368694, 0.011702525429427624, 0.053736262023448944, 0.021575473248958588, -0.001182383275590837, 0.0156646016985178, 0.07391634583473206, 0.021005116403102875, 0.018495989963412285, 0.05612815171480179, -0.037509966641664505, -0.031649377197027206, -0.0028183036483824253, 0.00976578425616026, 0.046180278062820435, 0.018866153433918953, -0.016940902918577194, 0.047005366533994675, 0.040552400052547455, 0.017774872481822968, -0.04284370318055153, 0.01455957442522049, 0.008900032378733158, -0.01085689477622509, 0.09750893712043762, -0.012562899850308895, -0.04172079637646675, -0.01724674180150032, -0.029647652059793472, 0.0015767369186505675, 0.041328027844429016, -0.004707561805844307, -0.041002072393894196, -0.008725005201995373, 0.023604823276400566, 0.023267162963747978, 0.012863877229392529, -0.04384610056877136, -0.02585342712700367, -0.04412101209163666, 0.008845111355185509, -0.04138344153761864, 0.03798859566450119, 0.017109103500843048, -0.08271248638629913, -0.01716214045882225, 0.022874990478157997, 0.0149771673604846, -0.08585462719202042, -0.028709208592772484, -0.01388611737638712, -0.07426711171865463, -0.020733898505568504, 0.049267616122961044, -0.01526748389005661, -0.03889315947890282, 0.008122050203382969, 0.02962425723671913, 0.022288743406534195, 0.026858169585466385, -0.02776235155761242, -0.08021832257509232, 0.008446375839412212, -0.028989490121603012, -0.08820933848619461, -0.05045643821358681, -0.025006692856550217, 0.005607199855148792, 0.01805253140628338, -0.023583652451634407, -0.03405645862221718, -0.05718144029378891, 0.030245931819081306, -0.03672635555267334, -0.006716872565448284, 0.00968316849321127, -0.032661084085702896, 0.022088414058089256, 0.010839981958270073, 0.07393969595432281, 0.03309940546751022, 0.00732521153986454, 0.025879938155412674, -0.06990421563386917, 0.04993885010480881, 0.04800355061888695, -0.048668816685676575, 0.06720644980669022, 0.03487285226583481, -0.07821793854236603, -0.002588836941868067, 0.017537368461489677, 0.04660603776574135, 0.013696667738258839, -0.060749005526304245, -0.008494689129292965, 0.021089870482683182, 0.0007222531130537391, 0.007744119502604008, -0.06097396835684776, -0.03584543615579605, 0.020006414502859116, -0.3357524871826172, -0.04165104776620865, -0.0030374329071491957, -0.016675684601068497, 0.03609687089920044, -0.0457659550011158, 0.0010985094122588634, -0.02179575338959694, -0.05723921209573746, 0.007682934869080782, 0.07209170609712601, -0.024884646758437157, -0.0054725175723433495, -0.06964334845542908, -0.00867842510342598, 0.02287817932665348, -0.036844801157712936, -0.08675634860992432, -0.0093882130458951, 0.03923191875219345, -0.04744853079319, 0.004021634813398123, -0.02449488639831543, -0.0855775699019432, -0.007214945275336504, -0.055643223226070404, 0.11493866890668869, 0.0109981345012784, 0.10203519463539124, -0.025278987362980843, 0.0670267641544342, 0.002328844740986824, 0.023241814225912094, -0.0494033545255661, -0.01328404899686575, -0.02307642064988613, -0.01566254533827305, 0.002225724747404456, 0.02601807750761509, 0.0010460433550179005, -0.043707869946956635, 0.0013145031407475471, -0.054796602576971054, -0.02199021726846695, -0.01288557332009077, 0.010182193480432034, -0.021830270066857338, -0.032634176313877106, -0.02877732925117016, 0.04376545175909996, 0.031695231795310974, 0.025668255984783173, 0.04626893624663353, 0.027448412030935287, 0.027438076213002205, 0.006666365545243025, -0.022876298055052757, -0.012643381021916866, -0.005736546590924263, 0.005271745380014181, 0.03200860694050789, 0.05701028183102608, 0.029009629040956497, -0.05183872580528259, 0.013297414407134056, 0.026246782392263412, 0.026848819106817245, -0.013092280365526676, 0.0629206970334053, -0.018775323405861855, -0.06463665515184402, 0.11273852735757828, 0.03886367008090019, 0.00539863808080554, 0.026801185682415962, 0.043716736137866974, -0.009927107021212578, 0.02650546096265316, 0.001145174028351903, 0.005488214083015919, -0.005973129067569971, -0.003922970965504646, 0.04118398576974869, -0.03421120345592499, -0.031183917075395584, 0.00958874262869358, -0.02417176030576229, 0.004585210233926773, 0.03329932317137718, -0.028058936819434166, -0.04781343787908554, 0.004947649780660868, -0.017664389684796333, -0.05998816341161728, 0.05723729729652405, -0.01726796291768551, -0.2824242413043976, 0.0009797245729714632, 0.08499816805124283, 0.038057807832956314, 0.0064804526045918465, 0.03931485116481781, 0.04616249352693558, -0.060662928968667984, -0.01691923663020134, 0.029321780428290367, -0.020879477262496948, -0.0041260672733187675, -0.004580504260957241, 0.010436980985105038, 0.04075838625431061, -0.008340070024132729, 0.02932417206466198, 0.03153136372566223, 0.013736528344452381, 0.0029046242125332355, 0.0735754519701004, 0.014774054288864136, 0.18713036179542542, -0.006768443621695042, 0.034348264336586, 0.03076299838721752, -0.0019699104595929384, 0.01041508000344038, 0.12108559906482697, -0.022934850305318832, -0.010349664837121964, -0.011850075796246529, 0.08270986378192902, -0.015725309029221535, 0.02666843868792057, -0.07533979415893555, -0.039938319474458694, 0.05052746459841728, 0.012623353861272335, -0.07228624820709229, -0.027671603485941887, 0.011279753409326077, -0.017981870099902153, -0.0034818050917237997, 0.06585219502449036, 0.023800881579518318, 0.019369695335626602, -0.04759607091546059, -0.02725079096853733, 0.023027757182717323, -0.043189965188503265, -0.011009765788912773, 0.019840270280838013, -0.01785368099808693, -0.0036735322792083025, 0.04226517304778099, 0.05728483572602272, -0.014947324059903622, -0.03137671947479248, 0.037485271692276, 0.017186878249049187, -0.0060184914618730545, 0.11699587851762772, 0.04001731052994728, 0.05957718938589096 ]
[ -0.03603675216436386, -0.001972996164113283, 0.019531000405550003, -0.0058037471026182175, -0.0029116955120116472, 0.003367410507053137, 0.010618292726576328, -0.013738922774791718, 0.01016839686781168, -0.03291920945048332, -0.023448221385478973, 0.028121454641222954, -0.011853418312966824, -0.00564438384026289, 0.03978295624256134, -0.0044796946458518505, -0.05010998621582985, -0.013201330788433552, 0.009100056253373623, 0.013454285450279713, -0.008271419443190098, 0.05417967960238457, 0.02856381982564926, -0.023578815162181854, -0.041938066482543945, -0.01395787950605154, -0.016452981159090996, -0.04076917842030525, 0.03170287236571312, -0.1529473066329956, -0.010606072843074799, -0.053854044526815414, -0.008758431300520897, 0.0037136871833354235, -0.07364299893379211, -0.0029833950102329254, 0.011672807857394218, 0.03728721663355827, 0.03077371045947075, 0.014874987304210663, -0.04901011288166046, 0.009525551460683346, -0.03381582349538803, -0.024829551577568054, 0.03194265440106392, -0.02189679443836212, -0.05129121243953705, -0.0033096030820161104, -0.0036430584732443094, 0.023826397955417633, -0.008096416480839252, -0.002256424631923437, -0.011981005780398846, 0.008968111127614975, 0.01784372143447399, -0.027690919116139412, 0.0006033219979144633, -0.008656390011310577, 0.036301080137491226, 0.018745673820376396, -0.0069217258132994175, 0.013486579991877079, -0.013742486946284771, -0.022853082045912743, 0.01746138371527195, -0.04143437743186951, 0.013386785984039307, 0.012893357314169407, -0.01146453246474266, 0.02620813436806202, -0.03174569085240364, 0.018181536346673965, 0.019176790490746498, -0.03903179243206978, -0.005879800301045179, -0.03233766928315163, -0.04138527810573578, 0.01280499529093504, 0.041337404400110245, 0.029673444107174873, -0.013106107711791992, -0.010586285032331944, 0.006228979676961899, 0.020129993557929993, 0.03143204003572464, -0.0020007870625704527, -0.011338640004396439, -0.00564616871997714, 0.013713925145566463, -0.0022568008862435818, -0.04445556923747063, -0.01035364344716072, 0.003453048411756754, 0.05704981088638306, -0.07882563769817352, -0.007548926863819361, 0.003207931760698557, -0.034885991364717484, 0.0032943258993327618, 0.8370015025138855, -0.02710874192416668, 0.03270972892642021, 0.039561185985803604, -0.0009049741202034056, 0.032425083220005035, -0.006970247253775597, -0.04580233618617058, 0.006606859154999256, 0.03870755061507225, -0.0026433311868458986, 0.013463296927511692, 0.024662092328071594, 0.031822338700294495, 0.007656235247850418, 0.028047479689121246, 0.017227988690137863, 0.049442801624536514, -0.025627801194787025, 0.019986340776085854, 0.03040532022714615, 0.057474032044410706, 0.03608313202857971, 0.05046270415186882, 0.017833078280091286, 0.019329234957695007, -0.14828145503997803, -0.0003059774753637612, -8.803502006602706e-33, 0.03813686594367027, -0.028817540034651756, -0.0030086946208029985, 0.013246169313788414, 0.021402044221758842, -0.013507143594324589, -0.002105852123349905, 0.03933310881257057, -0.03871160373091698, -0.052982307970523834, 0.015879156067967415, -0.02392886020243168, 0.000441632088040933, -0.012858128175139427, 0.05205589905381203, 0.0215830747038126, 0.0035800193436443806, 0.0410073958337307, 0.028097709640860558, 0.02005797252058983, 0.017679357901215553, 0.027476299554109573, 0.04157707095146179, 0.024259936064481735, 0.0028168042190372944, 0.029295658692717552, 0.03150850906968117, -0.0030995849519968033, -0.03562391176819801, -0.049122367054224014, 0.00877473596483469, -0.008420869708061218, -0.027515878900885582, -0.028007153421640396, 0.04581320285797119, -0.022649366408586502, -0.012856001034379005, 0.018870264291763306, -0.008149095810949802, -0.017713820561766624, -0.022167004644870758, -0.04001181572675705, -0.03554600477218628, 0.0008040154352784157, -0.017474006861448288, -0.03171274811029434, 0.00295721716247499, 0.0027282892260700464, 0.013569396920502186, 0.03525644168257713, -0.017638089135289192, 0.031689275056123734, 0.02313566394150257, -0.020279167219996452, -0.003317219903692603, 0.00987748522311449, 0.026744617149233818, 0.01513258833438158, -0.010364717803895473, -0.009748078882694244, 0.028719495981931686, -0.01273319497704506, -0.01566942408680916, 0.018784716725349426, -0.030175264924764633, -0.04102947190403938, -0.013296359218657017, 0.02915477752685547, 0.027762150391936302, -0.014377046376466751, -0.029858620837330818, 0.017616067081689835, -0.0019452867563813925, 0.00536635797470808, -0.0018963601905852556, -0.011051659472286701, -0.02088199555873871, 0.013319364748895168, -0.0005660724709741771, 0.030797448009252548, 0.05602871626615524, 0.017635604366660118, -0.00396902346983552, -0.008374840021133423, 0.02367243357002735, -0.01341958623379469, 0.009267458692193031, -0.026896363124251366, -0.0007634629146195948, 0.013436354696750641, 0.032817207276821136, 0.03187212347984314, -0.03217208385467529, -0.03109131194651127, -0.007626066450029612, 7.78548936864405e-33, -0.013674327172338963, -0.000838693929836154, -0.028605643659830093, 0.0215445589274168, -0.010580086149275303, -0.0324215330183506, 0.004562071990221739, 0.0006617357721552253, -0.03716639429330826, 0.004334578290581703, -0.04708962142467499, 0.03769241273403168, -0.01177497860044241, 0.025970928370952606, 0.056553103029727936, 0.0042162807658314705, -0.006653875578194857, -0.024231165647506714, 0.027099868282675743, -0.043061263859272, 0.03395434468984604, -0.0009361045667901635, 0.030033020302653313, 0.018525129184126854, -0.01814124546945095, 0.043534714728593826, -0.027735626325011253, -0.01330768782645464, 0.03430073708295822, -0.032337773591279984, -0.042095255106687546, 0.0003646082477644086, 0.02785986103117466, -0.04208368435502052, 0.0025821002200245857, 0.020579325035214424, 0.008679771795868874, 0.020217712968587875, 0.03105950355529785, -0.04668089747428894, 0.025001846253871918, -0.028233252465724945, 0.0045148832723498344, -0.039978183805942535, 0.009774426929652691, 0.014330430887639523, 0.003906202968209982, -0.0038248125929385424, 0.014258979819715023, -0.019772246479988098, 0.014566551893949509, 0.014829121530056, 0.0009888060158118606, 0.03169245272874832, -0.004244642332196236, -0.02843458391726017, -0.03849462419748306, 0.004354285076260567, -0.0059186299331486225, 0.02887771651148796, -0.0008257522131316364, -0.028415320441126823, -0.02631554752588272, -0.006627681665122509, -0.013880927115678787, -0.020649055019021034, -0.0315048024058342, -0.03196168690919876, 0.004719691351056099, -0.037603527307510376, -0.027024611830711365, 0.0014192089438438416, 0.015516482293605804, 0.019514845684170723, 0.015266274102032185, -0.02713649719953537, 0.01336627546697855, -0.041322894394397736, -0.006808093283325434, 0.04542550817131996, 0.018259065225720406, -0.01000331249088049, 0.01977074332535267, -0.013108262792229652, 0.017266467213630676, 0.014493850991129875, -0.0027908498886972666, 0.004147167783230543, -0.0046189469285309315, -0.04777506738901138, -0.00530171487480402, 0.051123179495334625, -0.019355440512299538, -0.005536691751331091, -0.0007201997796073556, -1.3483640870504132e-8, -0.027819862589240074, 0.028394505381584167, -0.009538885205984116, -0.025714382529258728, 0.037585362792015076, 0.0015239545609802008, -0.03416289761662483, -0.017524557188153267, -0.022529171779751778, -0.010646915063261986, 0.018417678773403168, 0.020903902128338814, 0.0317067950963974, 0.03868089243769646, -0.002443219069391489, -0.057510219514369965, -0.04214228317141533, -0.007365730591118336, 0.027149418368935585, 0.00950448028743267, -0.02281719259917736, 0.04787207394838333, 0.012195602990686893, -0.01120073813945055, 0.0013840434839949012, -0.045761432498693466, 0.01764094829559326, -0.059677958488464355, 0.025456568226218224, -0.018126195296645164, -0.063128262758255, -0.004360680002719164, -0.02816230244934559, -0.02461603283882141, -0.03900126740336418, -0.030898816883563995, 0.002957751275971532, -0.0028603507671505213, -0.0030676317401230335, -0.0112307695671916, 0.020473383367061615, -0.03129083663225174, 0.007342316675931215, -0.019442452117800713, 0.01263111736625433, -0.0047011906281113625, -0.013700994662940502, 0.025804417207837105, 0.02616167441010475, -0.02769828401505947, 0.02568219229578972, 0.0151320556178689, 0.036249659955501556, 0.00925200991332531, 0.001976805506274104, 0.010272475890815258, 0.01222643256187439, -0.044049154967069626, 0.02238652855157852, -0.0021109632216393948, 0.03552240505814552, 0.0024304043035954237, -0.011786924675107002, -0.01695786789059639 ]
javascript-confusing-call-and-apply
https://markhneedham.com/blog/2010/02/28/javascript-confusing-call-and-apply
false
2010-02-28 00:11:20
Javascript: Isolating browser specific code
[ "javascript" ]
[ "Javascript" ]
One thing we've found on my current project is that despite our best efforts we've still ended up with some javascript code which we only want to run if the user is using Internet Explorer 6 and the question then becomes how to write that code so that it doesn't end up being spread all over the application. jQuery has some functions which allow you to work out which browser's being used but I've noticed that when we use those you tend to end up with if statements dotted all around the code which isn't so good. An approach which I was shown recently involves using http://www.quirksmode.org/css/condcom.html[CSS conditionals] to identify when we're using Internet Explorer instead. We can then include an IE6 specific javascript file like so: [source,text] ---- <!--[if lt IE 7]> <script type="text/javascript" src="/path/to/ie6.js") %>"></script> <![endif]--> ---- Since we're building an ASP.NET MVC application we include this bit of code in our master page so that it gets picked up by all the web pages. We've either needed to override existing functions or call the existing function but then do some extra work afterwards as well. In order to do this we have to make sure that the IE6 specific file is included after our other javascript files since the interpreter will use the last definition of a function that it finds. Given an existing function defined like so: [source,javascript] ---- Foo = { Bar : function() { console.log("original bar call"); } }; ---- If we want to override this function to do something else we could include the following code in our IE6 specific file: [source,javascript] ---- Foo.bar = function() { console.log("overriding bar call"); } ---- When we call 'Foo.bar()' we'd only see the second 'console.log' statement. It becomes a bit more interesting if we want to call the original function and then do some other functionality. We can make use of the http://docs.jquery.com/Types#Proxy_Pattern[proxy pattern] to allow us to do this cleanly. [source,javascript] ---- Foo = { bar : function() { console.log("original bar call"); } }; (function() { var originalBar = Foo.bar; Foo.bar = function() { originalBar.apply(this, arguments); console.log("overriding bar call"); }; })(); ---- If we call 'Foo.bar()' in IE6 we'd now see both of those 'console.log' statements. The reason that we wrap the reassignment in a function is so that we can hide the 'originalBar' function from the rest of our code. We save 'Foo.bar' in a closure and then override it and delegate calls to the original before logging the extra message. I quite like this approach although I'm not sure if it's the most intention revealing code because it's not necessarily obvious that the function is being rewritten unless you happen to know about the IE6 only file. Is there a better way to do this than the approach I've described?
null
null
[ -0.005784173961728811, -0.0026508569717407227, 0.0009313217015005648, 0.011492451652884483, 0.06857753545045853, -0.013494551181793213, 0.014713374897837639, 0.030055154114961624, 0.016107257455587387, -0.02689407207071781, -0.044948309659957886, 0.03823496028780937, -0.0888785868883133, 0.007627443876117468, 0.0008201241143979132, 0.06871842592954636, 0.08727063983678818, -0.012245402671396732, 0.04732176288962364, -0.038861751556396484, 0.004707640502601862, 0.08693979680538177, -0.01953839138150215, 0.020892638713121414, 0.03363663703203201, 0.010610110126435757, 0.0044695292599499226, -0.017700254917144775, -0.06873255223035812, -0.00971323810517788, 0.04750046879053116, 0.037292979657649994, -0.003929346799850464, -0.023731403052806854, 0.014446173794567585, -0.025289129465818405, 0.0043715061619877815, 0.023026514798402786, -0.011561923660337925, 0.07756224274635315, -0.06178916245698929, 0.03433980792760849, 0.0005854750634171069, 0.029494410380721092, -0.033869754523038864, 0.007060904987156391, -0.030109122395515442, 0.0011759307235479355, -0.0142515879124403, -0.007983281277120113, -0.05247960612177849, 0.02897832542657852, -0.03143927827477455, 0.006131855305284262, 0.009689290076494217, 0.06556386500597, 0.027429023757576942, -0.04386485368013382, 0.013972792774438858, -0.06742686778306961, 0.03174619376659393, 0.016037195920944214, 0.011302750557661057, 0.05585151165723801, 0.025694850832223892, 0.026705866679549217, 0.006217509042471647, 0.04221168905496597, -0.04613146930932999, -0.023377737030386925, 0.013460833579301834, 0.014227928593754768, -0.036939818412065506, -0.010282226838171482, 0.0488913394510746, -0.004688059911131859, -0.03412439674139023, 0.05487082898616791, -0.002907448448240757, 0.05537278577685356, -0.0068951318971812725, 0.032282229512929916, 0.01026134192943573, 0.008807542733848095, 0.024134287610650063, -0.021610915660858154, -0.01711328886449337, 0.028902297839522362, -0.01976388320326805, 0.04162292182445526, 0.021309709176421165, -0.05966733396053314, 0.047107160091400146, 0.03118555247783661, 0.021595364436507225, -0.008780296891927719, -0.0025309461634606123, -0.009471258148550987, 0.003067971905693412, -0.0027757426723837852, -0.05457109212875366, 0.02750537358224392, 0.012518052011728287, -0.018339885398745537, -0.08052876591682434, 0.00826957356184721, -0.01215562503784895, -0.007815980352461338, -0.0068534924648702145, -0.018281761556863785, -0.015256734564900398, 0.015940889716148376, -0.0337982214987278, -0.0309439767152071, -0.06058085337281227, 0.05515357479453087, -0.013873254880309105, -0.017610393464565277, -0.00014594187086913735, 0.04417869821190834, 0.06361168622970581, 0.012681946158409119, -0.045776717364788055, 0.07849858701229095, 0.023429768159985542, 0.03948390483856201, -0.030744923278689384, 0.05202338472008705, 0.0068325200118124485, -0.06828360259532928, 0.003125634742900729, 0.04163752868771553, -0.03589355945587158, 0.014826970174908638, -0.014084641821682453, 0.017781533300876617, -0.011916369199752808, -0.023880846798419952, 0.061061859130859375, 0.014613443054258823, -0.02942649833858013, -0.036677923053503036, -0.0213775634765625, -0.03140261769294739, 0.01627907156944275, 0.006851292215287685, -0.036736663430929184, -0.035369373857975006, -0.005366685334593058, 0.020569652318954468, 0.03196900337934494, 0.018054574728012085, 0.04263431951403618, -0.027987215667963028, -0.010579205118119717, 0.08889123052358627, 0.026145445182919502, -0.004786171484738588, -0.024025101214647293, -0.005683199968189001, 0.04481117054820061, 0.032679490745067596, 0.007755562197417021, 0.06646870821714401, -0.03200897201895714, -0.007489720359444618, 0.0012056638952344656, 0.06514883786439896, 0.0183731559664011, -0.008359046652913094, -0.05531185865402222, -0.04066535085439682, 0.07984065264463425, -0.07523004710674286, 0.002715321956202388, 0.03202233090996742, 0.0747084990143776, 0.008005518466234207, 0.048663556575775146, 0.005851180292665958, -0.06442419439554214, 0.004350310657173395, 0.032221052795648575, -0.011938578449189663, 0.03391183912754059, 0.017121797427535057, 0.06489219516515732, 0.018615614622831345, 0.005231206305325031, 0.020377660170197487, -0.06917285174131393, -0.08650141209363937, -0.02223951742053032, -0.007176437880843878, 0.053791530430316925, -0.020421508699655533, -0.05636439099907875, 0.08978541195392609, 0.04403182119131088, 0.04545094072818756, 0.0320533849298954, -0.04345615953207016, 0.041987307369709015, -0.017358185723423958, -0.03850525990128517, 0.003283497877418995, 0.017815997824072838, -0.002895817393437028, -0.042981844395399094, -0.005597405601292849, -0.022536469623446465, 0.022840874269604683, 0.0377814956009388, -0.009541952982544899, 0.051180921494960785, 0.02765994891524315, 0.014360984787344933, -0.05490603670477867, 0.030292797833681107, -0.056950442492961884, 0.021685024723410606, 0.006639765575528145, -0.019007138907909393, -0.025224344804883003, 0.028554420918226242, 0.11155352741479874, 0.05407088249921799, -0.03546372056007385, -0.036136195063591, -0.002739355666562915, 0.0023030394222587347, -0.06717709451913834, -0.0005646818899549544, 0.005202880594879389, -0.0011276068398728967, -0.007081807125359774, -0.011109108105301857, 0.009775545448064804, -0.009479003958404064, -0.02376682683825493, 0.038426294922828674, 0.05283559858798981, -0.02078113704919815, 0.048659007996320724, -0.005498741753399372, -0.035404372960329056, 0.03638448193669319, 0.015688786283135414, -0.051649730652570724, -0.012418915517628193, 0.02734655886888504, -0.008530640974640846, 0.05679852515459061, -0.022683721035718918, 0.007283773273229599, -0.014854506589472294, -0.019659560173749924, 0.017199840396642685, 0.027298985049128532, 0.052636273205280304, 0.015657279640436172, 0.03531518206000328, 0.03082866407930851, 0.027087949216365814, -0.013771964237093925, -0.03849339112639427, -0.0030272381845861673, -0.012826945632696152, 0.012695441953837872, 0.022585105150938034, 0.021617215126752853, 0.0294322669506073, 0.01666300743818283, -0.0023516991641372442, -0.019855482503771782, -0.004157242365181446, 0.016844088211655617, 0.009380192495882511, -0.0512724407017231, -0.012622792273759842, -0.02425767481327057, 0.031403109431266785, -0.03772566840052605, -0.043291375041007996, -0.020098721608519554, -0.0608137771487236, 0.008626338094472885, -0.10107249766588211, -0.08965760469436646, -0.00015937579155433923, 0.009913659654557705, 0.03121674805879593, -0.029427487403154373, 0.027737654745578766, 0.05168398097157478, 0.005551445297896862, 0.019214875996112823, 0.015498625114560127, 0.017558030784130096, 0.016957305371761322, 0.007827365770936012, 0.0037273382768034935, 0.05786673352122307, -0.019745973870158195, -0.0035881237126886845, -0.01814526505768299, 0.017081497237086296, -0.012917720712721348, -0.2716062068939209, 0.02896161563694477, -0.006652153562754393, -0.016548676416277885, 0.031384121626615524, -0.05180255323648453, 0.019147468730807304, -0.064848393201828, -0.006082191597670317, -0.00838194414973259, -0.04775552079081535, -0.045397963374853134, -0.0036740200594067574, 0.0440928153693676, -0.04164749011397362, 0.0023935858625918627, 0.02387472800910473, -0.005432071629911661, 0.03552098199725151, 0.020641891285777092, -0.04139600321650505, -0.07124496251344681, 0.024176860228180885, 0.03781934082508087, 0.015208018943667412, 0.0456610731780529, -0.06820977479219437, 0.05401012673974037, -0.017844917252659798, -0.016104470938444138, 0.009729845449328423, -0.0009960569441318512, 0.002840667963027954, -0.04071047157049179, -0.012315426021814346, 0.0023460974916815758, 0.061258554458618164, 0.044684264808893204, 0.023146044462919235, 0.0039320094510912895, -0.02399120107293129, -0.02830715849995613, -0.03854851797223091, 0.012063063681125641, 0.06020248681306839, -0.022568853572010994, -0.07269798219203949, 0.008859188295900822, -0.04191043600440025, 0.07893647998571396, -0.014804411679506302, -0.014690009877085686, 0.017031926661729813, 0.07353181391954422, 0.007491923402994871, -0.026494145393371582, 0.006805206183344126, -0.009505439549684525, -0.029876798391342163, -0.06176966056227684, 0.012686976231634617, -0.03997978940606117, -0.043375615030527115, -0.015961680561304092, 0.054348334670066833, -0.07318124175071716, -0.053394757211208344, -0.03396477922797203, 0.0620928630232811, 0.030805878341197968, -0.013367366045713425, -0.0015442617004737258, 0.0030038426630198956, -0.11100757122039795, 0.01109095849096775, -0.030064089223742485, -0.004897851962596178, -0.052661292254924774, 0.0022905850782990456, 0.028688563033938408, -0.01760726608335972, -0.020227601751685143, 0.017910011112689972, -0.007076680660247803, -0.018913613632321358, -0.009282929822802544, 0.03731175512075424, 0.01677774079144001, -0.004420333541929722, -0.014789953827857971, 0.08686380833387375, 0.005854160059243441, -0.0477391853928566, -0.022125663235783577, 0.02719433419406414, 0.020816177129745483, 0.03289958834648132, 0.005328034516423941, 0.050109364092350006, -0.009591399691998959, 0.046435270458459854, -0.05038655176758766, 0.025185413658618927, -0.03180543705821037, 0.026306845247745514, -0.022096388041973114, -0.05454741418361664, 0.0339239276945591, 0.034243144094944, 0.015907809138298035, -0.030887747183442116, -0.051591210067272186, -0.032581109553575516, -0.05361009016633034, -0.00909112486988306, -0.026961378753185272, 0.013310522772371769, -0.01994001492857933, 0.017337776720523834, -0.0412430539727211, -0.0468890555202961, -0.00221391418017447, 0.0070522925816476345, -0.020883630961179733, -0.05916144326329231, -0.03992825001478195, -0.007522134575992823, 0.01198534294962883, 0.01334766112267971, 0.018227873370051384, 0.007578210439532995, 0.03577737882733345, -0.022596748545765877, -0.041561491787433624, 0.013872292824089527, -0.009563918225467205, -0.007603101897984743, -0.004761931486427784, -0.002209983067587018, -0.013738271780312061, -0.027005497366189957, 0.019354259595274925, 0.015779167413711548, 0.011241194792091846, 0.05203178897500038, 0.025213247165083885, 0.011384008452296257, 0.02882290445268154, -0.003686684649437666, 0.000254916405538097, -0.008092215284705162, -0.07522018998861313, -0.008602743968367577, -0.017658744007349014, -0.02510283701121807, -0.0182713121175766, 0.007844127714633942, -0.011201635003089905, -0.03499305248260498, -0.02556593529880047, 0.029171431437134743, -0.0401541143655777, -0.029497189447283745, -0.01306054275482893, -0.005845234263688326, 0.02884974516928196, 0.006421256344765425, 0.05174468085169792, -0.004820219241082668, -0.013093346729874611, 0.0010229113977402449, 0.03850344568490982, -0.017726795747876167, -0.0021904732566326857, 0.0021869854535907507, 0.014340781606733799, -0.026105783879756927, 0.01390971802175045, 0.011564007960259914, 0.023329488933086395, 0.04643607512116432, -0.030096402391791344, 0.034737300127744675, 0.02687213197350502, 0.013718698173761368, -0.01647518202662468, -0.012951435521245003, 0.006151401903480291, -0.007898841053247452, -0.00975118763744831, -0.0772421807050705, 0.002844403963536024, -0.02396118827164173, -0.01909825950860977, -0.02693270333111286, -0.08098861575126648, 0.01401972584426403, -0.018647203221917152, 0.01567997597157955, 0.0164055023342371, 0.0005913213244639337, -0.018001358956098557, -0.03080177865922451, 0.01882690005004406, 0.030606355518102646, -0.04281078279018402, 0.0018156865844503045, 0.0021459253039211035, 0.010599578730762005, 0.020735109224915504, 0.013865677639842033, -0.07416831701993942, -0.022672593593597412, -0.023687709122896194, 0.009444212540984154, -0.025834953412413597, -0.026992887258529663, -0.028008466586470604, 0.0027655167505145073, -0.04299015551805496, -0.030825059860944748, -0.007341824006289244, 0.004425519146025181, -0.016763173043727875, -0.021133868023753166, 0.008953845128417015, -0.025089621543884277, -0.016827115789055824, 0.039473872631788254, -0.01326808612793684, 0.012117153033614159, 0.004488782957196236, 0.022089814767241478, 0.022484948858618736, -0.011035931296646595, -0.004032243974506855, -0.0662156492471695, -0.01506087463349104, 0.011173803359270096, 0.0495406873524189, -0.012317772954702377, -0.0037767249159514904, -0.040879398584365845, 0.013847305439412594, -0.02816908247768879, 0.01875530742108822, -0.06029706075787544, -0.04617777094244957, 0.005039908457547426, 0.07309389859437943, -0.020188087597489357, 0.002846543211489916, 0.03707975149154663, -0.027647679671645164, 0.038191597908735275, -0.06668831408023834, -0.006571022793650627, -0.01170855201780796, -0.048569560050964355, 0.039265092462301254, 0.009850704111158848, 0.04816637933254242, -0.035696081817150116, 0.018054623156785965, 0.02691696770489216, 0.009069276042282581, -0.006940250284969807, -0.010544133372604847, 0.0345911830663681, -0.036575715988874435, 0.031913578510284424, -0.09400078654289246, 0.02503330446779728, 0.010489052161574364, 0.0032190533820539713, -0.03627115115523338, 0.01854720339179039, -0.019811248406767845, 0.054414331912994385, -0.05357232317328453, -0.028247589245438576, 0.038769710808992386, 0.031053252518177032, -0.008758407086133957, -0.0019331170478835702, -0.06682334840297699, 0.03733225539326668, 0.04071849584579468, -0.028356803581118584, -0.04181326553225517, -0.041887085884809494, 0.05496669560670853, 0.007229398936033249, -0.006116682197898626, -0.06009325012564659, 0.020931145176291466, 0.03486078977584839, 0.01598227769136429, -0.009109524078667164, 0.035156168043613434, 0.0038284806068986654, 0.019078992307186127, 0.010296007618308067, 0.034584056586027145, -0.013807886280119419, 0.00297056813724339, 0.012262801639735699, -0.04205692932009697, 0.01815943606197834, 0.012024123221635818, -0.001028441940434277, -0.05613281577825546, 0.07773136347532272, 0.02997661754488945, -0.0015796207590028644, -0.03899824619293213, -0.005784541368484497, -0.04916210472583771, 0.016040895134210587, -0.038250964134931564, -0.009857569821178913, -0.0052713933400809765, 0.08257775008678436, -0.006331055890768766, -0.024336235597729683, 0.08046100288629532, 0.00803928542882204, 0.021680068224668503, -0.019731882959604263, 0.06426850706338882, 0.07840091735124588, 0.061004795134067535, 0.012453864328563213, 0.06339365243911743, -0.006965367589145899, -0.06350156664848328, -0.0022582607343792915, -0.04755008965730667, -0.0002630427770782262, -0.019887173548340797, 0.038962461054325104, 0.06678304076194763, -0.009290119633078575, 0.08571617305278778, -0.02637030929327011, -0.018566321581602097, -0.011562827974557877, 0.016134288161993027, -0.00905872043222189, 0.05945703387260437, 0.03286181390285492, 0.008066912181675434, 0.006959020160138607, -0.0016009524697437882, 0.047196146100759506, -0.05362020060420036, -0.007560588885098696, 0.005353906191885471, 0.03153737261891365, -0.00844480935484171, -0.012902364134788513, 0.04535399004817009, 0.0680946633219719, -0.022962894290685654, -0.005339751951396465, 0.006749988067895174, 0.03932622820138931, 0.015332890674471855, 0.0005260065081529319, -0.02726101130247116, -0.012174960225820541, -0.02454845979809761, -0.02010100521147251, -0.03937578573822975, -0.02799457684159279, -0.01755182072520256, 0.046107541769742966, -0.04273233190178871, 0.015777472406625748, 0.018934065476059914, -0.01762300543487072, -0.02815815806388855, -0.05855206027626991, -0.0550047904253006, -0.04382432997226715, -0.0650678277015686, -0.06387048214673996, 0.05720988288521767, -0.02204778976738453, -0.01665368862450123, -0.044898513704538345, -0.002617941237986088, -0.021322036162018776, 0.017603734508156776, -0.029166176915168762, -0.028784282505512238, 0.03595394268631935, -0.0002895795914810151, 0.05852702632546425, 0.03801072761416435, 0.0059286258183419704, -0.006169640459120274, -0.03165175020694733, -0.058200765401124954, -0.01128335203975439, 0.052264947444200516, 0.0023104874417185783, 0.018917536363005638, -0.05952983349561691, 0.014600432477891445, 0.01703689619898796, -0.00333385169506073, -0.05568736791610718, 0.0073611000552773476, 0.02529669925570488, -0.04111059010028839, 0.0568888857960701, -0.03710115700960159, -0.001536145806312561, -0.008279078640043736, -0.011217725463211536, 0.0014382164226844907, 0.012113855220377445, 0.01701957732439041, -0.03513368219137192, 0.08819226175546646, 0.01920739747583866, -0.0033603066112846136, 0.0014810535358265042, 0.018622126430273056, -0.045217521488666534, -0.03627881035208702, -0.026645759120583534, -0.008612329140305519, -0.03521754965186119, -0.05812004953622818, -0.012195436283946037, 0.0032754368148744106, 0.019764533266425133, -0.02484762668609619, 0.01930539682507515, 0.047273628413677216, -0.07617951929569244, 0.03352556750178337, -0.042489372193813324, 0.03730940446257591, -0.0271108727902174, -0.021998129785060883, 0.03433791548013687, 0.009487852454185486, 0.009973038919270039, -0.02830168604850769, 0.027749978005886078, -0.008644850924611092, -0.028848066926002502, -0.046502597630023956, 0.025843266397714615, 0.04879874363541603, -0.010011187754571438, 0.015676133334636688 ]
[ -0.09789729863405228, -0.013418764807283878, -0.021062690764665604, -0.050077300518751144, 0.0362783707678318, -0.026868686079978943, -0.0018932817038148642, 0.011916629038751125, 0.0018651344580575824, -0.03648292273283005, -0.010327518917620182, 0.006237081717699766, -0.05835634469985962, -0.0038815608713775873, 0.07400762289762497, 0.011999757029116154, 0.0005265211802907288, -0.06242241710424423, -0.03947162628173828, 0.034367769956588745, 0.03497464209794998, -0.009914994239807129, -0.0322684682905674, -0.04799759387969971, -0.028799086809158325, 0.03653340041637421, 0.04684308171272278, -0.0043286667205393314, 0.009618394076824188, -0.14511467516422272, -0.002473096363246441, -0.06937602907419205, 0.027839848771691322, -0.023679647594690323, -0.027493689209222794, -0.01052201259881258, 0.013229464180767536, 0.027581587433815002, 0.012006456032395363, 0.03510864078998566, 0.029433302581310272, 0.02229859121143818, -0.03859495744109154, -0.00013184250565245748, 0.05749860033392906, -0.0090755894780159, -0.015144210308790207, -0.04323090240359306, -0.037870243191719055, 0.029788730666041374, -0.027321338653564453, -0.036088984459638596, 0.004847478587180376, -0.04279661551117897, 0.006271646358072758, 0.04281022399663925, 0.00003727246439666487, 0.05070338398218155, -0.009783118031919003, 0.05163932591676712, 0.016256626695394516, -0.027836857363581657, -0.12986908853054047, 0.14444510638713837, 0.0075032454915344715, 0.07306750863790512, -0.03046286478638649, -0.031245069578289986, -0.028989439830183983, 0.07638706266880035, 0.0017657647840678692, -0.019458074122667313, -0.05346919968724251, 0.07517687976360321, 0.029322568327188492, -0.024277208372950554, 0.00471848901361227, 0.01802029460668564, 0.04576871544122696, -0.029953574761748314, -0.026222992688417435, -0.024185756221413612, 0.00691384170204401, -0.03416529670357704, -0.018307756632566452, 0.00026350433472543955, 0.002172812819480896, 0.05323253571987152, 0.026564648374915123, 0.021357541903853416, 0.017677221447229385, -0.04613747447729111, 0.013410001993179321, -0.031557269394397736, -0.07474759221076965, -0.01268861722201109, -0.011652753688395023, 0.0008552986546419561, -0.03453688323497772, 0.3895137310028076, -0.04670972004532814, -0.013941346667706966, 0.07746738195419312, -0.004484925884753466, -0.012670143507421017, -0.005630913656204939, -0.00827234797179699, -0.02409200742840767, 0.03364802896976471, -0.04797562211751938, -0.010352933779358864, 0.004880806896835566, 0.05968179181218147, -0.046261221170425415, -0.00857745110988617, 0.020978203043341637, 0.022244753316044807, -0.01871473528444767, 0.04391759634017944, -0.017369601875543594, 0.02325993962585926, -0.004578185733407736, 0.01956876926124096, 0.01793363317847252, 0.04852323979139328, -0.002601439133286476, 0.03901826962828636, 0.061889708042144775, 0.019770249724388123, 0.04496173933148384, 0.0590163916349411, -0.0698375329375267, -0.019930943846702576, -0.00983603484928608, -0.015496578998863697, 0.022474711760878563, 0.02049425058066845, -0.018703335896134377, 0.0044156890362501144, 0.010394871234893799, -0.018600618466734886, -0.030881330370903015, 0.03394346311688423, -0.01104158814996481, -0.0022525957319885492, 0.11213629692792892, 0.006039064843207598, -0.05400331690907478, -0.02329074591398239, -0.06354114413261414, 0.02690480835735798, 0.0520484484732151, -0.001770717790350318, -0.033360909670591354, -0.010789738968014717, 0.052817218005657196, 0.041354209184646606, -0.03662817180156708, -0.053707342594861984, -0.029558520764112473, -0.03192687779664993, -0.016343586146831512, -0.03636888787150383, 0.07093271613121033, 0.034358806908130646, -0.10987862944602966, -0.04556488245725632, 0.0036500433925539255, 0.013459834270179272, -0.05579392611980438, -0.026605898514389992, 0.01068633608520031, -0.0505640022456646, -0.014985070563852787, 0.05391900986433029, -0.027755238115787506, -0.037929877638816833, 0.019759561866521835, 0.011211618781089783, 0.013985838741064072, 0.0010015389416366816, -0.015946581959724426, -0.08194009214639664, 0.018470846116542816, -0.04564071074128151, -0.08266333490610123, -0.01604139246046543, -0.014249224215745926, -0.0009592787828296423, 0.005861565936356783, -0.016365833580493927, -0.041290752589702606, -0.04279765486717224, 0.06009086221456528, -0.005783317610621452, 0.031046206131577492, -0.012169897556304932, -0.02333100140094757, 0.006036967504769564, -0.03421621024608612, 0.09006374329328537, 0.030383067205548286, -0.015166391618549824, 0.021234657615423203, -0.06607174128293991, 0.09297437965869904, 0.06428097933530807, -0.05687728151679039, 0.07999324798583984, 0.011287568137049675, -0.05135669186711311, -0.00994859728962183, 0.045264311134815216, 0.006287150550633669, 0.0072576627135276794, -0.040666017681360245, -0.006914692930877209, 0.02627210132777691, 0.021689608693122864, 0.03807789087295532, -0.03264298290014267, -0.004523858428001404, 0.040844377130270004, -0.3314812481403351, -0.041531652212142944, -0.009579779580235481, 0.0028606397099792957, 0.02251717448234558, -0.06961234658956528, 0.002449317369610071, -0.021246571093797684, -0.018191445618867874, 0.01950136572122574, 0.08167117834091187, -0.0037688829470425844, 0.014684672467410564, -0.07500608265399933, -0.01017400436103344, 0.03423721715807915, -0.011552009731531143, -0.08306127786636353, -0.02235187217593193, 0.03194978088140488, -0.02657088078558445, 0.009864483028650284, -0.030010081827640533, -0.07670697569847107, 0.007023162208497524, -0.032089926302433014, 0.10438443720340729, 0.029288645833730698, 0.11386368423700333, -0.05745849758386612, 0.07162345945835114, 0.007378485985100269, 0.017639707773923874, -0.08422821760177612, -0.01167207956314087, -0.02225504070520401, 0.0031779122073203325, -0.006633675191551447, 0.0179156344383955, -0.01645524613559246, -0.03603817895054817, -0.012944983318448067, -0.07018693536520004, -0.06130344048142433, -0.034180037677288055, 0.0007475091842934489, -0.015840038657188416, -0.026772400364279747, -0.03375912085175514, 0.06708037108182907, 0.021988362073898315, 0.016530469059944153, 0.028740208595991135, 0.06297130137681961, 0.02183307521045208, -0.005017860326915979, -0.042026337236166, -0.022328874096274376, -0.009704310446977615, 0.0006000800640322268, 0.03006247617304325, 0.030493639409542084, 0.03498435765504837, -0.05053708329796791, 0.029297858476638794, 0.03121666982769966, 0.00327545078471303, -0.022567210718989372, 0.08512222021818161, -0.04871733486652374, -0.09060078859329224, 0.12101981788873672, 0.011800713837146759, 0.009233442135155201, -0.004500608891248703, 0.02609192207455635, 0.00816589966416359, 0.029046744108200073, 0.028127415105700493, 0.004736891947686672, 0.017168449237942696, 0.01797463186085224, 0.025465210899710655, -0.04733235761523247, -0.025744684040546417, 0.02586096152663231, -0.051721859723329544, -0.0050154090858995914, 0.0382571704685688, -0.02477083168923855, -0.02487378753721714, 0.0015780014218762517, -0.003708101576194167, -0.08978771418333054, 0.05975669249892235, -0.029697047546505928, -0.24489811062812805, 0.016554322093725204, 0.1102815568447113, 0.08702514320611954, -0.021395087242126465, 0.028151074424386024, 0.030247660353779793, -0.06044604256749153, -0.015612871386110783, 0.03005584143102169, 0.005365591496229172, 0.0013432612176984549, -0.0005768496775999665, -0.016650380566716194, 0.04095287621021271, -0.021348552778363228, 0.02352651208639145, 0.023435251787304878, 0.013416627421975136, 0.008566380478441715, 0.0545852892100811, -0.001982509857043624, 0.1808956414461136, 0.004268001765012741, 0.02738645300269127, 0.04826173186302185, 0.021539121866226196, 0.0003018511342816055, 0.08060294389724731, 0.00234661134891212, 0.005714632570743561, -0.0036764664109796286, 0.0631982833147049, -0.010913273319602013, 0.018550217151641846, -0.08720459043979645, -0.05228868126869202, 0.06410742551088333, -0.001490312977693975, -0.0231416467577219, -0.006905881222337484, 0.021121902391314507, -0.04680165648460388, -0.004252844490110874, 0.07903802394866943, 0.03064986877143383, 0.037323348224163055, -0.006407089065760374, -0.056043196469545364, -0.019910551607608795, -0.049400147050619125, -0.014470763504505157, 0.028091035783290863, -0.008760175667703152, -0.008651756681501865, 0.06466766446828842, 0.04564077407121658, -0.030221937224268913, -0.01038177590817213, 0.04725942388176918, -0.007068953476846218, 0.013319135643541813, 0.09710758179426193, 0.027099136263132095, 0.032323822379112244 ]
[ -0.005104694981127977, -0.020659517496824265, 0.009883366525173187, 0.015719762071967125, -0.003525514854118228, -0.01246474776417017, 0.01786159723997116, -0.006992741022258997, 0.0003966969670727849, -0.02740500494837761, -0.009672800078988075, 0.011280464939773083, 0.00043861870653927326, -0.048336975276470184, 0.05289001762866974, 0.016693638637661934, -0.03479402884840965, -0.033854249864816666, -0.008609896525740623, 0.013528784736990929, -0.020434822887182236, 0.03481833636760712, 0.027723848819732666, -0.005501223728060722, -0.042882319539785385, -0.01402350515127182, 0.023077543824911118, 0.002229043748229742, 0.02600584365427494, -0.13858871161937714, -0.01534215547144413, -0.0639798641204834, -0.026217378675937653, 0.01742030866444111, -0.046727053821086884, -0.00009028956992551684, 0.009134003892540932, 0.042198967188596725, 0.005791978444904089, 0.011662494391202927, -0.052990589290857315, -0.012068665586411953, 0.0070145451463758945, 0.01458931528031826, 0.045540984719991684, -0.015667719766497612, -0.07542292773723602, -0.02300008200109005, -0.01985769346356392, 0.030957119539380074, 0.008676692843437195, -0.013579275459051132, -0.020522456616163254, -0.01145675778388977, 0.016435157507658005, -0.05037032440304756, -0.02203640341758728, -0.022602126002311707, 0.04751260206103325, 0.08108150959014893, 0.008037786930799484, 0.019542120397090912, -0.005400605034083128, -0.018703432753682137, 0.044974394142627716, 0.004571892321109772, 0.010464510880410671, 0.008210537023842335, -0.04180607944726944, 0.018188707530498505, -0.05051977559924126, -0.005945096258074045, 0.007592854090034962, -0.01704861968755722, -0.02123922109603882, -0.042332567274570465, -0.04293416067957878, 0.014588604681193829, 0.005304796155542135, 0.0115610770881176, -0.026259014382958412, -0.013631535694003105, 0.023258483037352562, 0.029788387939333916, 0.02591041475534439, 0.029350534081459045, 0.009907606057822704, -0.025760577991604805, 0.018330834805965424, -0.0027781627140939236, -0.02508959360420704, -0.015349744819104671, 0.017079707235097885, 0.06646578758955002, -0.0618421696126461, -0.000714254507329315, 0.0034629153087735176, -0.02670128457248211, 0.007519461214542389, 0.7819656729698181, -0.02949373796582222, 0.04628445953130722, 0.01893347129225731, 0.02123310975730419, 0.03113752417266369, -0.009586041793227196, -0.006832164246588945, 0.04343721643090248, 0.06332828849554062, -0.03867446631193161, 0.010972091928124428, 0.030257895588874817, 0.008855271153151989, 0.005216033197939396, 0.01241365261375904, -0.015691185370087624, 0.04663456231355667, -0.02148321643471718, 0.04051244258880615, 0.050702307373285294, 0.051825638860464096, 0.06548067182302475, 0.02788045071065426, 0.0070149037055671215, 0.018401069566607475, -0.16191211342811584, 0.04171731323003769, -8.253588116872777e-33, 0.0090967221185565, -0.021808171644806862, 0.004221836570650339, 0.028303394094109535, 0.025578852742910385, -0.0030973004177212715, -0.008610773831605911, 0.00808040238916874, -0.0599808543920517, -0.05727493017911911, 0.018291499465703964, -0.0004595915961544961, 0.00767666008323431, -0.020178817212581635, 0.07470998167991638, 0.029363909736275673, -0.0063005187548696995, 0.04888024926185608, 0.037962257862091064, -0.008346767164766788, 0.000701752956956625, 0.026359260082244873, 0.04578498750925064, 0.008324685506522655, -0.034065790474414825, 0.03793022781610489, 0.02134821191430092, 0.05762013420462608, -0.02022981271147728, -0.060185059905052185, 0.002206912962719798, -0.007960672490298748, -0.013032110407948494, -0.011512942612171173, 0.0016607041470706463, -0.022405652329325676, -0.034350037574768066, 0.0227994155138731, -0.007866057567298412, 0.004148221109062433, -0.053671564906835556, -0.02893728017807007, -0.012327647767961025, -0.028463583439588547, -0.02939554490149021, -0.055028852075338364, -0.0008202512981370091, -0.028089668601751328, -0.005042103584855795, 0.001139422645792365, 0.014599102549254894, 0.029807116836309433, 0.016608208417892456, 0.004429431166499853, -0.021224673837423325, -0.012227669358253479, -0.009747589007019997, 0.02687661349773407, 0.032185543328523636, -0.016960972920060158, 0.07317060232162476, -0.02797207422554493, 0.0033252888824790716, -0.002952375914901495, -0.028544923290610313, -0.06345342099666595, 0.023739011958241463, 0.023208415135741234, -0.007287091109901667, -0.02155035175383091, -0.0364149808883667, 0.04034947603940964, -0.02262818068265915, -0.007914779707789421, -0.007102221250534058, -0.009103753603994846, -0.03416217863559723, 0.011488640680909157, -0.0177133921533823, 0.058144815266132355, 0.05484895780682564, 0.005287110339850187, -0.017435118556022644, -0.01802842505276203, 0.013095331378281116, -0.021501248702406883, -0.01882944256067276, -0.01153184100985527, -0.002242380054667592, 0.03708416223526001, 0.047316789627075195, -0.0037375062238425016, -0.06398896872997284, -0.024778038263320923, 0.022430777549743652, 7.072472699001652e-33, 0.022385327145457268, 0.011315790005028248, -0.030904514715075493, 0.022732511162757874, 0.0010137490462511778, -0.009971408173441887, 0.03901025652885437, -0.01023499108850956, -0.06768956035375595, 0.0036466566380113363, 0.030537817627191544, 0.04806351661682129, -0.014948868192732334, 0.016223223879933357, 0.03397317975759506, 0.010774522088468075, -0.007716384716331959, -0.013208741322159767, 0.05809223651885986, -0.026332778856158257, 0.028866834938526154, -0.006598558742552996, -0.0040069264359772205, 0.004240680951625109, 0.0005867016734555364, 0.053476545959711075, -0.03857996314764023, -0.03327873721718788, -0.011390813626348972, -0.0369393527507782, -0.02907537668943405, -0.007124715019017458, 0.004731480032205582, -0.0666276291012764, 0.010845482349395752, 0.030308034271001816, -0.0037885962519794703, -0.006853831000626087, 0.0518486388027668, -0.02000131830573082, 0.03560574725270271, -0.0013435672735795379, 0.026314424350857735, -0.007834610529243946, 0.06199679151177406, 0.0273350328207016, 0.020008884370326996, -0.008076594211161137, -0.0005303578800521791, 0.03234200179576874, 0.042362917214632034, 0.025125959888100624, 0.016943972557783127, -0.00777011550962925, -0.0026199098210781813, -0.03829434886574745, -0.03756088390946388, -0.033420685678720474, -0.024187162518501282, 0.02415929175913334, 0.0011051712790504098, -0.021866220980882645, -0.021524060517549515, -0.019730547443032265, -0.04794389382004738, 0.01784227229654789, -0.06373382359743118, 0.030286310240626335, 0.0061793019995093346, -0.03821186721324921, -0.007632009219378233, -0.011781515553593636, -0.012223607860505581, -0.014550556428730488, -0.0086572440341115, -0.03985319659113884, 0.06597162783145905, 0.0102129140868783, -0.030558820813894272, 0.06271665543317795, 0.022602805867791176, 0.026732902973890305, 0.025956474244594574, -0.041682735085487366, 0.00021559017477557063, 0.0014875790802761912, -0.004389131907373667, 0.003106142161414027, -0.02397543378174305, -0.053857702761888504, 0.004453776869922876, -0.0102635957300663, 0.0017898358637467027, -0.029584987089037895, -0.0029611329082399607, -1.2812351180002679e-8, -0.10270944237709045, 0.0021330013405531645, -0.0027169398963451385, -0.0373629629611969, 0.030678896233439445, 0.015412063337862492, -0.029270274564623833, 0.006443154066801071, -0.04064655676484108, -0.021566998213529587, 0.04625776782631874, -0.005072928033769131, 0.0025781169533729553, 0.023962734267115593, -0.00787749420851469, -0.04003174975514412, -0.07075949013233185, 0.0014747580280527472, 0.03311698138713837, 0.00928930938243866, 0.004175740759819746, 0.011196955107152462, 0.04182377830147743, 0.012434073723852634, 0.026760876178741455, -0.017485134303569794, 0.004797226749360561, -0.07244909554719925, 0.002884224057197571, 0.008930214680731297, -0.053397610783576965, -0.027602627873420715, -0.033357638865709305, -0.03222237527370453, -0.018908759579062462, -0.04436473175883293, -0.009013853035867214, -0.0025059024337679148, 0.006522832438349724, -0.027255084365606308, 0.02058812603354454, -0.05083448812365532, -0.015047483146190643, -0.017843374982476234, 0.000561680702958256, 0.03807052597403526, -0.039912860840559006, 0.02053079754114151, 0.010740799829363823, -0.04975353553891182, 0.0031052432022988796, -0.005226774141192436, 0.0648469626903534, 0.04847530648112297, 0.0007812216063030064, -0.003460073610767722, 0.05992909148335457, -0.021908016875386238, -0.00042530507198534906, 0.005057378672063351, 0.035647787153720856, 0.028720684349536896, -0.01719115488231182, -0.0014815073227509856 ]
javascript-isolating-browser-specific-code
https://markhneedham.com/blog/2010/02/28/javascript-isolating-browser-specific-code
false
2010-02-10 00:02:02
Javascript: File encoding when using string.replace
[ "javascript" ]
[ "Javascript" ]
We ran into an interesting problem today when moving some Javascript code which was making use of the 'string.replace' function to strip out the £ sign from some text boxes on a form. The code we had written was just doing this: [source,javascript] ---- var textboxValue = $("#fieldId").val().replace(/£/, ''); ---- So having realised that we had this code all over the place we decided it would make sense to create a common function that strip the pound sign out. These common functions reside in a different js file to the original code. [source,javascript] ---- function Common() { this.stripPounds = function(value) { return value.replace(/£/, ''); }; } ---- We replace the above code with a call to that instead: [source,javascript] ---- var textboxValue = new Common().stripPounds($("#fieldId").val()); ---- Having done this we realised that the £ sign was no longer being replaced despite the fact that the code was pretty much identical. After a lot of fiddling around http://twitter.com/gurrie09?utm_source=follow&utm_content=profile&utm_campaign=twitter20080331162631&utm_medium=email[Brian] eventually realised that the js file containing 'Common' was ANSI encoded when we actually needed it to be UTF-8 encoded, probably because we created it in Visual Studio. As a result the £ sign is presumably being read as some other character which means the replacement doesn't happen anymore. Converting the file to UTF-8 encoding fixed the problem for us but it's certainly not something I'd have ever thought of.
null
null
[ 0.0014135990059003234, -0.026980401948094368, -0.005611782427877188, 0.03243860974907875, 0.055013637989759445, 0.01855483278632164, 0.01743684709072113, 0.04180337116122246, 0.03329961374402046, 0.007120621856302023, -0.0365954264998436, 0.0189200509339571, -0.09030074626207352, -0.013141702860593796, -0.03519529849290848, 0.05902280658483505, 0.07530416548252106, 0.010980809107422829, 0.039224687963724136, -0.015076305717229843, 0.018584365025162697, 0.08286148309707642, 0.006330672651529312, 0.027793947607278824, 0.03367986902594566, 0.023500317707657814, 0.0010054182494059205, -0.0016180004458874464, -0.09058613330125809, -0.014757545664906502, 0.060003601014614105, 0.054340243339538574, -0.00637345016002655, -0.007544537074863911, 0.0021112316753715277, -0.020457347854971886, -0.015128536149859428, 0.015366178937256336, 0.001384629518724978, 0.03633059561252594, -0.05875954031944275, 0.027161214500665665, 0.01156338769942522, 0.04134925454854965, -0.05597501993179321, -0.01724453829228878, -0.06550799310207367, 0.006799914874136448, -0.05398455634713173, -0.004863228183239698, -0.032692063599824905, 0.048614129424095154, -0.020442752167582512, -0.03331002593040466, -0.0004530401201918721, 0.055817991495132446, 0.0104688024148345, -0.04759819060564041, 0.02730093151330948, -0.06652843207120895, 0.02916783280670643, -0.00022901862394064665, -0.01219927053898573, 0.030678454786539078, 0.026335155591368675, -0.008135023526847363, -0.006057661026716232, 0.05882231518626213, -0.05045891925692558, -0.043271493166685104, 0.017871929332613945, 0.00935005396604538, -0.04325176775455475, -0.034333959221839905, 0.01705954782664776, -0.03364146873354912, -0.023560499772429466, 0.04105820134282112, -0.007696449290961027, 0.06025085225701332, 0.00045117881381884217, 0.0373026579618454, 0.015364040620625019, 0.01924114115536213, 0.017723456025123596, -0.0399712435901165, -0.028329921886324883, -0.0007934622117318213, -0.02055657096207142, 0.044471949338912964, 0.04099203273653984, -0.049019988626241684, 0.03361991047859192, 0.03153448924422264, 0.021076681092381477, -0.010197917930781841, -0.0005968729383312166, -0.0025429537054151297, -0.009231229312717915, -0.0544397346675396, -0.059546660631895065, -0.02338058315217495, 0.03577020764350891, -0.027584651485085487, -0.06299561262130737, 0.02038499526679516, -0.03479580581188202, 0.005443932022899389, 0.04032624885439873, -0.0002809945435728878, -0.012351126410067081, 0.004894574638456106, -0.010467549785971642, -0.015557373873889446, -0.044812604784965515, 0.05434304103255272, -0.004190202336758375, -0.021803151816129684, -0.029056310653686523, 0.043887313455343246, 0.07125520706176758, 0.003930388018488884, -0.025846334174275398, 0.0869833305478096, 0.04044920951128006, 0.044698264449834824, -0.0017456762725487351, 0.07596594095230103, -0.02034347876906395, -0.07163738459348679, -0.00481066619977355, 0.0552835687994957, -0.036187995225191116, 0.009048937819898129, -0.013256707228720188, -0.011913381516933441, -0.02199520170688629, -0.04396876320242882, 0.05722062662243843, 0.018010130152106285, -0.000391026318538934, -0.01205455232411623, -0.0253616776317358, 0.0012712663738057017, 0.01225854642689228, 0.02523396909236908, -0.039273448288440704, -0.03788702189922333, -0.011209913529455662, 0.01738041080534458, 0.02226080931723118, -0.0037119032349437475, 0.07935184985399246, 0.002057685051113367, 0.00381875759921968, 0.07390435039997101, 0.03679310902953148, 0.0031324047595262527, -0.04439147934317589, 0.02261495403945446, 0.03334015607833862, 0.01782270334661007, -0.007726220414042473, 0.062424853444099426, -0.020251473411917686, 0.0028604131657630205, -0.008354628458619118, 0.06358987092971802, -0.012946009635925293, -0.010803334414958954, -0.05330859124660492, -0.05284938961267471, 0.09088524430990219, -0.033551521599292755, -0.002965728985145688, 0.03562994301319122, 0.06753857433795929, 0.012395608238875866, 0.05183842405676842, 0.02746741846203804, -0.06656728684902191, 0.03909960016608238, 0.02850346826016903, 0.028937216848134995, 0.04868518188595772, -0.007661917246878147, 0.0660586804151535, 0.03924558311700821, 0.018466973677277565, 0.03411053493618965, -0.08356593549251556, -0.06306682527065277, -0.04757997393608093, 0.009828964248299599, 0.06780524551868439, -0.020878620445728302, -0.00034820905420929193, 0.06392306089401245, 0.04628346860408783, 0.0395490899682045, -0.008932914584875107, -0.03072507679462433, 0.0291855838149786, -0.0185081847012043, -0.024569639936089516, 0.03162869065999985, 0.040986139327287674, -0.012739963829517365, -0.033431898802518845, 0.027466582134366035, -0.017502283677458763, 0.011206763796508312, 0.020597195252776146, -0.017211103811860085, 0.02864510379731655, 0.009150401689112186, 0.029069624841213226, -0.013404927216470242, 0.04039907827973366, -0.07941342145204544, 0.021741041913628578, 0.011166252195835114, 0.0020409191492944956, -0.04381060227751732, 0.02613059990108013, 0.13833999633789062, 0.040555473417043686, -0.029811548069119453, -0.034672148525714874, 0.00476148771122098, -0.02151511050760746, -0.06389562785625458, 0.01660076342523098, -0.031534548848867416, -0.007332697976380587, -0.005357011687010527, -0.03397585451602936, -0.02916797809302807, -0.00712120346724987, -0.042743124067783356, 0.01356116309762001, 0.08757252991199493, -0.011876702308654785, 0.048833105713129044, -0.04050863906741142, -0.027668658643960953, 0.013048150576651096, -0.020037177950143814, -0.04437297582626343, -0.013488379307091236, 0.05088776722550392, 0.0078048305585980415, 0.01458299346268177, -0.040896225720644, -0.00853952020406723, -0.01650143414735794, -0.047888729721307755, 0.005745618138462305, 0.03189428150653839, 0.03401051089167595, -0.018702300265431404, 0.044894151389598846, 0.0029555445071309805, 0.014936944469809532, -0.036899130791425705, -0.018753347918391228, -0.024696437641978264, -0.003730235854163766, -0.007222096435725689, 0.022190287709236145, 0.027370840311050415, 0.04453979432582855, -0.024378065019845963, 0.014569181948900223, -0.015665659680962563, 0.003251155372709036, 0.0360419861972332, -0.037654727697372437, -0.017832152545452118, 0.0026462976820766926, -0.018062014132738113, 0.05025579780340195, -0.047908831387758255, -0.05925802141427994, -0.006143080070614815, -0.06898163259029388, 0.017291858792304993, -0.07083138078451157, -0.0554276667535305, -0.0064809382893145084, 0.03132384642958641, 0.021344047039747238, -0.011160362511873245, 0.03890858590602875, 0.05854504927992821, -0.011717066168785095, 0.03092034161090851, 0.009185812436044216, 0.027211254462599754, 0.047724686563014984, 0.03028164431452751, 0.033366136252880096, 0.042031124234199524, -0.02454126812517643, -0.0034682105761021376, -0.05991467088460922, 0.004705206956714392, -0.0062128654681146145, -0.2712300419807434, 0.06957914680242538, -0.002816899446770549, -0.03153524547815323, 0.049926627427339554, -0.02755250595510006, 0.029415737837553024, -0.05428110063076019, -0.026101309806108475, -0.0004122624814044684, -0.010848842561244965, -0.026777898892760277, -0.009746475145220757, 0.01729017309844494, -0.006883152760565281, -0.023858973756432533, -0.0014253912959247828, -0.02096298336982727, -0.0026906372513622046, 0.05149170383810997, -0.004075102973729372, -0.06036826968193054, 0.03500866889953613, 0.03951744735240936, 0.04757785424590111, 0.05518946796655655, -0.06426194310188293, 0.024108663201332092, -0.014937843196094036, 0.0007098145433701575, -0.009177042171359062, -0.00526073481887579, 0.025801049545407295, -0.013147721998393536, 0.0012971335090696812, 0.0012043925235047936, 0.03067595884203911, 0.0031524847727268934, 0.007697213441133499, -0.003287150524556637, -0.029456239193677902, -0.02745385654270649, -0.0027442914433777332, -0.008962458930909634, 0.07213059812784195, -0.0006266662967391312, -0.0637904554605484, 0.014540085569024086, -0.05073435232043266, 0.06431622803211212, -0.011944834142923355, -0.034270029515028, -0.010406537912786007, 0.05326293408870697, -0.007752587553113699, -0.013243782334029675, -0.022558415308594704, -0.015470126643776894, -0.03609909489750862, -0.049705229699611664, 0.00324087287299335, -0.05234843119978905, -0.033034373074769974, -0.0009309445740655065, 0.0029547729063779116, -0.07967769354581833, -0.06499194353818893, -0.01918904110789299, 0.08254086226224899, 0.03750995546579361, -0.022607916966080666, 0.01350934337824583, 0.010558633133769035, -0.10673809796571732, -0.005805692169815302, -0.031660664826631546, -0.01530987024307251, -0.004265779163688421, -0.020286349579691887, 0.015765463933348656, -0.01970149762928486, -0.0377553254365921, 0.018424225971102715, 0.01277927216142416, 0.0037164371460676193, -0.0374191552400589, 0.03601926937699318, 0.006406132597476244, -0.016698282212018967, -0.019807249307632446, 0.0788501501083374, -0.03429371491074562, -0.04769666865468025, -0.025563888251781464, 0.014211732894182205, 0.006426466163247824, 0.02086685225367546, -0.01893978752195835, 0.0008966514142230153, 0.021083014085888863, 0.039965011179447174, -0.041156332939863205, 0.037470754235982895, -0.027911046519875526, -0.008002606220543385, -0.012666194699704647, -0.03545462712645531, 0.05517047271132469, 0.016151564195752144, 0.021868271753191948, -0.0239527840167284, -0.05290238931775093, -0.006762758828699589, -0.06348210573196411, -0.05309532210230827, -0.025616267696022987, -0.000291013449896127, -0.027301490306854248, -0.005868203938007355, -0.054480381309986115, 0.0005463267443701625, 0.031644921749830246, 0.036652423441410065, 0.015434790402650833, -0.059133514761924744, -0.019425684586167336, -0.013841974548995495, -0.008558984845876694, 0.006719806231558323, -0.0020926096476614475, 0.0039057221729308367, 0.027515776455402374, -0.026983439922332764, -0.02973606437444687, 0.0196524765342474, 0.008830723352730274, -0.019544390961527824, -0.037399254739284515, -0.016938162967562675, -0.013474730774760246, 0.02439739741384983, 0.00860398169606924, 0.007480201311409473, 0.01008489541709423, 0.03896326199173927, -0.006326600909233093, 0.02567112445831299, -0.016865624114871025, -0.004508900456130505, 0.016915056854486465, -0.0010078437626361847, -0.06360307335853577, 0.005506148561835289, -0.008796636015176773, -0.03294089436531067, -0.02843838557600975, 0.03043692745268345, -0.0027476567775011063, -0.004975915886461735, -0.019799737259745598, 0.037706177681684494, -0.05116195231676102, -0.04556548595428467, -0.007561550009995699, -0.016799122095108032, 0.022036846727132797, 0.01976533979177475, 0.03707055374979973, -0.011341427452862263, -0.0028883381746709347, -0.00040675842319615185, 0.024743149057030678, -0.024879757314920425, -0.013665811158716679, -0.016907161101698875, -0.00993799977004528, -0.025974322110414505, 0.013933520764112473, 0.010059836320579052, 0.026213452219963074, 0.04529552161693573, -0.028050968423485756, 0.028317619115114212, 0.034776292741298676, 0.05282475799322128, 0.015334821306169033, -0.0015765822026878595, 0.013032668270170689, -0.03979162499308586, -0.02812199480831623, -0.03729495778679848, -0.018096251413226128, -0.042073801159858704, 0.008248608559370041, -0.05649925023317337, -0.08066390454769135, -0.009095897898077965, 0.04023966193199158, 0.019947554916143417, 0.04776478558778763, -0.008420238271355629, 0.027010805904865265, -0.02705022320151329, 0.014477981254458427, 0.021555570885539055, -0.03049575164914131, 0.009454687125980854, -0.018538393080234528, 0.009370093233883381, 0.0194086991250515, 0.028126351535320282, -0.04944944381713867, -0.01942269317805767, -0.033917322754859924, 0.028022510930895805, -0.023497609421610832, -0.02204742468893528, -0.031187543645501137, 0.018202144652605057, -0.019472453743219376, -0.011029772460460663, -0.009479974396526814, 0.000009534513083053753, 0.00891590304672718, 0.00016026239609345794, 0.023042140528559685, -0.016374364495277405, 0.009407063014805317, 0.03125157579779625, -0.03529137745499611, 0.009040131233632565, -0.02623172476887703, 0.03527731075882912, 0.021714050322771072, -0.008323712274432182, -0.007857208140194416, -0.058928053826093674, -0.017287610098719597, -0.023752525448799133, 0.042550332844257355, -0.0075018396601080894, -0.00782591849565506, -0.018132327124476433, 0.016918785870075226, -0.03385699912905693, 0.020006101578474045, -0.036899227648973465, -0.03280813246965408, 0.03345068171620369, 0.06487211585044861, 0.02236429788172245, 0.04922216758131981, -0.004229736048728228, -0.007597894407808781, 0.06543423980474472, -0.07584235072135925, -0.016330504789948463, -0.013239510357379913, -0.048288311809301376, 0.011973850429058075, 0.017696285620331764, 0.015434849075973034, -0.022415801882743835, 0.025845607742667198, 0.02139580436050892, 0.01501980796456337, 0.04497000202536583, -0.01947147212922573, 0.032046277076005936, -0.03912336751818657, -0.008791029453277588, -0.09767768532037735, 0.042672526091337204, 0.021849375218153, 0.0058778682723641396, -0.038709960877895355, -0.017274942249059677, -0.05183315649628639, 0.01720736362040043, -0.040623679757118225, -0.014981161803007126, 0.04260476306080818, 0.030177069827914238, 0.006799029652029276, 0.03414365276694298, -0.054854970425367355, 0.05034986510872841, 0.03064541332423687, -0.031612593680620193, -0.04736320301890373, -0.04423832148313522, 0.05655670911073685, 0.005215036682784557, 0.01713223196566105, -0.05408085882663727, 0.0026683376636356115, 0.03274685516953468, 0.033361826092004776, 0.007565964478999376, 0.03883840888738632, -0.020627964287996292, 0.03404852747917175, 0.03283519297838211, -0.007763583678752184, 0.021893925964832306, 0.016122158616781235, -0.016472844406962395, -0.06313911080360413, 0.001806392683647573, 0.00855998881161213, -0.030327890068292618, -0.04488571360707283, 0.061314888298511505, 0.025885647162795067, -0.01613718643784523, -0.05519788712263107, -0.008513862267136574, -0.033246446400880814, -0.023952273651957512, -0.013579849153757095, -0.017702797427773476, -0.02512248605489731, 0.052794814109802246, 0.00007711219950579107, 0.01108656544238329, 0.08260010182857513, 0.018992437049746513, 0.0012350170873105526, -0.016469508409500122, 0.07564320415258408, 0.09618435055017471, 0.06908713281154633, 0.0114916255697608, 0.025641825050115585, -0.004769293125718832, -0.06386712938547134, 0.014419779181480408, -0.02109118364751339, -0.011814136058092117, 0.004335320089012384, -0.012427695095539093, 0.05728806555271149, -0.026716060936450958, 0.07090906798839569, -0.015760034322738647, -0.024544429033994675, -0.007101316470652819, -0.028134632855653763, -0.0029474433977156878, 0.04232452064752579, 0.03159032016992569, 0.022760815918445587, -0.002502302173525095, -0.006299871485680342, 0.059127744287252426, -0.01798751763999462, -0.018970219418406487, 0.010368228890001774, 0.026162030175328255, 0.0032375052105635405, 0.007291937712579966, 0.05386510491371155, 0.06828286498785019, -0.036452580243349075, -0.0012468136847019196, 0.017399165779352188, 0.04494340345263481, -0.005647510290145874, 0.023010851815342903, -0.020426668226718903, -0.0016222374979406595, -0.03053561970591545, -0.016517149284482002, -0.01901862770318985, 0.004772339481860399, -0.030642518773674965, 0.0538126602768898, -0.03666335344314575, 0.009110312908887863, 0.01810244843363762, 0.004954097792506218, -0.033997729420661926, -0.054025162011384964, -0.0696897953748703, -0.06108458340167999, -0.07958000898361206, -0.05326901376247406, 0.0034795175306499004, -0.014353369362652302, -0.05909876525402069, -0.028924237936735153, -0.032857801765203476, -0.007286556530743837, 0.02223697490990162, -0.031147092580795288, -0.050312936305999756, 0.030919060111045837, 0.011790549382567406, 0.019530614838004112, 0.02790728025138378, 0.027685027569532394, -0.020234240218997, -0.021417541429400444, -0.04219309240579605, -0.0229103434830904, 0.032804276794195175, 0.030851777642965317, 0.009971094317734241, -0.07406021654605865, 0.0328422486782074, 0.043162405490875244, -0.014456963166594505, -0.06771961599588394, 0.010307243093848228, -0.017888063564896584, -0.04530080035328865, 0.06398741900920868, -0.011853565461933613, 0.010259215719997883, -0.014557032845914364, -0.009662010706961155, -0.009922381490468979, 0.013706947676837444, 0.030707843601703644, -0.02332804538309574, 0.08913225680589676, 0.03545574098825455, -0.01628880947828293, -0.03641659393906593, 0.006753583438694477, -0.025507010519504547, 0.012427444569766521, -0.030593741685152054, -0.041968073695898056, -0.0472949743270874, -0.0631798580288887, -0.011504149995744228, -0.002748331753537059, -0.03807934746146202, -0.02295083738863468, 0.05056750401854515, 0.046005845069885254, -0.051321934908628464, 0.021992547437548637, -0.02534116618335247, 0.019408857449889183, -0.006750285625457764, -0.013168985955417156, -0.003948633559048176, 0.025932390242815018, 0.030411869287490845, -0.012341919355094433, 0.02119368501007557, -0.016759533435106277, 0.012202611193060875, -0.005548526532948017, 0.005655354354530573, 0.03035581111907959, -0.0033924353774636984, 0.047435566782951355 ]
[ -0.08521682769060135, -0.02884424664080143, -0.034926578402519226, -0.041572947055101395, 0.03476116061210632, -0.0554078184068203, -0.01111315842717886, 0.030004078522324562, 0.009269309230148792, -0.0041089896112680435, -0.016164442524313927, -0.029360009357333183, -0.009493385441601276, -0.024488547816872597, 0.09029173851013184, -0.010044213384389877, -0.021767567843198776, -0.08473661541938782, -0.05684999004006386, 0.036257676780223846, 0.030888691544532776, -0.006899951957166195, -0.019981620833277702, -0.03776104003190994, 0.01443824265152216, 0.013544997200369835, 0.03185364976525307, -0.004042746499180794, 0.0017529071774333715, -0.1932762712240219, 0.02737583965063095, -0.022911109030246735, 0.002822905546054244, -0.008964769542217255, 0.015912210568785667, 0.018987808376550674, -0.006157762836664915, 0.009415625594556332, 0.022925080731511116, 0.05052834749221802, 0.01171399001032114, 0.009001233614981174, -0.06367610394954681, -0.046707313507795334, 0.06788028031587601, 0.007682273164391518, -0.019050365313887596, -0.0150236114859581, -0.024472825229167938, 0.0517362542450428, -0.035270288586616516, 0.008866780437529087, 0.006558411754667759, -0.022916428744792938, -0.003509452333673835, 0.03325735777616501, 0.032763633877038956, 0.06560377776622772, 0.02197759412229061, 0.02617926150560379, 0.0233377143740654, -0.015052350237965584, -0.1278837025165558, 0.11559928208589554, 0.015565295703709126, 0.059356898069381714, 0.014607176184654236, -0.017815351486206055, -0.036798201501369476, 0.09981484711170197, 0.0007087868289090693, -0.03712658956646919, -0.053385134786367416, 0.053935855627059937, -0.0003910093801096082, -0.009660648182034492, -0.005707108415663242, 0.012171672657132149, 0.01337167713791132, -0.019358135759830475, -0.0372672975063324, -0.033496957272291183, -0.013991248793900013, -0.020109549164772034, -0.039131708443164825, -0.018433773890137672, -0.02784258872270584, 0.04375957325100899, 0.026192251592874527, 0.027951082214713097, 0.03615487366914749, -0.02731800265610218, 0.031311143189668655, 0.025311045348644257, -0.09456713497638702, -0.004369309172034264, -0.004304783418774605, 0.031002845615148544, -0.04796862602233887, 0.44126269221305847, -0.01834237203001976, -0.018425002694129944, 0.05767908692359924, -0.0031591602601110935, 0.03407738730311394, 0.005502754356712103, -0.010270914994180202, -0.02569531463086605, 0.012706072069704533, -0.057590313255786896, -0.011158306151628494, 0.0006236445624381304, 0.07347404211759567, -0.02625599130988121, -0.0002787833218462765, 0.005616196896880865, 0.022583486512303352, 0.0025125895626842976, -0.0013459951151162386, 0.0187821127474308, -0.006867093034088612, 0.024996712803840637, -0.0014512789202854037, 0.020653508603572845, 0.009854081086814404, 0.0007017120369710028, 0.025620047003030777, 0.0698799341917038, 0.02108047530055046, 0.032263483852148056, 0.02068271115422249, -0.052908189594745636, -0.053610365837812424, 0.015499086119234562, -0.008240943774580956, 0.023707028478384018, 0.01028414722532034, -0.00034486729418858886, 0.012672850862145424, 0.04639711230993271, -0.019809816032648087, -0.06214830279350281, -0.020346837118268013, 0.02999311126768589, -0.02124352939426899, 0.08535698801279068, -0.029015693813562393, -0.043542224913835526, -0.014333736151456833, -0.00982669461518526, 0.0016336855478584766, 0.038013871759176254, -0.033809270709753036, -0.05376477539539337, 0.002275144448503852, 0.022800574079155922, 0.08321182429790497, -0.01768571138381958, -0.039908215403556824, -0.026742510497570038, -0.0070559075102210045, -0.04261458292603493, -0.0444183275103569, 0.025237323716282845, 0.028664052486419678, -0.11751329153776169, -0.024884160608053207, -0.01080015953630209, 0.017157701775431633, -0.09454069286584854, -0.011516452766954899, -0.00260565266944468, -0.03870745748281479, -0.01947028562426567, 0.04937547817826271, -0.029861418530344963, -0.0221053846180439, 0.005266471300274134, 0.042341217398643494, 0.012168177403509617, -0.014685159549117088, -0.00985100120306015, -0.06893410533666611, 0.003248682478442788, -0.04708023741841316, -0.07237029820680618, -0.04703978821635246, -0.016874130815267563, 0.015491001307964325, 0.04706801101565361, 0.00429519871249795, -0.02522316202521324, -0.07998637855052948, 0.022174224257469177, -0.021044356748461723, -0.00415660347789526, -0.03946875408291817, 0.012741800397634506, 0.0031671887263655663, -0.003405628027394414, 0.01987874135375023, 0.020931167528033257, -0.0076287901028990746, -0.005291398148983717, -0.034094274044036865, 0.08525015413761139, 0.10510126501321793, -0.04093944653868675, 0.06231134757399559, 0.04386823624372482, -0.01843075640499592, -0.005878861527889967, 0.01567355915904045, 0.008745863102376461, 0.002085822867229581, -0.040359653532505035, 0.0027657151222229004, 0.007626196835190058, 0.04271477088332176, 0.009411471895873547, -0.04913627728819847, -0.039499085396528244, -0.0038009844720363617, -0.34669506549835205, -0.054728489369153976, 0.00884033553302288, 0.002349614165723324, 0.05397382751107216, -0.07850240170955658, -0.00755349500104785, -0.027442745864391327, 0.001334870932623744, 0.029612751677632332, 0.07726601511240005, -0.028518669307231903, -0.0040369341149926186, -0.07019539922475815, 0.005911666434258223, 0.029007205739617348, -0.029974505305290222, -0.032360438257455826, 0.010642432607710361, 0.04313948377966881, -0.022124875336885452, -0.02334383688867092, -0.0476820170879364, -0.047418687492609024, 0.01685776188969612, -0.050652969628572464, 0.11898086220026016, 0.025997912511229515, 0.06917193531990051, -0.057918280363082886, 0.03400750830769539, 0.0022052149288356304, 0.03950796276330948, -0.0680973082780838, -0.0023039751686155796, -0.016644559800624847, -0.019356567412614822, 0.014920295216143131, 0.020828766748309135, -0.011904226616024971, -0.04638378694653511, -0.012390883639454842, -0.05088154599070549, -0.03477904200553894, -0.018384551629424095, 0.021322092041373253, -0.01972908526659012, -0.04862748086452484, -0.008750662207603455, 0.10280793905258179, 0.04799991101026535, 0.007791148032993078, 0.030582977458834648, 0.04736987128853798, 0.022981936112046242, -0.011910492554306984, -0.04764428734779358, 0.008461205288767815, 0.007279636338353157, -0.010090802796185017, 0.022061115130782127, 0.014421248808503151, 0.04570202901959419, -0.05351811274886131, -0.0038284584879875183, 0.03331930935382843, 0.008107651025056839, -0.012337113730609417, 0.045426513999700546, 0.002184058539569378, -0.04501689225435257, 0.12950091063976288, 0.009285153821110725, 0.0011791917495429516, 0.0031397913116961718, 0.054920878261327744, -0.021679401397705078, 0.031018273904919624, 0.004373651463538408, -0.0065837823785841465, 0.042059388011693954, 0.02612370252609253, 0.05299733951687813, -0.058214109390974045, -0.02488023042678833, 0.031011482700705528, -0.01576055958867073, -0.009251068346202374, 0.049160316586494446, 0.0054868413135409355, -0.044275909662246704, 0.0054198927246034145, 0.00511428015306592, -0.06755231320858002, 0.037711840122938156, -0.032488320022821426, -0.26453760266304016, 0.005796969402581453, 0.06123490631580353, 0.07143677026033401, 0.011509516276419163, 0.038318317383527756, 0.03202608972787857, -0.04915210232138634, -0.018581021577119827, 0.029294902458786964, -0.016970019787549973, 0.016941798850893974, -0.003943528980016708, -0.01883729174733162, 0.03114963322877884, -0.01912936381995678, 0.010743638500571251, 0.009470169432461262, 0.001237249467521906, 0.019806871190667152, 0.03822440654039383, -0.0225524865090847, 0.15226177871227264, 0.015905186533927917, 0.0021977401338517666, 0.01625513657927513, 0.011303333565592766, 0.04996827244758606, 0.09474838525056839, -0.007814074866473675, -0.02462802641093731, 0.023890553042292595, 0.03396990895271301, -0.007747854106128216, 0.02278747968375683, -0.08854074031114578, -0.07780565321445465, 0.013320378959178925, 0.03176320344209671, -0.012342982925474644, -0.013421984389424324, 0.03956947848200798, -0.04004548862576485, 0.0036824422422796488, 0.041195712983608246, 0.039131708443164825, 0.026960128918290138, -0.008095936849713326, -0.017658140510320663, -0.009117321111261845, -0.025628652423620224, -0.015524692833423615, 0.006255894433706999, 0.01758173480629921, 0.005898437928408384, 0.08870700001716614, 0.02250310219824314, -0.03517882153391838, 0.024629704654216766, 0.027311906218528748, -0.048213858157396317, -0.01423648651689291, 0.0891534686088562, 0.03304671868681908, 0.019988738000392914 ]
[ 0.013572979718446732, 0.05539747327566147, 0.01374406274408102, 0.020246701315045357, 0.004198923707008362, -0.01326223835349083, -0.00046090575051493943, -0.008115763776004314, 0.020643817260861397, -0.05463697388768196, -0.03436736389994621, 0.02705421671271324, -0.00742616131901741, -0.033882007002830505, 0.028974011540412903, -0.015237816609442234, -0.019472872838377953, -0.014352815225720406, -0.008086029440164566, 0.020882314071059227, -0.023081937804818153, 0.010644911788403988, -0.01631360873579979, 0.039335284382104874, 0.006491048261523247, 0.018942873924970627, 0.014469921588897705, 0.017139626666903496, 0.002872829558327794, -0.12207810580730438, 0.003945815842598677, -0.05833326652646065, 0.01174195483326912, -0.0036417313385754824, -0.02725495956838131, 0.033044446259737015, 0.021446270868182182, 0.04396696388721466, 0.033708781003952026, -0.015370246022939682, -0.061655838042497635, -0.05721394717693329, 0.005499964114278555, 0.013808250427246094, 0.05703370273113251, 0.047747042030096054, 0.002738791285082698, -0.021590549498796463, -0.042206697165966034, 0.0023086629807949066, 0.02349320612847805, -0.03356854245066643, -0.0002646772190928459, 0.013738417997956276, -0.03590551018714905, -0.03988396376371384, -0.00713433837518096, -0.009669065475463867, 0.001129486015997827, 0.014271714724600315, -0.03731648996472359, 0.06270693242549896, -0.005320929456502199, -0.019679835066199303, 0.012446663342416286, -0.01532825082540512, 0.011603574268519878, -0.0009421311551705003, -0.026444606482982635, 0.004259106703102589, 0.01218358427286148, -0.020393624901771545, -0.007611975539475679, -0.014062588103115559, 0.005479892250150442, 0.013675261288881302, -0.024040963500738144, -0.012606297619640827, 0.01875907927751541, 0.004840894136577845, -0.05335334315896034, -0.005706527270376682, -0.00604528933763504, 0.0254040639847517, 0.051683396100997925, -0.015016105026006699, -0.019835669547319412, 0.01876852847635746, 0.024431491270661354, 0.02078883722424507, -0.028480857610702515, 0.012397651560604572, 0.028662236407399178, 0.07925412058830261, -0.09051734209060669, -0.013094809837639332, -0.016896218061447144, -0.007490881718695164, -0.03371474891901016, 0.8326637744903564, 0.007233849260956049, 0.03996003046631813, 0.024597814306616783, 0.02580796182155609, 0.020759204402565956, -0.027468228712677956, 0.013179534114897251, 0.02463209256529808, 0.05615478381514549, -0.043121885508298874, 0.0053367894142866135, 0.01778179034590721, 0.009670617058873177, 0.0015589679824188352, 0.035508327186107635, 0.026668118312954903, 0.009782763198018074, -0.018662022426724434, 0.003121759509667754, 0.03727222979068756, 0.03818163648247719, 0.00295003829523921, -0.009932141751050949, 0.014169017784297466, 0.01949199102818966, -0.12917448580265045, 0.023113351315259933, -7.838833302284365e-33, 0.006355441175401211, 0.015536979772150517, 0.01797446608543396, -0.006635740399360657, -0.013358606956899166, 0.004484311677515507, -0.0492556057870388, 0.0518210306763649, -0.03484183922410011, -0.029971199110150337, 0.01202702708542347, 0.011851857416331768, 0.025506451725959778, -0.012091174721717834, 0.01414333563297987, 0.0010195433860644698, 0.031068721786141396, 0.013830944895744324, 0.03342781588435173, 0.006829417776316404, 0.009229060262441635, 0.017261674627661705, 0.052884846925735474, 0.03137899190187454, -0.02397163026034832, 0.0397145114839077, -0.004763873293995857, -0.0029031112790107727, -0.0006212284206412733, -0.047799497842788696, -0.023286182433366776, 0.0018610701663419604, -0.009286888875067234, -0.01964804343879223, -0.02455231361091137, -0.047371480613946915, -0.013125058263540268, 0.0030379958916455507, -0.0023817941546440125, 0.03464961796998978, -0.015602786093950272, -0.01081204041838646, 0.0020272464025765657, -0.002377471188083291, 0.009250333532691002, 0.00023287894146051258, 0.022803809493780136, -0.017854295670986176, 0.010729195550084114, -0.03500401973724365, -0.015549135394394398, 0.017961937934160233, -0.010690116323530674, 0.01706160604953766, -0.024811074137687683, -0.035927582532167435, -0.02727138064801693, 0.022363118827342987, -0.010876950807869434, -0.01591574214398861, 0.03933761268854141, 0.004731886088848114, 0.019860751926898956, 0.011611753143370152, -0.026257434859871864, -0.022793743759393692, -0.02079586312174797, -0.020482223480939865, -0.05091747269034386, -0.012775796465575695, -0.041833262890577316, 0.037498876452445984, 0.002271557692438364, 0.001280090305954218, 0.0038344424683600664, -0.03752153366804123, -0.0017528163734823465, 0.0019298301776871085, 0.042426370084285736, 0.02444305084645748, -0.005270248278975487, 0.003681797068566084, 0.023676887154579163, -0.008159331046044827, 0.02315106801688671, 0.012230281718075275, 0.03328058868646622, -0.028279658406972885, 0.014106116257607937, 0.017358163371682167, 0.006803229451179504, -0.026913251727819443, -0.04121860861778259, -0.036087263375520706, 0.017077943310141563, 6.876392159760832e-33, -0.024240020662546158, 0.010129375383257866, -0.03090321645140648, 0.03944942355155945, 0.0016295401146635413, 0.0017788023687899113, 0.020163975656032562, 0.00991175975650549, -0.026690226048231125, 0.0392426960170269, -0.01793554052710533, -0.037632107734680176, -0.03213807940483093, 0.03267300873994827, 0.04778994247317314, -0.022743986919522285, 0.004524965770542622, -0.011585548520088196, 0.04830964654684067, -0.04462224990129471, 0.00657388661056757, 0.008668041788041592, 0.02362189255654812, 0.02057834155857563, -0.04997526481747627, 0.01994204893708229, -0.022433210164308548, -0.015296181663870811, 0.010845525190234184, -0.007913216948509216, -0.03446226194500923, 0.03407680615782738, 0.027552159503102303, -0.03352943807840347, -0.037617042660713196, 0.03025713935494423, 0.003036409616470337, -0.004106434062123299, 0.027231460437178612, 0.006787128280848265, -0.002479960909113288, -0.04916444420814514, -0.004189377650618553, -0.007925832644104958, 0.006137964315712452, -0.022350899875164032, -0.013022913597524166, 0.015640098601579666, 0.02298371121287346, 0.03976534679532051, 0.019223134964704514, 0.005960812326520681, -0.011475486680865288, 0.007717466447502375, -0.02649303525686264, -0.012620924040675163, -0.04818933457136154, 0.011531340889632702, 0.0037499561440199614, -0.0192014891654253, -0.04263942688703537, 0.028530675917863846, 0.0008214222616516054, -0.012700722552835941, -0.03323132172226906, 0.008036898449063301, -0.016680944710969925, 0.04047491401433945, 0.033167269080877304, -0.059588730335235596, -0.03877416253089905, -0.036337461322546005, 0.027575986459851265, 0.006218027323484421, 0.017108550295233727, -0.011113503016531467, -0.005807199515402317, -0.02554669976234436, 0.018493779003620148, 0.03873371332883835, 0.04222330078482628, -0.015423130244016647, 0.047475699335336685, -0.048675451427698135, -0.006360581610351801, 0.0048812199383974075, -0.030332984402775764, 0.022175535559654236, -0.0129717281088233, -0.0466267466545105, 0.02499150112271309, 0.025050578638911247, 0.008175392635166645, -0.010189086198806763, -0.0008233959670178592, -1.2890061462655922e-8, -0.04567734897136688, 0.0038242575246840715, -0.02339954301714897, -0.010709884576499462, 0.010241346433758736, -0.011989451013505459, -0.016743693500757217, 0.003568494226783514, -0.0018423194997012615, 0.0020696003921329975, 0.041852716356515884, -0.007802196312695742, -0.015950266271829605, -0.007551876828074455, -0.029511822387576103, -0.010394359938800335, -0.051429133862257004, -0.019360871985554695, 0.018932271748781204, 0.04705651104450226, 0.00212115328758955, 0.05604013800621033, -0.00232382002286613, -0.044781140983104706, 0.02622603252530098, -0.03941627964377403, 0.017392946407198906, -0.04848029464483261, 0.0018645887030288577, 0.010118753649294376, 0.01110862847417593, -0.02384863793849945, -0.0026001851074397564, -0.02969101257622242, -0.02396339364349842, -0.03408792242407799, 0.019406534731388092, -0.012273017317056656, -0.010209504514932632, 0.03950679302215576, 0.04229916259646416, -0.05164426937699318, -0.052671149373054504, -0.03666554018855095, 0.006282890681177378, -0.022318804636597633, -0.0548587292432785, 0.01140655018389225, 0.004644302185624838, -0.048657432198524475, 0.03705945611000061, 0.0063392603769898415, 0.026706118136644363, 0.05802864208817482, 0.032474812120199203, -0.02067163586616516, 0.005973301827907562, -0.05524008721113205, 0.007139146793633699, -0.010672495700418949, 0.028045032173395157, 0.0006378256366588175, 0.0004119272925890982, -0.03851117938756943 ]
javascript-file-encoding-when-using-string-replace
https://markhneedham.com/blog/2010/02/10/javascript-file-encoding-when-using-string-replace
false
2010-02-10 23:06:14
F#: Inline functions and statically resolved type parameters
[ "f" ]
[ "fsharp" ]
One thing which I've often wondered when playing around with F# is that when writing the following function the type of the function is inferred to be 'int \-> int \-> int' rather than allowing any values which can be added together: [source,ocaml] ---- let add x y = x + y > val add : int -> int -> int ---- It turns out if you use the 'inline' keyword then the compiler does exactly what we want: [source,ocaml] ---- > let inline add x y = x + y val inline add : ^a -> ^b -> ^c when ( ^a or ^b) : (static member ( + ) : ^a * ^b -> ^c) ---- Without the inline modifier type inference forces the function to take a specific type, in this case int. With it the function has a statically resolved type parameter which means that "the type parameter is replaced with an actual type at compile time rather than run time". In this case it's useful to us because it allows us to implicitly define a member constraint on the two input parameters to 'add'. From the http://msdn.microsoft.com/en-us/library/dd548046(VS.100).aspx[MSDN page]: ____ Statically resolved type parameters are primarily useful in conjunction with member constraints, which are constraints that allow you to specify that a type argument must have a particular member or members in order to be used. There is no way to create this kind of constraint by using a regular generic type parameter. ____ The neat thing about the second definition is that we can add values of any types which support the '+' operator: [source,ocaml] ---- add "mark" "needham";; > val it : string = "markneedham" ---- [source,ocaml] ---- > add 1.0 2.0;; val it : float = 3.0 ---- From a quick look at the IL code in Reflector it looks like the 'add' function defined here makes use of the 'http://stuff.mit.edu/afs/athena.mit.edu/software/mono/current/arch/i386_deb40/FSharp-1.9.6.2/lib/FSharp.Core/prim-types.fsi[AdditionDynamic]' function internally to allow it to be this flexible. One thing which I found quite interesting while reading about http://msdn.microsoft.com/en-us/library/dd548047(VS.100).aspx[inline functions] is that it sounds like it's quite similar to duck typing in that we're saying a function can be passed any value which supports a particular method. http://www.atrevido.net/blog/2008/08/31/Statically+Typed+Duck+Typing+In+F.aspx[Michael Giagnocavo has a post] where he covers the idea of http://msdn.microsoft.com/en-us/library/dd548046(VS.100).aspx[statically type resolved parameters] in more detail and describes what he refers to as 'statically typed duck typing'.
null
null
[ -0.021087171509861946, -0.0042387559078633785, -0.025775542482733727, 0.03241701424121857, 0.048643577843904495, 0.032022625207901, 0.01176364254206419, 0.011653605848550797, 0.001436523743905127, -0.007120660971850157, -0.016404742375016212, 0.018255745992064476, -0.08736041933298111, 0.0212827380746603, 0.00045462601701729, 0.05060923844575882, 0.06754527986049652, -0.044036444276571274, 0.013717379420995712, 0.002243389841169119, 0.026410328224301338, 0.05965689569711685, 0.005083793308585882, 0.02367481216788292, -0.01067283097654581, 0.00008881513349479064, 0.013879738748073578, -0.010021756403148174, -0.027285931631922722, 0.007399063091725111, 0.027423975989222527, 0.022854043170809746, -0.021342530846595764, -0.036113087087869644, -0.011460412293672562, -0.005123759154230356, 0.030503641813993454, -0.01296149380505085, 0.0014429778093472123, 0.05125131830573082, -0.07749416679143906, 0.01264240313321352, 0.01355642918497324, 0.00834460835903883, -0.06747128069400787, -0.0038181988056749105, -0.054029323160648346, -0.0012540766038000584, -0.03616257384419441, -0.003088055644184351, -0.05179725959897041, 0.009671579115092754, -0.032034289091825485, 0.01462941151112318, 0.0017415093025192618, 0.07109285145998001, -0.0055600968189537525, -0.07656437903642654, 0.050387147814035416, -0.057671986520290375, 0.0049070026725530624, -0.002647879533469677, 0.025257205590605736, 0.020542645826935768, 0.031277239322662354, 0.020955579355359077, -0.022317254915833473, 0.02756844274699688, -0.06864137947559357, -0.027386976405978203, -0.0058015137910842896, 0.027535121887922287, -0.02866269275546074, -0.032070014625787735, 0.016449062153697014, -0.03910461440682411, -0.029402025043964386, 0.05231504887342453, 0.035107191652059555, 0.039521340280771255, 0.0040133800357580185, 0.0407274104654789, 0.035785917192697525, 0.01191872451454401, 0.024426203221082687, -0.015560278668999672, -0.01756826788187027, 0.01660059578716755, -0.04435403645038605, 0.06762414425611496, -0.0013855667784810066, -0.0756692886352539, 0.00027430651243776083, 0.009555811062455177, 0.02305372804403305, 0.013345384038984776, 0.006497199181467295, -0.0321291908621788, -0.0063781533390283585, -0.004182764329016209, -0.046504002064466476, -0.035019539296627045, 0.028251932933926582, 0.017834791913628578, -0.07104920595884323, -0.02051183581352234, -0.03235854208469391, -0.017310427501797676, 0.01480666734278202, 0.046514321118593216, -0.04057773947715759, -0.01283608004450798, -0.030154097825288773, -0.0063585699535906315, -0.08098074793815613, 0.015269557014107704, -0.0002763054217211902, 0.0065530347637832165, 0.006734935101121664, 0.04328261688351631, 0.047595810145139694, 0.016747815534472466, 0.0012230720603838563, 0.06456828117370605, 0.020794566720724106, 0.039324238896369934, -0.008037608116865158, 0.075993113219738, -0.0083463154733181, -0.0696871280670166, -0.04730848968029022, 0.05704916641116142, -0.043770577758550644, -0.014602206647396088, 0.004389584064483643, -0.02605990320444107, -0.03560313954949379, 0.013379103504121304, 0.027314502745866776, 0.04613384231925011, 0.004220453556627035, -0.05888279527425766, 0.005418837070465088, -0.03051862306892872, 0.0006595774902962148, -0.005012271925806999, -0.008755615912377834, -0.015238701365888119, -0.021021870896220207, 0.026586126536130905, 0.02255445346236229, 0.06830067932605743, 0.078284353017807, -0.03857487067580223, 0.03661827743053436, 0.07452462613582611, 0.03621332347393036, 0.004644779954105616, -0.002692677080631256, 0.023347945883870125, 0.06029631569981575, 0.023388240486383438, -0.004623778630048037, 0.050585005432367325, 0.0379759781062603, 0.010524080134928226, 0.008008643984794617, 0.02075362391769886, -0.0265264343470335, -0.02438998408615589, -0.03950727730989456, -0.023553423583507538, 0.051801275461912155, -0.015402339398860931, 0.007879959419369698, 0.03618527203798294, 0.08870737999677658, -0.007854927331209183, 0.0626407340168953, -0.019035587087273598, -0.07422085106372833, -0.00036924381856806576, 0.010710307396948338, -0.002862081630155444, -0.01767556183040142, 0.020116612315177917, 0.04196873679757118, 0.02689317800104618, 0.005913401488214731, 0.01630670204758644, -0.03295230492949486, -0.07232305407524109, -0.03175238147377968, -0.032988764345645905, 0.1172785609960556, -0.06227998062968254, -0.03521868214011192, 0.07429970055818558, 0.005198989529162645, 0.058815669268369675, 0.03585514426231384, -0.02292158082127571, 0.015591967850923538, 0.003173870500177145, -0.032427966594696045, 0.07225534319877625, 0.03823988512158394, 0.017259744927287102, -0.03308027237653732, 0.026069162413477898, 0.0005974979721941054, -0.0114052202552557, 0.03840212523937225, -0.0035137427039444447, 0.023437771946191788, 0.03604087978601456, 0.0035434956662356853, -0.04409891366958618, 0.05661935731768608, -0.06092032417654991, 0.03645646199584007, 0.005273924209177494, -0.018693407997488976, -0.016984131187200546, -0.026942359283566475, 0.12648554146289825, 0.05042813718318939, -0.04177306964993477, -0.049263857305049896, -0.005790605675429106, 0.007137873210012913, -0.046273719519376755, 0.007932166568934917, 0.018998296931385994, 0.009047243744134903, -0.03324824571609497, -0.016082143411040306, 0.019471241161227226, 0.029401235282421112, -0.02538478933274746, 0.019210699945688248, 0.10346508026123047, -0.0438576377928257, 0.053316377103328705, -0.009521469473838806, -0.04729325324296951, 0.024825338274240494, 0.00012159760080976412, -0.038645826280117035, 0.012640568427741528, 0.026432747021317482, -0.01714431867003441, 0.07433336228132248, -0.022449932992458344, -0.04901299253106117, -0.010760773904621601, -0.0223515797406435, 0.01649613492190838, 0.04964262619614601, 0.03145664557814598, -0.00004258712215232663, 0.01333056204020977, -0.008087699301540852, -0.014351638965308666, -0.016196398064494133, -0.07561852782964706, -0.013103218749165535, 0.035303711891174316, 0.03186937794089317, 0.036424919962882996, 0.008770916610956192, 0.009205843321979046, 0.02629949152469635, 0.020837265998125076, -0.034802962094545364, 0.0150113170966506, -0.002222680253908038, 0.004942482803016901, -0.051887162029743195, -0.04805668070912361, -0.04994162172079086, 0.05024336650967598, -0.04340885207056999, -0.03742508962750435, -0.03894602879881859, -0.029341986402869225, 0.022246355190873146, -0.10576961189508438, -0.04753343015909195, -0.006744233425706625, 0.038607049733400345, 0.017785675823688507, -0.06578077375888824, 0.0009968467056751251, 0.06749684363603592, 0.01836937852203846, 0.03617352619767189, 0.01922517828643322, -0.018552720546722412, 0.03316493704915047, 0.011691822670400143, 0.009037678129971027, 0.06457694619894028, 0.014073378406465054, -0.011424100957810879, -0.01612628437578678, 0.002059082267805934, -0.014297694899141788, -0.25073984265327454, 0.022605285048484802, -0.053394608199596405, -0.026263834908604622, -0.0015981803881004453, -0.022947341203689575, 0.012519307434558868, -0.04451731964945793, -0.0278518907725811, 0.02009619027376175, -0.016645226627588272, -0.036124859005212784, -0.014244192279875278, 0.05770155414938927, 0.006066727917641401, -0.005937199108302593, 0.004386302549391985, -0.04947542026638985, 0.007775620557367802, 0.054483819752931595, -0.010205957107245922, -0.06936226040124893, 0.01497483067214489, 0.07711327821016312, 0.030105123296380043, 0.021955745294690132, -0.08661791682243347, 0.01288087572902441, -0.01615251787006855, -0.020458711311221123, -0.05288347974419594, 0.013870855793356895, 0.003697087289765477, -0.04147131368517876, -0.026956796646118164, -0.034609489142894745, 0.035357121378183365, -0.0016898926114663482, 0.022352861240506172, 0.013126281090080738, -0.026162801310420036, -0.04361887648701668, 0.021898308768868446, -0.023042641580104828, 0.0540422685444355, -0.02084093727171421, -0.06637252122163773, 0.007948650978505611, -0.04692826792597771, 0.07747343182563782, -0.03118215687572956, -0.006143028382211924, -0.007701106835156679, 0.056875843554735184, 0.005706531461328268, -0.02712208591401577, 0.024074092507362366, -0.031024789437651634, -0.026780717074871063, -0.008638662286102772, -0.02401905506849289, -0.023121189326047897, -0.03358881175518036, -0.033340953290462494, -0.023114636540412903, -0.05691808462142944, -0.07187901437282562, 0.006510039325803518, 0.04722541570663452, 0.028875181451439857, 0.018949013203382492, -0.013452746905386448, -0.008024082519114017, -0.10508142411708832, -0.06034989655017853, -0.03405418619513512, -0.04078352823853493, -0.022082321345806122, 0.015265614725649357, 0.05179908871650696, -0.021220222115516663, -0.054609183222055435, 0.03490764647722244, 0.021267704665660858, 0.03762199357151985, 0.021990446373820305, 0.015027303248643875, -0.020826077088713646, -0.02276560105383396, -0.003802316030487418, 0.04810808598995209, -0.002205176278948784, 0.02111160382628441, -0.035328034311532974, 0.010879362002015114, -0.010662541724741459, 0.04549291729927063, -0.01772121712565422, 0.04987471178174019, 0.019740473479032516, 0.01888507790863514, -0.03605739027261734, -0.004522764589637518, -0.049377430230379105, -0.0409817136824131, -0.025870559737086296, -0.051617007702589035, 0.038227882236242294, 0.041201237589120865, -0.0341862328350544, -0.03684722259640694, -0.07279754430055618, 0.009814249351620674, -0.04388364404439926, -0.056894510984420776, 0.00357690523378551, -0.007578995078802109, 0.022884724661707878, 0.015420450828969479, 0.00019831997633446008, -0.04768962413072586, 0.0072757527232170105, 0.010445492342114449, -0.026106273755431175, -0.0703333392739296, -0.018378041684627533, -0.027248457074165344, 0.0028339221607893705, -0.0041417875327169895, 0.03138643503189087, -0.011536862701177597, 0.03359797224402428, 0.0034003069158643484, -0.037274572998285294, 0.015345943160355091, 0.020716039463877678, 0.006403259001672268, 0.0014133352087810636, -0.032628677785396576, -0.02669088914990425, 0.02848563715815544, 0.007150322198867798, 0.018384968861937523, 0.019162356853485107, 0.06838636100292206, 0.014496156014502048, -0.010923667810857296, 0.00864542555063963, -0.00272675184533, 0.023127006366848946, 0.0321182906627655, -0.04730898141860962, 0.0323743000626564, -0.03081253170967102, -0.020778808742761612, -0.009074846282601357, 0.042910024523735046, -0.03575883060693741, -0.040934983640909195, -0.037296395748853683, 0.02446369081735611, -0.013600863516330719, -0.0396980382502079, -0.03493310138583183, 0.006899439729750156, 0.059977322816848755, -0.027693213894963264, 0.02002348005771637, -0.015055730938911438, 0.017520127817988396, 0.017526008188724518, 0.050234355032444, -0.021650874987244606, 0.015707606449723244, -0.005887854844331741, -0.03673403337597847, -0.012792603112757206, 0.006224965211004019, 0.04539962112903595, 0.016955304890871048, 0.018280204385519028, -0.025483978912234306, 0.018563447520136833, 0.015314928255975246, 0.03910072520375252, -0.009312402456998825, 0.016888277605175972, -0.018696265295147896, -0.028850264847278595, 0.00013985109399072826, -0.01368233934044838, -0.011955012567341328, -0.034116268157958984, 0.030529512092471123, -0.0332513190805912, -0.04676312953233719, 0.015461137518286705, 0.04085692763328552, 0.01330544613301754, -0.009814616292715073, 0.008998867124319077, -0.004166340455412865, -0.01758028008043766, 0.011313368566334248, 0.05305345728993416, -0.04152001067996025, 0.008210496976971626, 0.00802537240087986, 0.01156990509480238, 0.03367358073592186, 0.011828610673546791, -0.03699544817209244, -0.021399889141321182, 0.0007555299089290202, 0.003286894178017974, 0.0028704842552542686, -0.023649398237466812, 0.006597460713237524, -0.012870574370026588, -0.01010843925178051, -0.020262716338038445, -0.001353530795313418, 0.017001435160636902, -0.033723946660757065, -0.038353752344846725, 0.01946883276104927, -0.037083834409713745, 0.028711233288049698, 0.04222030192613602, -0.034040890634059906, 0.03436454385519028, -0.03694913908839226, 0.03944502770900726, 0.027228262275457382, -0.010062738321721554, 0.0019456982845440507, -0.0875110849738121, 0.022011149674654007, -0.04076250270009041, 0.02197456732392311, 0.01150673720985651, -0.032345015555620193, -0.008143164217472076, -0.014374122023582458, -0.06594807654619217, 0.0008836951456032693, 0.004857339430600405, -0.057094816118478775, -0.010170248337090015, 0.037896402180194855, -0.032178133726119995, 0.016796192154288292, -0.005894775036722422, -0.005223602056503296, 0.03580678999423981, -0.03342334181070328, -0.018281076103448868, 0.016526702791452408, -0.05667630583047867, 0.0025473525747656822, -0.016547346487641335, 0.012408033944666386, -0.05898993834853172, 0.041048552840948105, 0.07260754704475403, 0.03427984192967415, 0.039953622967004776, 0.0038280298467725515, 0.03997714817523956, -0.005769577343016863, -0.015173275023698807, -0.08090635389089584, 0.022830728441476822, 0.012280275113880634, 0.032595399767160416, -0.041264984756708145, -0.030005577951669693, -0.000055405682360287756, 0.04846376180648804, -0.061627425253391266, -0.006689528003334999, 0.026776820421218872, 0.009812043979763985, 0.01460240874439478, -0.0009026114130392671, -0.03652498498558998, 0.011789491400122643, 0.04777361825108528, -0.019340481609106064, -0.026872441172599792, -0.01729721948504448, 0.04050886631011963, 0.01310664601624012, 0.0027441675774753094, -0.016384491696953773, -0.0000064957112044794485, 0.02273862436413765, 0.023330088704824448, 0.022357212379574776, 0.05418039485812187, -0.020374508574604988, 0.009199612773954868, 0.0060934326611459255, 0.0026281282771378756, -0.017844758927822113, -0.0003628957492765039, -0.015940522775053978, -0.06385895609855652, 0.01047886535525322, 0.019017595797777176, -0.0338793620467186, -0.045489680022001266, 0.049010101705789566, -0.002765386365354061, -0.001435804646462202, -0.02493622526526451, -0.0017553295474499464, -0.041450921446084976, 0.005637139081954956, -0.03756694495677948, 0.023464176803827286, -0.00950754527002573, 0.06980499625205994, -0.000930295791476965, -0.022527026012539864, 0.05733586847782135, -0.0031537367030978203, 0.0031077335588634014, -0.009885278530418873, 0.082490935921669, 0.07066524773836136, 0.05101967602968216, -0.009686404839158058, 0.04720797762274742, -0.03452643007040024, -0.06962978839874268, 0.021446334198117256, -0.020731518045067787, 0.0010454256553202868, -0.013680917210876942, 0.032746683806180954, 0.10754901170730591, -0.004559537395834923, 0.03658061847090721, -0.05808721482753754, 0.0032858785707503557, -0.011312258429825306, 0.010378828272223473, 0.014962390996515751, 0.05870776250958443, 0.003987651318311691, 0.021447766572237015, 0.006204200908541679, -0.0648781880736351, 0.02424032613635063, -0.005306405946612358, -0.02674502320587635, -0.01926310919225216, 0.022558465600013733, 0.013104388490319252, 0.014818395487964153, 0.03225594386458397, 0.07695113867521286, -0.06282976269721985, -0.027509039267897606, 0.006767128128558397, 0.04578802362084389, 0.023239104077219963, -0.008266089484095573, -0.035102661699056625, -0.033017393201589584, 0.0036468710750341415, 0.00850086472928524, -0.002855682512745261, -0.020269982516765594, -0.011189399287104607, 0.04963013902306557, -0.060647670179605484, 0.004584208596497774, 0.011326019652187824, -0.031041163951158524, -0.01619839482009411, -0.05299230292439461, -0.031059857457876205, -0.007493241224437952, -0.0743923932313919, 0.024467606097459793, 0.006842745002359152, -0.025763854384422302, -0.0139843774959445, -0.02656075358390808, 0.00866240356117487, -0.008601590991020203, 0.06775139272212982, 0.01078225951641798, -0.05009042099118233, 0.010584818199276924, 0.00883450172841549, 0.025042692199349403, 0.03479926288127899, 0.023462627083063126, -0.03814585879445076, 0.012870503589510918, -0.01821807399392128, -0.010691141709685326, 0.029600853100419044, 0.015157165937125683, -0.000906500150449574, -0.08236948400735855, 0.0010271132923662663, 0.05586618185043335, 0.005623094271868467, -0.08370979130268097, -0.00036229632678441703, 0.015622870065271854, -0.019215650856494904, 0.03609824553132057, -0.014554682187736034, -0.020352069288492203, -0.025091685354709625, -0.01275398675352335, 0.018553603440523148, 0.006098717451095581, 0.04180831089615822, -0.0264047272503376, 0.08610816299915314, 0.008929640986025333, -0.040834568440914154, 0.023730700835585594, 0.002279579406604171, -0.030757145956158638, 0.04303763061761856, -0.034593358635902405, -0.022694986313581467, -0.02712772786617279, -0.03664286807179451, -0.0117252878844738, 0.013404629193246365, -0.04734690859913826, -0.02196168527007103, 0.002662441460415721, 0.06331244856119156, -0.07883743941783905, 0.0669974610209465, -0.02778305672109127, 0.017999393865466118, -0.004944054409861565, -0.0395076684653759, 0.017384707927703857, 0.043242257088422775, 0.039207227528095245, 0.016059234738349915, 0.04593237116932869, -0.03133330121636391, 0.0020770677365362644, -0.01829937845468521, 0.023277420550584793, 0.03334328159689903, -0.017254814505577087, 0.052373774349689484 ]
[ -0.10760018229484558, -0.017502296715974808, -0.04048290476202965, -0.029283486306667328, 0.03828740492463112, -0.021732088178396225, 0.013094216585159302, 0.04061729460954666, 0.015262085013091564, -0.02982073277235031, -0.01731942594051361, -0.051203273236751556, -0.006194341462105513, -0.005835831630975008, 0.08851812779903412, -0.0018330508610233665, -0.03495329990983009, -0.026323100551962852, -0.03823848068714142, -0.006078250240534544, 0.029191404581069946, -0.01977476477622986, -0.05349017307162285, -0.022906295955181122, 0.02221834845840931, 0.024833228439092636, 0.028127551078796387, -0.047684088349342346, 0.02676471695303917, -0.22150692343711853, -0.02101239748299122, 0.04185197502374649, 0.0348924919962883, -0.029942870140075684, -0.030983585864305496, 0.005853044334799051, 0.009127798490226269, 0.038728635758161545, -0.002304258057847619, 0.0601290687918663, 0.010946791619062424, 0.032806430011987686, -0.025719644501805305, -0.03822256997227669, 0.018357688561081886, -0.0014895162312313914, -0.02680513635277748, -0.00968656875193119, -0.03610425069928169, 0.016304168850183487, -0.0428636372089386, 0.021227119490504265, -0.016768135130405426, -0.002591742668300867, -0.013699693605303764, 0.03401679918169975, 0.05265246331691742, 0.05890785530209541, 0.011872855015099049, 0.02311854623258114, 0.009204044006764889, -0.0366651751101017, -0.12380874902009964, 0.0969734862446785, 0.023435931652784348, 0.06901632249355316, -0.016522295773029327, -0.02504313550889492, -0.01888449490070343, 0.0942591205239296, 0.019496949389576912, -0.0024632930289953947, -0.0568760447204113, 0.026941237971186638, 0.021717969328165054, -0.02806955948472023, -0.00032411806751042604, 0.021130939945578575, 0.044452980160713196, -0.02544362284243107, -0.029692864045500755, -0.031510766595602036, -0.008504516445100307, -0.008797088637948036, -0.01727781631052494, -0.006108950357884169, -0.003719914238899946, 0.03929174318909645, 0.032370321452617645, 0.028718985617160797, 0.017769930884242058, -0.04511873796582222, 0.024482382461428642, 0.0008597689447924495, -0.04582628235220909, 0.012044201605021954, 0.006065407767891884, -0.016092449426651, -0.0439055860042572, 0.4047251343727112, -0.046675678342580795, -0.025603538379073143, 0.04366203397512436, 0.009358741343021393, -0.0010106514673680067, 0.025735007598996162, 0.0011019310913980007, -0.03639163821935654, -0.014371689409017563, -0.08508860319852829, -0.018433257937431335, 0.0028828445356339216, 0.04655146598815918, -0.039454635232686996, -0.017236458137631416, 0.003985205199569464, 0.024089187383651733, -0.004604873713105917, 0.006578410044312477, -0.0038457727059721947, 0.005023556761443615, 0.00008658532897243276, -0.002421342534944415, 0.06402592360973358, 0.013316063210368156, -0.021907689049839973, 0.0007633552304469049, 0.04185982793569565, 0.033040888607501984, 0.03277141973376274, 0.04288345202803612, -0.037370793521404266, -0.04857891425490379, -0.021400829777121544, -0.014205356128513813, 0.03430591896176338, 0.019817322492599487, -0.021423840895295143, -0.005454248283058405, 0.02551688253879547, -0.022634873166680336, -0.02473938651382923, 0.0203670933842659, -0.004395711701363325, -0.03640839830040932, 0.12865830957889557, -0.015423523262143135, -0.030870018526911736, -0.02450498379766941, -0.009737883694469929, 0.002607733476907015, 0.04069209098815918, -0.041139155626297, -0.055961791425943375, 0.034260574728250504, 0.017255570739507675, 0.06374960392713547, -0.028432155027985573, -0.07109834998846054, -0.014262227341532707, -0.0730794370174408, 0.0054601035080850124, -0.050778985023498535, 0.04806748405098915, 0.012744256295263767, -0.07331228256225586, -0.039405010640621185, 0.025375595316290855, 0.0073485909961164, -0.08095946907997131, 0.012747354805469513, 0.0004734375688713044, -0.02687726728618145, -0.009041463024914265, 0.053177282214164734, -0.010531237348914146, -0.020886726677417755, -0.025898925960063934, 0.04106706753373146, 0.01581995189189911, 0.010064742527902126, 0.03144720569252968, -0.04324460029602051, -0.027643291279673576, -0.021640870720148087, -0.0575348362326622, -0.05924499034881592, -0.0026397944893687963, -0.030547866597771645, -0.013822806067764759, -0.01547212339937687, 0.017590483650565147, -0.07057332992553711, 0.08072445541620255, -0.054656196385622025, -0.015217254869639874, 0.04164804145693779, 0.020158758386969566, 0.015636753290891647, -0.03240799531340599, 0.02714560553431511, 0.045580193400382996, 0.017473239451646805, 0.033681999891996384, -0.07458128035068512, 0.024034913629293442, 0.05195765569806099, -0.037337884306907654, 0.045064859092235565, 0.050267163664102554, -0.04864717647433281, -0.02020976133644581, 0.006466816179454327, 0.040827032178640366, 0.0045783668756484985, -0.018202058970928192, -0.0038640284910798073, 0.017718814313411713, -0.005002012476325035, 0.0042449734173715115, -0.030470838770270348, -0.03162013739347458, -0.017189335078001022, -0.3439623713493347, -0.0541175976395607, -0.02831421233713627, -0.02259071357548237, 0.010684339329600334, -0.08113759756088257, 0.00672967778518796, -0.007018705829977989, -0.04713493213057518, 0.012204611673951149, 0.0718635767698288, 0.01895584538578987, -0.02511206455528736, -0.10284411162137985, 0.00570805836468935, 0.03978365287184715, -0.013087475672364235, -0.09923070669174194, -0.03292098268866539, 0.033930834382772446, -0.016247600317001343, 0.06005734205245972, -0.05012202635407448, -0.031695522367954254, 0.02122240513563156, -0.0383065864443779, 0.06802169233560562, -0.03524572774767876, 0.13838455080986023, -0.04060922935605049, 0.06512533128261566, -0.015046630054712296, 0.020846961066126823, -0.0363028384745121, -0.00047035771422088146, -0.015896650031208992, -0.003323337296023965, 0.00517665222287178, 0.07056635618209839, -0.013988485559821129, -0.028218766674399376, 0.005575751420110464, -0.056201767176389694, -0.02041446417570114, -0.010547854006290436, 0.011556622572243214, 0.005048270802944899, -0.05342675745487213, -0.03066204860806465, 0.089020736515522, -0.001518197008408606, -0.01127428188920021, 0.018230020999908447, 0.055847521871328354, 0.011020724661648273, -0.03626258298754692, -0.06717145442962646, -0.0234892088919878, -0.0006732566398568451, -0.020077938213944435, 0.046702153980731964, 0.051611002534627914, 0.03470554202795029, -0.03089059889316559, -0.010668920353055, 0.006980178412050009, -0.01818380318582058, -0.016961529850959778, 0.049221623688936234, -0.053139351308345795, -0.0048692841082811356, 0.10365340858697891, -0.009726962074637413, 0.0027965777553617954, 0.032297126948833466, 0.0374111533164978, -0.008589444682002068, 0.05003770813345909, 0.008380357176065445, -0.015109087340533733, 0.03097836673259735, 0.0048334659077227116, 0.01371669489890337, -0.04129160940647125, -0.023899029940366745, 0.014446343295276165, -0.015119685791432858, -0.011036953888833523, 0.03609320521354675, -0.012469155713915825, -0.057833775877952576, -0.005717859137803316, 0.014416202902793884, -0.08015087246894836, 0.08941064029932022, -0.011326657608151436, -0.2749840319156647, 0.015690933912992477, 0.10975899547338486, 0.027517044916749, -0.008172010071575642, 0.050365351140499115, 0.03667764365673065, -0.09113850444555283, -0.024952732026576996, 0.010278001427650452, 0.02143273316323757, 0.04630943015217781, 0.04089973121881485, 0.03238622844219208, 0.042000167071819305, -0.03419656679034233, 0.02753611095249653, -0.01799848861992359, 0.02056906931102276, 0.0069664036855101585, 0.03337915614247322, 0.0027626603841781616, 0.1830570101737976, -0.02138863503932953, 0.051210835576057434, 0.00040105951484292746, 0.02022198773920536, 0.020648105069994926, 0.09676803648471832, 0.011259433813393116, 0.035271063446998596, 0.013079763390123844, 0.05878831818699837, -0.005581990350037813, 0.03385928273200989, -0.04695742577314377, 0.010304679162800312, 0.06568695604801178, 0.03579112887382507, -0.007178060710430145, 0.009840498678386211, 0.0044731078669428825, -0.04979530721902847, 0.02751956693828106, 0.05077928677201271, 0.0075148711912333965, -0.014375995844602585, -0.016313204541802406, -0.022657060995697975, 0.006304110400378704, -0.03293222561478615, 0.0009928388753905892, 0.01612836867570877, -0.023985035717487335, 0.003182999324053526, 0.013098211027681828, 0.03285413607954979, -0.008219728246331215, -0.010389202274382114, 0.0514022558927536, 0.010289066471159458, -0.004045150708407164, 0.07864784449338913, 0.06084015220403671, 0.04188147187232971 ]
[ 0.012196719646453857, -0.027067871764302254, 0.017766963690519333, 0.021009385585784912, -0.004405115265399218, -0.042219363152980804, 0.04911501705646515, 0.010434292256832123, -0.02447313442826271, -0.005748869851231575, -0.031009096652269363, -0.005682507064193487, -0.01263352669775486, -0.004038163460791111, 0.024526625871658325, -0.01787119358778, 0.02911270223557949, 0.0011444500414654613, -0.003586186096072197, 0.014637566171586514, 0.009957613423466682, 0.012743359431624413, -0.0005875859060324728, 0.022929606959223747, 0.04120762646198273, -0.03434333577752113, -0.04321163520216942, 0.008957128040492535, 0.053448595106601715, -0.12057630717754364, -0.03466031700372696, -0.043202437460422516, 0.023357532918453217, -0.0054183234460651875, -0.02422645501792431, -0.02770584262907505, 0.009884708561003208, 0.003682294860482216, -0.026330968365073204, 0.020773785188794136, -0.04490899667143822, -0.01775539293885231, 0.025883376598358154, 0.017620164901018143, 0.02466301992535591, -0.009277882054448128, -0.02085546962916851, -0.04412193223834038, 0.011109400540590286, 0.020584430545568466, -0.035505909472703934, 0.008024554699659348, -0.035238463431596756, 0.008447817526757717, 0.02385120652616024, -0.006091753486543894, -0.02032783068716526, 0.006197009701281786, -0.0034652636386454105, -0.008574050851166248, -0.030353737995028496, 0.012892724014818668, -0.005335730034857988, -0.03694658726453781, 0.01144187618046999, 0.006215657573193312, -0.027766110375523567, 0.007221949752420187, 0.02310548536479473, -0.006839904468506575, -0.009341200813651085, 0.020713817328214645, -0.03078223578631878, -0.008529068902134895, -0.017673246562480927, -0.007752495817840099, 0.021147815510630608, -0.015194854699075222, 0.010043331421911716, -0.013227198272943497, -0.011768625117838383, 0.0003502975741866976, 0.0015014500822871923, 0.02527720108628273, -0.003921938594430685, -0.031990110874176025, 0.024014512076973915, 0.0007610826869495213, 0.02602362632751465, 0.03713342547416687, -0.01737140119075775, 0.018442530184984207, -0.012175892479717731, -0.010994642041623592, -0.036608289927244186, -0.009389972314238548, 0.021314922720193863, -0.022154899314045906, -0.022377431392669678, 0.8494106531143188, -0.011939619667828083, 0.03120165690779686, 0.022222954779863358, 0.025123335421085358, -0.005329067353159189, -0.011272294446825981, 0.002605580724775791, 0.005635968875139952, -0.019146664068102837, -0.0650995597243309, 0.037896931171417236, 0.003130716737359762, 0.04318137466907501, -0.02278551086783409, -0.007962941192090511, 0.024077007547020912, 0.03462795540690422, -0.01180629525333643, -0.007992418482899666, -0.0334862656891346, 0.021426213905215263, 0.004878384992480278, -0.005433442071080208, 0.04739011824131012, 0.0128458421677351, -0.15561653673648834, 0.0162661150097847, -7.134743042868524e-33, 0.016426485031843185, -0.006920645013451576, 0.005433554761111736, 0.006082253064960241, 0.01705564185976982, 0.008810015395283699, 0.023787299171090126, 0.004831228870898485, -0.020116781815886497, -0.03030116856098175, 0.018002798780798912, -0.030351482331752777, -0.027541713789105415, 0.028566084802150726, 0.05338199809193611, -0.008190157823264599, 0.016793135553598404, 0.03594009205698967, -0.06039988622069359, -0.00471441401168704, 0.054692886769771576, 0.01257869228720665, 0.009128649719059467, 0.03515874966979027, 0.03309778496623039, 0.056247103959321976, 0.00698886951431632, -0.023700188845396042, 0.03075435943901539, -0.039393551647663116, -0.010717825964093208, -0.016576748341321945, -0.010708512738347054, -0.020695170387625694, 0.04240591078996658, -0.038058698177337646, -0.02961774170398712, -0.009894534014165401, 0.029236827045679092, -0.02298472635447979, -0.024958467110991478, 0.010619367472827435, -0.035348858684301376, -0.016226043924689293, -0.010087109170854092, -0.03144972398877144, -0.0023290093522518873, 0.06834306567907333, 0.002192810643464327, -0.025247108191251755, 0.012979282066226006, 0.03169803321361542, -0.05974997580051422, 0.0016251907218247652, -0.0330851748585701, 0.02866782248020172, -0.006590130738914013, 0.023307422176003456, 0.003727217670530081, 0.05376438796520233, -0.0037392445374280214, -0.003938802517950535, -0.005086083430796862, 0.03558493033051491, -0.03660561516880989, -0.0018935258267447352, -0.0034639507066458464, -0.01850232481956482, 0.031760942190885544, 0.00587464077398181, -0.04896542802453041, 0.008732079528272152, -0.030170442536473274, -0.002370947040617466, -0.0032141022384166718, -0.0005977351102046669, -0.05946671962738037, -0.016042029485106468, -0.03188231587409973, 0.030544662848114967, -0.011527067981660366, 0.020580964162945747, -0.0023659204598516226, -0.017120743170380592, 0.022135475650429726, -0.041742872446775436, 0.004208953585475683, -0.009325971826910973, -0.004491826053708792, -0.00003174387165927328, 0.04056943953037262, 0.012878396548330784, -0.0010881507769227028, -0.02909817546606064, -0.04448508098721504, 7.370175459555027e-33, -0.017634695395827293, -0.03136809915304184, -0.014621161855757236, -0.006451639346778393, -0.025050608441233635, -0.021795205771923065, -0.004483802244067192, -0.009918225929141045, 0.002763098105788231, 0.02904953807592392, -0.0235533956438303, 0.01142806839197874, -0.03025675378739834, 0.00989112351089716, 0.04331158474087715, -0.03961002081632614, -0.010755549184978008, 0.02665243111550808, 0.008539237082004547, 0.014698232524096966, 0.030582008883357048, 0.000055608943512197584, 0.049644529819488525, 0.011479430831968784, 0.012508095242083073, 0.03867845609784126, -0.02828451432287693, 0.015112338587641716, -0.030525432899594307, 0.02215324155986309, 0.00879714172333479, 0.01518847793340683, 0.017961034551262856, -0.04760614410042763, -0.019098645076155663, 0.01970752328634262, 0.029527440667152405, -0.02502436377108097, 0.021867558360099792, 0.01609703339636326, 0.004739692434668541, -0.027718238532543182, 0.019500359892845154, -0.0001296825794270262, -0.03617797791957855, 0.00685759587213397, -0.010129516944289207, 0.010608267039060593, 0.018646620213985443, 0.002939595142379403, 0.030413184314966202, -0.03753845766186714, 0.005369085818529129, 0.04616465047001839, 0.008870108053088188, -0.010710583999752998, -0.019571540877223015, -0.01183883473277092, -0.017169656231999397, -0.01328053418546915, -0.022264018654823303, -0.011291182599961758, 0.014139379374682903, -0.024983052164316177, -0.003868652507662773, 0.015664946287870407, 0.005436335690319538, -0.05859774351119995, -0.03422233834862709, -0.03374655544757843, -0.00094813626492396, -0.026130978018045425, 0.017886294052004814, 0.043625421822071075, -0.03831504285335541, -0.0018542908364906907, -0.011659660376608372, 0.03985625505447388, 0.006105989217758179, 0.010259146802127361, -0.015309546142816544, -0.023165196180343628, 0.04890460520982742, 0.01486670970916748, -0.02372593618929386, -0.005306067410856485, -0.007509599439799786, 0.037619296461343765, -0.023361723870038986, 0.0019837154541164637, -0.025814002379775047, -0.0030475915409624577, 0.012896986678242683, 0.02970016933977604, 0.021302910521626472, -1.2882821032178526e-8, -0.023791581392288208, -0.01457936130464077, -0.06206459552049637, -0.002087223343551159, 0.011001299135386944, 0.025861548259854317, -0.043217286467552185, -0.010323896072804928, -0.004171113949269056, 0.004075264558196068, 0.0127006396651268, -0.0039008231833577156, 0.032745666801929474, -0.05143003165721893, 0.030733337625861168, -0.03956952318549156, 0.007829004898667336, -0.02496197447180748, 0.0025015519931912422, -0.03734441474080086, 0.019104434177279472, 0.039324626326560974, -0.0115769999101758, 0.010766850784420967, -0.00006932453106855974, 0.004425444174557924, 0.02130686491727829, -0.06384996324777603, -0.003034480381757021, 0.01727941259741783, 0.053190555423498154, 0.007821830920875072, -0.02043239399790764, 0.033461589366197586, -0.025926675647497177, -0.026295088231563568, 0.03931325674057007, 0.0329270176589489, 0.03078540414571762, 0.0028141180519014597, 0.009195514023303986, 0.02008001320064068, 0.0075433081947267056, -0.02415868081152439, 0.03098885528743267, -0.0036781039088964462, -0.004555684048682451, -0.0037462932523339987, 0.030645254999399185, -0.00031424147891812027, 0.03935007005929947, 0.02862222120165825, 0.02128724567592144, 0.06290116906166077, 0.00943426601588726, 0.00004346117202658206, -0.0030879240948706865, -0.023378895595669746, -0.0284953061491251, 0.0306668933480978, 0.032631684094667435, -0.021038103848695755, -0.0033099567517638206, -0.011355231516063213 ]
f-inline-functions-and-statically-resolved-type-parameters
https://markhneedham.com/blog/2010/02/10/f-inline-functions-and-statically-resolved-type-parameters
false
2010-02-26 23:53:31
Shu Ha Ri harmful?
[ "lean" ]
[ "Lean" ]
I came across a blog post by Rachel Davies where http://agilecoach.typepad.com/agile-coaching/2010/02/shuhari-considered-harmful.html[she wonders whether the Shu-Ha-Ri approach to learning/teaching is actually harmful] and I found Rachel's thoughts around the teaching of principles and practices quite interesting. ____ Quoting Jeff Sutherland: ______ _Only when you have mastered the basic practices are you allowed to improvise. And the last and most important -- Before you have gained discipline, centering, and flexibility, you are a hazard to yourself and others."_ ______ I'm uncomfortable with approaches that force students to follow agile practices without questioning. These approaches seem to violate the first value of the Agile Manifesto "Individuals and interactions over processes and tools." ____ What I find interesting about this is that when I first started learning about agile I would read the principles and they would all make sense but I didn't know what to do with that knowledge. It was only after I'd used the practices frequently and in most cases taking the practices too far that I reached the stage where I could start asking questions that actually had any relevance. For example Test Driven Development is one practice that I learnt and one of the http://en.wikipedia.org/wiki/Extreme_Programming#Principles[principles] which encourages this approach to coding is the need to get quick feedback on our work. It would be quite easy to question whether we should test drive everything and you could quite correctly have the opinion that we shouldn't use this approach for absolutely everything. However, without spending some time following this practice that opinion wouldn't be particularly useful because you would lack the experience that tells you which type of code we should or should not look to test first. Having decided that TDD was the only approach to writing code I eventually got into situations where it didn't seem to make sense to stick so rigidly to this practice and it was only then that the value of the underlying principle became clear to me. I don't think I was ever forced not to ask questions but I was just so concentrated on learning how to do the practices properly that I focused on that. I often find that it's useful to use practices too much until you cause yourself pain. Martin Fowler has http://martinfowler.com/articles/rubyAtThoughtWorks.html#IsARubyCode-baseHardToUnderstand[a nice graph which shows how people adopt meta programming when coding Ruby] and I think this links quite closely to my experiences when learning a new practice. For me at least this seems to be a necessary learning step before I eventually step back and think about the principle that originally led me to following that practice. I can then start using the practice again but in a more effective or intelligent way. What I've described above is often the way that I learn new things but I'm sure that others' experiences will vary so it'd be interesting to hear about other approaches too!
null
null
[ 0.02867034822702408, 0.0008409344591200352, -0.017924165353178978, 0.029102368280291557, 0.0800798311829567, 0.013352439738810062, 0.036342132836580276, 0.02688833884894848, 0.029906975105404854, -0.016282828524708748, -0.007837084122002125, 0.0026463160756975412, -0.0376366525888443, 0.0071283369325101376, -0.043012652546167374, 0.06908536702394485, 0.061611566692590714, -0.00868613924831152, 0.026810480281710625, 0.01660527102649212, 0.033116310834884644, 0.06547372043132782, 0.012392217293381691, 0.03369550779461861, 0.04470923915505409, 0.03403401002287865, 0.023258082568645477, 0.009551296941936016, -0.055462680757045746, -0.02061220444738865, 0.04479692503809929, 0.0015986593207344413, 0.025480084121227264, -0.002455479931086302, 0.03732679411768913, -0.0162477008998394, 0.004318862687796354, 0.036743223667144775, 0.000242276830249466, -0.00004274328239262104, -0.07048331946134567, 0.039316825568675995, -0.01611555740237236, 0.011497545056045055, -0.028759917244315147, 0.0007735750987194479, -0.024663439020514488, 0.004800266120582819, 0.00971205998212099, -0.0014515041839331388, -0.0627950057387352, 0.0391853004693985, 0.01840188354253769, -0.03631846606731415, -0.01721564494073391, 0.03427452966570854, 0.010684356093406677, -0.07308712601661682, 0.006175258196890354, -0.05074940621852875, -0.03008248843252659, -0.014452576637268066, 0.00008369020360987633, 0.0503513477742672, 0.031761690974235535, -0.03563791885972023, -0.00868294108659029, 0.0359485000371933, -0.0518362931907177, 0.002258313586935401, -0.016720782965421677, 0.020591219887137413, -0.026982953771948814, -0.006745703984051943, -0.003001431468874216, -0.06501983106136322, -0.001111985882744193, 0.05982326716184616, 0.03105899877846241, 0.04261946678161621, -0.009674995206296444, 0.03004244714975357, 0.009874030016362667, 0.019278069958090782, -0.008338063955307007, -0.04625542089343071, 0.012338720262050629, -0.02039320208132267, -0.058348920196294785, 0.07169029116630554, 0.022314175963401794, -0.05704445391893387, 0.015787718817591667, 0.04494067281484604, -0.0015913929091766477, 0.018474936485290527, 0.03375210240483284, -0.0028926371596753597, -0.0010652284836396575, -0.02204876020550728, -0.043281156569719315, -0.019421961158514023, -0.00390978530049324, 0.014738963916897774, -0.07884451001882553, 0.010683886706829071, -0.025402376428246498, -0.02964891865849495, -0.014541329815983772, 0.017820866778492928, -0.04677065461874008, 0.026563500985503197, -0.024571459740400314, -0.018020300194621086, -0.06828179210424423, 0.06789905577898026, -0.0010852075647562742, -0.03274119645357132, -0.028942422941327095, -0.007475791499018669, 0.019698211923241615, 0.0016019733157008886, 0.0012324937852099538, 0.08629506081342697, 0.008304348215460777, 0.007321020122617483, -0.0174085795879364, 0.0629483014345169, -0.01823979802429676, -0.05908612161874771, -0.015314088203012943, 0.05783833935856819, -0.01443363819271326, -0.00525802094489336, -0.01635304093360901, -0.009447695687413216, 0.013961509801447392, -0.007454264909029007, 0.0038012198638170958, 0.07706276327371597, 0.0006769690662622452, -0.019132597371935844, 0.02429790049791336, 0.014290453866124153, 0.024870673194527626, -0.017562350258231163, 0.008027752861380577, -0.009028621017932892, -0.04752778261899948, -0.010715033859014511, 0.018814077600836754, 0.028767822310328484, 0.015949120745062828, -0.031902749091386795, 0.007784558460116386, 0.08450482785701752, 0.031779397279024124, 0.010777520947158337, -0.005608296953141689, 0.019325435161590576, 0.03388144448399544, 0.019091906026005745, 0.024738352745771408, 0.024198954924941063, 0.03455398231744766, -0.0001926569821080193, -0.027991166338324547, 0.01812758296728134, -0.003743093693628907, -0.0016227028099820018, -0.07009902596473694, -0.030403615906834602, 0.045809000730514526, -0.06111447513103485, -0.02515101246535778, 0.04010145366191864, 0.05232203006744385, 0.0364893302321434, 0.026760760694742203, 0.013848308473825455, -0.07260360568761826, 0.01597544737160206, 0.018257079645991325, 0.025605475530028343, 0.019008712843060493, -0.01745176874101162, 0.06027918681502342, 0.03438405320048332, -0.002495755907148123, 0.06357770413160324, -0.09281059354543686, -0.09446577727794647, -0.007020837161689997, -0.005278820171952248, 0.06154477596282959, -0.058434586971998215, 0.016111409291625023, 0.0745830088853836, 0.02422386221587658, 0.05910653993487358, 0.01312183402478695, 0.004870490171015263, -0.008259940892457962, -0.04270007833838463, -0.01973615027964115, 0.06535369902849197, 0.05144842714071274, -0.009792779572308064, -0.05346624180674553, 0.01956278458237648, -0.00015866474132053554, -0.01490536704659462, 0.0381985567510128, -0.0054806917905807495, 0.029042214155197144, -0.0029822271317243576, 0.056997787207365036, -0.01676085963845253, 0.07482635974884033, -0.050265852361917496, -0.003585527651011944, -0.00959504023194313, -0.0031876720022410154, 0.005646048113703728, -0.017018886283040047, 0.08662327378988266, 0.050265874713659286, -0.04331601411104202, -0.039592478424310684, 0.009284330531954765, 0.013290689326822758, -0.04051810875535011, 0.0008456473588012159, -0.008286681026220322, 0.027187194675207138, -0.00043818014091812074, -0.06488088518381119, -0.04204000532627106, 0.027903500944375992, -0.0693705752491951, 0.007325607351958752, 0.06715194135904312, -0.01086057722568512, 0.05875232815742493, -0.019293950870633125, -0.02119910717010498, -0.02011793851852417, 0.014796743169426918, -0.04982973635196686, 0.027941789478063583, 0.025213751941919327, -0.02242274582386017, 0.045943524688482285, -0.027244964614510536, -0.04292832314968109, -0.03470039367675781, -0.04575105011463165, -0.0012050007935613394, 0.05530964210629463, 0.07164423167705536, -0.02599197067320347, 0.05135463550686836, 0.00021334672055672854, 0.034111473709344864, 0.01540103368461132, -0.036629050970077515, -0.031773630529642105, -0.044703159481287, 0.0022871526889503, 0.024693282321095467, -0.008469555526971817, 0.024908186867833138, 0.02828591875731945, 0.005334177054464817, -0.037904154509305954, 0.005278377328068018, 0.023150619119405746, 0.0222243033349514, -0.009963291697204113, -0.01370528806000948, -0.026626214385032654, 0.04400838911533356, -0.039066947996616364, -0.019703928381204605, 0.013436290435492992, -0.08105266094207764, 0.045257411897182465, -0.05280199274420738, -0.05064839497208595, 0.0028663109987974167, 0.029401598498225212, 0.07011141628026962, 0.004074012394994497, 0.017345912754535675, 0.06034807115793228, -0.0008940821280702949, 0.020770438015460968, 0.014165790751576424, 0.006628730800002813, 0.03559637442231178, 0.013536354526877403, -0.02378084510564804, 0.041672129184007645, 0.015714960172772408, 0.01689714565873146, -0.05304032936692238, 0.04747894033789635, -0.03706740960478783, -0.275324285030365, 0.05142750218510628, 0.006959585007280111, -0.028779737651348114, 0.017157146707177162, -0.020170291885733604, 0.0069316690787673, -0.0632752925157547, -0.026730502024292946, 0.0188683420419693, -0.04899747297167778, -0.03216923773288727, -0.0202067568898201, 0.04500764235854149, -0.00351898861117661, 0.03769909217953682, 0.037931766360998154, -0.027048643678426743, 0.006101103033870459, 0.07146648317575455, -0.0029474273324012756, -0.07327451556921005, 0.00024592463159933686, 0.04461055248975754, 0.05323638394474983, 0.04882382974028587, -0.08961820602416992, 0.05060470849275589, -0.05593334883451462, -0.00694084819406271, 0.014400307089090347, 0.01268576830625534, -0.009912771172821522, -0.019583145156502724, -0.01302394364029169, 0.011872721835970879, 0.04239865764975548, -0.008328145369887352, -0.016347529366612434, 0.011949369683861732, -0.0225170087069273, -0.044806934893131256, 0.009165441617369652, 0.022966792806982994, 0.05676652491092682, 0.009120121598243713, -0.06292953342199326, -0.022870907559990883, -0.01827898435294628, 0.08405578881502151, -0.05015915259718895, -0.037811528891325, 0.005893994588404894, 0.037792447954416275, -0.01285797730088234, -0.025218168273568153, 0.007303935941308737, -0.026406435295939445, -0.031967662274837494, -0.03277801349759102, -0.017969578504562378, -0.04184568673372269, -0.01272584218531847, -0.06528209894895554, -0.004190489649772644, -0.08016097545623779, -0.05662350729107857, -0.00650235777720809, 0.057256244122982025, 0.0008127596229314804, -0.026423323899507523, -0.002826149808242917, -0.0026374959852546453, -0.10476680845022202, -0.008537081070244312, -0.007525771856307983, -0.033058278262615204, -0.007855921983718872, 0.01693699136376381, 0.05993600934743881, -0.043251290917396545, -0.06092430651187897, 0.04284404218196869, 0.007840133272111416, 0.030079474672675133, -0.003335539950057864, 0.06560181826353073, 0.014425910077989101, -0.015473988838493824, 0.015899665653705597, 0.05618688091635704, 0.009813937358558178, -0.044682905077934265, -0.020856551826000214, 0.03342443332076073, 0.024931998923420906, 0.03530234470963478, -0.025405503809452057, 0.013823377899825573, 0.023823000490665436, -0.01440790668129921, -0.04359206184744835, 0.04418884590268135, -0.0061110882088541985, -0.0030473140068352222, -0.02274230867624283, -0.06137963756918907, 0.029669063165783882, 0.0547475628554821, -0.000018855878806789406, 0.005769668146967888, -0.028439590707421303, 0.003196600591763854, -0.026360413059592247, -0.05544965714216232, -0.02571185864508152, 0.0019669299945235252, 0.03296288847923279, -0.0076275053434073925, 0.0021164393983781338, -0.06689994782209396, -0.009225294925272465, -0.04037083685398102, 0.0002813575847540051, -0.060705285519361496, -0.021109210327267647, 0.008224079385399818, -0.030069004744291306, 0.005204524379223585, 0.037715841084718704, 0.0036599976010620594, 0.014373008161783218, 0.025313636288046837, -0.03615504130721092, 0.025454137474298477, -0.023949921131134033, -0.04752230644226074, -0.01721085235476494, -0.010052967816591263, -0.005697078537195921, -0.020144011825323105, 0.026175320148468018, -0.0012352183694019914, 0.02911258302628994, 0.03288217633962631, 0.020781496539711952, 0.01297016255557537, -0.010338584892451763, 0.01801467500627041, 0.020830992609262466, 0.03531331196427345, -0.06878053396940231, 0.026160145178437233, -0.04287117347121239, -0.03984047472476959, -0.022582054138183594, 0.019864412024617195, -0.011191194877028465, -0.026581473648548126, 0.0024992681574076414, -0.008047468028962612, -0.04887041077017784, -0.038658082485198975, -0.04336186870932579, 0.02810230664908886, 0.06374026834964752, -0.01957927830517292, 0.02129056677222252, -0.02237263135612011, -0.01814435049891472, 0.007517985533922911, -0.0014036629581823945, -0.050291553139686584, 0.0056624216958880424, 0.01637992449104786, -0.012633210979402065, 0.001663987641222775, 0.002249756595119834, 0.03385452553629875, -0.006016713101416826, -0.0019822062458842993, -0.02168496884405613, 0.010920423083007336, 0.02434995025396347, 0.04246531426906586, 0.009313070215284824, -0.0015434850938618183, -0.017693160101771355, -0.014049488119781017, -0.006676129065454006, -0.03744085505604744, -0.010339302010834217, 0.010513991117477417, 0.03881749510765076, -0.034501124173402786, -0.06745441257953644, 0.06253896653652191, 0.018295444548130035, 0.02254265360534191, 0.020921116694808006, -0.006363308522850275, -0.004636320751160383, -0.019685449078679085, 0.03628917783498764, 0.03843541443347931, -0.06191697716712952, -0.0005395443295128644, -0.0046869306825101376, -0.0012684057001024485, -0.005924034398049116, -0.012199602089822292, -0.050658803433179855, -0.011124810203909874, -0.01310411375015974, -0.01167167630046606, -0.0718425065279007, -0.011598329991102219, -0.029360773041844368, 0.008368455804884434, 0.005740596447139978, 0.00482038501650095, -0.02800503373146057, -0.02082737721502781, -0.009425662457942963, -0.030320409685373306, 0.010280800983309746, -0.06223434582352638, 0.004016950726509094, 0.019613277167081833, -0.04119659960269928, 0.006182353477925062, -0.028898287564516068, 0.025902241468429565, -0.00010013953578891233, -0.030446164309978485, -0.011392796412110329, -0.048701997846364975, 0.02086007408797741, -0.0018872516229748726, 0.026140805333852768, -0.005921115633100271, -0.004831463098526001, -0.029227521270513535, -0.01730542816221714, -0.04816032573580742, 0.004634523764252663, -0.033971209079027176, -0.022086037322878838, 0.02478070929646492, 0.06805533170700073, 0.03570539504289627, 0.05298959091305733, -0.012954014353454113, -0.02603156305849552, 0.047227926552295685, -0.07587838172912598, -0.01979510858654976, -0.04748561233282089, -0.0762968584895134, 0.01019411999732256, 0.02119547873735428, 0.025857025757431984, -0.026369411498308182, 0.035458266735076904, -0.0019151013111695647, 0.039692651480436325, 0.034836698323488235, -0.004606802947819233, 0.02250685729086399, -0.04954420402646065, -0.009839878417551517, -0.09178443998098373, 0.0001922469527926296, 0.013349699787795544, 0.000021579389795078896, -0.011694513261318207, -0.009324339218437672, -0.03586166352033615, 0.036214008927345276, -0.08063329756259918, -0.01458823587745428, 0.041772469878196716, 0.00579862529411912, -0.027598729357123375, 0.014303771778941154, -0.06547459214925766, 0.0324680432677269, 0.016010001301765442, -0.04806021973490715, -0.02525017410516739, -0.016366630792617798, 0.0359220989048481, 0.009718392044305801, 0.022509533911943436, -0.045369960367679596, 0.015443813987076283, 0.08487909287214279, -0.0006294306367635727, -0.010435824282467365, 0.03803863003849983, 0.0025602844543755054, 0.03277062624692917, 0.035876184701919556, 0.029718676581978798, -0.012799200601875782, -0.0008529747719876468, 0.001958597218617797, -0.06692630052566528, 0.059693604707717896, 0.003598476992920041, -0.046472564339637756, -0.026609210297465324, 0.049517672508955, 0.018198978155851364, -0.030208636075258255, -0.04061349481344223, 0.004383573308587074, -0.055561378598213196, 0.002124291844666004, -0.016834525391459465, -0.002888248534873128, -0.05532015115022659, 0.0515228733420372, 0.004150827415287495, 0.019949499517679214, 0.04847453534603119, -0.008821404539048672, -0.02991599403321743, -0.013455350883305073, 0.08900688588619232, 0.06868308782577515, 0.0584888719022274, 0.004637405276298523, 0.063627228140831, -0.016253091394901276, -0.042310114949941635, 0.03188065439462662, -0.008891744539141655, 0.007739498279988766, -0.030462289229035378, 0.03760748356580734, 0.0452272891998291, -0.005109256133437157, 0.05621511861681938, -0.0271281860768795, -0.024378236383199692, 0.006803722586482763, 0.04411112517118454, 0.006866182666271925, 0.05605689436197281, 0.0015140969771891832, 0.010135369375348091, -0.016934597864747047, -0.046924810856580734, 0.024484939873218536, -0.03356768935918808, -0.013843465596437454, 0.0260927714407444, -0.00795170571655035, 0.023117009550333023, 0.02733170986175537, 0.018033500760793686, 0.0811811238527298, -0.06309127807617188, 0.01567929796874523, -0.004675017204135656, 0.018971746787428856, -0.009128358215093613, 0.012997143901884556, -0.006403334438800812, -0.026439346373081207, 0.015761908143758774, -0.02143508940935135, -0.029372388496994972, -0.022504743188619614, -0.02648433856666088, 0.04138513654470444, -0.01654708944261074, 0.011607609689235687, 0.048294004052877426, 0.005984410643577576, -0.05143357068300247, -0.06499312818050385, -0.04366340488195419, -0.01668570563197136, -0.05098101124167442, 0.004337954334914684, 0.027644284069538116, -0.027988126501441002, -0.030197788029909134, -0.023813826963305473, -0.010075547732412815, -0.031579844653606415, 0.04024875536561012, -0.050841886550188065, -0.04019823670387268, 0.0009498364524915814, 0.027668558061122894, 0.04238846153020859, 0.008899804204702377, 0.04932686313986778, 0.005784704815596342, -0.013532046228647232, -0.008890890516340733, -0.00662949588149786, 0.02798962965607643, 0.004000329412519932, 0.02800636924803257, -0.08710944652557373, 0.013015780597925186, 0.02790805697441101, -0.005673089995980263, -0.0472419410943985, 0.03339797630906105, -0.003089956473559141, 0.009246273897588253, 0.06206506863236427, -0.011538835242390633, 0.022152654826641083, -0.029670044779777527, -0.020174214616417885, 0.0015148399397730827, 0.011331119574606419, 0.04868348687887192, -0.03525323048233986, 0.08844498544931412, -0.001409556600265205, -0.0027949633076786995, -0.05526053160429001, -0.01407611183822155, 0.002108178334310651, 0.014921961352229118, -0.011416256427764893, -0.030549027025699615, -0.020134102553129196, -0.075287364423275, -0.020676082000136375, 0.01751263439655304, -0.009758858941495419, -0.02609715238213539, 0.027205973863601685, 0.018272433429956436, -0.04565975442528725, 0.0241713784635067, -0.05001351982355118, 0.05057234317064285, -0.03131614997982979, -0.015675246715545654, 0.01795925572514534, 0.030579987913370132, -0.014341291971504688, -0.0075281825847923756, 0.027150098234415054, -0.05265543609857559, 0.011039185337722301, -0.005389383062720299, 0.03863474354147911, 0.05433060601353645, 0.0015753329498693347, 0.0037023299373686314 ]
[ -0.09109077602624893, -0.004774519242346287, -0.014686886221170425, -0.03730954974889755, 0.03809034824371338, -0.01486408431082964, 0.0028595810290426016, 0.012171827256679535, -0.014791619032621384, -0.009991159662604332, 0.005424613133072853, -0.014314019121229649, -0.007999277673661709, -0.025040164589881897, 0.07223252952098846, 0.0026217112317681313, -0.008957762271165848, -0.04743291437625885, 0.023515474051237106, 0.019690753892064095, 0.019579630345106125, -0.034058619290590286, -0.024951951578259468, -0.026463311165571213, 0.05090157687664032, 0.031504128128290176, 0.015465390868484974, -0.04696045443415642, 0.01895911991596222, -0.16749981045722961, -0.00012989097740501165, 0.020842894911766052, 0.051820989698171616, -0.017340131103992462, -0.009606113657355309, 0.07712350785732269, 0.02402462624013424, 0.015601756982505322, -0.0008419531513936818, 0.042396098375320435, 0.01744110696017742, 0.018913663923740387, -0.041771408170461655, -0.04334477335214615, 0.02747395448386669, 0.003988963086158037, 0.011942473240196705, -0.07010389119386673, -0.023179462179541588, 0.009071573615074158, -0.06353828310966492, -0.05382080376148224, -0.009176777675747871, -0.02407674677670002, -0.02074236050248146, 0.032101161777973175, 0.04331116005778313, 0.05357644334435463, -0.007857585325837135, 0.04261455312371254, 0.008883075788617134, -0.022309163585305214, -0.1596880406141281, 0.09276735782623291, 0.02690918557345867, 0.0820775106549263, -0.029542086645960808, 0.010489707812666893, 0.005122110713273287, 0.08817100524902344, 0.013053282164037228, -0.015183071605861187, -0.01724052242934704, 0.05568742752075195, 0.030928047373890877, -0.0019466576632112265, -0.00778899434953928, 0.020021213218569756, 0.027422519400715828, -0.05556364357471466, -0.02094338834285736, -0.012901567853987217, -0.004188453778624535, -0.017425136640667915, -0.039135515689849854, 0.021630259230732918, -0.03134578838944435, 0.018694747239351273, 0.03820424526929855, 0.028604205697774887, 0.05794135853648186, -0.024657465517520905, 0.022553401067852974, 0.00039828254375606775, -0.06397689878940582, -0.02868778444826603, -0.005202705971896648, 0.02384795807301998, -0.07798860967159271, 0.41687721014022827, -0.036803729832172394, -0.01418300997465849, 0.06490253657102585, 0.02270243689417839, -0.027621882036328316, 0.009880715981125832, 0.0299473088234663, -0.045165207237005234, 0.03294428810477257, -0.01865464448928833, 0.034581270068883896, 0.010924050584435463, 0.03415960446000099, -0.056447893381118774, -0.014596479944884777, 0.036489129066467285, 0.030699575319886208, 0.021517829969525337, 0.006212344393134117, -0.006182302720844746, -0.02151848003268242, 0.007199481595307589, 0.05363525077700615, -0.007361621595919132, -0.03047252632677555, -0.0548509806394577, 0.0006205665413290262, 0.0458725281059742, 0.03084002062678337, -0.02106008306145668, 0.05161283165216446, -0.07360000163316727, -0.06227954477071762, -0.015787506476044655, -0.000314177421387285, 0.017445843666791916, 0.03647540882229805, -0.014119151048362255, 0.009567122906446457, 0.0563916377723217, 0.0026158452965319157, -0.005804816726595163, 0.021758757531642914, -0.024596165865659714, -0.0532270222902298, 0.10732850432395935, 0.01869763806462288, -0.021440917626023293, -0.006490679923444986, -0.030919792130589485, 0.005517664831131697, 0.024963660165667534, -0.008738856762647629, -0.041725851595401764, 0.062823086977005, 0.004551176447421312, 0.10936842858791351, 0.01338028535246849, -0.0733945295214653, -0.030918044969439507, -0.04095099866390228, -0.029010936617851257, -0.052113793790340424, 0.061847493052482605, 0.08971312642097473, -0.07092525064945221, -0.009336626157164574, -0.010851284489035606, 0.026694700121879578, -0.059260763227939606, 0.0017159770941361785, 0.012655936181545258, -0.01019943505525589, 0.003970033954828978, 0.08983700722455978, -0.03608826547861099, -0.030218545347452164, 0.003275786293670535, 0.05079825595021248, 0.03286093845963478, 0.05217578262090683, 0.0037458131555467844, 0.005618490744382143, 0.003977723885327578, -0.022453367710113525, -0.044802676886320114, -0.040225591510534286, -0.027451593428850174, -0.023847397416830063, -0.00675616692751646, -0.026080995798110962, -0.026372374966740608, -0.08241018652915955, 0.08789889514446259, -0.03629595786333084, -0.03014417551457882, 0.03040407784283161, -0.011588497087359428, -0.04627013951539993, -0.00989188626408577, -0.08549915999174118, 0.04635440185666084, -0.0351378433406353, 0.019808541983366013, -0.06193043664097786, 0.055068571120500565, 0.05795387551188469, -0.04427428916096687, 0.08389786630868912, 0.06549283862113953, -0.03917666897177696, -0.02933264896273613, 0.013164611533284187, 0.026677293702960014, 0.00975758582353592, -0.012251677922904491, -0.002188031794503331, 0.0489521287381649, -0.03086956776678562, 0.005867790896445513, -0.024311788380146027, 0.013200624845921993, -0.03467502072453499, -0.35298678278923035, -0.04198914393782616, -0.028642481192946434, -0.01560618169605732, 0.015939781442284584, -0.03933810815215111, 0.019269103184342384, -0.027374591678380966, -0.024939440190792084, -0.016263632103800774, 0.07156666368246078, -0.010344001464545727, 0.0016189867164939642, -0.0976652130484581, 0.007237786892801523, 0.0031645954586565495, -0.03990114852786064, -0.03453128784894943, -0.02753118984401226, -0.0015766192227602005, 0.01714281179010868, 0.004620873834937811, -0.015837201848626137, -0.06525062024593353, -0.013699976727366447, -0.04474771395325661, 0.08638953417539597, 0.0031050865072757006, 0.09399174898862839, -0.02388709783554077, 0.03143094480037689, -0.007858511991798878, 0.03504602611064911, -0.11293188482522964, 0.017528200522065163, -0.03705648332834244, 0.0018720474326983094, -0.043382663279771805, 0.04055877402424812, -0.044516079127788544, -0.03492678329348564, 0.00029027636628597975, -0.08114504814147949, -0.03858133777976036, -0.06388334929943085, -0.005481564439833164, -0.04493295028805733, -0.009136886335909367, -0.017006097361445427, 0.06712974607944489, 0.015488160774111748, 0.013145575299859047, 0.015889039263129234, 0.013933398760855198, -0.02503204345703125, -0.02392386458814144, -0.1178283616900444, 0.037571609020233154, 0.01374391745775938, -0.005607134662568569, 0.010419879108667374, 0.07259906083345413, 0.04116347059607506, -0.06301555782556534, -0.013232823461294174, 0.0006566456286236644, 0.025726918131113052, 0.025839509442448616, 0.03890402615070343, -0.022428682073950768, -0.004467415623366833, 0.09555140882730484, 0.01895279996097088, -0.03132074326276779, 0.013952882960438728, 0.031464505940675735, -0.018541989848017693, 0.01290148962289095, 0.006029583979398012, -0.01582198403775692, 0.012454213574528694, -0.0025897088926285505, 0.023621223866939545, -0.02650066465139389, -0.013074400834739208, -0.0038533415645360947, -0.004314249847084284, -0.05408487096428871, 0.048417091369628906, 0.012221184559166431, -0.0330643504858017, 0.014935004524886608, -0.0443551205098629, -0.05402182787656784, 0.08299624174833298, 0.008247588761150837, -0.22460506856441498, 0.0025049715768545866, 0.05812736973166466, 0.05870716646313667, -0.020585814490914345, 0.057763006538152695, 0.043334998190402985, -0.07828249037265778, 0.0008526967139914632, 0.017000583931803703, 0.026156239211559296, 0.03308256343007088, 0.0010395115241408348, -0.01595175638794899, 0.04873476177453995, -0.023533452302217484, 0.04374660924077034, 0.006168628577142954, 0.04141688719391823, -0.015971265733242035, 0.015207848511636257, 0.02082904987037182, 0.14935052394866943, -0.003980988636612892, 0.028197156265378, 0.0013372070388868451, 0.00005460731335915625, -0.0003504275518935174, 0.07077614217996597, -0.0034594715107232332, 0.021889446303248405, 0.008206536062061787, 0.06190814822912216, 0.02400357462465763, 0.012099161744117737, -0.0774078518152237, -0.026062307879328728, 0.01328006386756897, 0.02186988666653633, 0.0020310671534389257, 0.024398958310484886, -0.011326042003929615, -0.012529397383332253, 0.038679614663124084, 0.072760671377182, 0.011793707497417927, 0.0034578389022499323, -0.06186332553625107, -0.05827599763870239, -0.02342996373772621, -0.022374281659722328, -0.025024302303791046, 0.011973091401159763, -0.0024283083621412516, 0.01150297001004219, 0.07638116180896759, 0.05513632297515869, -0.025931913405656815, -0.02935889922082424, -0.024237368255853653, 0.006121214013546705, 0.002915722317993641, 0.08935695886611938, 0.053230252116918564, 0.050612419843673706 ]
[ 0.005912534426897764, 0.007976138964295387, -0.023938124999403954, 0.005170461256057024, -0.015738999471068382, 0.010510556399822235, -0.016096357256174088, 0.02466270886361599, -0.006381478160619736, 0.016876986250281334, 0.006142920348793268, 0.025182640179991722, 0.020237727090716362, -0.019268831238150597, 0.03293671831488609, -0.019031794741749763, -0.009555493481457233, -0.026820557191967964, 0.014803129248321056, 0.03963741660118103, -0.003382140537723899, 0.03283699229359627, -0.012348691932857037, 0.036241643130779266, -0.027416503056883812, 0.026253413408994675, -0.0016771419905126095, 0.0014743584906682372, 0.028149444609880447, -0.14687903225421906, -0.016199085861444473, -0.018225286155939102, 0.011431865394115448, 0.02061975561082363, 0.018863562494516373, 0.007267345208674669, 0.02053692191839218, 0.003131852950900793, -0.009895231574773788, -0.004947414621710777, -0.02634088136255741, -0.00004256936153979041, 0.0018605890218168497, -0.013040327467024326, -0.008934355340898037, -0.003425668692216277, -0.0036331547889858484, -0.05936744064092636, -0.01576867513358593, -0.061039842665195465, -0.04579479992389679, -0.014057999476790428, -0.014205794781446457, -0.02465125359594822, 0.030518755316734314, -0.010752534493803978, 0.03649560734629631, -0.016522308811545372, 0.05117926746606827, -0.004658147692680359, -0.005719984881579876, -0.012215511873364449, -0.040939513593912125, -0.018689678981900215, -0.027558185160160065, -0.030469676479697227, -0.005834964103996754, 0.017992723733186722, -0.02883060835301876, 0.008680903352797031, -0.014210211113095284, -0.018093200400471687, -0.00009093972039408982, -0.022012706845998764, 0.02960548922419548, -0.013120497576892376, 0.01012260839343071, -0.017584441229701042, 0.01931913197040558, -0.00741281034424901, -0.049352966248989105, 0.02869552932679653, 0.014103174209594727, 0.0033165886998176575, 0.006376593839377165, 0.020133022218942642, 0.0354783870279789, -0.01235263142734766, 0.040528297424316406, 0.014724410139024258, 0.0006264913827180862, 0.0290242787450552, -0.01554268691688776, 0.013663562014698982, -0.0874224528670311, 0.00004501258808886632, -0.02879577875137329, -0.012697680853307247, 0.019077783450484276, 0.8488113284111023, -0.0010148280998691916, 0.03723955899477005, 0.02288151904940605, 0.014982283115386963, -0.0010535545879974961, 0.004118369426578283, 0.0038200058043003082, -0.010056690312922001, 0.04178877919912338, -0.029963558539748192, 0.001137560117058456, 0.029009481891989708, 0.007797728758305311, -0.005763883236795664, 0.012977835722267628, 0.013861490413546562, -0.00012552572297863662, -0.017569661140441895, -0.028199568390846252, 0.014576234854757786, 0.04000575840473175, 0.009420987218618393, 0.0053511024452745914, 0.013190865516662598, 0.017710037529468536, -0.18039841949939728, -0.0058906408958137035, -9.196427156412379e-33, 0.016511598601937294, 0.00007037692557787523, -0.009703538380563259, -0.020207852125167847, 0.018184328451752663, -0.030968571081757545, 0.04703410714864731, 0.021260729059576988, 0.011984416283667088, -0.01902681030333042, 0.01800515316426754, -0.011596189811825752, -0.0035060150548815727, -0.02487771026790142, 0.009438376873731613, -0.018780412152409554, -0.026007594540715218, 0.007192326243966818, -0.03166273236274719, 0.047656141221523285, 0.040999628603458405, 0.00033431194606237113, 0.005193415563553572, 0.007026343140751123, 0.016208423301577568, -0.016322381794452667, 0.04482588917016983, 0.035060156136751175, 0.021769732236862183, -0.03293200954794884, -0.017721205949783325, -0.008624540641903877, -0.03588743135333061, -0.009166395291686058, 0.017445549368858337, -0.01852458529174328, -0.0144722368568182, 0.00241446471773088, -0.006128137465566397, -0.014450023882091045, -0.01603059284389019, -0.017589516937732697, -0.0326932892203331, -0.012467154301702976, -0.004176624119281769, 0.001424681395292282, 0.03591380640864372, 0.017076365649700165, 0.02328772284090519, -0.04605425149202347, -0.0019242116250097752, -0.00964285247027874, 0.03677593916654587, 0.014302714727818966, 0.007792433258146048, 0.00729958713054657, -0.005333211738616228, 0.0003586657694540918, -0.0057649267837405205, 0.01858421601355076, -0.004250125959515572, -0.006186065264046192, -0.02658740244805813, 0.014095733873546124, -0.01877676695585251, -0.038633834570646286, -0.010112387128174305, 0.000009657635928306263, 0.05413143336772919, -0.029121527448296547, -0.043196901679039, -0.01809726469218731, -0.014183181338012218, -0.009413092397153378, -0.01354073267430067, -0.01690932922065258, 0.00818860437721014, 0.04780825972557068, -0.02374241314828396, 0.04019075259566307, 0.00029663476743735373, 0.011667310260236263, -0.006563677452504635, -0.019317472353577614, 0.009355282410979271, -0.020158259198069572, 0.018257660791277885, -0.024231169372797012, -0.01457296870648861, 0.0054434300400316715, 0.01870589330792427, -0.011251365765929222, -0.0009280304075218737, 0.0043741813860833645, -0.023749278858304024, 8.756629169363667e-33, 0.016362784430384636, 0.008408539928495884, -0.02738949842751026, 0.021155327558517456, 0.05290064215660095, -0.011357621289789677, 0.0036243668291717768, 0.00434114970266819, -0.07502558082342148, 0.001938863075338304, -0.008441285230219364, -0.034016989171504974, -0.02670980989933014, 0.007064505945891142, 0.033308058977127075, -0.008138872683048248, 0.023933256044983864, -0.034844495356082916, 0.01822240650653839, -0.000045826946006854996, 0.0015991872642189264, 0.011338929645717144, 0.015797775238752365, 0.01483004167675972, 0.028862783685326576, 0.06428129971027374, -0.026476090773940086, 0.007365214638411999, 0.009300519712269306, 0.006754337344318628, 0.014127730391919613, -0.004008532967418432, 0.020948847755789757, -0.004303805995732546, -0.052715964615345, 0.02306167408823967, -0.029672540724277496, -0.013374443165957928, 0.006585392635315657, 0.0030302414670586586, 0.02687259204685688, -0.0052290065214037895, 0.014455190859735012, 0.02778766304254532, 0.01941252499818802, 0.029233286157250404, 0.03382827341556549, -0.021509801968932152, -0.020596131682395935, 0.027360636740922928, 0.02799201011657715, 0.027565354481339455, 0.00950371939688921, -0.014020933769643307, 0.028070952743291855, -0.036345530301332474, -0.007963372394442558, -0.03732525557279587, -0.013733751140534878, 0.0211440771818161, 0.01155656948685646, 0.014448340982198715, -0.05153309926390648, 0.00527263805270195, -0.017296763136982918, -0.0003546974330674857, -0.023030061274766922, -0.021933000534772873, -0.04870638623833656, -0.026089005172252655, -0.03797170892357826, 0.042936719954013824, 0.017327893525362015, 0.006872193422168493, 0.006369767244905233, -0.02651822939515114, -0.0407019779086113, -0.0013420198811218143, -0.031627316027879715, 0.011019226163625717, 0.007472818251699209, -0.01066439226269722, 0.007523240055888891, 0.021590331569314003, -0.0360480435192585, 0.050566334277391434, -0.0277955811470747, 0.016012491658329964, 0.01593698561191559, -0.007790554314851761, -0.01884475350379944, -0.0201594028621912, 0.02236638031899929, -0.013327516615390778, -0.008406918495893478, -1.4482038679375364e-8, 0.0035727766808122396, 0.008381393738090992, -0.03201071545481682, 0.016087062656879425, 0.023922475054860115, 0.02738015726208687, -0.01628202199935913, 0.009886186569929123, -0.02557622268795967, 0.042833391577005386, 0.052368927747011185, -0.028034567832946777, 0.007039956748485565, 0.0026791496202349663, 0.024725526571273804, -0.047140806913375854, -0.018892867490649223, 0.003174210898578167, 0.03404107317328453, 0.024135647341609, 0.03432801365852356, 0.047227635979652405, -0.03973326459527016, 0.051709506660699844, 0.008014652878046036, -0.0068474519066512585, -0.031396761536598206, -0.08628982305526733, 0.00948752649128437, 0.012143759988248348, 0.025931281968951225, -0.03508349508047104, -0.01670333370566368, 0.03297621011734009, -0.01701359450817108, -0.04600660130381584, 0.010569891892373562, 0.021108463406562805, 0.0020341118797659874, 0.008904577232897282, -0.021507268771529198, 0.01836870051920414, 0.00011552017531357706, -0.03493121638894081, -0.036094389855861664, 0.015101565048098564, -0.05156942829489708, -0.02055289037525654, 0.013783209957182407, -0.05002399533987045, -0.00990140438079834, -0.0005229677190072834, 0.008662411943078041, 0.011190592311322689, 0.02227414771914482, 0.02357046864926815, -0.005119582172483206, -0.027567246928811073, -0.051383715122938156, -0.01795800030231476, 0.010289086028933525, 0.0053848884999752045, 0.003886696882545948, -0.010754668153822422 ]
shu-ha-ri-harmful
https://markhneedham.com/blog/2010/02/26/shu-ha-ri-harmful
false
2010-02-26 00:36:50
Coding: Shared libraries
[ "coding" ]
[ "Coding" ]
On a few projects that I've worked on one of the things that we've done is create a shared library of objects which can be used across several different projects and while at the time it seemed like a good idea, in hindsight I'm not sure if it's an entirely successful strategy. I'm quite a fan of not recreating effort which is generally the goal when trying to pull out common code and within one team this seems to be a good approach the majority of the time. When it comes to sharing across teams then I think we need to consider the perceived benefits a bit more because it doesn't come without costs. These are some of the types of code that we've shared previously: == Domain objects I think this is the most dangerous type of code to share because although we often do have the same domain concepts in different projects, it's quite rare that they mean exactly the same thing. In addition there is an implicit coupling created with our database since we pretty much now have to make sure that our database schema matches up with the current version of that domain object. Either that or we do have a shared database for all the applications which use that shared domain object in which case we have an even stronger coupling between applications. We're assuming that the two application have exactly the same domain concept and from my experience quite often that isn't the case - even if there is a concept with the same name it may be http://dddstepbystep.com/wikis/ddd/bounded-context.aspx[used in different ways] or mean something completely different in different applications. This is quite similar to the problem with having a universal domain model which Dan points out in http://dannorth.net/classic-soa[his classic SOA article]. In general I don't think it makes sense to share this type of code. == Test code This one seems like it should fairly universally a good idea - after all we often import 3rd party testing libraries so it seems like just sharing some common testing code shouldn't be much different. One piece of code that we shared was the Selenium bootstrapping code and this approach worked reasonably well until we wanted to adjust the amount of time between each command because commands were being sent to the browser before elements had the chance to load. Apart from the fact that the other users of the library didn't want anything change with respect to how they used the code we had to go and make the change in another project, build that and then update the reference that we had to the library. Certainly this process would have been made easier if we'd used something like http://ant.apache.org/ivy/[Ivy] but the amount of duplication of code that we were saving didn't seem worth the hassle it caused so we ended up inlining the code. == Infrastructure code General infrastructure code e.g. code to handle NHibernate transactions which is quite unlikely to change seems one candidate which can work quite well in a shared library and so far I haven't seen many problems arise from doing this. I think the key with these bits of reusable code is that we keep them quite small and ensure that they have only one responsibility which will be useful for all the applications. We eventually ended up slimming down our shared library and the majority of the code that remains in there is solving specific infrastructure type problems which will be the same across any applications using the same technical stack. == Things to be careful about when sharing code One reason that we may share code is so that if there is a change then it only needs to be done in one place. We need to have a degree of confident that if we put code in a shared library that this is actually the case. If it's likely that different applications might need shared code to change in different ways then we might not want to make that bit of code shared otherwise we'll just end up with application specific code in a shared library. From what I've noticed it makes most sense to put code which is unlikely to change and is generic enough to be useful across several applications as is into shared libraries. For any other code it might actually be beneficial to accept that there will be some duplication between applications in the same organisation and not try and pull out a common piece.
null
null
[ 0.010014190338551998, 0.003190715331584215, -0.03144165500998497, 0.0510508194565773, 0.08650068193674088, -0.012073749676346779, 0.025116505101323128, 0.03776465728878975, 0.012209278531372547, -0.0395345538854599, -0.011944255791604519, -0.008021190762519836, -0.08447336405515671, 0.011940249241888523, -0.03969898074865341, 0.08081038296222687, 0.07021156698465347, -0.01895223744213581, 0.01931077241897583, 0.006055829115211964, 0.012160129845142365, 0.06365705281496048, -0.0004046869289595634, 0.03893128037452698, 0.02078985422849655, 0.03264172002673149, 0.03624679893255234, -0.017504392191767693, -0.0718500018119812, -0.0034019628074020147, 0.04191330820322037, 0.002363035688176751, 0.00045795156620442867, -0.0006191006978042424, 0.025537488982081413, -0.02640540897846222, -0.018908951431512833, 0.01694936864078045, 0.012327480129897594, -0.0017556354869157076, -0.049455903470516205, 0.03975392505526543, -0.01419475581496954, 0.0020105335861444473, -0.050087910145521164, 0.027652541175484657, -0.05149056762456894, 0.017979025840759277, -0.008068535476922989, 0.01178397610783577, -0.039730727672576904, 0.015470282174646854, -0.018264396116137505, 0.01082223653793335, -0.017828360199928284, 0.056719839572906494, 0.027612561360001564, -0.07155529409646988, 0.005758278537541628, -0.04641145095229149, 0.0061784726567566395, 0.021142950281500816, -0.004581595305353403, 0.030542781576514244, 0.023831652477383614, -0.007959063164889812, -0.015131162479519844, 0.04329871013760567, -0.0629011020064354, -0.0035870091523975134, 0.013934019953012466, 0.005330131854861975, -0.014207698404788971, -0.0049327826127409935, 0.01830839365720749, -0.017425043508410454, 0.00048452866030856967, 0.034514039754867554, 0.026015417650341988, 0.04254277050495148, -0.021483419463038445, 0.013763347640633583, 0.004632715601474047, 0.0188810545951128, 0.00642444146797061, -0.018785929307341576, -0.035028278827667236, -0.02153996005654335, -0.04888802766799927, 0.05737290903925896, 0.004364409018307924, -0.0671866163611412, 0.017942527309060097, 0.028771596029400826, 0.015158927999436855, -0.0018245571991428733, 0.03660508617758751, 0.0010280589340254664, 0.018290987238287926, 0.007926929742097855, -0.03255230560898781, -0.021787004545331, 0.02268543839454651, -0.02051815763115883, -0.07210879772901535, -0.0001237687683897093, -0.02775743044912815, -0.016423171386122704, -0.00034870533272624016, -0.005089919548481703, -0.04789062961935997, 0.026685530319809914, -0.03147217631340027, -0.002497387118637562, -0.04922866448760033, 0.06964930146932602, -0.017477404326200485, -0.05503244325518608, -0.013736944645643234, 0.01776817999780178, 0.021759141236543655, 0.007226930465549231, -0.05624103918671608, 0.0675278753042221, 0.007552327588200569, 0.029861487448215485, -0.04164978489279747, 0.05048093572258949, -0.03682505711913109, -0.07171867042779922, 0.011316408403217793, 0.026012830436229706, -0.04396984353661537, -0.0060997833497822285, -0.007619637995958328, -0.03951442986726761, -0.002894039498642087, -0.0035626618191599846, 0.029054420068860054, 0.05135864391922951, -0.010448791086673737, -0.04271151125431061, 0.0024707966949790716, 0.0040132105350494385, 0.04383222013711929, 0.03308568522334099, 0.022748753428459167, -0.018596282228827477, -0.01680566743016243, 0.023839663714170456, 0.014964071102440357, 0.055477552115917206, 0.03634998947381973, -0.047661539167165756, 0.018512507900595665, 0.10382802784442902, 0.006545699201524258, 0.02988656423985958, -0.021454812958836555, 0.03182848542928696, 0.027655020356178284, -0.004155565518885851, 0.004639389459043741, 0.03799167275428772, 0.019668560475111008, -0.00022992219601292163, 0.0007184215937741101, 0.06947031617164612, 0.007853331975638866, 0.0070355236530303955, -0.06996215879917145, -0.06165492907166481, 0.05376607924699783, -0.06697063148021698, -0.011589056812226772, 0.05641390010714531, 0.07358555495738983, 0.03163137659430504, 0.06317248195409775, -0.027100976556539536, -0.06969413161277771, -0.0010784310288727283, 0.00971810333430767, 0.0010025338269770145, 0.03941395506262779, -0.015582915395498276, 0.06916233152151108, 0.013554636389017105, -0.007971374318003654, 0.05880860611796379, -0.08718585222959518, -0.07397765666246414, -0.020062148571014404, -0.02593139186501503, 0.06217503920197487, -0.030078168958425522, -0.022562198340892792, 0.08433469384908676, -0.0033068384509533644, 0.034906961023807526, 0.04403353109955788, 0.02148035168647766, 0.0059039839543402195, -0.0347263403236866, -0.017040545120835304, 0.04639679566025734, 0.030692830681800842, -0.007176083978265524, -0.05728073790669441, -0.013166864402592182, 0.012402350082993507, -0.006755299400538206, 0.03553908318281174, -0.010823913849890232, 0.03889559209346771, 0.011508716270327568, 0.05941642448306084, -0.021514492109417915, 0.04654308781027794, -0.06690248847007751, 0.0255581084638834, -0.007730366196483374, -0.02115017920732498, 0.0009430695208720863, 0.005900811869651079, 0.10796049237251282, 0.05470919609069824, -0.03914710134267807, -0.04917200282216072, 0.039276354014873505, 0.014164811000227928, -0.04258497431874275, -0.0018774259369820356, -0.01773926615715027, 0.007197543513029814, -0.004089850466698408, -0.051837991923093796, -0.012519141659140587, 0.012164663523435593, -0.015169870108366013, 0.004220400005578995, 0.07508489489555359, -0.04741336405277252, 0.03979455307126045, -0.014023727737367153, -0.01796233467757702, -0.009923717007040977, -0.028093531727790833, -0.051817309111356735, 0.014308219775557518, 0.004752197302877903, -0.017463937401771545, 0.04544282332062721, -0.02347002737224102, -0.018926216289401054, -0.03330455720424652, -0.012492559850215912, 0.016710488125681877, 0.009463735856115818, 0.05728340148925781, -0.023314833641052246, 0.03435586765408516, -0.005007084924727678, 0.006910454016178846, -0.0038309728261083364, -0.05083996430039406, -0.03925519436597824, -0.004615397658199072, -0.0052808490581810474, 0.039843566715717316, 0.003035278059542179, 0.024607272818684578, 0.024556012824177742, 0.006320782471448183, -0.031860366463661194, 0.0038070930168032646, 0.03520100191235542, -0.016024531796574593, -0.019198672845959663, -0.045141592621803284, -0.03303226828575134, 0.01882472075521946, -0.04122813045978546, -0.028348635882139206, -0.0028965347446501255, -0.06754098832607269, 0.050828978419303894, -0.10566571354866028, -0.06658358126878738, 0.015400866977870464, 0.053767718374729156, 0.03925797715783119, -0.007116871885955334, 0.03210223466157913, 0.07862407714128494, 0.01547587662935257, 0.010505887679755688, 0.006176546681672335, 0.023090116679668427, 0.026294678449630737, -0.0019238622626289725, 0.007250072900205851, 0.02842349000275135, -0.010842273011803627, 0.007536446209996939, -0.05045932158827782, 0.032882921397686005, -0.004455153830349445, -0.2799118161201477, 0.021563509479165077, -0.014562059193849564, -0.04162874445319176, 0.0263538658618927, -0.019697757437825203, 0.0288336630910635, -0.05015510693192482, -0.022525742650032043, 0.021152136847376823, -0.03126300871372223, -0.05916229635477066, 0.00420908210799098, 0.060305990278720856, -0.00940187368541956, 0.0430864654481411, 0.026452817022800446, -0.03887509927153587, 0.0060579245910048485, 0.05768327787518501, -0.014449583366513252, -0.06668872386217117, 0.00017587855109013617, 0.03945520892739296, 0.03531548008322716, 0.045733992010354996, -0.07982321828603745, 0.03401615470647812, -0.0426236130297184, -0.006496694404631853, 0.041469499468803406, 0.00011352686851751059, -0.021898820996284485, -0.04707721993327141, -0.013819159008562565, -0.01886357180774212, 0.026095902547240257, 0.013629754073917866, -0.0037582588847726583, 0.00419042119756341, -0.025195706635713577, -0.0451124906539917, -0.027471955865621567, -0.009754737839102745, 0.0580928698182106, 0.000402851146645844, -0.08237741887569427, -0.00022681841801386327, -0.05510707572102547, 0.07162477821111679, -0.04525851085782051, -0.026545770466327667, 0.013762252405285835, 0.050449781119823456, -0.012791031040251255, -0.025977248325943947, 0.0024790861643850803, 0.0004796912253368646, -0.04366251453757286, -0.03770796209573746, -0.01350737176835537, -0.05266392230987549, -0.03415355086326599, -0.04350695013999939, 0.002713339403271675, -0.06421969085931778, -0.06807863712310791, -0.014841199852526188, 0.05482383817434311, 0.03946299105882645, -0.047381315380334854, 0.022936657071113586, 0.01654978282749653, -0.11547679454088211, 0.006118582561612129, -0.020285723730921745, 0.009225300513207912, -0.03848516196012497, 0.014357051812112331, 0.04211371764540672, -0.014812614768743515, -0.0375981479883194, 0.013370756059885025, 0.03762853518128395, 0.023379076272249222, -0.0032657550182193518, 0.03603215143084526, 0.014430936425924301, -0.03129009157419205, 0.005504203028976917, 0.07360592484474182, -0.0037448129151016474, -0.01241738349199295, -0.029463117942214012, 0.025232983753085136, 0.006427041720598936, 0.01848822459578514, 0.0015391947235912085, 0.017978906631469727, 0.01727437973022461, 0.01974182203412056, -0.04553588107228279, 0.025564134120941162, -0.009870094247162342, -0.0015305110719054937, -0.021874358877539635, -0.06061677262187004, 0.028427712619304657, 0.014260904863476753, 0.042319901287555695, -0.018568130210042, -0.026025595143437386, -0.009881624020636082, -0.06816743314266205, -0.044995956122875214, -0.026052361354231834, 0.010357062332332134, 0.01693434827029705, -0.023797044530510902, -0.007318783551454544, -0.04118001461029053, 0.02431449294090271, 0.045002736151218414, -0.011744629591703415, -0.056519102305173874, -0.04616233706474304, -0.0192146934568882, -0.0034434848930686712, -0.005815250799059868, 0.010683887638151646, -0.018335334956645966, 0.045575812458992004, 0.0018983952468261123, -0.05417361855506897, 0.013157681562006474, 0.0012784866848960519, -0.03864176571369171, -0.006977314129471779, -0.0122775137424469, -0.0029052775353193283, 0.003463990055024624, 0.008916709572076797, 0.013037248514592648, -0.0013307587942108512, 0.05048412084579468, 0.01332144532352686, 0.05559256672859192, 0.019782373681664467, 0.015422120690345764, 0.0016131274169310927, 0.01760696992278099, -0.07616979628801346, 0.020846141502261162, -0.05309000983834267, -0.023583704605698586, -0.03800665959715843, 0.026981690898537636, -0.00799123477190733, -0.02590199001133442, -0.03672308102250099, -0.0018383401911705732, -0.08014639467000961, -0.004950045607984066, -0.027970489114522934, -0.002194646280258894, 0.07608750462532043, -0.03261985629796982, 0.027274107560515404, -0.028080761432647705, -0.02384168840944767, -0.00029880317742936313, 0.02734454721212387, -0.047677334398031235, 0.007815148681402206, 0.00875663012266159, 0.019484393298625946, -0.02439745143055916, 0.006596725899726152, 0.049483418464660645, 0.030451485887169838, 0.01778390072286129, 0.007480438333004713, 0.016163218766450882, -0.005319580901414156, 0.052919041365385056, -0.0012395192170515656, -0.0027639709878712893, 0.027435079216957092, -0.015744181349873543, -0.02925688773393631, -0.03193993866443634, -0.017338233068585396, -0.012209760956466198, 0.030232392251491547, -0.024978116154670715, -0.07471048086881638, 0.0467391163110733, 0.0326915979385376, 0.023557372391223907, 0.003426743671298027, -0.005313767120242119, 0.009869384579360485, -0.027867745608091354, 0.046006061136722565, 0.04539025202393532, -0.061850450932979584, 0.020309049636125565, -0.0003174822486471385, 0.007823563180863857, 0.015210716053843498, 0.010519088245928288, -0.06657803058624268, -0.05873367562890053, -0.021663429215550423, 0.0069017792120575905, -0.026014352217316628, -0.028667226433753967, -0.036164797842502594, 0.021027827635407448, 0.001872400171123445, -0.011456684209406376, -0.01303881499916315, 0.012995913624763489, 0.008467272855341434, -0.014991181902587414, -0.005274863447993994, -0.010760736651718616, 0.032932382076978683, 0.007126196287572384, -0.015891922637820244, 0.015277746133506298, -0.017152929678559303, 0.010219118557870388, -0.00431510154157877, -0.012408925220370293, -0.013591544702649117, -0.028795894235372543, 0.009865816682577133, 0.0031795045360922813, 0.027364879846572876, 0.0010285908356308937, 0.007242010906338692, 0.00012831049389205873, -0.0037988058757036924, -0.028627879917621613, 0.01778152398765087, -0.025858459994196892, -0.02064771205186844, 0.009381760843098164, 0.04966529458761215, 0.007597025949507952, 0.01962720975279808, -0.0009728470467962325, 0.00266829552128911, 0.05860926955938339, -0.07921203225851059, -0.02905082330107689, -0.06701719760894775, -0.07828455418348312, -0.0019797144923359156, 0.03046785108745098, 0.028210600838065147, -0.03875787556171417, 0.037777405232191086, 0.022675521671772003, 0.02404973655939102, 0.048064228147268295, 0.00469365855678916, 0.048089124262332916, -0.05504992976784706, 0.0034198525827378035, -0.07372263818979263, 0.019077889621257782, 0.045994531363248825, 0.009046378545463085, -0.015261498279869556, -0.015169969759881496, -0.03762805461883545, 0.057709526270627975, -0.05163845792412758, -0.024310795590281487, 0.024916164577007294, 0.024273142218589783, 0.010258135385811329, 0.005734739359468222, -0.06773573905229568, 0.01168959029018879, 0.024651391431689262, -0.029524901881814003, -0.03597216308116913, -0.02886023558676243, 0.04773087054491043, -0.0059083690866827965, 0.005688395816832781, -0.043750327080488205, -0.00016353641694877297, 0.0633404403924942, 0.0013974225148558617, 0.021468477323651314, 0.04743334650993347, 0.0009538402664475143, 0.04446689784526825, 0.027357205748558044, -0.004336734302341938, 0.008694981224834919, 0.02498210407793522, -0.001843149890191853, -0.050204839557409286, 0.037459950894117355, 0.01219871360808611, -0.009176303632557392, -0.06095558777451515, 0.0688372254371643, 0.03798461705446243, -0.03715193644165993, -0.061136651784181595, 0.01097271777689457, -0.053129855543375015, -0.017204293981194496, -0.00332553475163877, -0.01978941820561886, -0.021948840469121933, 0.05554722249507904, 0.0032828105613589287, 0.011131948791444302, 0.06854604184627533, 0.008450450375676155, -0.03236774355173111, 0.00352161331102252, 0.08689466118812561, 0.0745394378900528, 0.028638465330004692, 0.013662531971931458, 0.04604777693748474, -0.009352044202387333, -0.04529813677072525, 0.026957400143146515, -0.02369268238544464, -0.0476851612329483, -0.026058387011289597, -0.008194170892238617, 0.030839994549751282, -0.0004928018897771835, 0.06677012890577316, -0.024670349434018135, -0.0040517281740903854, 0.0014821031363680959, 0.02897985838353634, 0.03532549738883972, 0.05911470949649811, 0.020290043205022812, 0.03741583973169327, -0.017687929794192314, -0.019569693133234978, 0.012745510786771774, -0.041350968182086945, -0.022797709330916405, 0.011749288998544216, -0.009661107324063778, 0.004100952763110399, 0.014696340076625347, 0.030491342768073082, 0.08545715361833572, -0.027237538248300552, -0.014316918328404427, -0.016834262758493423, 0.017419736832380295, 0.0028635533526539803, -0.012752610258758068, -0.015321709215641022, -0.02757301554083824, 0.003959155175834894, -0.04076366499066353, -0.026113135740160942, -0.013636310584843159, -0.02324167639017105, 0.05330031365156174, -0.014094391837716103, 0.010338288731873035, 0.011420872993767262, 0.03870116546750069, -0.02452036179602146, -0.05821780115365982, -0.07298750430345535, -0.03031635843217373, -0.0444568507373333, -0.026941245421767235, 0.04588398337364197, 0.020629670470952988, -0.03261759504675865, -0.005061343777924776, -0.015997963026165962, -0.028856724500656128, 0.04797128215432167, -0.03809259086847305, -0.03617839887738228, 0.0339173786342144, 0.0373864583671093, 0.03705134987831116, 0.026551682502031326, 0.047008711844682693, -0.02781589701771736, 0.005363222677260637, -0.030197754502296448, 0.021254533901810646, 0.03001650795340538, 0.004250174388289452, 0.022405795753002167, -0.053772058337926865, 0.02714747004210949, 0.02179463393986225, -0.018298804759979248, -0.07330691814422607, 0.028477082028985023, 0.019168749451637268, -0.026646796613931656, 0.04719230905175209, -0.040693994611501694, 0.007468241732567549, -0.005114490166306496, -0.0040023354813456535, 0.008983060717582703, 0.031472962349653244, 0.03268832340836525, -0.014558695256710052, 0.08180370926856995, 0.0385863333940506, -0.015257776714861393, -0.05386144295334816, -0.008722644299268723, 0.006722080521285534, -0.005376939661800861, -0.008013542741537094, -0.054184477776288986, -0.040954552590847015, -0.06451699137687683, -0.021822666749358177, 0.021458126604557037, -0.017448976635932922, -0.01713508367538452, -0.014894040301442146, 0.05121335759758949, -0.06550589948892593, 0.02025166153907776, -0.04153194651007652, 0.025354979559779167, -0.012444602325558662, -0.012580378912389278, 0.009116493165493011, 0.027719251811504364, -0.005891540553420782, 0.003681664587929845, 0.030444325879216194, -0.025939134880900383, -0.019913405179977417, -0.009917132556438446, 0.04591098427772522, 0.023950757458806038, 0.015031468123197556, 0.03155650943517685 ]
[ -0.0826091319322586, -0.011138015426695347, -0.060276489704847336, -0.046693772077560425, 0.061078500002622604, -0.050187211483716965, -0.020824270322918892, 0.012941744178533554, -0.006053467746824026, -0.027793357148766518, -0.028703853487968445, -0.011378312483429909, -0.009810900315642357, -0.012257037684321404, 0.08343463391065598, 0.010547402314841747, -0.04316844791173935, -0.05400893837213516, -0.006621057633310556, 0.0404253713786602, 0.009147539734840393, -0.001077296445146203, -0.030663248151540756, -0.03150876238942146, -0.012648224830627441, 0.045361172407865524, 0.021808817982673645, -0.02621905319392681, 0.017944540828466415, -0.19218024611473083, 0.01704500988125801, 0.0028287991881370544, 0.012807050719857216, -0.01315186358988285, 0.022237321361899376, 0.04216586425900459, 0.02729431353509426, 0.02126890979707241, -0.03369752690196037, 0.04565351828932762, 0.02192888781428337, 0.031151780858635902, -0.053797800093889236, -0.019475601613521576, 0.02620723471045494, -0.002358796074986458, -0.034541551023721695, -0.03809015080332756, -0.020365824922919273, 0.02192150615155697, -0.015676280483603477, -0.015562399290502071, -0.04208102077245712, -0.0125432088971138, -0.042889755219221115, 0.031814124435186386, 0.008302669040858746, 0.08022841066122055, -0.02483280748128891, 0.033047325909137726, 0.004721825942397118, -0.030833473429083824, -0.1244695633649826, 0.09214434027671814, 0.04123188927769661, 0.06787534803152084, -0.04852932691574097, -0.03481127321720123, -0.02110835164785385, 0.0883764699101448, 0.0020503210835158825, -0.008612959645688534, -0.008534073829650879, 0.058032263070344925, 0.023297816514968872, 0.0051872748881578445, -0.002247408265247941, 0.003403057809919119, 0.03744717314839363, -0.07059406489133835, -0.03664715960621834, -0.027008915320038795, -0.0025906525552272797, -0.008663667365908623, -0.02535751834511757, 0.027300801128149033, 0.0025644521228969097, 0.07380993664264679, 0.048291053622961044, 0.02566114254295826, 0.03849627077579498, -0.02583429217338562, 0.06415349990129471, -0.0008299664477817714, -0.08306889235973358, 0.008891472592949867, -0.0024068935308605433, 0.014215601608157158, -0.053194135427474976, 0.42792972922325134, -0.02752537466585636, -0.025617370381951332, 0.06249256432056427, 0.020799262449145317, -0.02127462811768055, 0.013707713223993778, 0.03600446507334709, -0.050621941685676575, 0.048866935074329376, -0.016406206414103508, 0.015424543060362339, -0.013013693504035473, 0.027467334643006325, -0.06695885211229324, 0.0017062801634892821, 0.0077207754366099834, 0.0041387807577848434, 0.00875000562518835, -0.012535739690065384, 0.00011996010289294645, -0.007427943870425224, 0.014280376024544239, 0.013968988321721554, 0.039226751774549484, -0.0037657516077160835, 0.012309097684919834, 0.024979736655950546, 0.04457700997591019, 0.022229278460144997, 0.013316623866558075, 0.043186310678720474, -0.04226115718483925, -0.05444604903459549, -0.024340776726603508, -0.00836481899023056, 0.02487974800169468, 0.017255058512091637, -0.019700877368450165, -0.001108139636926353, 0.05727730318903923, 0.011671259067952633, -0.008501073345541954, 0.031761910766363144, -0.015832187607884407, -0.05452807992696762, 0.10706277936697006, 0.02623792737722397, -0.027232807129621506, -0.043845340609550476, -0.031554803252220154, 0.02299433760344982, 0.04590023681521416, -0.0034190090373158455, -0.04683658853173256, 0.00017739390023052692, -0.001450644340366125, 0.0767994150519371, -0.015414147637784481, -0.04497106745839119, -0.020090604200959206, -0.009810848161578178, -0.006052064243704081, -0.04719279706478119, 0.06202200427651405, 0.04710198938846588, -0.12234476208686829, -0.013472603633999825, 0.003925148863345385, 0.04341277480125427, -0.06406888365745544, -0.025772524997591972, 0.003852795111015439, -0.007184349931776524, -0.014036964625120163, 0.040244828909635544, -0.05166928097605705, -0.035921622067689896, 0.022172605618834496, 0.05072079226374626, 0.007795705925673246, 0.028471453115344048, 0.0099868169054389, -0.06800051778554916, 0.00848893541842699, -0.04044990614056587, -0.07589549571275711, -0.04628629609942436, -0.005266263149678707, -0.045987073332071304, -0.0049455733969807625, -0.03825124725699425, -0.0010798736475408077, -0.09347115457057953, 0.10745317488908768, -0.020256008952856064, -0.018595200031995773, 0.028743801638484, -0.023035934194922447, -0.022480908781290054, 0.012795375660061836, -0.011059575714170933, 0.05942682921886444, -0.034083787351846695, 0.02948501519858837, -0.08330807834863663, 0.04679807648062706, 0.05101817101240158, -0.046109721064567566, 0.05790937319397926, 0.0364176407456398, -0.03420240432024002, -0.013514025136828423, 0.015034906566143036, 0.029135460034012794, -0.015393870882689953, -0.031157106161117554, 0.00007551080489065498, 0.0313672311604023, 0.02214808389544487, 0.032753702253103256, -0.02031676284968853, -0.002940327627584338, 0.024726927280426025, -0.35400840640068054, -0.03079361282289028, -0.03577427938580513, -0.00009495581616647542, 0.004854041617363691, -0.04296208173036575, 0.03329755365848541, -0.012115257792174816, -0.05546433851122856, 0.021621644496917725, 0.11839909851551056, -0.020798441022634506, -0.0069997054524719715, -0.06568020582199097, -0.017521334812045097, 0.020662277936935425, -0.046925295144319534, -0.01617816649377346, -0.028948934748768806, 0.0034929849207401276, -0.007248028181493282, -0.020770125091075897, 0.03096782974898815, -0.06691266596317291, 0.023608794435858727, -0.030080560594797134, 0.09153302758932114, -0.0345110259950161, 0.0910048708319664, -0.03414859622716904, 0.05964931473135948, -0.01852637156844139, 0.03597656637430191, -0.10203859955072403, -0.023886317387223244, -0.006020291708409786, 0.0022786485496908426, -0.003304349724203348, 0.01920490525662899, -0.016725940629839897, -0.06554944813251495, 0.009307652711868286, -0.04356897994875908, -0.04839711636304855, -0.03360066935420036, -0.0007490880670957267, -0.027292093262076378, -0.054284289479255676, -0.010395893827080727, 0.09106645733118057, -0.006731861270964146, -0.019683634862303734, 0.007693008985370398, 0.030378248542547226, -0.02771930769085884, -0.029907770454883575, -0.08914709091186523, 0.0003700144588947296, 0.02439383789896965, 0.025727368891239166, 0.03233112022280693, 0.07808799296617508, 0.024143273010849953, -0.06254862248897552, 0.026661653071641922, -0.011975903995335102, -0.0011944491416215897, 0.01296082790941, 0.07188038527965546, -0.04441240429878235, -0.00988469272851944, 0.10923183709383011, 0.006650459952652454, -0.000996464747004211, 0.013458484783768654, 0.041809454560279846, -0.008458422496914864, 0.04495571553707123, 0.009362384676933289, 0.01686195284128189, 0.028583545237779617, -0.0036675783339887857, 0.01698301173746586, -0.013581514358520508, 0.01031358540058136, 0.056814342737197876, -0.0013381545431911945, -0.010069575160741806, 0.016229862347245216, -0.020898597314953804, -0.017532261088490486, -0.03876827657222748, -0.007081230171024799, -0.05318082123994827, 0.06154417246580124, -0.0023226586636155844, -0.2503020167350769, 0.009955518878996372, 0.0582910031080246, 0.04907752200961113, -0.00032565472065471113, 0.037177976220846176, 0.05052513629198074, -0.03398868069052696, 0.01682664267718792, -0.005871431902050972, 0.03447733446955681, 0.03254663199186325, 0.000017016107449308038, -0.01115668099373579, 0.05304160341620445, 0.01373136043548584, 0.04640013724565506, 0.003683922579512, 0.008462808094918728, -0.01731022447347641, 0.013695000670850277, -0.027423754334449768, 0.16449645161628723, 0.00845204945653677, 0.0416383370757103, 0.014493049122393131, 0.010934233665466309, 0.04503139480948448, 0.06099550426006317, 0.04059717804193497, -0.008656991645693779, 0.010588530451059341, 0.042565878480672836, -0.015270115807652473, 0.005632871296256781, -0.056381240487098694, -0.015040081925690174, 0.003653978230431676, 0.02855260856449604, 0.01008327305316925, 0.0016853532288223505, 0.0051105329766869545, -0.04500526934862137, 0.017574891448020935, 0.07033538073301315, 0.012849860824644566, -0.004451336804777384, -0.055819448083639145, -0.05112911015748978, -0.02341277338564396, -0.045760754495859146, -0.051458779722452164, -0.005214308854192495, -0.014778118580579758, 0.003348125610500574, 0.05087960138916969, 0.029903937131166458, -0.004056112840771675, -0.04391526058316231, 0.004158271476626396, 0.007905544713139534, -0.008882343769073486, 0.08029701560735703, 0.050039343535900116, 0.03376498445868492 ]
[ -0.017702408134937286, -0.021241093054413795, -0.012497820891439915, 0.00017171748913824558, -0.0054302210919559, -0.026773611083626747, -0.021160511299967766, -0.005418550223112106, -0.005359063856303692, -0.01722804084420204, -0.04067755863070488, 0.011031447909772396, 0.04101871699094772, -0.023151233792304993, 0.030799034982919693, -0.004866360686719418, 0.006949024740606546, -0.0308596920222044, 0.03407096862792969, -0.006582611706107855, -0.015498088672757149, 0.012243005447089672, -0.012842151336371899, 0.006066279951483011, -0.013905899599194527, 0.016226641833782196, 0.002714491216465831, -0.020141439512372017, 0.020867928862571716, -0.13982504606246948, -0.056144751608371735, -0.0281208623200655, -0.01731627993285656, 0.024591201916337013, -0.004076193552464247, 0.013728497549891472, -0.0032860550563782454, 0.013835121877491474, -0.011101536452770233, -0.021971970796585083, -0.012820363976061344, -0.021444376558065414, 0.03156182914972305, 0.023752951994538307, -0.0411958210170269, -0.00043483052286319435, -0.014558130875229836, -0.028232058510184288, 0.003328713122755289, -0.020873887464404106, -0.006855859886854887, -0.024917179718613625, 0.006802624091506004, 0.011101881973445415, 0.021722903475165367, 0.018084580078721046, 0.009979886934161186, -0.01103948149830103, -0.0004426638188306242, 0.022667042911052704, -0.005242177750915289, 0.008326109498739243, -0.033578306436538696, -0.0077147167176008224, -0.0035339442547410727, -0.0180882029235363, -0.004450865555554628, 0.012106734327971935, -0.021399514749646187, 0.000577819359023124, -0.020382067188620567, 0.0066815936006605625, -0.02677922137081623, -0.024561334401369095, 0.01697728969156742, 0.04358447343111038, 0.007956423796713352, 0.024743953719735146, 0.03139512613415718, -0.034576062113046646, -0.03619484603404999, 0.028080496937036514, 0.0007971076993271708, 0.01459563709795475, -0.005906074773520231, 0.01908305287361145, 0.02716352604329586, -0.007519216742366552, 0.03397011384367943, 0.003776293247938156, -0.020483382046222687, 0.025411441922187805, 0.01738814450800419, 0.03147275000810623, -0.10526688396930695, -0.007021824363619089, 0.008698035962879658, -0.004201640374958515, -0.018038196489214897, 0.8609710931777954, -0.01164976879954338, 0.025150202214717865, 0.04199368506669998, -0.002165679121389985, 0.01009238138794899, -0.007101265713572502, 0.01820303685963154, -0.014787602238357067, 0.022195594385266304, -0.0053697675466537476, 0.019436189904808998, 0.016623608767986298, 0.010852006264030933, -0.018327226862311363, 0.01775006763637066, -0.02621510438621044, 0.009182869456708431, -0.0014090848853811622, -0.019938098266720772, -0.014969244599342346, 0.022473055869340897, -0.0031917111482471228, 0.002727873157709837, -0.01397829782217741, 0.035477589815855026, -0.18528467416763306, -0.0027368697337806225, -8.45418769720854e-33, 0.05508022382855415, -0.028521914035081863, 0.005845956038683653, 0.0048340181820094585, 0.035764943808317184, 0.011187400668859482, 0.0545281320810318, 0.04600754380226135, -0.03228697553277016, -0.014141601510345936, -0.0030941562727093697, -0.006872446741908789, 0.024556588381528854, -0.03390572965145111, 0.029523460194468498, 0.004057489335536957, 0.00010493615263840184, 0.0317964032292366, -0.0024257111363112926, 0.023572498932480812, 0.008906606584787369, 0.030799932777881622, 0.00290017481893301, -0.0025294877123087645, 0.01305454783141613, 0.004694510716944933, -0.009725591167807579, 0.005201669409871101, 0.022106172516942024, -0.03278599679470062, -0.01454197522252798, 0.015482804737985134, -0.019990915432572365, -0.00865913089364767, -0.011563127860426903, -0.0240019578486681, -0.0008610785589553416, -0.0029283412732183933, -0.007405642885714769, -0.009221753105521202, -0.027063338086009026, -0.009289017878472805, -0.036788977682590485, -0.042147476226091385, -0.004399945493787527, -0.010129962116479874, 0.006826597265899181, 0.021111832931637764, -0.005614376161247492, -0.013424169272184372, 0.020242003723978996, 0.006642495281994343, 0.015001234598457813, 0.015392857603728771, -0.01856924220919609, 0.014664271846413612, -0.013472341001033783, 0.020768599584698677, 0.03966273367404938, 0.01463512796908617, 0.008990980684757233, 0.003970201592892408, -0.02258978970348835, 0.026202527806162834, -0.00048263228381983936, -0.006563814356923103, 0.02594059705734253, -0.006262787617743015, 0.03875325247645378, -0.014578534290194511, -0.03968688100576401, -0.011812879703938961, -0.012942781671881676, -0.019792452454566956, 0.004058123100548983, -0.011934076435863972, -0.015681851655244827, 0.015024482272565365, 0.003418638836592436, 0.043021053075790405, 0.010393490083515644, -0.021216753870248795, -0.013662878423929214, -0.04543169215321541, -0.018178287893533707, 0.01057673990726471, 0.00907108187675476, -0.005750772077590227, -0.048644665628671646, 0.039653509855270386, 0.021154362708330154, -0.004725990816950798, 0.018820175901055336, 0.004876264836639166, -0.006881841458380222, 8.245025375211006e-33, 0.01738259755074978, -0.01553023885935545, -0.013851875439286232, 0.0029262960888445377, 0.0549466609954834, -0.022048505023121834, 0.020675159990787506, -0.0034733128268271685, -0.06952336430549622, 0.02616487815976143, 0.0015430842759087682, 0.016464773565530777, -0.026604751124978065, 0.008485971949994564, 0.014334376901388168, -0.024652762338519096, 0.035109199583530426, -0.04562563821673393, 0.020606502890586853, 0.014273611828684807, 0.029603099450469017, 0.011539863422513008, 0.0014196200063452125, 0.011730778031051159, 0.023403186351060867, 0.04287463054060936, -0.031004639342427254, 0.01359775010496378, -0.005481521133333445, -0.003718423889949918, -0.010408406145870686, 0.015673454850912094, 0.007056098897010088, -0.05781906470656395, -0.04995979368686676, 0.0012822865974158049, -0.012197868898510933, -0.010879920795559883, 0.041845910251140594, -0.004720758181065321, 0.01081676222383976, 0.0017886960413306952, -0.0008234186097979546, 0.018328696489334106, 0.033967480063438416, 0.012874570675194263, -0.028854886069893837, -0.010472598485648632, -0.012402776628732681, 0.01833959110081196, 0.009875073097646236, 0.009340076707303524, 0.02745707891881466, -0.01981206424534321, 0.017523758113384247, -0.023322952911257744, -0.049172524362802505, -0.008536793291568756, 0.002269081538543105, 0.021679533645510674, 0.0023873283062130213, 0.0005085660377517343, -0.042415961623191833, 0.03860357031226158, -0.05605238303542137, 0.03409762680530548, -0.024658361449837685, 0.026764003559947014, 0.001428963034413755, -0.008338061161339283, -0.052682023495435715, 0.021573930978775024, -0.0036524301394820213, 0.03332425653934479, 0.023705843836069107, -0.042770009487867355, -0.004311684984713793, -0.014908132143318653, 0.016795093193650246, 0.04905514419078827, 0.0005664016352966428, 0.015262618660926819, 0.01704568788409233, -0.01872687228024006, -0.02992675080895424, 0.020665764808654785, 0.003632977372035384, 0.03629479184746742, -0.030387546867132187, -0.005608053877949715, -0.036519721150398254, -0.02497023530304432, 0.0029658533167093992, -0.013060903176665306, 0.022519145160913467, -1.3643123075723906e-8, 0.0061226291581988335, 0.04446285963058472, 0.004098593723028898, -0.01114287693053484, 0.0058287568390369415, 0.006279486697167158, -0.016795506700873375, 0.004996181931346655, 0.014810041524469852, 0.01165834255516529, 0.03346533328294754, -0.01069032121449709, -0.010861288756132126, 0.05446299538016319, 0.0010043600341305137, -0.025133952498435974, -0.003103100461885333, -0.017272118479013443, 0.01776549592614174, -0.011213045567274094, 0.02677183970808983, 0.02252276800572872, 0.004148316103965044, -0.005656450986862183, 0.025898976251482964, 0.01313253864645958, -0.005372430197894573, -0.08957164734601974, -0.002760072238743305, 0.03484530746936798, -0.01362786628305912, -0.026379326358437538, -0.03481797128915787, 0.0218149833381176, -0.00212299101985991, -0.039586495608091354, 0.009856349788606167, 0.000576636812184006, 0.04435936361551285, 0.0052758557721972466, -0.007679390255361795, 0.00842050276696682, 0.000795504602137953, -0.028720520436763763, -0.02051996998488903, 0.0044249012134969234, -0.019700486212968826, 0.01970459520816803, -0.009680157527327538, -0.042049407958984375, 0.021089717745780945, -0.007734835613518953, -0.008391376584768295, 0.012246150523424149, 0.02119540236890316, 0.01309945061802864, 0.003025558078661561, -0.016665276139974594, -0.02581024542450905, -0.002397939097136259, 0.004757992457598448, 0.029842272400856018, -0.022941729053854942, -0.01840342953801155 ]
coding-shared-libraries
https://markhneedham.com/blog/2010/02/26/coding-shared-libraries
false
2010-02-21 12:01:22
C#: Overcomplicating with LINQ
[ "c", "net" ]
[ ".NET" ]
I recently came across an interesting bit of code which was going through a collection of strings and then only taking the first 'x' number of characters and discarding the rest. The code looked roughly like this: [source,csharp] ---- var words = new[] {"hello", "to", "the", "world"}; var newWords = new List<string>(); foreach (string word in words) { if (word.Length > 3) { newWords.Add(word.Substring(0, 3)); continue; } newWords.Add(word); } ---- For this initial collection of words we would expect 'newWords' to contain ["hel", "to", "the", "wor"] In a way it's quite annoying that the API for 'Substring' throws an exception if you try and get just the first 3 characters of a string which contains less than 3 characters. If it didn't do that then we would have an easy 'Select' call on the collection. Instead we have an annoying if statement which stops us from treating the collection as a whole - we do two different things depending on whether or not the string contains more than 3 characters. In the spirit of the http://www.markhneedham.com/blog/2010/01/20/functional-collectional-parameters-some-thoughts/#comment-30627[transformational mindset] I tried to write some code using functional collection parameters which didn't make use of an if statement. Following this idea we pretty much have to split the collection into two resulting in this initial attempt: [source,csharp] ---- var newWords = words .Where(w => w.Length > 3) .Select(w => w.Substring(0, 3)) .Union(words.Where(w => w.Length <= 3).Select(w => w)); ---- This resulted in a collection containing ["hel", "wor", "to", "the"] which is now in a different order to the original! To keep the original order I figured that we needed to keep track of the original index position of the words, resulting in this massively overcomplicated version: [source,csharp] ---- var wordsWithIndex = words.Select((w, index) => new { w, index }); var newWords = wordsWithIndex .Where(a => a.w.Length >= 3) .Select((a, index) => new {w = a.w.Substring(0, 3), a.index}) .Union(wordsWithIndex.Where(a => a.w.Length < 3).Select(a => new { a.w, a.index })) .OrderBy(a => a.index); ---- We end up with a collection of anonymous types from which we can get the transformed words but it's a far worse solution than any of the others because it takes way longer to understand what's going on. I couldn't see a good way to make use of functional collection parameters to solve this problem but luckily at this stage http://enginechris.wordpress.com/[Chris Owen] came over and pointed out that we could just do this: [source,csharp] ---- var newWords = words.Select(w => w.Length > 3 ? w.Substring(0, 3) : w); ---- I'd been trying to avoid doing what is effectively an if statement inside a 'Select' but I think in this case it makes a lot of sense and results in a simple and easy to read solution.
null
null
[ -0.01494285836815834, -0.0447167232632637, -0.018132876604795456, 0.03015114925801754, 0.06406925618648529, 0.0052306135185062885, 0.017080796882510185, 0.027747882530093193, -0.012365342117846012, -0.01181686483323574, -0.029583435505628586, 0.027405399829149246, -0.08647759258747101, 0.010769994929432869, -0.014459406957030296, 0.06787077337503433, 0.07063810527324677, -0.040513429790735245, 0.022441865876317024, -0.02266629785299301, 0.0036180741153657436, 0.06489851325750351, -0.000911109265871346, 0.01841559447348118, 0.02422185242176056, 0.036960724741220474, -0.03853312507271767, -0.008794368244707584, -0.04748641699552536, 0.0029944870620965958, 0.03587916120886803, 0.031065503135323524, 0.0038258961867541075, -0.0067284260876476765, 0.013701352290809155, -0.053265530616045, -0.023775586858391762, 0.0011380196083337069, 0.004392102360725403, 0.02225787378847599, -0.0700158104300499, 0.01240723580121994, -0.011408723890781403, 0.004098914563655853, -0.03280076012015343, -0.00604624068364501, -0.06472157686948776, -0.004793260246515274, -0.06352105736732483, -0.0008559682755731046, -0.04027732461690903, 0.016944507136940956, -0.042084839195013046, -0.0035644611343741417, -0.004745315760374069, 0.0627233013510704, 0.005400084424763918, -0.061786387115716934, 0.01535656675696373, -0.04729849100112915, 0.013573133386671543, -0.03594641387462616, -0.0017838948406279087, 0.04813234135508537, 0.021302321925759315, -0.015864064916968346, -0.016040118411183357, 0.06738501787185669, -0.03846471384167671, -0.022820502519607544, -0.013203234411776066, 0.031200606375932693, -0.013224640861153603, -0.017789889127016068, 0.00308832130394876, -0.051368601620197296, -0.011981810443103313, 0.031117459759116173, 0.016834618523716927, 0.0763428807258606, -0.03603998199105263, 0.062080707401037216, 0.05853201448917389, 0.005831435322761536, 0.013788659125566483, -0.02547883614897728, -0.049842409789562225, 0.009138586930930614, -0.012418168596923351, 0.03755028545856476, 0.004500319249927998, -0.034060604870319366, 0.008654833771288395, 0.02345537208020687, -0.0003582112258300185, 0.0059174783527851105, -0.01584373600780964, -0.016881516203284264, -0.02988915704190731, 0.016635557636618614, -0.04767569154500961, -0.01951795257627964, 0.04152350500226021, -0.01849883235991001, -0.0685398206114769, 0.00942113809287548, -0.013102042488753796, 0.013925102539360523, 0.03903239592909813, 0.012436787597835064, -0.04261568933725357, 0.005036590620875359, -0.03712650015950203, 0.01598515175282955, -0.07018064707517624, 0.021060220897197723, 0.01666347123682499, 0.015802906826138496, 0.0007515878533013165, 0.02336116135120392, 0.053759388625621796, 0.021080907434225082, 0.012083559297025204, 0.07807165384292603, -0.0014558732509613037, 0.0071573625318706036, 0.010130411013960838, 0.06788227707147598, -0.0025421453174203634, -0.08759711682796478, -0.014766144566237926, 0.0536404512822628, -0.00948281865566969, -0.007473733276128769, -0.007513526361435652, -0.004964115098118782, -0.03706669434905052, 0.008859668858349323, 0.04391869530081749, 0.018139835447072983, -0.02336101233959198, -0.03304390236735344, 0.005059708841145039, -0.028737975284457207, -0.006232173182070255, 0.017375025898218155, -0.03341027349233627, 0.0018097186693921685, -0.010159799829125404, 0.02850501611828804, 0.013722660951316357, 0.05986000970005989, 0.043719466775655746, -0.02001359686255455, -0.007289591711014509, 0.06515868008136749, -0.008257281966507435, 0.01785466820001602, 0.0026594384107738733, 0.02382047288119793, 0.03671473264694214, 0.03643786907196045, -0.017398694530129433, 0.06022056192159653, 0.0071585034020245075, 0.004495078697800636, 0.001144974841736257, 0.05897766724228859, -0.036965444684028625, -0.010184118524193764, -0.06439117342233658, -0.024244047701358795, 0.04379372298717499, -0.05811148136854172, -0.020871493965387344, 0.007585963234305382, 0.06202906742691994, 0.018525509163737297, 0.04568110778927803, 0.014164931140840054, -0.06443370133638382, 0.022577805444598198, -0.003538765013217926, 0.026484236121177673, 0.0338282436132431, -0.0012923582689836621, 0.06266875565052032, 0.03942951187491417, 0.00862669013440609, -0.0058126142248511314, -0.0666423887014389, -0.07120920717716217, -0.04711103066802025, 0.006198564078658819, 0.06271546334028244, -0.025510374456644058, -0.008545029908418655, 0.07411514967679977, 0.004169316962361336, 0.036297447979450226, 0.039175860583782196, -0.013259554281830788, 0.01247923169285059, -0.02213357202708721, -0.034928303211927414, 0.045322857797145844, 0.033682938665151596, -0.030274689197540283, -0.04293172433972359, 0.016826439648866653, -0.015219259075820446, 0.026343775913119316, 0.02437089942395687, -0.02783452346920967, 0.06627494841814041, 0.016234472393989563, 0.055276669561862946, -0.02194964326918125, 0.04643383249640465, -0.09503620117902756, 0.03269447758793831, 0.020288098603487015, 0.007748542819172144, -0.0217063520103693, -0.015749823302030563, 0.12988105416297913, 0.04324151948094368, -0.03257403522729874, -0.046429771929979324, -0.01823384501039982, -0.004707615822553635, -0.035000842064619064, -0.011322494596242905, -0.021445073187351227, -0.01140520814806223, 0.024155225604772568, -0.05054466053843498, -0.01870344765484333, 0.01342913880944252, -0.042373575270175934, 0.0037388496566563845, 0.0655268207192421, -0.02288544364273548, 0.05983753502368927, 0.03483131527900696, -0.022252270951867104, 0.00970440823584795, -0.027932070195674896, -0.030837273225188255, -0.019289473071694374, 0.022585054859519005, -0.0014666598290205002, 0.041387688368558884, -0.011665422469377518, -0.028987225145101547, 0.005966535769402981, -0.055851876735687256, -0.000798634544480592, 0.03342481702566147, 0.06733901053667068, -0.021036354824900627, 0.05655863881111145, 0.0026869631838053465, -0.0293896421790123, -0.0266690943390131, -0.04831797257065773, 0.0002816281921695918, 0.00972736906260252, 0.03104519098997116, 0.0294171255081892, 0.012351754121482372, 0.02868548221886158, 0.0017732793930917978, 0.006452973932027817, -0.04546709358692169, -0.009051323868334293, 0.06109091639518738, -0.03413449227809906, -0.05458775907754898, -0.039314307272434235, -0.037257157266139984, 0.03757832571864128, -0.04786229506134987, -0.053067322820425034, -0.014578685164451599, -0.05600503459572792, 0.07360906153917313, -0.07179970294237137, -0.0641448125243187, 0.009413521736860275, 0.01592782326042652, 0.028545519337058067, -0.028705241158604622, 0.00332850543782115, 0.07739304006099701, -0.0030344552360475063, 0.00951479747891426, 0.029542047530412674, 0.017860047519207, 0.00580638600513339, -0.01884273625910282, 0.025167174637317657, 0.050667904317379, -0.009237730875611305, -0.02094973623752594, -0.06014642119407654, 0.01109499391168356, 0.01136590912938118, -0.27156761288642883, 0.04230751097202301, -0.034694962203502655, -0.031169503927230835, 0.04466773569583893, 0.002464504214003682, 0.04074058681726456, -0.04503835365176201, 0.0035262685269117355, 0.05247899144887924, -0.020487571135163307, -0.028265826404094696, -0.026961034163832664, 0.05423726886510849, 0.017611712217330933, 0.014720167964696884, -0.03195028007030487, -0.028574170544743538, -0.015953263267874718, 0.059557944536209106, 0.0022204669658094645, -0.0657392293214798, 0.0014583226293325424, 0.0698428750038147, 0.037112168967723846, 0.07592908293008804, -0.06854728609323502, 0.030793361365795135, -0.028787827119231224, 0.0036976009141653776, -0.00734506594017148, 0.0048444513231515884, 0.02214118093252182, -0.05399683490395546, -0.027695635333657265, -0.03482621908187866, 0.009275457821786404, 0.008398646488785744, -0.006304262671619654, 0.0352102592587471, -0.02855544537305832, -0.06350347399711609, 0.005538908764719963, -0.00006828216282883659, 0.0640290305018425, 0.0011688248487189412, -0.04798266664147377, -0.019107334315776825, -0.04243018850684166, 0.06566043198108673, -0.005928750615566969, -0.05044374614953995, -0.00035098945954814553, 0.054822199046611786, -0.01740582287311554, -0.022976409643888474, -0.0024674050509929657, 0.017038147896528244, -0.05463968962430954, -0.03955986723303795, -0.005828383844345808, -0.0670347660779953, 0.001483417465351522, -0.016605008393526077, -0.0031160321086645126, -0.06059449538588524, -0.03898366540670395, 0.007342603988945484, 0.07571417838335037, 0.0342402458190918, 0.003907797392457724, 0.0007476822938770056, 0.0287401732057333, -0.10657715052366257, -0.008435992524027824, -0.02741224132478237, -0.045371636748313904, -0.022524718195199966, 0.005527216475456953, 0.025884386152029037, -0.04490106552839279, -0.02921362780034542, 0.023260867223143578, 0.0342269241809845, 0.01629568077623844, -0.041607167571783066, 0.03316318616271019, -0.01426707860082388, -0.040377188473939896, 0.011183473281562328, 0.060762662440538406, -0.0062907543033361435, -0.004696379881352186, -0.023641418665647507, 0.01659875363111496, 0.03387635946273804, 0.020182497799396515, 0.00295882485806942, 0.010670118033885956, 0.025644516572356224, 0.08369411528110504, -0.059774719178676605, 0.033002130687236786, -0.04804965853691101, -0.01575974002480507, -0.006268669851124287, -0.05207516998052597, 0.009539361111819744, 0.05704651027917862, 0.00646557379513979, 0.005969287361949682, -0.02059818245470524, 0.02301851287484169, -0.05346587672829628, -0.005311395041644573, -0.034506797790527344, 0.01719593070447445, 0.006927280221134424, 0.014219783246517181, -0.027146169915795326, -0.04587339609861374, 0.023418694734573364, 0.02259973995387554, -0.01352695282548666, -0.07120338827371597, -0.06086502969264984, -0.00480378745123744, 0.0017560453852638602, -0.019100617617368698, 0.002812871942296624, -0.03787587210536003, 0.008761887438595295, -0.009513282217085361, -0.03978528082370758, 0.03785880282521248, -0.008639485575258732, -0.010777291841804981, -0.04866018891334534, -0.04207341745495796, 0.005786092020571232, -0.004164683632552624, -0.01772317849099636, 0.014371532946825027, 0.029407622292637825, 0.04495006427168846, 0.007506154011934996, 0.03895168751478195, 0.0027663817163556814, -0.003189277835190296, 0.019344687461853027, -0.017240682616829872, -0.06247122213244438, 0.029147930443286896, -0.023448875173926353, -0.022065237164497375, -0.030019959434866905, 0.04029564931988716, -0.024995358660817146, -0.014314282685518265, -0.053188689053058624, 0.03229450061917305, -0.04126427695155144, -0.02682643011212349, -0.03428921476006508, 0.006528903264552355, 0.03825164958834648, -0.027355166152119637, 0.060581550002098083, -0.028579749166965485, 0.0014061880065128207, 0.026850158348679543, 0.02611583285033703, -0.009506843984127045, 0.022312460467219353, 0.0008252110565081239, -0.01623651012778282, -0.004399870987981558, 0.014154486358165741, 0.016418101266026497, 0.0303678959608078, 0.01694767363369465, -0.0005202238680794835, 0.033142246305942535, 0.0010193007765337825, 0.06025058031082153, 0.033503759652376175, 0.01227414608001709, -0.009953588247299194, -0.045958444476127625, -0.015052292495965958, -0.059395890682935715, -0.02119695395231247, -0.01345415972173214, 0.031987790018320084, -0.04912208393216133, -0.06532058864831924, 0.01639033481478691, 0.02263043448328972, 0.008313407190144062, 0.01186693087220192, 0.021027158945798874, -0.0017361253267154098, -0.0230345968157053, 0.00310575682669878, 0.04660246521234512, -0.03715281933546066, 0.02042541280388832, -0.019097167998552322, 0.0008724344079382718, 0.037243980914354324, 0.01836889423429966, -0.052745431661605835, -0.0031577206682413816, -0.03811335936188698, 0.01645464263856411, -0.009130899794399738, -0.03540969640016556, -0.021264979615807533, 0.02373262122273445, -0.034617844969034195, -0.02611418254673481, -0.024636615067720413, -0.007885821163654327, -0.021055178716778755, -0.002076723612844944, 0.018591124564409256, -0.036447376012802124, -0.045878708362579346, 0.027235472574830055, -0.03989427164196968, 0.009250988252460957, -0.019978275522589684, 0.035502079874277115, 0.03223411738872528, -0.008521147072315216, -0.030454445630311966, -0.060152567923069, 0.004505839664489031, -0.005360989365726709, 0.06489446759223938, -0.0010973596945405006, -0.015888577327132225, -0.011166173964738846, -0.01620224490761757, -0.03313282132148743, 0.01992989331483841, -0.00442202715203166, -0.033664967864751816, 0.009580345824360847, 0.04297378286719322, 0.007394568994641304, 0.022416500374674797, -0.006862862966954708, -0.014894675463438034, 0.0639343336224556, -0.01541014201939106, 0.011138186790049076, -0.033428847789764404, -0.05540408194065094, 0.01446544285863638, 0.007059984840452671, 0.02397877350449562, -0.026342591270804405, 0.041779257357120514, 0.045416031032800674, 0.04349294677376747, 0.046733077615499496, 0.0017648573266342282, 0.03754909709095955, -0.012796576134860516, 0.011428211815655231, -0.06981686502695084, -0.0018593418644741178, 0.0384918749332428, 0.021305792033672333, -0.019559890031814575, -0.046956513077020645, -0.031990986317396164, 0.024286525323987007, -0.05156812444329262, -0.011257326230406761, 0.012348609045147896, -0.021137405186891556, 0.013002661988139153, 0.027224315330386162, -0.03797180950641632, 0.016919465735554695, 0.02257673442363739, -0.020788367837667465, -0.028821179643273354, -0.033706940710544586, 0.07064682245254517, 0.012569244019687176, 0.004041680134832859, -0.020547188818454742, -0.00945637933909893, 0.04679165408015251, 0.027477813884615898, 0.03007921203970909, 0.07760966569185257, -0.06445786356925964, 0.025923701003193855, 0.04225549474358559, -0.03547067195177078, -0.04318827763199806, -0.0006411013309843838, -0.015237119048833847, -0.05112030357122421, -0.023516574874520302, 0.015785424038767815, -0.018993159756064415, -0.03966415673494339, 0.0659143254160881, 0.017821194604039192, -0.007476698607206345, -0.06718328595161438, 0.004425947554409504, -0.03202375769615173, -0.016974469646811485, -0.026519129052758217, 0.011357390321791172, -0.018979525193572044, 0.07709552347660065, 0.028121771290898323, 0.008634372614324093, 0.07579522579908371, -0.038559380918741226, 0.005682446528226137, -0.011191947385668755, 0.07361842691898346, 0.09097355604171753, 0.04019594565033913, -0.019186921417713165, 0.05874606966972351, -0.047387998551130295, -0.04227546229958534, -0.0014762621140107512, -0.03924435377120972, 0.017076997086405754, -0.013683819212019444, 0.008041664026677608, 0.06935866177082062, 0.014188665896654129, 0.06783078610897064, -0.05015607550740242, -0.014519551768898964, -0.005886815953999758, 0.03255482017993927, 0.00968169141560793, 0.02730347029864788, 0.014176394790410995, 0.0031617912463843822, 0.01829177886247635, -0.03679519146680832, 0.05711740255355835, -0.00007436336454702541, -0.011070698499679565, 0.03175535798072815, 0.0008906499133445323, -0.008608139120042324, 0.0047787148505449295, 0.04648929834365845, 0.0801842138171196, -0.019239583984017372, -0.013782469555735588, -0.0004394103307276964, 0.025377804413437843, 0.025602120906114578, -0.022566435858607292, -0.010244613513350487, -0.006010358687490225, -0.005776713136583567, 0.0043702987022697926, -0.025210730731487274, -0.01910974271595478, -0.021673699840903282, 0.030827773734927177, -0.018419725820422173, 0.03452102467417717, 0.013028108514845371, 0.02509942650794983, -0.03400483727455139, -0.03154025971889496, -0.0416528657078743, -0.03915911167860031, -0.06920439749956131, -0.007128130178898573, 0.024753056466579437, -0.0016373259713873267, -0.02662568911910057, 0.00510468240827322, -0.012229088693857193, -0.007472660392522812, 0.0450260229408741, -0.004971132148057222, -0.026212217286229134, 0.014037935063242912, 0.023834049701690674, 0.047464851289987564, 0.05393572524189949, 0.023860523477196693, -0.030839240178465843, -0.002702475292608142, -0.03575438633561134, -0.02583751641213894, 0.0781165361404419, 0.028963696211576462, 0.011931630782783031, -0.09301195293664932, 0.02591308020055294, 0.004951792303472757, 0.003367616329342127, -0.07771828025579453, -0.002550409408286214, 0.0064966753125190735, -0.016918256878852844, 0.03360296040773392, -0.011576111428439617, -0.03076174668967724, -0.041101690381765366, -0.012456774711608887, 0.0203193761408329, 0.0006624450325034559, 0.04998326301574707, -0.046554479748010635, 0.05204785242676735, 0.0034524472430348396, -0.001099279848858714, -0.04767700284719467, 0.020771631971001625, -0.013059832155704498, 0.016189057379961014, -0.04060187563300133, -0.0414392352104187, -0.03355766832828522, -0.046710554510354996, 0.026849597692489624, 0.016954999417066574, -0.02526644989848137, -0.04251399636268616, 0.028612755239009857, 0.052089300006628036, -0.0913332998752594, 0.03215519338846207, -0.004926105495542288, 0.027861017733812332, -0.018051113933324814, -0.026364276185631752, -0.007376585155725479, 0.030200427398085594, 0.012446902692317963, 0.017229890450835228, 0.02514464221894741, -0.019398817792534828, -0.015203253366053104, 0.001358556910417974, 0.00480266660451889, 0.03735684975981712, -0.03183947876095772, 0.03534746170043945 ]
[ -0.09758585691452026, -0.023094935342669487, -0.0388411283493042, -0.0032219348940998316, 0.03753024339675903, -0.043701041489839554, -0.014613645151257515, 0.011816381476819515, 0.02948928251862526, -0.018747514113783836, 0.0048481919802725315, -0.019032882526516914, -0.0043425774201750755, -0.0014073783531785011, 0.039562929421663284, 0.008480849675834179, -0.036057859659194946, -0.07261441648006439, -0.06326138973236084, 0.0449194610118866, 0.053551360964775085, 0.014594919048249722, -0.023359430953860283, -0.04345884546637535, 0.01623554155230522, 0.05605679377913475, 0.031109685078263283, -0.06370723992586136, 0.006992466747760773, -0.21327991783618927, -0.021992255002260208, -0.02661437913775444, 0.03605026751756668, -0.002839290304109454, 0.006357281934469938, 0.040820617228746414, 0.008234155364334583, 0.03708500415086746, -0.008796093985438347, 0.06853940337896347, 0.002861148677766323, 0.034015949815511703, -0.053123436868190765, -0.008371900767087936, 0.03508789464831352, -0.015815218910574913, -0.04690397530794144, -0.02883106842637062, -0.024599576368927956, 0.03556133434176445, -0.0694735199213028, -0.01816423609852791, -0.027022715657949448, -0.011726569384336472, -0.021437235176563263, 0.05001142993569374, 0.023846201598644257, 0.055508047342300415, -0.006657193414866924, 0.009763986803591251, 0.00865592248737812, -0.02072814293205738, -0.11016333103179932, 0.09165577590465546, 0.004454394802451134, 0.0718439370393753, -0.007252756506204605, -0.013631719164550304, -0.033413246273994446, 0.08620614558458328, 0.02468438260257244, -0.020051337778568268, -0.03291444480419159, 0.08019349724054337, 0.0071275923401117325, -0.0235104039311409, -0.0026480674277991056, 0.007882000878453255, 0.05513288080692291, -0.003626330755650997, -0.03819306194782257, -0.041072871536016464, 0.024379167705774307, -0.013651230372488499, -0.03044990450143814, 0.007012319751083851, -0.027325782924890518, 0.02271011844277382, 0.010226861573755741, 0.010338550433516502, 0.0649043545126915, -0.045701947063207626, 0.03354412317276001, 0.029868753626942635, -0.08952917903661728, -0.02499883994460106, -0.018299750983715057, 0.014929929748177528, -0.014179818332195282, 0.4267461895942688, -0.011652830056846142, -0.015241040848195553, 0.04370315000414848, 0.0019261501729488373, -0.008593641221523285, -0.0026633520610630512, 0.0008780350908637047, -0.03980662301182747, 0.004003793001174927, -0.08155999332666397, -0.0071308426558971405, -0.02618437074124813, 0.053268913179636, -0.054956626147031784, -0.001867939718067646, 0.02585197053849697, 0.03788577765226364, -0.01395726203918457, -0.00509085925295949, 0.016329949721693993, -0.01604989543557167, -0.003419353161007166, -0.004954217001795769, 0.01577501744031906, 0.007851500064134598, 0.0030745791736990213, 0.04780014231801033, 0.06762097775936127, 0.04271073639392853, 0.026593293994665146, 0.04806775599718094, -0.03527628257870674, -0.07362116128206253, -0.0014963444555178285, -0.018095914274454117, 0.011322373524308205, 0.04533854126930237, -0.009206674061715603, 0.02237233705818653, 0.00936309527605772, 0.010904009453952312, -0.05250893533229828, -0.009977397508919239, 0.004740043543279171, -0.04565420001745224, 0.10778862237930298, -0.028713785111904144, -0.033898040652275085, -0.03285074979066849, -0.01296806801110506, 0.00754232844337821, 0.04613085836172104, -0.0051052807830274105, -0.06973244249820709, -0.005123135633766651, 0.013635988347232342, 0.07749632745981216, -0.044275444000959396, -0.030849821865558624, -0.02873384766280651, -0.02484600618481636, -0.0013025477528572083, -0.04642254486680031, 0.02431391179561615, 0.02961360104382038, -0.05996467545628548, -0.03758450224995613, 0.006073786877095699, 0.009601479396224022, -0.07410147786140442, 0.01223289966583252, -0.00046200756332837045, -0.06651601195335388, 0.020811453461647034, 0.017623528838157654, -0.012297580949962139, -0.04205450043082237, -0.0020675661507993937, 0.033023398369550705, 0.0199006088078022, -0.013206297531723976, 0.024161014705896378, -0.06397977471351624, 0.024770306423306465, -0.0147585803642869, -0.09483581781387329, -0.04701989144086838, 0.005643225274980068, 0.008799002505838871, 0.0038402890786528587, -0.007116758264601231, -0.035216204822063446, -0.05404585972428322, 0.055171556770801544, -0.04139615222811699, -0.009633157402276993, 0.038738369941711426, 0.009196484461426735, -0.007821816019713879, -0.015166079625487328, 0.06147826462984085, 0.039340075105428696, 0.014550850726664066, 0.032048992812633514, -0.034576624631881714, 0.0257949810475111, 0.064669668674469, -0.06410453468561172, 0.054530177265405655, 0.0029532297048717737, -0.05482826009392738, -0.007435400504618883, -0.0017215441912412643, 0.03586246818304062, 0.0010106193367391825, -0.05570894479751587, -0.00981487799435854, 0.0013614707859233022, 0.05477886274456978, 0.015280909836292267, -0.06622573733329773, -0.08340463042259216, -0.004667413420975208, -0.34363487362861633, -0.016342394053936005, 0.010018900968134403, -0.010781822726130486, 0.01647034101188183, -0.05161763355135918, 0.00807784590870142, -0.02294556424021721, -0.030052369460463524, 0.0018863973673433065, 0.035787057131528854, -0.02534230425953865, 0.01056469976902008, -0.07405631244182587, 0.007172219920903444, 0.04388005658984184, -0.02624056674540043, -0.03278156369924545, -0.008411816321313381, 0.031409572809934616, -0.004293067380785942, -0.0008689743699505925, -0.013446401804685593, -0.05601029098033905, -0.019550208002328873, -0.032877083867788315, 0.11968764662742615, 0.023659178987145424, 0.05766342207789421, -0.050120413303375244, 0.06323917955160141, -0.01839388720691204, 0.01674979366362095, -0.04080929234623909, -0.007242576684802771, -0.012904328294098377, -0.04740546643733978, 0.00492046819999814, 0.025452373549342155, 0.008731887675821781, -0.0388183556497097, 0.010888340882956982, -0.060509711503982544, -0.013744339346885681, -0.0025741213466972113, -0.009693188592791557, -0.029474522918462753, -0.03861473500728607, 0.018938913941383362, 0.08557593822479248, 0.014703972265124321, 0.007470980286598206, 0.02673541195690632, 0.04207427054643631, 0.0017814245074987411, -0.014162088744342327, -0.08476842939853668, -0.00676043750718236, -0.0038525969721376896, -0.013165406882762909, 0.031611982733011246, 0.027030862867832184, 0.03330284357070923, -0.026864711195230484, -0.029177920892834663, 0.019937649369239807, 0.011156472377479076, 0.00938211940228939, 0.025625942274928093, -0.04809396341443062, -0.05261266231536865, 0.1017959788441658, 0.02666565775871277, -0.004663444589823484, 0.007126405835151672, 0.07504940778017044, -0.04851853847503662, -0.011567803099751472, 0.009748576208949089, -0.007889305241405964, 0.024669358506798744, 0.0009211018332280219, 0.054435860365629196, -0.009853887371718884, -0.0009328441228717566, 0.07652013748884201, 0.0023604482412338257, 0.022803448140621185, 0.05472424998879433, -0.007148214615881443, -0.012301638722419739, 0.0037350421771407127, 0.00537883210927248, -0.06271909922361374, 0.03429101034998894, -0.02455473504960537, -0.27633386850357056, 0.035740114748477936, 0.08336228877305984, 0.05631374940276146, 0.003217675955966115, 0.04722047969698906, 0.022308573126792908, -0.0648239254951477, 0.017217980697751045, 0.029824646189808846, 0.008314738050103188, 0.0458204559981823, -0.013335421681404114, -0.02815263904631138, 0.009031912311911583, -0.010606798343360424, 0.05740197375416756, 0.006053599528968334, 0.030928947031497955, 0.024046752601861954, 0.038550544530153275, 0.0015928030479699373, 0.19925543665885925, 0.015610449947416782, 0.005443597212433815, -0.0004572788893710822, 0.016086570918560028, 0.03198004513978958, 0.05812039226293564, 0.03199221193790436, 0.008485986851155758, 0.003157176310196519, 0.09700450301170349, -0.00441116513684392, 0.023969741538167, -0.05907732993364334, -0.019562268629670143, 0.03198747709393501, 0.045191001147031784, -0.03218206390738487, -0.032714806497097015, 0.02234041877090931, -0.06295966356992722, 0.012007853016257286, 0.08871222287416458, 0.03327405825257301, 0.021778402850031853, -0.01572009176015854, -0.04973381385207176, 0.013075179420411587, -0.0372636578977108, 0.0025851414538919926, 0.009096430614590645, -0.02555117756128311, 0.019212529063224792, 0.03911803662776947, 0.012108647264540195, -0.04114528372883797, -0.0062347413040697575, 0.015179617330431938, -0.009933038614690304, -0.018612157553434372, 0.09646850824356079, 0.018687954172492027, 0.03011370822787285 ]
[ -0.0062646460719406605, 0.02704755775630474, -0.03335108235478401, 0.04093962907791138, -0.036172010004520416, -0.006480371113866568, -0.005047865677624941, -0.007312689907848835, 0.02040047198534012, -0.019343331456184387, -0.02198631688952446, -0.024500185623764992, 0.026062622666358948, -0.022644909098744392, 0.027435041964054108, 0.00508543848991394, -0.00496293231844902, -0.025774532929062843, 0.01478761900216341, -0.021311793476343155, -0.001957635162398219, 0.040737688541412354, 0.03178445249795914, -0.022174803540110588, 0.008784743957221508, 0.040413159877061844, -0.018658515065908432, -0.004703852813690901, 0.02076439931988716, -0.12049297243356705, -0.038152776658535004, -0.039412178099155426, 0.0007968366262502968, 0.010996638797223568, 0.012438070960342884, -0.005885805934667587, 0.0004657840181607753, 0.006968181114643812, 0.005460520274937153, -0.0054400586523115635, -0.051810942590236664, 0.022442549467086792, -0.02342020720243454, 0.025549232959747314, -0.01315987203270197, 0.00037127791438251734, -0.04103468731045723, -0.0020768644753843546, -0.0013794692931696773, -0.0007268282352015376, -0.024610724300146103, -0.0056557683274149895, -0.008144439198076725, 0.027551302686333656, 0.021005524322390556, -0.022019634023308754, -0.028968213126063347, -0.026351727545261383, 0.0037905205972492695, -0.003058838192373514, 0.004812752828001976, -0.04879433289170265, -0.016871558502316475, -0.035889677703380585, 0.02965051308274269, -0.03316257521510124, -0.013568391092121601, 0.009418118745088577, -0.0268136914819479, -0.03847017139196396, -0.055144473910331726, 0.03663350269198418, -0.023704681545495987, -0.008982216008007526, 0.012042686343193054, -0.0024694206658750772, 0.05477850139141083, -0.044952601194381714, 0.059028930962085724, -0.018575575202703476, -0.025235600769519806, -0.005815642885863781, 0.018900426104664803, 0.052300579845905304, 0.0039190975949168205, -0.014520606957376003, -0.032928936183452606, -0.011573235504329205, -0.007804625667631626, 0.01292248535901308, -0.03891582787036896, -0.03371051698923111, 0.017166346311569214, 0.0059926388785243034, -0.06476576626300812, 0.015556374564766884, -0.00891775544732809, -0.010458527132868767, -0.02087557502090931, 0.8310373425483704, 0.01967928744852543, 0.030370881780982018, 0.048010069876909256, -0.022193653509020805, -0.026022499427199364, -0.001116818399168551, -0.018904823809862137, 0.02361859194934368, 0.006086751352995634, -0.05810452252626419, 0.0002758493646979332, -0.004011053126305342, 0.024268295615911484, 0.003568430431187153, -0.007916221395134926, 0.06691846251487732, 0.0004157574730925262, 0.022334711626172066, -0.003919512499123812, 0.019748764112591743, 0.021675778552889824, -0.004761877469718456, 0.022893307730555534, -0.0004255251551512629, 0.03665417060256004, -0.1933523714542389, 0.04934334009885788, -7.92705194926167e-33, 0.058439671993255615, 0.010336232371628284, 0.007082754280418158, 0.014600235968828201, -0.0018602301133796573, -0.03419024497270584, 0.02250654809176922, 0.052616365253925323, 0.00470952782779932, -0.03281838074326515, 0.026190947741270065, -0.018676649779081345, 0.018399596214294434, -0.042582374066114426, 0.06188734620809555, -0.058361344039440155, 0.0010150219313800335, 0.026974590495228767, -0.003562819678336382, -0.0011191562516614795, 0.021240221336483955, 0.048310786485672, 0.07159219682216644, -0.016022495925426483, -0.02859673462808132, -0.013192401267588139, -0.02435086853802204, -0.007414362858980894, -0.028060229495167732, -0.041994836181402206, -0.010086141526699066, 0.018457645550370216, 0.00015286185953300446, 0.0008631731616333127, 0.03342907875776291, -0.019592974334955215, -0.015738289803266525, -0.005822433158755302, 0.007076450623571873, -0.01505575142800808, -0.008935161866247654, 0.01743713580071926, 0.010658279061317444, 0.0027134825941175222, 0.012151475064456463, -0.0011606676271185279, -0.01648532785475254, 0.002331872470676899, 0.0020076418295502663, 0.03320161625742912, 0.030135350301861763, 0.04568222537636757, -0.02099072001874447, 0.029455775395035744, 0.013743042945861816, 0.007827338762581348, 0.013422277756035328, 0.0005300774937495589, 0.023132188245654106, 0.04287688061594963, -0.02551420032978058, 0.022477949038147926, 0.009680869057774544, 0.0799550712108612, 0.026898708194494247, -0.031415797770023346, 0.013230269774794579, 0.0033449854236096144, -0.01160943042486906, 0.0038051274605095387, -0.016486547887325287, 0.006124499719589949, -0.020647699013352394, -0.0007961035589687526, 0.0005659327725879848, -0.04309689998626709, -0.022801127284765244, -0.0014688973315060139, 0.009784423746168613, 0.001839360105805099, 0.025909297168254852, -0.021129610016942024, -0.004973810166120529, -0.014784084632992744, -0.037547580897808075, -0.003070500213652849, 0.022202584892511368, -0.029936056584119797, 0.005489020608365536, -0.0140041159465909, 0.03175744414329529, 0.028668295592069626, 0.011245308443903923, -0.018134547397494316, 0.006142456084489822, 7.385938838799554e-33, 0.008900112472474575, -0.03313182666897774, 0.00902634672820568, 0.01450624130666256, 0.0047280206345021725, -0.012989685870707035, 0.028762446716427803, 0.0402199849486351, -0.04465727135539055, 0.02315341867506504, 0.006144693121314049, 0.025523265823721886, -0.023623818531632423, 0.01611742004752159, 0.07045013457536697, -0.005579596385359764, 0.016930721700191498, -0.01750068925321102, 0.029106812551617622, 0.02803504280745983, 0.02189127542078495, -0.006500692572444677, 0.006010657176375389, 0.003210515948012471, -0.0068643176928162575, 0.044582437723875046, -0.031193044036626816, -0.033349037170410156, 0.019180458039045334, 0.026749759912490845, 0.01327519305050373, 0.025396183133125305, 0.026149744167923927, -0.0231707151979208, -0.02100883610546589, 0.006908801384270191, 0.020862754434347153, -0.004859659355133772, 0.05020536854863167, 0.0019128528656437993, 0.030243564397096634, -0.00778562854975462, 0.00817608367651701, 0.00644221855327487, 0.0240840632468462, -0.003152781166136265, -0.018483595922589302, 0.007018028758466244, 0.012786271050572395, 0.035103701055049896, 0.02457677759230137, 0.001697795931249857, -0.013873281888663769, 0.007143061608076096, 0.029815716668963432, -0.016294971108436584, -0.04147249087691307, -0.05968475341796875, -0.0022232637275010347, -0.010564855299890041, -0.044589582830667496, 0.03502901643514633, -0.005959613248705864, -0.010052808560431004, -0.010574097745120525, 0.003446218790486455, -0.06559552252292633, -0.03743838518857956, 0.0008488771272823215, -0.027111176401376724, -0.026013996452093124, -0.04180844500660896, -0.015053020790219307, 0.006039735395461321, -0.033989567309617996, -0.019995197653770447, -0.015465304255485535, -0.008530037477612495, -0.020417775958776474, 0.013306280598044395, 0.00809371005743742, 0.008990872651338577, 0.05160966143012047, 0.0191494133323431, -0.016788538545370102, -0.003399189794436097, -0.018158363178372383, -0.01382527593523264, -0.00968394335359335, -0.010092614218592644, -0.0135575570166111, -0.021015185862779617, 0.02364310808479786, 0.00522987637668848, 0.022423284128308296, -1.2928614623319845e-8, -0.07235435396432877, 0.007710172329097986, -0.03153601288795471, 0.022494656965136528, 0.013268698006868362, 0.014378613792359829, -0.045489706099033356, -0.024320555850863457, 0.01244474295526743, 0.0018790520261973143, 0.03628140315413475, 0.008692718110978603, 0.013938057236373425, -0.018135080114006996, 0.01865222305059433, -0.05931657925248146, 0.020844431594014168, -0.010926260612905025, 0.024091102182865143, -0.022652696818113327, -0.009070834144949913, 0.05100363492965698, 0.0069121732376515865, -0.0254770927131176, 0.022588657215237617, -0.0009341991390101612, -0.011531722731888294, -0.07526744157075882, 0.011442059651017189, 0.015411227941513062, 0.00426845159381628, -0.014632360078394413, -0.00601274985820055, 0.01866069622337818, -0.012265662662684917, -0.049562547355890274, -0.003616884583607316, -0.009594318456947803, 0.015406240709125996, 0.008557462133467197, 0.005218625534325838, 0.023249676451086998, 0.008934526704251766, -0.016500873491168022, -0.009792868047952652, -0.04755888506770134, -0.016120418906211853, -0.024707162752747536, 0.018624020740389824, -0.052932098507881165, -0.018117452040314674, 0.002407065825536847, 0.03547147288918495, 0.0028222817927598953, 0.025557301938533783, 0.06224566698074341, -0.0016040015034377575, -0.01491831336170435, -0.0381208211183548, 0.01816413551568985, 0.019964734092354774, -0.008958015590906143, -0.048682644963264465, -0.007697154302150011 ]
c-overcomplicating-with-linq
https://markhneedham.com/blog/2010/02/21/c-overcomplicating-with-linq
false
2010-02-07 02:54:13
F#: function keyword
[ "f" ]
[ "fsharp" ]
I've been browsing through Chris Smith's http://www.amazon.com/gp/product/0596153643?ie=UTF8&tag=marneesblo-20&linkCode=as2&camp=1789&creative=390957&creativeASIN=0596153643[Programming F#] book and in the chapter on pattern matching he describes the 'function' key word which I haven't used before. It's used in pattern matching expressions when we want to match against one of the parameters passed into the function which contains the pattern match. For example if we have this somewhat contrived example: [source,ocaml] ---- let isEven value = match value with | x when (x % 2) = 0 -> true | _ -> false ---- That could be rewritten using the function keyword to the following: [source,ocaml] ---- let isEven = function | x when (x % 2) = 0 -> true | _ -> false ---- It's a relatively straight forward way to simplify code like this although one thing I noticed while looking back through some old code I've written is that if we use this syntax then we need to ensure that the parameter we want to pattern match against is passed as the last parameter to a function. For example this function which is used to parse the arguments passed to a script was originally written like this: [source,ocaml] ---- let GetArgs initialArgs = let rec find args matches = match args with | hd::_ when hd = "--" -> List.to_array (matches) | hd::tl -> find tl (hd::matches) | [] -> Array.empty find (List.rev (Array.to_list initialArgs) ) [] ---- If we want to use 'function' then we'd need to put 'args' implicitly as the second argument passed to the recursive 'find' function: [source,ocaml] ---- let GetArgs initialArgs = let rec find matches = function | hd::_ when hd = "--" -> List.to_array (matches) | hd::tl -> find (hd::matches) tl | [] -> Array.empty find [] (List.rev (Array.to_list initialArgs) ) ---- I'm not sure that the resulting code is necessarily more intention revealing if the function has more than one argument passed to it. The second version of this function could be very confusing if you didn't know what the 'function' keyword actually did.
null
null
[ -0.008493650704622269, 0.02480793185532093, -0.0235917791724205, 0.003193432232365012, 0.07342701405286789, 0.037993546575307846, 0.004622040316462517, 0.02023819461464882, 0.018035350367426872, -0.005042423959821463, -0.020441483706235886, 0.017179498448967934, -0.09523428976535797, 0.00897750724107027, -0.004893885925412178, 0.061464011669158936, 0.07631058990955353, -0.034963469952344894, -0.003034295281395316, -0.019438304007053375, 0.015374350361526012, 0.06418608874082565, -0.0076699224300682545, 0.01602223888039589, 0.022731594741344452, 0.015412157401442528, 0.03386109322309494, -0.013193170540034771, -0.04440769925713539, -0.006082325708121061, -0.0032781215850263834, 0.006593851372599602, 0.017600679770112038, -0.034482717514038086, -0.014252773486077785, -0.0021855132654309273, 0.013195782899856567, -0.0023384839296340942, -0.012317544780671597, 0.067520372569561, -0.04881821945309639, 0.010750596411526203, -0.020462090149521828, 0.011166934855282307, -0.048206180334091187, 0.026942381635308266, -0.06596063822507858, 0.004572295118123293, -0.01866874471306801, 0.00025481596821919084, -0.06651923805475235, 0.027291076257824898, -0.013558367267251015, -0.02558460272848606, 0.01713629439473152, 0.02695137821137905, 0.019960299134254456, -0.06887601315975189, 0.04641231521964073, -0.016890160739421844, -0.017532268539071083, 0.030337825417518616, 0.02503974176943302, 0.07927644997835159, 0.028911875560879707, 0.008560707792639732, -0.012001793831586838, 0.03574570640921593, -0.06603780388832092, -0.04803789407014847, -0.012272502295672894, 0.002798520727083087, -0.024566330015659332, -0.016472408547997475, -0.03379577398300171, -0.015340164303779602, -0.01612493395805359, 0.033243268728256226, 0.020688621327280998, 0.03905193880200386, 0.0017296521691605449, 0.027928829193115234, 0.0016494806623086333, 0.00983464065939188, 0.017028750851750374, -0.018513478338718414, -0.045628536492586136, 0.012304587289690971, -0.025988977402448654, 0.05170927941799164, 0.003249317640438676, -0.06579628586769104, -0.007921774871647358, 0.0026722196489572525, 0.01943531446158886, -0.0027279655914753675, 0.011703959666192532, -0.04197462648153305, -0.0032894762698560953, -0.022145427763462067, -0.0383305624127388, -0.03650147467851639, 0.016181660816073418, -0.010568354278802872, -0.06186839938163757, -0.015271604992449284, 0.0025276262313127518, -0.014092117547988892, 0.011654768139123917, 0.007928558625280857, -0.032801639288663864, -0.0012910611694678664, 0.01085185818374157, 0.01965700276196003, -0.08391449600458145, 0.048890791833400726, -0.011554948054254055, 0.023911932483315468, -0.028742492198944092, 0.0438811369240284, 0.03659578785300255, 0.013946161605417728, 0.005796991754323244, 0.06995992362499237, 0.017635924741625786, 0.04020946845412254, 0.02785128355026245, 0.10513688623905182, -0.014962666667997837, -0.027264269068837166, -0.054773397743701935, 0.05456726998090744, -0.027167702093720436, 0.00617580721154809, -0.019561002030968666, -0.02577895112335682, -0.0680316835641861, -0.006954954005777836, 0.028221193701028824, 0.06384991854429245, 0.019154446199536324, -0.03300773724913597, 0.022974539548158646, -0.04997841268777847, 0.012582289054989815, 0.014348475262522697, -0.031317055225372314, -0.020376766100525856, -0.029449453577399254, 0.0047477963380515575, 0.036688581109046936, 0.046133726835250854, 0.060911331325769424, -0.04230695590376854, 0.006638471968472004, 0.09014401584863663, 0.037897732108831406, 0.03610531613230705, 0.0025548755656927824, 0.009127615951001644, 0.04184417799115181, 0.04669491946697235, -0.007301447447389364, 0.05321886017918587, 0.015385103411972523, 0.004589023068547249, 0.0032160310074687004, 0.054708193987607956, 0.0035633693914860487, -0.0080295754596591, -0.046423014253377914, 0.004513921681791544, 0.0920165404677391, -0.010736193507909775, 0.011732924729585648, 0.0007418433669954538, 0.06199997290968895, -0.0023240880109369755, 0.04070189222693443, -0.022084468975663185, -0.05389625206589699, 0.031133335083723068, 0.0021363073028624058, -0.001188097521662712, 0.010026691481471062, -0.027135975658893585, 0.05647854134440422, 0.002626977860927582, 0.02091527171432972, 0.02041477896273136, -0.04214572533965111, -0.06667738407850266, -0.03257249668240547, -0.02099032513797283, 0.06832065433263779, -0.05766763165593147, -0.01903560198843479, 0.057802364230155945, 0.018969593569636345, 0.052286844700574875, 0.045007627457380295, -0.030388787388801575, -0.00048297413741238415, 0.010746416635811329, -0.03731057047843933, 0.06646918505430222, 0.0472489558160305, -0.008809282444417477, -0.03144323080778122, 0.011197780258953571, 0.011692000553011894, 0.05105667561292648, 0.031289421021938324, -0.011770698241889477, 0.04850983992218971, 0.040218476206064224, 0.03582587465643883, -0.04109932482242584, 0.04209263250231743, -0.07504839450120926, 0.0021463024895638227, 0.025638828054070473, -0.010806442238390446, -0.006806336808949709, -0.016677726060152054, 0.1354341059923172, 0.07162030041217804, -0.048528384417295456, -0.05242196097970009, -0.0026281028985977173, -0.015690142288804054, -0.025045786052942276, 0.030804652720689774, 0.004555627703666687, -0.021244702860713005, -0.03211165592074394, -0.003603466786444187, 0.017336156219244003, 0.005469789262861013, -0.0330570712685585, 0.009083567187190056, 0.06508534401655197, -0.013181663118302822, 0.03240412846207619, -0.024919413030147552, -0.03131484240293503, 0.020431706681847572, -0.024637987837195396, -0.022360656410455704, 0.00042547087650746107, 0.03667035698890686, -0.0205784160643816, 0.09066423773765564, -0.031072750687599182, -0.05520140379667282, -0.012608237564563751, -0.055100005120038986, 0.027366360649466515, 0.06613664329051971, 0.051840703934431076, -0.010341521352529526, 0.0466214083135128, -0.020987404510378838, 0.02515798807144165, -0.012196125462651253, -0.05629371106624603, -0.04419133439660072, 0.02828158438205719, -0.011240920051932335, 0.051359787583351135, 0.021756306290626526, 0.027380604296922684, 0.004726499784737825, -0.005525301676243544, -0.023110244423151016, -0.019523652270436287, 0.007720496039837599, 0.010481186211109161, -0.06589624285697937, -0.040362000465393066, -0.03385074436664581, 0.06690157949924469, -0.04025043174624443, -0.02232217602431774, -0.03287339210510254, -0.03366498649120331, 0.00718678068369627, -0.07749748229980469, -0.03727830946445465, -0.008577096275985241, 0.04836837947368622, 0.03775235638022423, -0.04486292228102684, 0.01615362986922264, 0.04676996171474457, 0.018163831904530525, 0.03697963431477547, 0.007572281640022993, 0.017341410741209984, 0.025906922295689583, 0.006903679110109806, 0.021150760352611542, 0.04006657376885414, 0.010842442512512207, -0.02189299650490284, -0.03304535150527954, -0.032412365078926086, -0.012889483012259007, -0.24847422540187836, 0.028422506526112556, -0.025314854457974434, 0.0035198533441871405, 0.03643881902098656, -0.022573325783014297, 0.0036719562485814095, -0.04440753161907196, -0.011379944160580635, 0.036585185676813126, 0.00006695088086416945, -0.025268400087952614, -0.013577131554484367, 0.05804950371384621, -0.005617744289338589, -0.02111727185547352, -0.03913324698805809, -0.056380897760391235, 0.041817665100097656, 0.050203535705804825, -0.009796871803700924, -0.05495318025350571, 0.037116002291440964, 0.05841023102402687, -0.00528811477124691, 0.0415998250246048, -0.09160241484642029, 0.003898038063198328, -0.024484779685735703, -0.01460528839379549, -0.04214363172650337, -0.011886012740433216, 0.0007286840700544417, 0.0012895971303805709, -0.012477447278797626, -0.029819220304489136, 0.033591464161872864, -0.0021103478502482176, 0.028643708676099777, 0.04443856701254845, -0.03800379857420921, -0.029858818277716637, 0.011845722794532776, -0.005277947522699833, 0.06160306930541992, -0.02266574092209339, -0.07257971167564392, -0.008711893111467361, -0.03511299937963486, 0.05349157005548477, -0.03489784896373749, -0.02838108129799366, -0.019834674894809723, 0.046315696090459824, -0.017313368618488312, -0.0496644601225853, 0.026070741936564445, -0.03082985058426857, -0.023228013888001442, -0.0008477578521706164, -0.030942922458052635, -0.031651828438043594, -0.006072560790926218, -0.06121017783880234, -0.020243516191840172, -0.0437956340610981, -0.07145572453737259, -0.01155958604067564, 0.05585252493619919, 0.02575238049030304, 0.016572684049606323, -0.030356744304299355, -0.01921163871884346, -0.10477031022310257, -0.05963091552257538, -0.04053400084376335, -0.015228208154439926, -0.014194542542099953, 0.01129789650440216, 0.058956578373909, -0.0251447856426239, -0.059700414538383484, 0.038663338869810104, 0.00016414804849773645, 0.051468655467033386, -0.005144121591001749, -0.013418531976640224, -0.026452934369444847, -0.00027154319104738533, -0.024722257629036903, 0.04167231172323227, -0.001741358544677496, 0.008422126062214375, -0.006442631129175425, 0.026801062747836113, 0.006642850581556559, 0.03407406434416771, -0.012432558462023735, 0.07041671872138977, 0.016944974660873413, 0.03786472603678703, -0.04418287053704262, 0.023046176880598068, -0.03124834969639778, -0.016770483925938606, -0.0018651686841621995, -0.019441118463873863, 0.03339945152401924, 0.03695433959364891, -0.03738340735435486, -0.02065468765795231, -0.04122927039861679, 0.02951405569911003, -0.0595056489109993, -0.03287472575902939, -0.05796132609248161, 0.013156638480722904, -0.016590513288974762, 0.022925497964024544, -0.02153588831424713, -0.06920840591192245, -0.0009179196786135435, -0.007267707493156195, -0.0210436899214983, -0.046655237674713135, -0.0485251322388649, -0.00508246012032032, -0.021862592548131943, 0.018374530598521233, 0.0431179404258728, 0.02031613700091839, 0.029975024983286858, 0.0037165104877203703, -0.04850747063755989, 0.006748986430466175, -0.03144531697034836, 0.0016038562171161175, -0.01830640807747841, -0.02603977546095848, -0.01015486754477024, 0.018993424251675606, -0.010309643112123013, -0.0007467664545401931, 0.031321313232183456, 0.033761702477931976, -0.00013416238653007895, 0.01998533308506012, 0.003563888370990753, -0.004972763825207949, 0.03433046489953995, 0.014935841783881187, -0.028696944937109947, 0.062165141105651855, -0.019832883030176163, -0.0040045869536697865, -0.000963728001806885, 0.02984008938074112, -0.02755286544561386, -0.06996442377567291, -0.04475860670208931, 0.048785798251628876, -0.018175598233938217, -0.04357670620083809, -0.020218539983034134, -0.021026963368058205, 0.03658877685666084, -0.041181616485118866, 0.04911567643284798, -0.007940838113427162, 0.0258402768522501, -0.013253161683678627, 0.03305361419916153, -0.02141980268061161, 0.021966932341456413, -0.03333882614970207, -0.014794787392020226, 0.012069901451468468, 0.04334185644984245, 0.010938888415694237, -0.012751731090247631, -0.01996774785220623, -0.01930204965174198, -0.018153218552470207, 0.04129070043563843, 0.03982621058821678, -0.02758021652698517, -0.024295227602124214, -0.02498006448149681, -0.07528374344110489, -0.013355677016079426, -0.03158886730670929, -0.015610601752996445, -0.0269673652946949, 0.03480628505349159, -0.01366831362247467, -0.06410238146781921, -0.0040596709586679935, 0.03749880567193031, -0.0065696523524820805, -0.008346403017640114, -0.0033447558525949717, -0.01793481968343258, -0.020310575142502785, -0.02126428298652172, 0.04650019481778145, -0.06056249141693115, 0.016630487516522408, -0.012147311121225357, 0.030834726989269257, 0.06980911642313004, 0.040070001035928726, -0.04980161041021347, -0.018053214997053146, 0.011975509114563465, -0.002112750429660082, -0.00996528472751379, -0.03841470927000046, -0.005933336913585663, 0.0097547871991992, -0.0018395330989733338, -0.009797867387533188, -0.004171622451394796, 0.011705986224114895, 0.010519115254282951, -0.03184885531663895, 0.02238636463880539, -0.03937455639243126, -0.015017582103610039, 0.03228373825550079, -0.028026603162288666, 0.01883089356124401, -0.05095403268933296, 0.03173964470624924, 0.008181788958609104, -0.013126049190759659, -0.005528031848371029, -0.08447175472974777, 0.001930086174979806, -0.055167511105537415, 0.029381664469838142, 0.02267351932823658, -0.0034371770452708006, 0.008940424770116806, -0.006972683593630791, -0.04730650782585144, -0.007759041618555784, -0.005872203037142754, -0.07813821732997894, -0.0011226421920582652, 0.06536227464675903, -0.020616630092263222, 0.038833871483802795, 0.0012711286544799805, 0.006339946296066046, 0.021026454865932465, -0.031175395473837852, -0.014470686204731464, 0.01514337956905365, -0.0470171757042408, 0.03176262974739075, 0.014280957169830799, 0.007086088880896568, -0.07590517401695251, 0.02867922931909561, 0.036325376480817795, 0.029499424621462822, 0.028117459267377853, -0.0001602035335963592, 0.021032284945249557, -0.011702151969075203, -0.008974818512797356, -0.07879380881786346, 0.01081457082182169, 0.030777985230088234, 0.04822218418121338, -0.02838144823908806, -0.015937862917780876, 0.01612052321434021, 0.0400848388671875, -0.05304771289229393, 0.0015599525067955256, 0.03891605883836746, 0.015169838443398476, 0.0031264103017747402, 0.01819733902812004, -0.031330931931734085, 0.02079576440155506, 0.06106216832995415, -0.0014749555848538876, -0.003118755528703332, -0.023697052150964737, 0.04014851897954941, 0.0175999253988266, 0.02797461673617363, 0.019424736499786377, -0.006938131060451269, 0.04669284448027611, 0.05363357439637184, 0.02458331175148487, 0.07854188978672028, -0.008577517233788967, 0.010022575967013836, 0.04370589181780815, -0.0005039804382249713, -0.011369990184903145, 0.009016305208206177, -0.01065859291702509, -0.06386104226112366, 0.03674789518117905, 0.0017134174704551697, -0.033833496272563934, -0.04065341502428055, 0.0581330806016922, 0.0028504577931016684, -0.028909003362059593, -0.04830047860741615, -0.013108409009873867, -0.04765781760215759, 0.021340301260352135, -0.01641281321644783, 0.011957334354519844, -0.040002185851335526, 0.050401680171489716, -0.005680129863321781, 0.020064296200871468, 0.041144344955682755, -0.00025031380937434733, -0.011232363991439342, 0.02485521137714386, 0.042017363011837006, 0.09483496844768524, 0.05539682134985924, -0.00916814524680376, 0.02095022052526474, -0.02548244781792164, -0.02869889698922634, -0.0005705031799152493, -0.0567903071641922, 0.003500906750559807, 0.0016896757297217846, 0.0371638722717762, 0.09391727298498154, 0.00040790109778754413, 0.04289236664772034, -0.04302040487527847, 0.002142277779057622, -0.02133026532828808, 0.015708809718489647, 0.03606025129556656, 0.07527313381433487, 0.009605538100004196, 0.026650432497262955, 0.013080661185085773, -0.04682101681828499, 0.038889385759830475, -0.007749913260340691, -0.036020562052726746, 0.01566576026380062, 0.006653121672570705, -0.004415994044393301, 0.03471408784389496, 0.025813868269324303, 0.06112327054142952, -0.02010413631796837, 0.0054548983462154865, -0.0006196916219778359, 0.03135296702384949, 0.0017078201053664088, -0.017870204523205757, 0.0025899887550622225, -0.03772102668881416, 0.013579868711531162, -0.010475692339241505, -0.035272371023893356, -0.046727459877729416, -0.06217486038804054, 0.046001579612493515, -0.05933107063174248, 0.0011356489267200232, 0.022857584059238434, -0.02602391317486763, -0.03383812680840492, -0.048165664076805115, -0.05186503753066063, -0.048018183559179306, -0.07996773719787598, -0.009339633397758007, 0.015650155022740364, -0.028619417920708656, -0.02952887862920761, -0.03822470083832741, 0.011503344401717186, -0.03375600278377533, 0.05254625156521797, -0.03700751066207886, -0.025101032108068466, 0.006966817192733288, 0.0192800872027874, 0.050394121557474136, 0.030567573383450508, -0.009679951705038548, -0.0014044239651411772, -0.03168902173638344, -0.014324180781841278, -0.004631912801414728, 0.03945666551589966, 0.017525386065244675, -0.0010561662493273616, -0.07587508857250214, -0.006380254868417978, 0.045237671583890915, 0.021737275645136833, -0.09635409712791443, 0.0014927940210327506, 0.0034591329749673605, -0.01286094170063734, 0.03733569756150246, -0.014505483210086823, -0.0007675319793634117, -0.04444722831249237, -0.017547238618135452, 0.020515918731689453, -0.007501697633415461, 0.04153108224272728, -0.034297265112400055, 0.07493231445550919, 0.00562012055888772, -0.007598233409225941, -0.02961134724318981, -0.011852284893393517, -0.02294224128127098, 0.05527478829026222, -0.015373497270047665, -0.023271026089787483, -0.0043046376667916775, -0.03199509531259537, -0.028318867087364197, -0.005794762168079615, -0.022430501878261566, -0.022988807410001755, 0.026923032477498055, 0.03725149855017662, -0.045465923845767975, 0.06712125986814499, -0.030962470918893814, 0.04215501621365547, -0.028753796592354774, -0.030312756076455116, 0.005892073269933462, 0.057055093348026276, 0.03484518080949783, 0.006042991764843464, 0.04600317403674126, -0.032200075685977936, -0.026012955233454704, -0.035521525889635086, 0.0023329555988311768, 0.02152087353169918, -0.04738812521100044, 0.0427916944026947 ]
[ -0.09997411072254181, -0.014853198081254959, -0.052935902029275894, -0.0344320647418499, 0.03553985059261322, -0.025357577949762344, 0.05208442360162735, 0.012971125543117523, 0.01890716888010502, -0.0348067432641983, -0.02390832081437111, -0.04719165340065956, 0.011783629655838013, -0.00546810869127512, 0.030585329979658127, -0.00479263486340642, -0.02524247020483017, -0.029915286228060722, -0.03097371943295002, -0.021132348105311394, 0.03895261511206627, 0.00992431491613388, -0.08243679255247116, -0.05523185059428215, 0.024491682648658752, 0.06723123043775558, 0.022217173129320145, -0.029214046895503998, -0.0005699855391867459, -0.20910006761550903, -0.01792343705892563, 0.0029945222195237875, 0.009068860672414303, -0.0043244315311312675, -0.017198242247104645, 0.008219363167881966, 0.01156081072986126, 0.04143950343132019, 0.006425376515835524, 0.0654764324426651, 0.007456489372998476, 0.011800318025052547, -0.012011929415166378, 0.016451716423034668, 0.04234851524233818, 0.003005214035511017, -0.031204286962747574, -0.021219611167907715, -0.0426967553794384, 0.008785146288573742, -0.052940066903829575, -0.012831353582441807, -0.027550626546144485, -0.04954678565263748, 0.014374052174389362, 0.041832104325294495, 0.04754713177680969, 0.05942526087164879, 0.015641964972019196, 0.02081325463950634, 0.02631729282438755, -0.03265354782342911, -0.12465797364711761, 0.11567353457212448, 0.0031608908902853727, 0.03776272386312485, 0.0027822614647448063, -0.041282642632722855, -0.020003514364361763, 0.1112419068813324, 0.012696558609604836, -0.015293508768081665, -0.027427950873970985, 0.039817702025175095, -0.010678623802959919, -0.04010049253702164, -0.03745448589324951, -0.02406976744532585, 0.04011719673871994, -0.003081731731072068, -0.06630805879831314, -0.01990133710205555, 0.011301730759441853, -0.03789687156677246, -0.015141965821385384, 0.0067879329435527325, -0.006314060650765896, 0.017397180199623108, 0.03134812042117119, 0.006238712463527918, 0.03715119510889053, -0.01837977208197117, -0.008679709397256374, 0.006209357175976038, -0.08783604949712753, 0.006480284500867128, 0.005481352563947439, 0.0075992015190422535, -0.02132253162562847, 0.38244467973709106, -0.046894222497940063, 0.010089565068483353, 0.018493136391043663, 0.021366707980632782, -0.019991111010313034, -0.016800114884972572, -0.003603521501645446, -0.043871548026800156, -0.009897123090922832, -0.08072347939014435, -0.03293639048933983, -0.030133770778775215, 0.06866326928138733, -0.051526620984077454, -0.03216485306620598, 0.046129073947668076, 0.009715809486806393, -0.0005384164396673441, 0.04915250465273857, 0.01980035938322544, 0.0014896397478878498, -0.017249612137675285, -0.0012989481911063194, 0.04168128967285156, 0.004307498689740896, 0.021281149238348007, 0.02257862687110901, 0.07164089381694794, 0.04712223634123802, 0.03548447787761688, 0.07735607028007507, -0.056914325803518295, -0.06720438599586487, 0.032208334654569626, 0.00013036471500527114, 0.030043745413422585, 0.004626666661351919, 0.014829181134700775, 0.006949757691472769, 0.02779272384941578, 0.008465695194900036, -0.047214217483997345, 0.03193194791674614, 0.03213924169540405, -0.02762259915471077, 0.11769348382949829, -0.03820682317018509, -0.017614590004086494, -0.03955082222819328, -0.03755979239940643, -0.005701031070202589, 0.04608559235930443, -0.015195364132523537, -0.06346289068460464, -0.013429631479084492, 0.03282102569937706, 0.08421390503644943, -0.022049205377697945, -0.060280583798885345, -0.011456369422376156, -0.07742737978696823, 0.007236712612211704, -0.028154736384749413, 0.03864924609661102, 0.023074598982930183, -0.1164998784661293, -0.03489213064312935, -0.02681003510951996, 0.000570422038435936, -0.09461658447980881, 0.014809963293373585, -0.011131647042930126, -0.023990927264094353, -0.018511582165956497, 0.012097178027033806, 0.0031525790691375732, -0.024591177701950073, -0.029647771269083023, 0.040697131305933, 0.02119600959122181, 0.016831913962960243, -0.0032879728823900223, -0.07566837221384048, 0.0015057472046464682, -0.020821331068873405, -0.05782812833786011, -0.06783144921064377, 0.009146672673523426, -0.004794721025973558, -0.006969538051635027, -0.006155509501695633, -0.037764184176921844, -0.02163076587021351, 0.045893073081970215, -0.04374156519770622, -0.034736014902591705, 0.02531794272363186, -0.01769803650677204, 0.006504632532596588, -0.019391369074583054, 0.039148274809122086, 0.05704838037490845, 0.02965078130364418, 0.028161827474832535, -0.04374486207962036, 0.04976680874824524, 0.06529494374990463, -0.06989740580320358, 0.03716671094298363, 0.07274243235588074, -0.05624040588736534, -0.010947729460895061, -0.05190492793917656, -0.005179640371352434, 0.002300727181136608, -0.049523066729307175, 0.005025031510740519, 0.027194015681743622, -0.0058481525629758835, 0.010363568551838398, -0.06511397659778595, -0.03524826467037201, 0.021406032145023346, -0.35562798380851746, -0.010373400524258614, -0.009639467112720013, 0.016819534823298454, 0.036501169204711914, -0.04279160499572754, 0.0027140513993799686, 0.0017050940077751875, -0.05403563752770424, 0.036736924201250076, 0.06280010938644409, -0.0006117395241744816, 0.02049132250249386, -0.08138971775770187, -0.021261684596538544, 0.003763906192034483, -0.0114777572453022, -0.062017835676670074, -0.007846343331038952, 0.03514445945620537, 0.0008175956318154931, 0.006202401127666235, 0.02202989161014557, -0.06822727620601654, 0.018398743122816086, -0.04475809633731842, 0.09229110181331635, -0.003850537119433284, 0.05985565483570099, -0.047624919563531876, 0.054165031760931015, -0.04748552665114403, -0.003430516691878438, -0.0253803301602602, 0.005356947425752878, -0.007064396515488625, -0.012822424061596394, 0.022962594404816628, 0.0721450001001358, -0.01112209353595972, -0.02029985375702381, 0.0074761249125003815, -0.01726127415895462, 0.004757232964038849, -0.0175087358802557, 0.025603942573070526, -0.012458868324756622, -0.05106499791145325, -0.027914434671401978, 0.07652540504932404, 0.0597476027905941, 0.024992698803544044, 0.02925247885286808, 0.011720727197825909, -0.008453072048723698, -0.03751459717750549, -0.035566069185733795, -0.040805187076330185, -0.027322132140398026, -0.0393252931535244, 0.034007832407951355, 0.041894495487213135, 0.03825394809246063, -0.030371898785233498, 0.017006848007440567, 0.03220537304878235, 0.02675728127360344, -0.013907313346862793, 0.05257251858711243, -0.005093228537589312, -0.03511850908398628, 0.09043116867542267, 0.001781598781235516, -0.01038446556776762, 0.042480241507291794, 0.04092603921890259, -0.004814819898456335, 0.05461859703063965, 0.02690507099032402, -0.004097231198102236, 0.058588266372680664, -0.037658412009477615, 0.020349642261862755, -0.021343514323234558, 0.02511383593082428, 0.009757047519087791, 0.009323950856924057, 0.019742567092180252, 0.04772350564599037, -0.020072508603334427, -0.0408143512904644, -0.022368788719177246, 0.03615913540124893, -0.029164543375372887, 0.06342573463916779, -0.017454758286476135, -0.2522783875465393, 0.0379004031419754, 0.05697210505604744, 0.0805826485157013, -0.005234030541032553, 0.0017546004382893443, 0.07531251758337021, -0.06202859804034233, -0.001094149542041123, -0.02862204983830452, -0.0024912061635404825, 0.015448269434273243, 0.015902316197752953, -0.00582295935600996, 0.03932061046361923, -0.022265003994107246, 0.05491858720779419, -0.015192491002380848, 0.02439882420003414, 0.027061140164732933, 0.0762413963675499, 0.00505418237298727, 0.1938432902097702, -0.06405413150787354, 0.03719615936279297, -0.011009912937879562, 0.0205896757543087, -0.03217875957489014, 0.11582008004188538, -0.0207902193069458, 0.04798047989606857, -0.005790767725557089, 0.06896951794624329, -0.003577223513275385, 0.025372054427862167, -0.0181531123816967, -0.008147123269736767, 0.03981092572212219, 0.037995703518390656, -0.03805993124842644, -0.02773531898856163, -0.007112780120223761, -0.05017508193850517, 0.0045664142817258835, 0.04654881730675697, 0.005543004721403122, 0.012668963521718979, -0.025150183588266373, -0.04116661101579666, 0.020105190575122833, -0.06414296478033066, -0.0031591961160302162, -0.01773662306368351, -0.028833476826548576, -0.006343115586787462, 0.051437925547361374, 0.014063281938433647, -0.014823543839156628, -0.004930894356220961, 0.05739837884902954, 0.013399006798863411, 0.01257746946066618, 0.1256788969039917, 0.05642792955040932, 0.01439142320305109 ]
[ -0.030262645334005356, 0.00415343651548028, -0.007607679348438978, -0.015754612162709236, -0.0019762692973017693, -0.011085398495197296, 0.042775336652994156, 0.029316553846001625, -0.012115787714719772, -0.00021754036424681544, -0.023316815495491028, 0.009073426015675068, 0.01730828359723091, -0.0036094961687922478, 0.022710373625159264, 0.011965373530983925, -0.00001442604661860969, -0.022249478846788406, 0.03253824636340141, -0.021410781890153885, -0.010955194011330605, 0.03271094709634781, 0.007721437606960535, -0.02061905898153782, -0.03589736670255661, 0.01667710766196251, -0.019193390384316444, 0.021331487223505974, 0.018216658383607864, -0.1410226970911026, -0.0228078905493021, -0.015905844047665596, 0.009727691300213337, 0.03374889865517616, -0.024544494226574898, -0.019338006153702736, -0.0005012685433030128, -0.03672560676932335, -0.014153565280139446, 0.014914970844984055, -0.030473649501800537, -0.011092611588537693, -0.05624724179506302, 0.03362872451543808, 0.030237242579460144, -0.008465275168418884, -0.003934761974960566, 0.011473101563751698, 0.005034423898905516, 0.008506668731570244, -0.0615917332470417, 0.027951285243034363, -0.03476164489984512, -0.023343835026025772, 0.03797506168484688, -0.017986958846449852, 0.002224914263933897, -0.018438445404171944, 0.021723728626966476, -0.042231302708387375, 0.024996915832161903, -0.023321399465203285, -0.04401349648833275, -0.0006778111564926803, -0.020007794722914696, -0.020082516595721245, -0.046852678060531616, -0.004234146326780319, 0.0013452345738187432, -0.004857693333178759, -0.016952170059084892, 0.01186162419617176, -0.018812092021107674, -0.00887278001755476, -0.015790889039635658, 0.003913135267794132, 0.008764354512095451, -0.04908724129199982, 0.006824823096394539, 0.0014910988975316286, -0.03799278289079666, 0.0022990701254457235, 0.001719989930279553, -0.008477846160531044, -0.009252606891095638, -0.02669645845890045, 0.0011203116737306118, 0.012115479446947575, 0.04343933239579201, -0.015464580617845058, -0.0504031702876091, -0.020497217774391174, 0.014650581404566765, 0.01125176902860403, -0.07721789926290512, 0.014304932206869125, 0.014420444145798683, -0.03587319701910019, -0.007097976747900248, 0.8516605496406555, -0.009346399456262589, 0.036792874336242676, 0.02040073461830616, 0.0030878696125000715, -0.02327679470181465, 0.01213711779564619, -0.015302933752536774, 0.024015234783291817, 0.008448871783912182, -0.06414863467216492, 0.0038067614659667015, 0.026072725653648376, 0.0705040842294693, 0.0220127385109663, 0.007349753752350807, 0.03554697334766388, 0.016182707622647285, 0.005297190044075251, 0.015282554551959038, 0.03809358552098274, 0.04082965478301048, 0.01335996575653553, 0.03507782146334648, 0.032428208738565445, 0.004265640862286091, -0.15956786274909973, 0.0005042767152190208, -8.135999008856208e-33, 0.0290097426623106, -0.015610442496836185, -0.007687526289373636, -0.019344152882695198, 0.011615853756666183, 0.010689112357795238, 0.034652870148420334, 0.03263350948691368, -0.033590588718652725, -0.020443802699446678, -0.0070327394641935825, -0.014375871978700161, -0.0244717076420784, -0.007958670146763325, 0.02344600297510624, -0.006851465441286564, 0.010880239307880402, 0.05315568670630455, -0.013165869750082493, 0.012263592332601547, 0.0007144129485823214, 0.027590785175561905, 0.013313698582351208, 0.02565392665565014, -0.0006082432228140533, 0.03165622055530548, 0.005168773699551821, -0.010315245017409325, 0.006774840410798788, -0.04227988049387932, -0.008040185086429119, 0.03285149112343788, 0.0003310652682557702, -0.054002221673727036, 0.03013085573911667, -0.032765720039606094, -0.027648594230413437, 0.03352684527635574, -0.008296682499349117, -0.03717035427689552, -0.03273339197039604, 0.013815432786941528, -0.04692506790161133, -0.011740372516214848, -0.009397100657224655, -0.0327870137989521, -0.00897794310003519, 0.045759111642837524, 0.00954866036772728, 0.04551851004362106, 0.001780139864422381, 0.018869007006287575, 0.005064351484179497, -0.013457925990223885, -0.007014559116214514, -0.007894937880337238, -0.013467560522258282, 0.008725551888346672, 0.00389527203515172, 0.008397253230214119, 0.0023761361371725798, -0.00457780109718442, -0.0031864631455391645, 0.02773439884185791, -0.03550170734524727, -0.021195653825998306, 0.02137903869152069, 0.010162342339754105, 0.020435936748981476, 0.036284275352954865, -0.021358879283070564, 0.04031767696142197, -0.01566018909215927, -0.03886997327208519, 0.01750846952199936, -0.028375009074807167, -0.01169660221785307, -0.020359089598059654, -0.0083791958168149, 0.045981429517269135, 0.007750879041850567, 0.0241251103579998, -0.0054946718737483025, 0.007368020247668028, -0.03539935126900673, -0.007568846456706524, 0.028972718864679337, 0.0099962018430233, -0.03478916361927986, -0.00575111573562026, 0.03525618836283684, 0.014526179060339928, -0.02601712755858898, -0.05928245559334755, 0.01946493424475193, 7.770372511292475e-33, 0.01256735622882843, -0.016235239803791046, -0.0040817768312990665, 0.011127270758152008, -0.006253892555832863, -0.04510413482785225, 0.04604015126824379, 0.008650370873510838, -0.01913849636912346, 0.030087711289525032, -0.02083093300461769, 0.0027149133384227753, -0.013748608529567719, -0.023763587698340416, 0.06153053045272827, -0.030817333608865738, -0.0010100661311298609, 0.011260184459388256, 0.007133292965590954, 0.022549405694007874, 0.007675006054341793, 0.0029622886795550585, -0.0014995166566222906, 0.013251918368041515, -0.0009838773403316736, 0.05350424721837044, -0.025779806077480316, -0.011339657939970493, -0.006489838007837534, -0.006932149175554514, 0.02026941440999508, 0.0038017898332327604, 0.018688270822167397, -0.025502290576696396, 0.0036035298835486174, 0.021756166592240334, 0.008307362906634808, -0.01875029131770134, 0.008152374066412449, -0.02362121269106865, 0.0565892793238163, 0.009844386018812656, -0.0156587865203619, -0.015392353758215904, -0.027307353913784027, 0.023158656433224678, 0.010873159393668175, -0.017533300444483757, 0.02390718273818493, -0.0190560445189476, 0.019826829433441162, 0.006853308994323015, -0.037076689302921295, -0.023842336609959602, 0.001919333590194583, -0.0013795888517051935, -0.02272237092256546, 0.019320636987686157, -0.04053318500518799, 0.004452201072126627, -0.0049836291000247, 0.022708548232913017, 0.028978681191802025, 0.012809817679226398, -0.015442376025021076, 0.0029436529148370028, -0.033916011452674866, -0.02872776985168457, 0.005340930074453354, -0.015452570281922817, -0.028828630223870277, -0.00756691861897707, -0.017166320234537125, 0.03994685783982277, -0.03241712227463722, -0.007767249830067158, -0.029449013993144035, 0.005689337383955717, -0.0011399664217606187, 0.03611960634589195, 0.001108167925849557, -0.005190521478652954, 0.031115960329771042, 0.0465102344751358, -0.009865074418485165, 0.029621167108416557, -0.028244655579328537, 0.001341687748208642, 0.02116154320538044, 0.013726030476391315, -0.01918811723589897, -0.030076317489147186, -0.004932878538966179, 0.007426016498357058, -0.012227694503962994, -1.3533597353898585e-8, -0.05964399501681328, -0.00643157958984375, 0.004953357856720686, 0.04886869341135025, 0.015836266800761223, 0.020256120711565018, -0.008785790763795376, 0.010839000344276428, 0.011244023218750954, -0.024374710395932198, 0.025218913331627846, -0.0029790953267365694, 0.016464367508888245, 0.017012514173984528, 0.03790845349431038, -0.03646785393357277, 0.01719599962234497, -0.02656293474137783, 0.026499073952436447, 0.014402611181139946, 0.0020435377955436707, 0.04553721472620964, -0.0018841028213500977, -0.01669362187385559, 0.0014031975297257304, -0.011493692174553871, 0.007074754219502211, -0.07061761617660522, 0.03943997621536255, -0.0051834844052791595, 0.04726950451731682, -0.03968474268913269, 0.0049908398650586605, 0.01986623741686344, 0.001831598929129541, -0.0572216659784317, 0.017167631536722183, 0.027357231825590134, -0.0017033475451171398, -0.02709309570491314, 0.0007378624868579209, -0.00933725293725729, 0.008993851952254772, -0.02839733101427555, -0.026918616145849228, -0.027491899207234383, -0.012309242971241474, 0.002908531576395035, 0.022451302036643028, -0.02950793132185936, 0.01282744575291872, -0.011386516503989697, 0.011928831227123737, 0.01137071754783392, 0.032273463904857635, 0.01294662244617939, 0.02088186703622341, -0.05701925605535507, -0.020130978897213936, -0.006878065411001444, 0.031823016703128815, 0.0007613222114741802, -0.015527659095823765, -0.00959223136305809 ]
f-function-keyword
https://markhneedham.com/blog/2010/02/07/f-function-keyword
false
2010-02-08 23:17:47
Functional C#: Extracting a higher order function with generics
[ "c" ]
[ ".NET" ]
While working on some code with http://www.the-arm.com/[Toni] we realised that we'd managed to create two functions that were almost exactly the same except they made different service calls and returned collections of a different type. The similar functions were like this: [source,csharp] ---- private IEnumerable<Foo> GetFoos(Guid id) { IEnumerable<Foo> foos = new List<Foo>(); try { foos = fooService.GetFoosFor(id); } catch (Exception e) { // do some logging of the exception } return foos; } ---- [source,csharp] ---- private IEnumerable<Bar> GetBars(Guid id) { IEnumerable<Bar> bars = new List<Bar>(); try { bars = barService.GetBarsFor(id); } catch (Exception e) { // do some logging of the exception } return bars; } ---- We're defining the empty lists so that if the service throws an exception we can make use of an empty list further on in the code. A failure of the service in this context doesn't mean that the application should stop functioning. My thinking here was that we should be able to pull out the service calls into a function but the annoying thing is that they return different types of collections so I initially thought that we'd be unable to remove the duplication. Thinking about the problem later on I realised we could just define the return value of the service call in the function to use generics. We therefore end up with this solution: [source,csharp] ---- private IEnumerable<Bar> GetBars(Guid id) { return GetValues(() => barService.GetBarsFor(id)); } ---- [source,csharp] ---- private IEnumerable<Foo> GetFoos(Guid id) { return GetValues(() => fooService.GetFoosFor(id)); } ---- [source,csharp] ---- private IEnumerable<T> GetValues<T>(Func<IEnumerable<T>> getValues) { IEnumerable<T> values = new List<T>(); try { values = getValues(); } catch (Exception e) { // do some logging of the exception } return values; } ---- I think the code is still quite readable and it's relatively obvious what it's supposed to be doing.
null
null
[ 0.007902109995484352, -0.037057310342788696, -0.014657092280685902, 0.014487422071397305, 0.0692661851644516, 0.013388208113610744, 0.029094431549310684, 0.002111648442223668, -0.018764780834317207, -0.010491610504686832, -0.008841117843985558, 0.011799508705735207, -0.0753394290804863, 0.013822931796312332, -0.012391208671033382, 0.06589441001415253, 0.0877566859126091, -0.027389831840991974, 0.03798597678542137, -0.02437775582075119, 0.0025188238359987736, 0.07682617008686066, -0.0037658861838281155, 0.02207539975643158, 0.0278206504881382, 0.04790496081113815, 0.0008419925579801202, -0.009359057061374187, -0.06345228105783463, -0.03679611161351204, 0.05389656871557236, 0.04915447533130646, -0.02779770828783512, -0.03596075624227524, 0.015029318630695343, -0.04795527085661888, 0.006217888556420803, 0.007048246916383505, 0.004669089335948229, 0.01596977189183235, -0.06183353066444397, 0.009695452637970448, -0.04126725718379021, -0.006392267998307943, -0.05626915767788887, 0.007334128487855196, -0.01875859871506691, -0.02878275141119957, -0.042809996753931046, -0.0006770367035642266, -0.0667317658662796, 0.018085915595293045, -0.05743039399385452, 0.012993217445909977, -0.0006654957542195916, 0.0437125638127327, -0.0015997099690139294, -0.08753376454114914, 0.0198857169598341, -0.036953967064619064, -0.004676502663642168, -0.009856249205768108, 0.0070166271179914474, 0.039037853479385376, 0.02568322978913784, 0.007535587530583143, -0.01282181404531002, 0.047082263976335526, -0.04297855496406555, 0.00035172863863408566, -0.006178449373692274, -0.016926182433962822, -0.02244308590888977, 0.01586967520415783, 0.006795164663344622, -0.04493563622236252, -0.021465234458446503, 0.05383133143186569, 0.008210428059101105, 0.04699113592505455, -0.011561522260308266, 0.005408903583884239, 0.05427347868680954, -0.020489580929279327, 0.03340617194771767, -0.028959015384316444, -0.03434082120656967, 0.009030559100210667, -0.017813680693507195, 0.04600977152585983, 0.03796842321753502, -0.06066632270812988, -0.009025298058986664, 0.029580317437648773, -0.006674750708043575, 0.008911672979593277, -0.008464408107101917, -0.01045377366244793, 0.03666054829955101, 0.012913410551846027, -0.024194806814193726, -0.00794254895299673, 0.01931585930287838, 0.01136996503919363, -0.08856949210166931, -0.022622069343924522, -0.01516933273524046, -0.011919439770281315, -0.001982591114938259, 0.009708956815302372, -0.046684496104717255, 0.018605312332510948, -0.030361203476786613, 0.003104487666860223, -0.08420143276453018, 0.042142245918512344, 0.01862412691116333, -0.005429617594927549, -0.009494907222688198, 0.02974080666899681, 0.060901276767253876, 0.02875646948814392, -0.033751171082258224, 0.08450109511613846, 0.02436426840722561, 0.025529127568006516, -0.03970741108059883, 0.06475196033716202, 0.011850664392113686, -0.08706337213516235, -0.013422018848359585, 0.04681999236345291, -0.022994061931967735, -0.010923365131020546, -0.00793413259088993, -0.024297518655657768, -0.02581075020134449, 0.009751496836543083, 0.028279313817620277, 0.025105800479650497, -0.021384311839938164, -0.028446245938539505, 0.0014186822809278965, -0.01459079422056675, 0.013366096653044224, 0.013393839821219444, -0.013651078566908836, -0.0187679510563612, 0.009910979308187962, 0.05013921856880188, 0.030413813889026642, 0.058595675975084305, 0.046951066702604294, -0.035889241844415665, 0.010736308060586452, 0.07812763005495071, -0.010350853204727173, 0.047120753675699234, 0.0015332241309806705, 0.018500536680221558, 0.03846927359700203, 0.028657762333750725, -0.004525149241089821, 0.034957773983478546, 0.03956963121891022, 0.006776999682188034, 0.004374225623905659, 0.05239306762814522, -0.0005881834658794105, -0.016757795587182045, -0.07658316195011139, -0.05061675235629082, 0.03836525231599808, -0.05630703270435333, -0.024212580174207687, 0.02987094782292843, 0.09122568368911743, 0.015121202915906906, 0.06478629261255264, -0.005512414034456015, -0.05979689955711365, 0.009384931065142155, 0.008362160064280033, -0.0043132612481713295, -0.005289328284561634, 0.02520957961678505, 0.04912859946489334, 0.04028623551130295, -0.010594410821795464, 0.008680321276187897, -0.06670914590358734, -0.0756661668419838, -0.039538316428661346, -0.012749793939292431, 0.06858780980110168, -0.044392067939043045, -0.03893688693642616, 0.08829466253519058, 0.006500658579170704, 0.032234493643045425, 0.0160764679312706, -0.03134382516145706, 0.021123483777046204, -0.009995092637836933, -0.03981909528374672, 0.04122060909867287, 0.04928872361779213, 0.016872834414243698, -0.03895832225680351, 0.006025764625519514, -0.004355335142463446, 0.025647230446338654, 0.03419441729784012, -0.01716943457722664, 0.06144266575574875, 0.025393838062882423, 0.023685023188591003, -0.052150774747133255, 0.048346564173698425, -0.07324925810098648, 0.00238040485419333, -0.021703828126192093, -0.008022189140319824, -0.008698075078427792, 0.01290928665548563, 0.11790074408054352, 0.07057888805866241, -0.03033595159649849, -0.03049352765083313, 0.007089229766279459, 0.029884574934840202, -0.022915121167898178, -0.005109802354127169, -0.050050925463438034, 0.00886299554258585, 0.009793373756110668, -0.021438581869006157, -0.0004251898790244013, 0.006937071681022644, -0.0421256460249424, 0.006572956219315529, 0.08820424973964691, -0.028191475197672844, 0.06331972777843475, 0.004047253634780645, -0.028520144522190094, -0.011595030315220356, -0.046453967690467834, -0.030121441930532455, -0.013436900451779366, 0.02265963889658451, -0.015822943300008774, 0.05786873772740364, -0.026697682216763496, -0.022006066516041756, 0.0005094697116874158, -0.026443906128406525, -0.002272101817652583, 0.012476087547838688, 0.0554099939763546, -0.01317713875323534, 0.045753080397844315, -0.023318598046898842, 0.030224043875932693, -0.00349410530179739, -0.04067003354430199, 0.023395681753754616, 0.015294341370463371, 0.035650674253702164, 0.04967784509062767, 0.009925885125994682, 0.012963510118424892, 0.02262835204601288, 0.01495293527841568, -0.025995874777436256, -0.02886132337152958, 0.04788973927497864, -0.0013223073910921812, -0.060739193111658096, -0.04358910396695137, -0.028456559404730797, 0.032368820160627365, -0.023250827565789223, -0.07371577620506287, 0.009218858554959297, -0.07138144224882126, 0.0562434159219265, -0.06740858405828476, -0.08625032752752304, 0.0029691928066313267, 0.017935138195753098, 0.022020408883690834, -0.005769980605691671, 0.004473010078072548, 0.047430507838726044, 0.021706143394112587, -0.009507160633802414, 0.030996723100543022, 0.017277825623750687, -0.024667879566550255, -0.043174974620342255, 0.013638623058795929, 0.04245059937238693, 0.01842597872018814, 0.010397535748779774, -0.052627548575401306, 0.005751313641667366, -0.010107532143592834, -0.2520705461502075, 0.015414276160299778, -0.006647469475865364, -0.02706117182970047, 0.02303708903491497, 0.002840165514498949, 0.013280602172017097, -0.047645267099142075, -0.005097698885947466, 0.046543169766664505, -0.012874961830675602, -0.0335502102971077, -0.0014815668109804392, 0.0368063747882843, 0.001836382201872766, 0.018818674609065056, 0.0034764681477099657, -0.03588144853711128, 0.014767078682780266, 0.05736921355128288, -0.02037271298468113, -0.0686177909374237, 0.0023445752449333668, 0.03647877648472786, 0.018765855580568314, 0.05944608896970749, -0.06111797317862511, 0.05594116076827049, -0.0386035181581974, -0.020878570154309273, 0.00578503729775548, -0.00307527300901711, 0.0002993679663632065, -0.0321371927857399, -0.025203313678503036, -0.014591874554753304, 0.0002142191369784996, 0.01820731908082962, -0.019186703488230705, 0.0204780176281929, -0.008389477618038654, -0.07730211317539215, -0.01877312920987606, 0.025601692497730255, 0.06725957989692688, -0.003297031857073307, -0.05560828745365143, -0.007562469225376844, -0.05537136271595955, 0.07847964018583298, -0.03492484986782074, -0.027542056515812874, -0.0005115371313877404, 0.05928639695048332, -0.013854156248271465, -0.017519444227218628, -0.01112667191773653, -0.009142578579485416, -0.024685930460691452, -0.014084124937653542, 0.0037963141221553087, -0.051890838891267776, -0.02595547027885914, -0.040292732417583466, -0.02380301244556904, -0.05634034052491188, -0.0539800226688385, -0.012946195900440216, 0.05292310565710068, 0.007929912768304348, -0.004579403903335333, -0.012956264428794384, 0.01997063308954239, -0.11838497966527939, 0.023431075736880302, -0.049488771706819534, -0.02794715389609337, -0.022256646305322647, 0.015019440092146397, 0.04183829203248024, -0.020490387454628944, -0.05119383707642555, 0.012882089242339134, 0.01837753690779209, 0.018808363005518913, 0.004860669374465942, 0.014108019880950451, -0.02466789074242115, -0.038455408066511154, 0.0014011214952915907, 0.06688261777162552, 0.027510063722729683, 0.017094727605581284, -0.011949974112212658, 0.0040924083441495895, 0.03824872523546219, 0.03155440092086792, 0.007348200306296349, 0.02784852311015129, 0.010035205632448196, 0.05097128078341484, -0.06501606851816177, 0.01365768164396286, -0.042509645223617554, 0.01380435936152935, -0.018381193280220032, -0.05873700976371765, 0.018770020455121994, 0.03741789236664772, -0.001076649408787489, -0.011090803891420364, -0.04088893160223961, -0.004905750043690205, -0.08041934669017792, -0.036583416163921356, -0.025020768865942955, -0.002671889727935195, 0.038771070539951324, 0.020013559609651566, -0.02090422436594963, -0.05897124484181404, 0.032597701996564865, 0.02641323022544384, -0.005379694979637861, -0.07608195394277573, -0.05985569208860397, -0.02919701114296913, 0.011460273526608944, -0.00951765663921833, 0.04305442422628403, 0.0011516498634591699, 0.024125931784510612, -0.012649699114263058, -0.024282902479171753, 0.003568755928426981, 0.00564256077632308, 0.0007191745098680258, -0.027599237859249115, -0.02187751792371273, -0.017954006791114807, 0.013483029790222645, -0.014081163331866264, 0.030914388597011566, 0.020150262862443924, 0.052710916846990585, 0.015524261631071568, 0.021328017115592957, 0.01334055233746767, 0.001781356055289507, 0.04189223051071167, -0.019796961918473244, -0.04831749200820923, 0.039034485816955566, -0.03226049989461899, -0.0373096838593483, -0.018873635679483414, 0.0180759709328413, -0.028066974133253098, -0.02750151976943016, -0.03778059780597687, 0.035042643547058105, -0.042748622596263885, -0.04790327325463295, -0.033819157630205154, -0.003641067072749138, 0.026635264977812767, -0.03561533987522125, 0.039162494242191315, -0.011267358437180519, -0.012724196538329124, -0.004112271126359701, 0.010780132375657558, -0.003562622470781207, 0.06766275316476822, -0.006539979018270969, 0.021321184933185577, -0.004088504705578089, 0.010753512382507324, 0.031072068959474564, 0.01015651598572731, 0.023952599614858627, -0.002185627119615674, 0.025472456589341164, -0.01951398141682148, 0.06157565861940384, 0.028553087264299393, 0.0022292619105428457, -0.0005766370450146496, -0.010145032778382301, -0.029909545555710793, -0.02890787087380886, -0.006118586286902428, -0.014459689147770405, 0.02218700759112835, -0.04177609831094742, -0.07208332419395447, 0.023256316781044006, 0.001463211257942021, 0.030235210433602333, -0.00040632716263644397, 0.01717868447303772, 0.024847084656357765, -0.013809465803205967, 0.015123318880796432, 0.03821813315153122, -0.05605914071202278, 0.03763294592499733, 0.00530468812212348, 0.019481603056192398, 0.04716651514172554, 0.015599425882101059, -0.0453222393989563, -0.008094771765172482, -0.008963881991803646, -0.008667067624628544, -0.027105819433927536, -0.017435390502214432, -0.01193313766270876, 0.009563581086695194, -0.022326475009322166, -0.023307600989937782, -0.009010386653244495, 0.013669721782207489, -0.038416530936956406, -0.017238548025488853, 0.032873984426259995, -0.032744474709033966, -0.01237180083990097, 0.023867426440119743, -0.04449012875556946, 0.021561769768595695, -0.03796518221497536, 0.010318059474229813, 0.01778993010520935, -0.02331080101430416, -0.018853673711419106, -0.06714826077222824, 0.006006800569593906, -0.0131452651694417, 0.06888397783041, -0.012568730860948563, 0.0013673263601958752, -0.024296671152114868, -0.02494586817920208, -0.02639654278755188, 0.013489830307662487, 0.014363295398652554, -0.0047957561910152435, 0.0004103186074644327, 0.0464482381939888, -0.009225892834365368, 0.03911012411117554, 0.008004588074982166, -0.0014319318579509854, 0.08733204752206802, -0.0573030486702919, -0.021269675344228745, -0.0283647533506155, -0.0600559264421463, -0.0014306610682979226, 0.01110121700912714, 0.01515481248497963, -0.027969496324658394, 0.035383474081754684, 0.04423973336815834, 0.007217033766210079, 0.048955608159303665, 0.009090792387723923, 0.027043353766202927, -0.01953280344605446, 0.025822706520557404, -0.06622180342674255, 0.014368164353072643, 0.03559860959649086, 0.00943799689412117, -0.04028341919183731, -0.026383688673377037, -0.010972095653414726, 0.06708796322345734, -0.05680897459387779, -0.03070116601884365, 0.0034469047095626593, -0.016332924365997314, 0.004503866191953421, 0.0032466163393110037, -0.057613540440797806, 0.041136424988508224, 0.03311455622315407, -0.03126635029911995, -0.043757129460573196, -0.03646877035498619, 0.06531073898077011, 0.03352423384785652, 0.010991486720740795, -0.04295818507671356, -0.005156530532985926, 0.037153761833906174, 0.019336044788360596, 0.021589335054159164, 0.07453390210866928, -0.028201330453157425, 0.02068672515451908, 0.010436109267175198, -0.04014086723327637, -0.015495836734771729, -0.0002920347615145147, 0.03215719014406204, -0.06412128359079361, -0.0035202116705477238, 0.005955155473202467, -0.009850221686065197, -0.05170177295804024, 0.07276325672864914, 0.015337923541665077, -0.028110291808843613, -0.046980950981378555, 0.011792842298746109, -0.05357343703508377, 0.0016795474803075194, -0.00250258925370872, 0.0066551631316542625, -0.0329325869679451, 0.06955563277006149, 0.02380990982055664, -0.006815958768129349, 0.0785590261220932, 0.010187490843236446, 0.01590687595307827, -0.019089460372924805, 0.06493628025054932, 0.0785803273320198, 0.020060017704963684, -0.006286877207458019, 0.039344366639852524, -0.04215894639492035, -0.05372888222336769, 0.02440708503127098, -0.042429354041814804, -0.025396404787898064, 0.002276632934808731, 0.03729736804962158, 0.08063376694917679, 0.00833299569785595, 0.057771503925323486, -0.03318580985069275, -0.0016110272845253348, -0.027928587049245834, 0.029220102354884148, 0.04069943353533745, 0.033245284110307693, 0.006096637342125177, 0.016567617654800415, 0.0371403768658638, -0.047157760709524155, 0.03156649321317673, -0.01987023837864399, -0.0358206145465374, 0.01526782289147377, 0.013209672644734383, 0.01493316050618887, 0.006684516556560993, 0.045158062130212784, 0.07223816215991974, -0.0118683697655797, -0.020298369228839874, -0.006988438777625561, 0.010921433568000793, 0.01188630610704422, -0.009177840314805508, -0.011779526248574257, -0.04068883880972862, 0.005105406045913696, 0.0015979144955053926, -0.02267995849251747, -0.054567497223615646, -0.029749678447842598, 0.03424293175339699, -0.033794429153203964, 0.015593243762850761, 0.00956670194864273, -0.011143630370497704, -0.03155672922730446, -0.054782554507255554, -0.06949087232351303, -0.021876206621527672, -0.07376855611801147, -0.036065924912691116, 0.03491532802581787, -0.017658809199929237, -0.02581074647605419, -0.02341979369521141, -0.01909215748310089, -0.004561794921755791, 0.057458534836769104, -0.027100924402475357, -0.026725320145487785, 0.026676228269934654, -0.01757405512034893, 0.04701131582260132, 0.028836539015173912, 0.036058686673641205, 0.0059767127968370914, -0.007591040339320898, -0.045626528561115265, -0.018471119925379753, 0.05676901713013649, 0.028829850256443024, 0.012917961925268173, -0.08793648332357407, 0.014780870638787746, -0.0014774642186239362, 0.01829971931874752, -0.07325902581214905, -0.004360015969723463, 0.0365077443420887, -0.01779133640229702, 0.04017512872815132, -0.028924694284796715, -0.043227799236774445, -0.021963555365800858, -0.018557481467723846, 0.022923102602362633, 0.041829802095890045, 0.02500056102871895, -0.023144517093896866, 0.07291362434625626, 0.0354398638010025, -0.011750631965696812, -0.024927420541644096, 0.031297869980335236, -0.012828637845814228, -0.002577447798103094, -0.03179263323545456, -0.03820434957742691, -0.029853198677301407, -0.04482243210077286, -0.0006320755928754807, 0.03286189213395119, 0.0019920109771192074, -0.02532859519124031, 0.02847781777381897, 0.04663922265172005, -0.0781143307685852, 0.04100273177027702, -0.01978806033730507, 0.049779582768678665, -0.031588729470968246, -0.027915431186556816, 0.004729996435344219, 0.03812249377369881, 0.01448699738830328, -0.019670436158776283, 0.022438470274209976, -0.015744198113679886, -0.0207058172672987, -0.017237070947885513, 0.02655256912112236, 0.06148728355765343, -0.02518785186111927, 0.042506951838731766 ]
[ -0.09917324781417847, -0.022339818999171257, -0.036354657262563705, -0.04168487712740898, 0.02291291393339634, -0.0456281341612339, 0.025941748172044754, 0.042931344360113144, 0.008547579869627953, -0.051912784576416016, -0.0053496998734772205, 0.006710557732731104, 0.011131447739899158, 0.002387268701568246, 0.06500457227230072, 0.016429411247372627, -0.037982720881700516, -0.042258840054273605, -0.029294786974787712, 0.019351385533809662, 0.060254644602537155, -0.008349969983100891, -0.04945283383131027, -0.020212944597005844, 0.005861222743988037, 0.03912750631570816, 0.027017230167984962, -0.010709227062761784, 0.0012738666264340281, -0.18941454589366913, -0.0006319566164165735, -0.005642785225063562, -0.011724653653800488, -0.026984279975295067, 0.015748444944620132, 0.006069876253604889, 0.001834826311096549, 0.03628763556480408, -0.0014056480722501874, 0.07791353762149811, 0.03355618566274643, 0.051207248121500015, -0.08582346886396408, -0.022155720740556717, 0.009981771931052208, -0.02096782810986042, -0.029575364664196968, -0.0013137144269421697, 0.02565258927643299, -0.012124213390052319, -0.07571777701377869, -0.00818816851824522, 0.006836585234850645, 0.010433675721287727, -0.01952848583459854, 0.0235269945114851, 0.03871231898665428, 0.051145441830158234, 0.010653519071638584, 0.031348079442977905, 0.022456856444478035, -0.060357578098773956, -0.09946504235267639, 0.09809856861829758, -0.0014442125102505088, 0.03919646143913269, 0.0027007570024579763, -0.016741478815674782, 0.007169840391725302, 0.043296512216329575, 0.0030586845241487026, -0.020950710400938988, -0.02151525393128395, 0.0788053646683693, 0.01249450072646141, -0.0074864099733531475, -0.006559836678206921, 0.0012918426655232906, 0.018697917461395264, -0.017876306548714638, -0.05325838178396225, -0.06501752883195877, 0.02328815869987011, -0.003144547576084733, -0.009653079323470592, 0.04212243854999542, -0.0019311928190290928, 0.04354644566774368, 0.07744664698839188, 0.02673780731856823, 0.021616196259856224, 0.021991143003106117, 0.0467229001224041, -0.0031152779702097178, -0.07882386445999146, -0.006524996366351843, -0.02650231309235096, -0.006996148731559515, -0.053397711366415024, 0.42670947313308716, -0.0033654305152595043, -0.012386725284159184, 0.06469474732875824, 0.04258919879794121, 0.005190002731978893, -0.009993335232138634, -0.016217054799199104, -0.05590449646115303, -0.007948662154376507, -0.05409171059727669, -0.0009572230046615005, -0.014412174932658672, 0.06328830122947693, -0.06394874304533005, -0.037593793123960495, 0.01671721786260605, -0.002235608408227563, -0.012157786637544632, -0.014701301231980324, -0.01061800867319107, -0.008137205615639687, -0.009866531938314438, 0.019056545570492744, 0.02261887490749359, 0.006074492819607258, -0.015227668918669224, 0.01691553182899952, 0.06989168375730515, 0.012924733571708202, 0.018194518983364105, 0.052487216889858246, -0.05372042953968048, -0.05693792924284935, -0.03529505431652069, 0.03454995155334473, 0.013462522998452187, 0.041452594101428986, -0.038240451365709305, 0.021400652825832367, 0.014397388324141502, 0.018871553242206573, -0.03367814049124718, -0.008037906140089035, -0.02355967089533806, -0.04147034138441086, 0.14465366303920746, -0.009955327026546001, 0.005205431021749973, -0.024160904809832573, -0.05925635248422623, -0.0018805523868650198, 0.05153048411011696, 0.020029477775096893, -0.07593376189470291, 0.009731431491672993, 0.02578889951109886, 0.057143084704875946, 0.003022158285602927, -0.0070732589811086655, -0.002022252883762121, 0.00028102740179747343, 0.005630764644593, -0.05197705700993538, 0.07115239650011063, 0.019376451149582863, -0.08113667368888855, -0.0330757312476635, 0.009348391555249691, -0.03334252908825874, -0.0352269746363163, -0.01724340207874775, 0.003024596953764558, -0.034153781831264496, -0.017636897042393684, 0.03560234233736992, 0.002637238008901477, -0.05179255083203316, -0.03811388090252876, 0.020968344062566757, 0.030034231022000313, -0.004503769800066948, 0.04034668207168579, -0.06362003833055496, 0.002218932844698429, 0.012847715057432652, -0.0931960716843605, -0.045849692076444626, 0.009807948023080826, -0.008610300719738007, -0.018712125718593597, -0.028231609612703323, -0.019685696810483932, -0.012516678310930729, 0.04636417701840401, -0.017325911670923233, -0.014739591628313065, 0.006150237284600735, -0.0169705618172884, 0.042409587651491165, 0.005345666315406561, 0.0891125425696373, 0.05319470539689064, 0.018413851037621498, 0.03765988349914551, -0.06057187169790268, 0.011688590049743652, 0.0016722780419513583, -0.05237026512622833, 0.04709726199507713, 0.027103299275040627, -0.05237143114209175, 0.01930622011423111, 0.007930933497846127, 0.04397684708237648, 0.0066856807097792625, -0.042697444558143616, 0.013822067528963089, 0.042592599987983704, 0.013658437877893448, -0.013144802302122116, -0.04252111166715622, -0.021626228466629982, 0.02096226066350937, -0.3373072147369385, -0.05255359038710594, -0.012492232024669647, -0.017408329993486404, -0.03391537442803383, -0.030464040115475655, 0.0006723475526086986, -0.01942032389342785, -0.08723065257072449, 0.01998702809214592, 0.09327258914709091, -0.021168481558561325, -0.010662682354450226, -0.062406253069639206, 0.003998058848083019, 0.014179746620357037, -0.05362792685627937, -0.05333281680941582, -0.03252723440527916, 0.030957965180277824, -0.006988741923123598, 0.014333921484649181, 0.031224051490426064, -0.05369482934474945, -0.0183437280356884, -0.021117892116308212, 0.09560602903366089, -0.03345739096403122, 0.107884980738163, -0.04581119492650032, 0.040605392307043076, 0.0015301213134080172, 0.04106343537569046, -0.047836899757385254, -0.002744225785136223, -0.038745902478694916, -0.020586755126714706, 0.005769520066678524, 0.04784904792904854, -0.015935096889734268, -0.04627630487084389, 0.022980520501732826, -0.05088032782077789, -0.03397238999605179, 0.010634399019181728, -0.02425115928053856, -0.04434163495898247, -0.026323048397898674, -0.0141593674197793, 0.06543469429016113, -0.0331701897084713, -0.011055695824325085, 0.014209700748324394, 0.04656166955828667, 0.028847169131040573, -0.018163632601499557, -0.042047079652547836, -0.02012922428548336, 0.021285736933350563, -0.03432171046733856, 0.04193280637264252, 0.0699186697602272, 0.046639930456876755, -0.033284083008766174, 0.02806641347706318, -0.010668282397091389, 0.0038987183943390846, 0.010884593240916729, 0.029924485832452774, -0.06999828666448593, -0.056577395647764206, 0.10684168338775635, -0.004888872615993023, -0.016524437814950943, 0.01498253270983696, 0.05950001999735832, -0.01073913462460041, -0.03292130306363106, -0.003029531566426158, -0.002320552244782448, -0.002679860219359398, 0.02769724279642105, 0.028428703546524048, -0.019668640568852425, -0.02904564142227173, 0.033224206417798996, -0.040019311010837555, 0.05165497213602066, 0.036444567143917084, -0.05317625775933266, -0.013500158675014973, -0.011178262531757355, -0.025784669443964958, -0.028566628694534302, 0.08712460100650787, -0.0025434980634599924, -0.2553054094314575, 0.004643631167709827, 0.08206216990947723, 0.0432920977473259, -0.015359053388237953, 0.04822544381022453, 0.009619521908462048, -0.053799208253622055, 0.023731796070933342, -0.003250512760132551, 0.05081760883331299, -0.009869194589555264, 0.028873205184936523, -0.029641294851899147, 0.02071942389011383, 0.012411779724061489, 0.07249976694583893, 0.0010292640654370189, 0.019434550777077675, 0.020319579169154167, 0.03560052812099457, 0.019528696313500404, 0.1904001235961914, 0.02428556978702545, 0.030719749629497528, 0.041358571499586105, 0.03277670592069626, 0.028605567291378975, 0.05700552836060524, 0.029498601332306862, 0.03388090059161186, -0.035596877336502075, 0.06467783451080322, -0.009107566438615322, 0.02019551582634449, -0.08950506895780563, 0.01452784612774849, 0.024166233837604523, 0.010075006633996964, -0.0179157592356205, -0.058698952198028564, 0.01615104265511036, -0.06980579346418381, 0.010409248061478138, 0.10458802431821823, 0.029198097065091133, -0.02172088250517845, -0.06903021037578583, -0.03713041543960571, 0.02036846987903118, -0.057788699865341187, -0.03958539664745331, 0.027657395228743553, -0.013819308020174503, 0.008029122836887836, 0.03427997604012489, 0.001508159446530044, -0.02721026912331581, -0.04333123937249184, 0.0288787093013525, 0.04668998345732689, -0.006544365081936121, 0.0644717812538147, 0.028497928753495216, 0.03836909681558609 ]
[ -0.033928219228982925, 0.044582054018974304, -0.005547856446355581, 0.012599973008036613, -0.020247578620910645, -0.0032424351666122675, 0.027071824297308922, 0.018047092482447624, 0.014316422864794731, -0.028617089614272118, -0.019552933052182198, -0.011237969622015953, 0.04265229031443596, -0.01793096587061882, 0.04226197674870491, -0.031139500439167023, 0.010380181483924389, -0.04093930125236511, 0.03630998730659485, 0.01787785440683365, 0.0058932071551680565, 0.07740142196416855, -0.017744068056344986, -0.012674698606133461, -0.038413576781749725, -0.004335198551416397, 0.014356420375406742, -0.0555163137614727, 0.015450455248355865, -0.14633327722549438, -0.012837282381951809, -0.022397199645638466, -0.024683117866516113, -0.004018384497612715, -0.028496086597442627, -0.0009721130481921136, 0.060684118419885635, 0.014405665919184685, -0.013829312287271023, 0.04155556112527847, -0.02200496196746826, 0.003976108971983194, -0.01567084714770317, 0.002057059668004513, 0.007912060245871544, -0.005687471944838762, -0.02318056859076023, -0.0262532290071249, 0.008311588317155838, 0.007207952905446291, -0.021477213129401207, -0.005493784323334694, -0.004776248708367348, 0.018098246306180954, 0.04575062543153763, -0.05243726074695587, -0.032094232738018036, -0.05386906862258911, 0.004973091650754213, 0.04074486345052719, -0.008133668452501297, -0.00798381119966507, -0.0045088971965014935, -0.005193291697651148, 0.03513767570257187, 0.002166972728446126, 0.015390257351100445, -0.004581916145980358, -0.017621122300624847, -0.046087268739938736, -0.01238374225795269, -0.007305769249796867, -0.01552548073232174, 0.01692582294344902, -0.0017533564241603017, -0.0006718207732774317, 0.04215864837169647, -0.022105544805526733, -0.034438326954841614, -0.03304596245288849, -0.03719703480601311, 0.011168139986693859, 0.011919451877474785, 0.029338885098695755, 0.004003586247563362, 0.013637220486998558, -0.0003585081431083381, 0.014160001650452614, 0.042450644075870514, 0.035471752285957336, -0.009105521254241467, 0.03868113458156586, 0.011560522019863129, 0.03129174932837486, -0.02849332056939602, 0.024281509220600128, 0.009801536798477173, -0.02146283909678459, -0.04877331852912903, 0.818078875541687, 0.0026808802504092455, 0.07676071673631668, 0.05640311539173126, 0.01975872926414013, -0.012387900613248348, -0.0318087674677372, -0.013510234653949738, -0.010183434002101421, 0.004545653238892555, -0.043161824345588684, 0.015947841107845306, 0.018993442878127098, 0.006855117157101631, 0.005871392786502838, -0.014398539438843727, 0.02490209974348545, 0.024214942008256912, -0.04874521121382713, -0.027860127389431, -0.0030384825076907873, 0.026166167110204697, 0.023212235420942307, -0.0021064667962491512, 0.0006621741340495646, 0.01055686641484499, -0.1573439985513687, 0.01409977488219738, -8.53372678777296e-33, 0.016609400510787964, -0.02018243819475174, 0.030472906306385994, 0.030321337282657623, 0.020758291706442833, -0.022278152406215668, -0.008170299232006073, 0.0059166862629354, 0.03403657302260399, -0.031037019565701485, -0.0014964662259444594, -0.013855449855327606, 0.03464236482977867, -0.03082885965704918, 0.06102825701236725, -0.01930858939886093, 0.003808039240539074, 0.04070043936371803, 0.017641957849264145, -0.010991941206157207, 0.0016428115777671337, 0.03366853669285774, 0.03158903121948242, -0.020945385098457336, 0.014112564735114574, 0.05159926787018776, -0.001964489696547389, 0.004512210376560688, -0.0002290369156980887, -0.05163833871483803, 0.0014456320786848664, -0.014051225036382675, -0.006929988041520119, -0.01406600046902895, 0.021815715357661247, -0.020043909549713135, -0.011320935562252998, 0.006400800310075283, -0.022353222593665123, -0.03853389620780945, -0.021893536671996117, 0.014717458747327328, -0.01996350660920143, 0.036917656660079956, -0.023405686020851135, -0.05278278887271881, -0.013727578334510326, -0.014506284147500992, 0.031210822984576225, 0.05397450923919678, 0.012317494489252567, 0.060856811702251434, -0.008648532442748547, 0.012856473214924335, -0.014110521413385868, 0.013931125402450562, -0.019356535747647285, 0.01998063176870346, -0.0017962484853342175, -0.0031259029638022184, 0.0397205650806427, -0.017987174913287163, -0.008739559911191463, 0.02541329152882099, 0.001992001198232174, -0.03930462524294853, -0.021347392350435257, 0.009314303286373615, 0.0039015221409499645, -0.03227001056075096, -0.02103046327829361, -0.011977524496614933, 0.019404493272304535, 0.004680438432842493, -0.0016975546022877097, -0.009782069362699986, 0.008238986134529114, -0.03802035003900528, -0.01567274145781994, 0.011731099337339401, 0.02295978181064129, 0.0037463600747287273, -0.019861482083797455, 0.02135286293923855, -0.00035940887755714357, 0.00784299336373806, 0.055304061621427536, -0.015657303854823112, -0.003691459307447076, -0.014009826816618443, -0.005500033497810364, 0.06510324776172638, -0.012371310964226723, -0.005250424612313509, -0.013968418352305889, 7.522732585772682e-33, 0.004540752619504929, -0.018729548901319504, 0.010561252012848854, -0.005859422497451305, 0.004256588406860828, -0.003877943614497781, 0.01725001260638237, 0.017888827249407768, -0.0620327927172184, 0.017291834577918053, 0.002337187761440873, 0.04699525237083435, -0.03694511577486992, 0.024983370676636696, 0.06285322457551956, 0.006309002172201872, -0.001771533046849072, 0.015134054236114025, -0.011503971181809902, 0.0110895661637187, 0.04208878055214882, 0.010529503226280212, 0.025668134912848473, -0.0063948845490813255, -0.017479896545410156, 0.07342758774757385, -0.033378392457962036, -0.019893594086170197, -0.006093563977628946, -0.04263143613934517, 0.028036272153258324, -0.02102644555270672, 0.007979252375662327, -0.05198810622096062, -0.0027876142412424088, 0.007872198708355427, 0.0032569211907684803, 0.008603844791650772, 0.03496203199028969, 0.00021429946355056018, 0.029141126200556755, -0.017112649977207184, -0.004764418583363295, -0.003471139818429947, 0.025669420138001442, -0.022057844325900078, -0.006181931588798761, -0.03660571947693825, 0.02996864542365074, 0.06237659230828285, 0.037180930376052856, 0.014401932246983051, -0.0028546799439936876, 0.03673757612705231, 0.016100089997053146, -0.03636978939175606, 0.022607117891311646, -0.019057132303714752, -0.025501539930701256, -0.013131500221788883, -0.004469306208193302, 0.009579893201589584, -0.038214147090911865, -0.002357994904741645, -0.010774783790111542, -0.026111247017979622, -0.04619159922003746, -0.04024583101272583, -0.03458033874630928, -0.018391743302345276, -0.031446196138858795, -0.009259434416890144, -0.02852088212966919, -0.00895621720701456, -0.01922697015106678, -0.024358047172427177, 0.018332168459892273, -0.03027419000864029, -0.011925066821277142, 0.003861937439069152, 0.011063069105148315, -0.022642072290182114, 0.049306657165288925, -0.01056248415261507, -0.03959853947162628, -0.025546010583639145, 0.00994181539863348, -0.06023586541414261, 0.004602626897394657, 0.001003869459964335, -0.02195923589169979, -0.04402419179677963, 0.003643321804702282, 0.009516348131000996, 0.02278841845691204, -1.3169358936693243e-8, -0.07634162157773972, 0.012160020880401134, -0.025717437267303467, 0.033154744654893875, 0.008853032253682613, -0.011147957295179367, -0.08020766824483871, -0.07116382569074631, 0.003164889058098197, 0.00943911075592041, 0.0030435214284807444, -0.030509741976857185, 0.011255879886448383, 0.023340871557593346, 0.05418787896633148, -0.054570600390434265, -0.03588484972715378, -0.01828254945576191, 0.022621244192123413, 0.01911124959588051, -0.027752704918384552, 0.010725692845880985, 0.023656032979488373, -0.025710683315992355, 0.016809366643428802, -0.010207648389041424, 0.02363000065088272, -0.07637669891119003, 0.004721328150480986, 0.024882672354578972, -0.019100798293948174, -0.024361344054341316, -0.017919620499014854, -0.012832285836338997, -0.0334327295422554, -0.01727374643087387, -0.018908528611063957, 0.0034996671602129936, 0.01753021404147148, -0.00857983436435461, 0.004437408410012722, -0.026598934084177017, 0.014646154828369617, 0.005092772655189037, 0.015452519059181213, -0.00671475799754262, -0.037057917565107346, 0.024619029834866524, 0.06080653518438339, -0.018897907808423042, -0.0017442024545744061, 0.01494648214429617, 0.08554490655660629, -0.021843798458576202, -0.001707628951407969, 0.03550521284341812, 0.02704434283077717, -0.030637700110673904, 0.019191857427358627, 0.025662574917078018, 0.044023796916007996, 0.0068054525181651115, -0.03940363600850105, 0.003186088753864169 ]
functional-c-extracting-a-higher-order-function-with-generics
https://markhneedham.com/blog/2010/02/08/functional-c-extracting-a-higher-order-function-with-generics
false
2010-02-08 22:48:05
Willed vs Forced designs
[ "coding" ]
[ "Coding" ]
I came across an interesting post that Roy Osherove wrote a few months ago where he talks about 'http://weblogs.asp.net/rosherove/archive/2009/11/12/test-driven-design-willed-vs-forced-designs.aspx[Willed vs Forced Designs]' and some common arguments that people give for not using TypeMock on their projects. I'm not really a fan of the TypeMock approach to dealing with dependencies in tests because it seems to avoid the fact that the code is probably bad in the first place if we have to resort to using some of the approaches it encourages. Having said that Roy makes the following point which I think is quite accurate: ____ You let an automated tool (rhino mocks, Moq etc..) tell you when your design is OK or not. That point alone should go against anything ALT.NET has ever stood for, doesn't it? If you need a tool to tell you what is good or bad design, then you are doing it wrong. ____ While it is true that it's useful to be able to know for ourselves whether our code is drifting into territory where it's become way too complicated, I think it is useful to have the tests as a reminder that this is becoming the case. It's quite easy when you have a delivery deadline and are under pressure to stop being as observant about the quality of what you're coding and to rush to complete our particular task. In these situations it can be useful to be restricted by our framework to the extent that the pain we'll feel in trying to test our code will act as an indicator that we're doing something wrong. What I found interesting when reading Roy's post is that the arguments sound sounds quite similar to the discussion a couple of years ago with respect to whether using Mockito instead of jMock was bad because http://dannorth.net/2008/09/the-end-of-endotesting#comment-17523[it hides design problems that you have with dependencies]. Steve Freeman wrote the following comment on Dan's post: ____ But, it also became clear that he wrote Mockito to address some weak design and coding habits in his project and that the existing mocking frameworks were doing exactly their job of forcing them into the open. How a team should respond to that feedback is an interesting question. In the meantime, I've found that I /can/ teach using the existing frameworks if I concentrate on what they were intended for: focusing on the relationships between collaborating objects. I've seen quite a few students light up when they get the point. In fact, the syntactic noise in jMock really helps to bring this out, whereas it's easy for it to get lost with easymock and mockito. ____ In this case I definitely prefer the style of mocking that we get with Mockito over jMock even though I've worked on code bases where we've created objects with way too many dependencies and haven't felt the pain as much because the framework is so easy to use. I can't think of a compelling argument for why this is different to the TypeMock vs other mocking frameworks argument. It seems to be a similar argument around dependencies in our code. The other thing I'm intrigued about is whether the choice of framework should be in some way linked to the level of skill of the people who are going to use it. If someone is a Dreyfus Model novice with respect to object oriented design then it would make much more sense to use a tool which makes it really obvious that they're doing something wrong. In that case using a perhaps more limited tool would just be a quick feedback mechanism. Once we have a bit more skill then it would seem more appropriate to use the more powerful tool which we have the ability to abuse but hopefully now have the experience to know when we can and cannot get away with doing so. In the end the argument seems quite similar to ones I've often heard about http://en.citizendium.org/wiki/Ruby_programming_language[programming in Ruby] and whether or not we should give programmers powerful language features because they're liable to hang themselves. In conclusion I'm thinking that perhaps TypeMock in experienced hands isn't such a bad thing and could actually be useful in some select situations but would probably be quite a dangerous tool for someone new to the whole unit testing game.
null
null
[ 0.01922467164695263, -0.008054656907916069, 0.003385000629350543, 0.04884779080748558, 0.0648607388138771, 0.01576942577958107, 0.05067197605967522, 0.021857745945453644, 0.022337015718221664, -0.037746112793684006, -0.001574879977852106, 0.016949202865362167, -0.059510085731744766, -0.004480619914829731, -0.05597822368144989, 0.08112390339374542, 0.053425148129463196, -0.03541683033108711, 0.048692427575588226, 0.00186483608558774, 0.04295993223786354, 0.02252587489783764, 0.00373862381093204, 0.0427437424659729, 0.033527929335832596, 0.03399251773953438, 0.010668176226317883, -0.010247653350234032, -0.04875563830137253, -0.02474191226065159, 0.04118836298584938, 0.018977226689457893, -0.0028195951599627733, -0.02541705034673214, 0.013293403200805187, 0.007064017467200756, -0.016827581450343132, 0.02710159681737423, 0.023771747946739197, 0.030280806124210358, -0.07255741208791733, 0.0470057912170887, 0.011084532365202904, 0.013387256301939487, -0.04260087013244629, 0.01179378293454647, -0.024075642228126526, -0.00035376782761886716, -0.0012011027429252863, 0.003425939241424203, -0.050003811717033386, 0.06192566826939583, -0.027410173788666725, 0.0010853236308321357, -0.0124386977404356, 0.03921361640095711, 0.03526647761464119, -0.08202153444290161, 0.023393644019961357, -0.05622890964150429, -0.010412556119263172, 0.00022027910745237023, -0.002013423014432192, 0.035035133361816406, 0.017339665442705154, -0.002742298413068056, -0.023656172677874565, 0.027296187356114388, -0.04785380885004997, 0.0030933679081499577, -0.006246350239962339, 0.00726979598402977, 0.0048879715614020824, -0.022455908358097076, 0.0308870617300272, -0.04365528002381325, -0.012731803581118584, 0.06214335188269615, 0.0271448977291584, 0.03332065790891647, -0.005118022207170725, 0.01713288202881813, 0.02407386712729931, 0.020687254145741463, -0.013157089240849018, -0.026269137859344482, 0.024181002750992775, 0.010537823662161827, -0.03782004490494728, 0.05807154253125191, 0.026965998113155365, -0.0588812455534935, 0.04570072516798973, 0.034443315118551254, 0.0001759773149387911, 0.023114021867513657, 0.03153490275144577, 0.005128693301230669, -0.013672337867319584, 0.01394872646778822, -0.024925781413912773, -0.011829442344605923, 0.004917705897241831, 0.0040439944714307785, -0.07484578341245651, -0.027337132021784782, -0.02632264234125614, -0.02135842852294445, -0.029311643913388252, 0.024522017687559128, -0.053589072078466415, 0.03514732047915459, -0.0030739859212189913, -0.02530037611722946, -0.0758029893040657, 0.062010034918785095, -0.013143408112227917, -0.047609444707632065, -0.010918169282376766, 0.02349640242755413, 0.03796004876494408, 0.02013039030134678, -0.022847352549433708, 0.0831458792090416, 0.05308732017874718, 0.03435705229640007, -0.03210991993546486, 0.049681372940540314, -0.010030724108219147, -0.0595480315387249, -0.0001661478163441643, 0.059646930545568466, -0.0180573258548975, -0.0037951290141791105, 0.00070358527591452, -0.02968127839267254, -0.002008700743317604, -0.0016826943028718233, 0.02942359820008278, 0.08009731769561768, -0.031448960304260254, -0.039553143084049225, 0.022584035992622375, 0.007595334202051163, 0.02276618778705597, 0.002321990206837654, 0.01131362933665514, -0.02774236351251602, -0.032061610370874405, 0.02665635570883751, 0.014399344101548195, 0.039189159870147705, 0.00186829618178308, -0.03691166266798973, 0.02343064919114113, 0.07556498050689697, 0.030180111527442932, 0.003193383803591132, 0.0007105403929017484, 0.027076495811343193, 0.05301224812865257, 0.03747072070837021, 0.01686836965382099, 0.03166856989264488, 0.03562210872769356, 0.0015015627723187208, -0.011692595668137074, 0.02677551470696926, 0.005099802743643522, 0.011738111265003681, -0.058778513222932816, -0.05833461508154869, 0.05441443622112274, -0.03847719728946686, -0.01649428904056549, 0.028431711718440056, 0.09599070996046066, 0.023258406668901443, 0.05562872812151909, 0.013331528753042221, -0.07316767424345016, 0.016306255012750626, 0.018269238993525505, 0.00831990223377943, 0.016008995473384857, -0.004745565354824066, 0.05470455065369606, 0.006277644541114569, -0.01065556425601244, 0.04756756126880646, -0.06727030128240585, -0.09335403889417648, -0.01559394970536232, -0.025727801024913788, 0.07511264085769653, -0.03808983042836189, -0.02387424185872078, 0.09071172028779984, 0.023564046248793602, 0.0480213426053524, 0.032926294952631, 0.0019653397612273693, -0.0020849627908319235, -0.036237191408872604, -0.026576494798064232, 0.049674589186906815, 0.040632784366607666, 0.005307474173605442, -0.055737726390361786, 0.013966573402285576, 0.002248646691441536, -0.03261988237500191, 0.019240641966462135, -0.02765870839357376, 0.03145506978034973, 0.01040634885430336, 0.07260850816965103, -0.028490625321865082, 0.06018035113811493, -0.06216821447014809, 0.018516065552830696, -0.027698282152414322, -0.02261612005531788, -0.004447189159691334, -0.005206351168453693, 0.10531966388225555, 0.05311250314116478, -0.05145258083939552, -0.031508274376392365, -0.001081944676116109, 0.02388353832066059, -0.04382852092385292, 0.00872696191072464, 0.003374373307451606, -0.00033327931305393577, -0.003963821567595005, -0.04629797115921974, -0.022948116064071655, 0.03953413665294647, -0.04430202394723892, 0.02779151313006878, 0.08437822759151459, -0.023562991991639137, 0.04877990484237671, -0.034009382128715515, -0.013657161965966225, -0.015432539395987988, -0.011589426547288895, -0.05991143733263016, 0.0019416282884776592, 0.005417256616055965, -0.016812963411211967, 0.05784304067492485, -0.02475835755467415, -0.021278439089655876, -0.026401596143841743, -0.040526289492845535, 0.012408075854182243, 0.011321593075990677, 0.0724831074476242, -0.01360417902469635, 0.03712661936879158, -0.00010340740846004337, 0.03113013505935669, 0.009385635145008564, -0.05069318413734436, -0.020127426832914352, 0.004827721510082483, 0.001897022477351129, 0.05210120975971222, -0.002168006729334593, 0.00959065742790699, 0.011624469421803951, 0.00800358783453703, -0.021499287337064743, -0.014076109044253826, 0.03341500088572502, 0.013942081481218338, -0.036396052688360214, -0.011507002636790276, -0.04757207632064819, 0.044148243963718414, -0.02126399800181389, -0.017145903781056404, 0.022983528673648834, -0.07160374522209167, 0.04442768916487694, -0.08575016260147095, -0.05517709255218506, 0.012164704501628876, 0.04625077545642853, 0.03779085725545883, -0.0039800307713449, 0.03220578655600548, 0.07051444053649902, 0.017182940617203712, 0.009538719430565834, 0.01242330577224493, -0.008312121964991093, 0.009902606718242168, 0.0041949208825826645, -0.015971090644598007, 0.017112644389271736, 0.03907858207821846, 0.03148551285266876, -0.03932001441717148, 0.033024467527866364, -0.00998498871922493, -0.2851826548576355, 0.018011972308158875, 0.028283094987273216, -0.045931100845336914, 0.02094762958586216, 0.0075959255918860435, 0.018632424995303154, -0.0554468110203743, -0.039819955825805664, 0.03504929319024086, -0.02019578218460083, -0.034754011780023575, -0.020725566893815994, 0.03983012214303017, -0.0160840954631567, 0.008387965150177479, 0.014943116344511509, -0.036873750388622284, 0.009121720679104328, 0.05012201890349388, 0.014924855902791023, -0.0807914063334465, -0.003221744205802679, 0.04761012643575668, 0.04153318330645561, 0.06821386516094208, -0.08553285151720047, 0.05639776960015297, -0.0359480045735836, 0.013254504650831223, 0.015282370150089264, 0.0006694761686958373, -0.016825972124934196, -0.039582785218954086, -0.03463232144713402, -0.0022861354518681765, 0.02750839665532112, 0.003863399149850011, -0.01500940416008234, 0.025260107591748238, -0.030092479661107063, -0.03928513824939728, -0.026921361684799194, 0.010551746934652328, 0.05497550219297409, -0.007292167749255896, -0.07497844845056534, -0.005429993849247694, -0.030737804248929024, 0.057205986231565475, -0.046966779977083206, -0.04839786887168884, -0.015373115427792072, 0.042769141495227814, -0.0023115260992199183, -0.032844725996255875, -0.021883917972445488, -0.02964649721980095, -0.03497243672609329, -0.01988152228295803, -0.029192660003900528, -0.03052791953086853, -0.029835056513547897, -0.03285134583711624, -0.011983517557382584, -0.050401005893945694, -0.0690930187702179, -0.007922370918095112, 0.08268862962722778, -0.0059552318416535854, -0.023501291871070862, 0.023261068388819695, 0.005825604312121868, -0.1221323013305664, 0.012666740454733372, 0.011843502521514893, -0.03518535941839218, -0.024278687313199043, 0.016665495932102203, 0.06526918709278107, -0.04634852334856987, -0.04745541140437126, 0.03507956862449646, 0.010080712847411633, 0.012172533199191093, -0.004033532924950123, 0.025414500385522842, 0.012702509760856628, -0.02194873057305813, 0.019877580925822258, 0.0574280247092247, -0.007485553156584501, -0.028811858966946602, -0.030865328386425972, 0.030643880367279053, 0.020613722503185272, 0.04231727868318558, -0.021946528926491737, 0.023946408182382584, 0.02463848888874054, -0.011457026936113834, -0.0700836330652237, 0.04520074650645256, -0.02084352634847164, 0.0027046867180615664, -0.02806808240711689, -0.042510971426963806, 0.0409431979060173, 0.042083531618118286, 0.02875450998544693, -0.015975117683410645, -0.04316725954413414, -0.001850829808972776, -0.037276800721883774, -0.053867969661951065, -0.016434334218502045, 0.00915764644742012, 0.04423827677965164, -0.054234907031059265, -0.002844021422788501, -0.04768168926239014, 0.009945261292159557, -0.012753458693623543, -0.0043067848309874535, -0.057577136904001236, -0.02956666424870491, -0.004264314193278551, -0.0173552967607975, 0.00845244899392128, 0.017656855285167694, -0.014384768903255463, 0.04887118190526962, 0.005425336305052042, -0.019270939752459526, 0.021457623690366745, -0.014534232206642628, -0.04575197398662567, -0.007550021167844534, 0.002221727278083563, -0.016758956015110016, -0.003931786399334669, 0.004021216183900833, 0.002289685420691967, 0.02765771746635437, 0.015626901760697365, 0.030793095007538795, 0.035244639962911606, 0.0026749740354716778, 0.032675959169864655, 0.02096971683204174, 0.00018399189866613597, -0.06243548169732094, 0.015963081270456314, -0.041762448847293854, -0.03188066557049751, -0.016317272558808327, 0.025117939338088036, 0.004812154918909073, -0.029110321775078773, -0.036387357860803604, -0.009044942446053028, -0.03944958746433258, -0.05057768151164055, -0.040223028510808945, 0.01234038732945919, 0.06817351281642914, -0.034671422094106674, 0.019174830988049507, -0.019660266116261482, -0.036337558180093765, 0.011541886255145073, 0.03941839188337326, -0.047350239008665085, 0.031084967777132988, 0.015007277950644493, -0.0015626308741047978, -0.016060294583439827, -0.010554488748311996, 0.04235999658703804, 0.02143164910376072, 0.003180689876899123, -0.017404476180672646, 0.00587574765086174, 0.02815004251897335, 0.048735883086919785, -0.004771815147250891, 0.010956168174743652, -0.023144984617829323, -0.0054930723272264, -0.014364601112902164, -0.060768477618694305, -0.015237044543027878, 0.025342991575598717, 0.03759435564279556, -0.039375316351652145, -0.07029557973146439, 0.04953042417764664, 0.009280921891331673, 0.017289327457547188, 0.010649832896888256, 0.011704670265316963, -0.008272374048829079, -0.017776301130652428, 0.0254724882543087, 0.0460934042930603, -0.04369187355041504, 0.01749803125858307, -0.004046184476464987, 0.015555944293737411, 0.023344382643699646, -0.0001683203736320138, -0.04915599524974823, -0.04407905414700508, -0.004291304852813482, -0.01277573499828577, -0.0730726569890976, -0.020139941945672035, -0.027906257659196854, 0.019112765789031982, 0.002461835043504834, -0.042099080979824066, -0.009593803435564041, -0.02389955334365368, -0.001340758055448532, -0.03762055188417435, 0.017264705151319504, -0.0323316864669323, -0.001304800738580525, 0.031982216984033585, -0.057607509195804596, 0.017198016867041588, -0.031302932649850845, 0.0035453576128929853, 0.02428630366921425, -0.045394085347652435, -0.012842770665884018, -0.015670157968997955, -0.004305562935769558, -0.00983902532607317, 0.025958601385354996, -0.00034177795168943703, -0.019862540066242218, -0.020229404792189598, -0.004902604501694441, -0.046580709517002106, 0.020369505509734154, -0.01307982299476862, -0.0014962635468691587, 0.01978393644094467, 0.06514917314052582, 0.02278095670044422, 0.025342384353280067, -0.02217649109661579, 0.008684206753969193, 0.04809950292110443, -0.08418743312358856, -0.009853633120656013, -0.04334992542862892, -0.06923091411590576, 0.004302872344851494, 0.009912723675370216, 0.018429838120937347, -0.03551275655627251, 0.031896770000457764, 0.013396319933235645, 0.01934022270143032, 0.06790933012962341, -0.0018317330395802855, 0.034142665565013885, -0.04468080773949623, -0.006650947965681553, -0.07214896380901337, 0.012570676393806934, 0.03323191776871681, 0.018245814368128777, -0.00402313144877553, -0.01759488508105278, -0.040617961436510086, 0.05332702770829201, -0.047024909406900406, -0.004089467693120241, 0.025251641869544983, -0.010951031930744648, -0.03179345279932022, 0.003420507302507758, -0.08880839496850967, 0.034173667430877686, 0.01336799655109644, -0.02735050953924656, -0.043890632688999176, -0.013663585297763348, 0.047894436866045, 0.004860484041273594, -0.002253709826618433, -0.03659394755959511, -0.0004477763141039759, 0.04450373351573944, -0.005271315574645996, -0.006482538301497698, 0.03681817278265953, -0.024806171655654907, 0.024048246443271637, 0.03777380287647247, 0.02923835627734661, -0.009504202753305435, -0.01849467121064663, -0.0016874949214980006, -0.06002755090594292, 0.04166816920042038, 0.021607520058751106, -0.03844341263175011, -0.041754864156246185, 0.04473794251680374, 0.029492611065506935, -0.027206771075725555, -0.06287399679422379, -0.007937988266348839, -0.041915640234947205, -0.011266475543379784, -0.02478468231856823, -0.0038374485448002815, -0.02708297222852707, 0.05808519199490547, 0.015383888967335224, -0.00800136849284172, 0.06633386760950089, -0.017493221908807755, -0.016451630741357803, -0.013916232623159885, 0.07767026871442795, 0.07504481822252274, 0.04434603452682495, 0.0004320004372857511, 0.05497090891003609, -0.025540661066770554, -0.049342166632413864, 0.03761625289916992, -0.00039929852937348187, -0.01421436108648777, -0.04281458631157875, -0.005547406151890755, 0.04657376930117607, -0.01622474566102028, 0.06532377749681473, -0.039720091968774796, 0.007605307269841433, -0.0005554379313252866, 0.026510464027523994, 0.0019703544676303864, 0.07579708099365234, -0.004128539469093084, -0.004118334501981735, -0.018401041626930237, -0.05064426362514496, 0.033692892640829086, -0.05443800240755081, -0.01852249912917614, 0.025791333988308907, -0.018717534840106964, 0.006959187798202038, 0.011975754052400589, 0.022264424711465836, 0.054160747677087784, -0.020644115284085274, 0.02274491637945175, 0.01583964191377163, 0.03707410395145416, 0.0006574384751729667, -0.01005732174962759, -0.018617700785398483, -0.022568147629499435, 0.0008281987975351512, -0.033018480986356735, -0.0031595865730196238, -0.022069672122597694, -0.024508511647582054, 0.06275731325149536, -0.025301098823547363, -0.012753714807331562, 0.021571077406406403, 0.0012870985083281994, -0.023376669734716415, -0.06893691420555115, -0.0297065619379282, 0.0011705192737281322, -0.06766059994697571, -0.027666863054037094, 0.022217344492673874, -0.01969648152589798, -0.01743961311876774, -0.020064860582351685, -0.01339451689273119, -0.01856374554336071, 0.0590713731944561, -0.03855925053358078, -0.046664346009492874, 0.04365377500653267, 0.006480569951236248, 0.020406553521752357, 0.03778666630387306, 0.04799447953701019, -0.0034745875746011734, -0.008451174013316631, -0.02634035050868988, -0.0028578774072229862, 0.019445033743977547, 0.018351342529058456, 0.014821229502558708, -0.07873168587684631, 0.013737281784415245, 0.019847841933369637, 0.01174631342291832, -0.051806721836328506, 0.03597896918654442, -0.01731027290225029, -0.010237413458526134, 0.042163874953985214, -0.033022258430719376, 0.02086019329726696, -0.028245218098163605, -0.015906665474176407, 0.013541790656745434, 0.019271977245807648, 0.04840933904051781, -0.022209884598851204, 0.07994117587804794, 0.024455854669213295, -0.05355677008628845, -0.03721421957015991, -0.025918131694197655, 0.011693280190229416, 0.025999058037996292, -0.02135557122528553, -0.041656844317913055, -0.037661898881196976, -0.06902965903282166, 0.005170880816876888, 0.03256537765264511, -0.01993497647345066, -0.01868516393005848, 0.028306633234024048, 0.013431506231427193, -0.055659376084804535, 0.033634722232818604, -0.04923173412680626, 0.03731421008706093, -0.02050739899277687, -0.016002707183361053, 0.022527799010276794, 0.04313376173377037, 0.015052178874611855, 0.004281122703105211, 0.005352831911295652, -0.054853737354278564, -0.018291614949703217, 0.019182948395609856, 0.017637034878134727, 0.03463830426335335, -0.014511797577142715, -0.021580791100859642 ]
[ -0.12924449145793915, 0.017013903707265854, -0.029631635174155235, -0.031598493456840515, 0.019523270428180695, -0.009509057737886906, -0.007919825613498688, 0.031662192195653915, -0.03913288190960884, -0.030367227271199226, -0.017290806397795677, 0.00024561979807913303, -0.0008879920933395624, -0.007168573327362537, 0.08098195493221283, 0.012630672194063663, -0.0027335721533745527, -0.060301464051008224, 0.02196100540459156, 0.04125039651989937, 0.04447472468018532, -0.025772619992494583, -0.025872549042105675, -0.03502962738275528, 0.016942672431468964, 0.03572500869631767, 0.04350939393043518, -0.03546340763568878, 0.012256239540874958, -0.20279468595981598, 0.013934769667685032, 0.008799437433481216, 0.032215386629104614, -0.05325782671570778, -0.0204534400254488, 0.04410547763109207, 0.024369314312934875, 0.01411445252597332, -0.0069578345865011215, 0.019816147163510323, -0.01595916412770748, 0.031309012323617935, -0.039230406284332275, -0.024381177499890327, 0.036586783826351166, -0.014864413067698479, 0.011691853404045105, -0.04038744047284126, -0.037513263523578644, 0.026226848363876343, -0.05075123906135559, -0.029075955972075462, -0.004515728447586298, -0.019010627642273903, 0.0023450537119060755, 0.01456194557249546, 0.027160046622157097, 0.06824301928281784, 0.021506041288375854, 0.01272710133343935, 0.018194155767560005, -0.02542545087635517, -0.1285349726676941, 0.0979180857539177, 0.05090039223432541, 0.06995036453008652, -0.022668292745947838, -0.024117067456245422, -0.011762040667235851, 0.09037384390830994, 0.006362677086144686, -0.0168620478361845, -0.023346098139882088, 0.0431545190513134, 0.009449035860598087, 0.012759923934936523, 0.02428705058991909, 0.024876371026039124, 0.0363590344786644, -0.06291775405406952, -0.040358882397413254, -0.026501623913645744, -0.002812490798532963, -0.021671896800398827, -0.03373062610626221, -0.006093992386013269, 0.002507029566913843, 0.027125651016831398, 0.03629377484321594, 0.04159434512257576, 0.05770420283079147, -0.008309483528137207, 0.06276699155569077, -0.002595588332042098, -0.07219500839710236, 0.01058961171656847, -0.02802940644323826, 0.00593499606475234, -0.07565079629421234, 0.4525429606437683, -0.03787735104560852, -0.03259000927209854, 0.07086757570505142, 0.037530604749917984, -0.007941647432744503, -0.007363955490291119, 0.019404161721467972, -0.05711864307522774, 0.015653006732463837, -0.02954920567572117, 0.02134804241359234, 0.012104995548725128, 0.05837048590183258, -0.021973742172122, 0.00028989597922191024, 0.0022256255615502596, 0.013434926979243755, 0.021856920793652534, -0.001164212473668158, -0.017715109512209892, -0.020328883081674576, 0.023684021085500717, 0.0018030955689027905, 0.007946029305458069, 0.007470065727829933, -0.03632161393761635, 0.002602918539196253, 0.052147023379802704, 0.027189714834094048, -0.013691403903067112, 0.022973857820034027, -0.03592616692185402, -0.04525795578956604, 0.0027139829471707344, 0.013481250032782555, 0.0028520766645669937, 0.035223908722400665, -0.01893690414726734, 0.016765382140874863, 0.040579602122306824, -0.00046218914212659, -0.005872616544365883, 0.030570652335882187, -0.006588163785636425, -0.027339335530996323, 0.08773665130138397, 0.008383522741496563, -0.03090251237154007, -0.004240994807332754, -0.016984838992357254, 0.0038602170534431934, 0.04566103592514992, -0.03204331547021866, -0.06483040004968643, 0.022727882489562035, 0.014734056778252125, 0.04237758740782738, 0.014603227376937866, -0.07409929484128952, -0.015905888751149178, -0.023667585104703903, -0.02000090852379799, -0.051281366497278214, 0.012612085789442062, 0.023780018091201782, -0.09530993551015854, -0.038827069103717804, 0.0026535787619650364, 0.008849862031638622, -0.0667341947555542, -0.010115965269505978, 0.006718331016600132, -0.036836788058280945, -0.030878553166985512, 0.026270367205142975, -0.03871527686715126, -0.02131907269358635, 0.005782467313110828, 0.04594472050666809, 0.015744933858513832, 0.01991858333349228, 0.03427562117576599, -0.04666365683078766, 0.004514497704803944, -0.03342943638563156, -0.09302447736263275, -0.03710198029875755, -0.025244876742362976, -0.009665526449680328, -0.005565344356000423, -0.004642984829843044, -0.023404018953442574, -0.07076755166053772, 0.0915357917547226, -0.011721138842403889, -0.00677094329148531, 0.024436550214886665, 0.007840757258236408, -0.00992826372385025, -0.02537618950009346, -0.02897786535322666, 0.0499054491519928, -0.006554666440933943, 0.02038542553782463, -0.07920311391353607, 0.05763797461986542, 0.025157028809189796, -0.05513494834303856, 0.08816173672676086, 0.03136853873729706, -0.06476797163486481, -0.020348122343420982, 0.007202450186014175, 0.04095114395022392, -0.014596527442336082, -0.004631969146430492, 0.0069018141366541386, 0.018444078043103218, 0.01947762817144394, 0.017239058390259743, -0.05963722988963127, -0.00341589841991663, -0.007011655252426863, -0.33891114592552185, -0.047547392547130585, -0.023448750376701355, -0.0003922771429643035, 0.027811095118522644, -0.08479046821594238, 0.01258899550884962, -0.01404186338186264, -0.020853666588664055, -0.005658358335494995, 0.0654197633266449, -0.010041573084890842, 0.004129743669182062, -0.0675581842660904, 0.00829209852963686, 0.0053857602179050446, -0.03046158142387867, -0.03718079626560211, -0.05869662016630173, -0.0009652587468735874, -0.023752762004733086, -0.0050681415013968945, -0.013523970730602741, -0.06587208062410355, 0.00043780688429251313, -0.04906195402145386, 0.06960590928792953, 0.009076680056750774, 0.09508217126131058, -0.033362388610839844, 0.059697750955820084, 0.011495341546833515, 0.03914090618491173, -0.0970701053738594, -0.006564094685018063, -0.008604149334132671, 0.0013861298793926835, -0.020173203200101852, 0.04170273616909981, -0.025154320523142815, -0.042516402900218964, 0.008417395874857903, -0.04556223377585411, -0.06870634853839874, -0.052177999168634415, 0.005470761563628912, -0.005200131796300411, -0.023859605193138123, -0.05196671187877655, 0.0849817767739296, 0.004942905157804489, 0.006904504727572203, 0.022836429998278618, 0.003680546535179019, -0.004065799061208963, -0.02024741843342781, -0.08594304323196411, -0.01301775872707367, 0.00932176411151886, 0.005642200820147991, 0.05004684254527092, 0.054704513400793076, 0.03165561705827713, -0.06070961430668831, -0.005858098156750202, 0.03238166496157646, 0.004271709825843573, -0.014793523587286472, 0.050656192004680634, -0.002240230794996023, -0.03195483982563019, 0.12003696709871292, -0.01126793585717678, -0.001109269680455327, 0.01124178059399128, 0.05012335255742073, -0.004349336959421635, 0.04281794652342796, 0.0025647294241935015, -0.01813569851219654, 0.020184528082609177, -0.0027575830463320017, 0.043014392256736755, -0.04618281126022339, -0.027116326615214348, 0.0351085364818573, -0.02610822208225727, -0.015851307660341263, 0.05599144101142883, 0.006385531276464462, -0.02294146828353405, 0.013906343840062618, -0.0269221980124712, -0.04028360918164253, 0.09724043309688568, 0.016556302085518837, -0.2284737378358841, 0.015098829753696918, 0.08848199248313904, 0.06916046887636185, -0.013383371755480766, 0.04645222797989845, 0.04099244996905327, -0.08246147632598877, 0.027475163340568542, 0.0013964208774268627, 0.04019695892930031, 0.0562993586063385, 0.0029849119018763304, 0.005432833451777697, 0.05629972368478775, -0.02223052829504013, 0.04473881796002388, -0.006403481587767601, 0.0315009281039238, -0.03818653151392937, 0.0009372914209961891, -0.009020861238241196, 0.1700972020626068, -0.013192214071750641, 0.016824688762426376, 0.021841878071427345, 0.04081059992313385, 0.010155048221349716, 0.04622141644358635, 0.006239470560103655, 0.0015698402421548963, -0.0026168327312916517, 0.044274091720581055, -0.013180934824049473, 0.03147955611348152, -0.10271839797496796, -0.03957833722233772, 0.01829821802675724, 0.02337382547557354, 0.0025005333591252565, 0.016261043027043343, 0.0021726498380303383, -0.0008237887523137033, 0.03410789370536804, 0.08174475282430649, 0.01641637459397316, -0.012925200164318085, -0.026413699612021446, -0.03827580064535141, 0.005939906928688288, -0.03854154050350189, -0.044575974345207214, 0.01631026715040207, -0.009922291152179241, -0.0016310794744640589, 0.05342681705951691, 0.04614996165037155, -0.01683894731104374, -0.02384488843381405, 0.021367283537983894, 0.0066686952486634254, 0.004528606776148081, 0.12229662388563156, 0.034716542810201645, 0.024583879858255386 ]
[ -0.006903495639562607, 0.003998690750449896, 0.00142815918661654, 0.03640969842672348, 0.020734915509819984, -0.003771711839362979, -0.0020382304210215807, 0.036996304988861084, -0.02055460214614868, 0.024637877941131592, -0.041586097329854965, 0.0031712218187749386, 0.011744148097932339, -0.023168275132775307, 0.023312559351325035, -0.003888064529746771, 0.022218957543373108, -0.03045034222304821, 0.03358614444732666, 0.029750173911452293, 0.016875620931386948, 0.010705195367336273, -0.0018817571690306067, -0.011077322997152805, -0.007248647045344114, 0.0032821877393871546, -0.020056840032339096, -0.011049558408558369, 0.029015401378273964, -0.1452741026878357, -0.04137185961008072, 0.00014967609604354948, -0.015910249203443527, 0.0017156122485175729, 0.010397699661552906, -0.00018484039173927158, 0.020589416846632957, 0.019946066662669182, 0.01926230825483799, -0.01600649766623974, -0.01200942974537611, -0.0015637935139238834, 0.02034604363143444, 0.003576513845473528, -0.008349119685590267, -0.01768559217453003, -0.008795864880084991, -0.039485130459070206, -0.019939620047807693, -0.027064431458711624, -0.02596369758248329, -0.03311412036418915, -0.022404618561267853, -0.01348002441227436, 0.014546641148626804, -0.01452514436095953, 0.00478347996249795, -0.025607319548726082, 0.0248325876891613, -0.0016300743445754051, 0.009916883893311024, -0.009678270667791367, -0.0589558444917202, -0.03886999934911728, -0.002402341226115823, -0.0008510324987582862, 0.019098620861768723, 0.012212686240673065, -0.02240178734064102, 0.0009824343724176288, -0.016702836379408836, 0.002034829929471016, -0.01673845201730728, 0.018098339438438416, 0.02284965291619301, 0.03427800536155701, 0.003554459661245346, -0.007282299920916557, 0.048775821924209595, -0.021975122392177582, -0.03342169150710106, 0.025568263605237007, 0.015488740056753159, 0.03958038613200188, 0.014718524180352688, 0.007457245606929064, 0.009257680736482143, 0.0014084241120144725, 0.028934892266988754, 0.014162130653858185, -0.0082625737413764, 0.023798471316695213, 0.000567593437153846, 0.04205169901251793, -0.07044433802366257, -0.02999117039144039, -0.013160394504666328, -0.013858147896826267, -0.012518920004367828, 0.8640703558921814, -0.020344248041510582, 0.045505013316869736, 0.04601342976093292, 0.0378439761698246, 0.018345501273870468, -0.0030756101477891207, -0.008800116367638111, -0.010567553341388702, 0.03404207527637482, -0.052272483706474304, -0.012718531303107738, 0.02082178182899952, 0.0225857924669981, 0.012220766395330429, 0.03424835577607155, -0.0013977092457935214, -0.0049904268234968185, 0.011087177321314812, -0.014482277445495129, 0.009667444042861462, 0.029572943225502968, -0.0057806638069450855, 0.0017507632728666067, -0.0038164935540407896, 0.04898820444941521, -0.15523529052734375, 0.007156446576118469, -8.857269852893287e-33, 0.04092704877257347, 0.0002437118673697114, 0.007174807135015726, 0.022617334499955177, 0.03915904462337494, -0.014569148421287537, 0.06164029985666275, 0.016319187358021736, -0.02681979350745678, -0.032657258212566376, 0.012050826102495193, -0.03116408735513687, -0.019834209233522415, 0.009323847480118275, 0.0313820019364357, -0.006446738261729479, -0.015478033572435379, 0.01699357107281685, -0.03005855903029442, 0.023995133116841316, 0.025828644633293152, 0.03314438462257385, -0.01625301130115986, -0.026019353419542313, -0.013415267691016197, -0.0014902239199727774, 0.003345910459756851, 0.03987899422645569, -0.006555886007845402, -0.0335213802754879, -0.021405790001153946, 0.009745250456035137, -0.03731812536716461, 0.013839967548847198, -0.0015351495239883661, -0.046043820679187775, -0.025982026010751724, -0.011783287860453129, 0.00511597516015172, -0.008383610285818577, -0.025942491367459297, -0.006455430760979652, -0.05350879207253456, 0.005820098333060741, -0.0049913618713617325, -0.03296343609690666, 0.00627328734844923, 0.02263638935983181, 0.023291712626814842, -0.015322109684348106, 0.012677043676376343, 0.011987436562776566, 0.012519057840108871, 0.02082793414592743, 0.001422895467840135, 0.021144038066267967, -0.0016559477662667632, 0.009263879619538784, 0.030481426045298576, 0.035200610756874084, 0.028593946248292923, -0.013062315993010998, -0.024966059252619743, 0.018267668783664703, -0.0027075426187366247, -0.019872689619660378, 0.011051910929381847, -0.028392741456627846, 0.024392710998654366, -0.005853493697941303, -0.02219914272427559, -0.02797900140285492, -0.026190362870693207, 0.0021431937348097563, -0.013312293216586113, 0.01623588427901268, 0.0041063507087528706, 0.05007053166627884, -0.006204698234796524, 0.04075879976153374, 0.029317282140254974, 0.008857795037329197, 0.013282488100230694, -0.016950242221355438, 0.0030162350740283728, -0.014434163458645344, 0.02776280976831913, -0.025808289647102356, -0.0016741158906370401, -0.00982303824275732, 0.01722611114382744, -0.005170322488993406, -0.01403562631458044, -0.023334769532084465, -0.018421148881316185, 9.30999166564532e-33, -0.010871689766645432, 0.008654264733195305, -0.038050465285778046, 0.015616076067090034, -0.001359767746180296, -0.021696466952562332, 0.019167568534612656, -0.026040498167276382, -0.03281445428729057, 0.03430933132767677, 0.010067114606499672, -0.00583237037062645, -0.011643034406006336, 0.03190894052386284, 0.03429238498210907, -0.03659896180033684, 0.017032364383339882, -0.05754508078098297, 0.03803830221295357, -0.017386844381690025, 0.03549158573150635, 0.02626184932887554, 0.002998617012053728, -0.008857290260493755, 0.00730513408780098, 0.04490308463573456, -0.03227149322628975, 0.04342581331729889, -0.006222463212907314, -0.011838177219033241, 0.022701626643538475, -0.008422862738370895, 0.022967472672462463, -0.022158140316605568, 0.01697181537747383, 0.014419102109968662, -0.020986106246709824, -0.00602478114888072, 0.004026432987302542, 0.010556001216173172, -0.003340729046612978, -0.004566705320030451, 0.02251563034951687, 0.002200305461883545, 0.023177266120910645, -0.0007675430970266461, -0.015580572187900543, -0.04761076718568802, 0.011052463203668594, 0.010862884111702442, 0.020528482273221016, 0.028228694573044777, 0.040656544268131256, 0.005653527565300465, -0.028784072026610374, -0.032092783600091934, -0.015953605994582176, 0.010651461780071259, 0.014878026209771633, 0.02761228382587433, -0.019589321687817574, 0.01310769934207201, -0.020142072811722755, -0.028674937784671783, -0.019153539091348648, -0.020345693454146385, -0.017495568841695786, -0.02875853143632412, -0.005138599779456854, -0.0011944512370973825, -0.03715819865465164, 0.009060431271791458, 0.009166724979877472, 0.029699252918362617, 0.04277642071247101, -0.036333441734313965, -0.0012792465277016163, 0.03150929510593414, -0.02618630975484848, -0.009797463193535805, -0.01284826174378395, 0.002168649109080434, 0.030884932726621628, 0.012906478717923164, -0.048610009253025055, 0.022653402760624886, -0.011199155822396278, 0.038852375000715256, -0.011896654032170773, -0.005077114794403315, -0.0025790033396333456, -0.038792554289102554, 0.024756543338298798, 0.017894219607114792, 0.00772235868498683, -1.4171017248543194e-8, 0.012111960910260677, 0.01900482550263405, -0.009618422016501427, 0.003272303380072117, 0.0146853132173419, 0.0052805389277637005, -0.03551565483212471, -0.02162555232644081, -0.029094666242599487, 0.02810215950012207, 0.04595523700118065, -0.004911580588668585, 0.025509491562843323, -0.0008931130869314075, 0.0022513708099722862, -0.05164391174912453, -0.006082015577703714, -0.012790041975677013, 0.018908236175775528, -0.020884094759821892, 0.027776271104812622, 0.043072693049907684, 0.012809005565941334, 0.016077712178230286, 0.02075708657503128, 0.010158182121813297, 0.005848167464137077, -0.09795178472995758, -0.015504193492233753, 0.04981054738163948, -0.004045925103127956, -0.017742034047842026, -0.035031210631132126, 0.0048212409019470215, -0.012429090216755867, -0.004406391642987728, -0.0072671594098210335, 0.006239645648747683, 0.016998859122395515, -0.0015449178172275424, -0.0073798224329948425, 0.02008712664246559, -0.00581327173858881, -0.01772543601691723, -0.007527888752520084, -0.005911993328481913, -0.0360652357339859, -0.011054475791752338, -0.002319500781595707, -0.04262414574623108, 0.008627118542790413, 0.01813487522304058, -0.010264425538480282, 0.017800964415073395, -0.013017000630497932, -0.0018110118107870221, -0.0067295809276402, -0.022830460220575333, -0.04584621638059616, 0.011766193434596062, 0.002555831568315625, 0.019798368215560913, -0.00954088568687439, -0.022527722641825676 ]
willed-vs-forced-designs
https://markhneedham.com/blog/2010/02/08/willed-vs-forced-designs
false
2010-02-01 23:34:02
Functional C#: Writing a 'partition' function
[ "c", "net", "functional-programming" ]
[ ".NET" ]
One of the more interesting higher order functions that I've come across while playing with F# is the partition function which is similar to the filter function except it returns the values which meet the predicate passed in as well as the ones which don't. I came across an interesting problem recently where we needed to do exactly this and had ended up taking a more imperative for each style approach to solve the problem because this function doesn't exist in C# as far as I know. In F# the function makes use of a tuple to do this so if we want to create the function in C# then we need to define a tuple object first. [source,csharp] ---- public class Tuple<TFirst, TSecond> { private readonly TFirst first; private readonly TSecond second; public Tuple(TFirst first, TSecond second) { this.first = first; this.second = second; } public TFirst First { get { return first; } } public TSecond Second { get { return second; } } } ---- [source,csharp] ---- public static class IEnumerableExtensions { public static Tuple<IEnumerable<T>, IEnumerable<T>> Partition<T>(this IEnumerable<T> enumerableOf, Func<T, bool> predicate) { var positives = enumerableOf.Where(predicate); var negatives = enumerableOf.Where(e => !predicate(e)); return new Tuple<IEnumerable<T>, IEnumerable<T>>(positives, negatives); } } ---- I'm not sure of the best way to write this function - at the moment we end up creating two iterators to cover the two different filters that we're running over the collection which seems a bit strange. In F# 'partition' is on List so the whole collection would be evaluated whereas in this case we're still only evaluating each item as it's needed so maybe there isn't a way to do it without using two iterators. If we wanted to use this function to get the evens and odds from a collection we could write the following code: [source,csharp] ---- var evensAndOdds = Enumerable.Range(1, 10).Partition(x => x % 2 == 0); var evens = evensAndOdds.First; var odds = evensAndOdds.Second; ---- The other thing that's nice about F# is that we can assign the result of the expression to two separate values in one go and I don't know of a way to do that in C#. [source,ocaml] ---- let evens, odds = [1..10] |> List.partition (fun x -> x % 2 = 0) ---- We don't need to have the intermediate variable 'evensAndOdds' which doesn't really add much to the code. I'd be interested in knowing if there's a better way to do this than what I'm trying out.
null
null
[ 0.006015921011567116, -0.032466042786836624, -0.00819491408765316, 0.04502836987376213, 0.07798051834106445, 0.019442185759544373, -0.010997661389410496, 0.012489729560911655, -0.009892063215374947, -0.013999294489622116, 0.0003720543463714421, 0.00987693015486002, -0.07535727322101593, 0.03628271073102951, 0.005124296993017197, 0.06499094516038895, 0.08362555503845215, -0.028271712362766266, 0.025153938680887222, -0.02177201583981514, 0.011289352551102638, 0.05275227501988411, -0.013080038130283356, 0.024726616218686104, 0.02800760231912136, 0.02581440843641758, 0.01419036090373993, -0.004962855484336615, -0.026743026450276375, -0.008987657725811005, 0.040400419384241104, 0.03521113470196724, -0.016946643590927124, -0.0433683767914772, -0.0013877395540475845, -0.0212271548807621, 0.019017815589904785, -0.002381884725764394, -0.008662777952849865, 0.042147960513830185, -0.08823258429765701, 0.018013102933764458, 0.012419059872627258, -0.007486470974981785, -0.058044686913490295, 0.024074064567685127, -0.0289185531437397, -0.019378937780857086, -0.041480302810668945, 0.017843862995505333, -0.0372440405189991, 0.02016572095453739, -0.03600970283150673, -0.005544560961425304, -0.0015604165382683277, 0.049558643251657486, -0.026126336306333542, -0.05870300903916359, 0.04409455507993698, -0.03594602644443512, -0.0047556692734360695, -0.01571672223508358, 0.020046235993504524, 0.0306220892816782, 0.017174141481518745, -0.017725184559822083, -0.03600352257490158, 0.043083395808935165, -0.050840798765420914, -0.01629295013844967, -0.008323648944497108, -0.00525662861764431, -0.01112578809261322, 0.004470169078558683, -0.004300795961171389, -0.03385177627205849, -0.006751283537596464, 0.020830873399972916, 0.024329908192157745, 0.058095160871744156, -0.0026266202330589294, 0.02836107462644577, 0.042485687881708145, 0.018228042870759964, 0.02599809318780899, -0.014185387641191483, -0.03451858460903168, 0.009831501170992851, -0.021697035059332848, 0.03992015868425369, 0.022769717499613762, -0.025570768862962723, -0.008561117574572563, -0.008285577408969402, 0.0037587638944387436, -0.004471000283956528, 0.003628720296546817, -0.019038833677768707, 0.007505177054554224, 0.003938515670597553, -0.031233953312039375, -0.036904703825712204, 0.011821813881397247, -0.005646561272442341, -0.0759953036904335, -0.007265344262123108, -0.021064067259430885, -0.013050290755927563, 0.050943613052368164, 0.009612925350666046, -0.03791511803865433, 0.0008506174781359732, -0.026914970949292183, 0.006092535797506571, -0.08489315211772919, 0.03076692670583725, 0.029059279710054398, 0.0219939686357975, -0.014368550851941109, 0.03404555842280388, 0.05314232409000397, 0.016146162524819374, -0.007568665314465761, 0.0712323933839798, 0.01209141593426466, 0.018379202112555504, -0.010473043657839298, 0.08691336959600449, 0.012685263529419899, -0.08859700709581375, -0.023402584716677666, 0.04742516577243805, -0.023043202236294746, -0.0065742903389036655, -0.026088103652000427, -0.03313540667295456, -0.049065910279750824, -0.0016246994491666555, 0.02818950265645981, 0.021690938621759415, 0.0033255850430577993, -0.0426131971180439, 0.011581807397305965, -0.04853104427456856, 0.011634612455964088, -0.003236297518014908, -0.04308571666479111, 0.012565847486257553, -0.019465934485197067, 0.04871334135532379, 0.032018620520830154, 0.051619771867990494, 0.0402786023914814, -0.05606779456138611, 0.01517025288194418, 0.07947934418916702, 0.04774527624249458, 0.012341792695224285, -0.0032096323557198048, -0.0031285525765269995, 0.03589624539017677, 0.030018454417586327, 0.027311930432915688, 0.04765075817704201, 0.013960419222712517, 0.009356391616165638, 0.02138122171163559, 0.06966046243906021, -0.0278764721006155, -0.006071918178349733, -0.05715283378958702, -0.017193257808685303, 0.03599054738879204, -0.02956085279583931, 0.019355032593011856, 0.02381480485200882, 0.0874464139342308, -0.014222961850464344, 0.05662542209029198, -0.01003789622336626, -0.07380696386098862, 0.02295267954468727, 0.0014824855607002974, 0.011847151443362236, -0.008434653282165527, 0.017566075548529625, 0.05387260019779205, 0.01034640520811081, 0.017690854147076607, 0.032230593264102936, -0.055341750383377075, -0.07093746215105057, -0.05543409287929535, -0.016039082780480385, 0.07149527966976166, -0.027090836316347122, -0.023733243346214294, 0.04162055626511574, 0.00974254496395588, 0.04241102561354637, 0.03051169030368328, -0.03290647268295288, 0.01941489428281784, -0.017352920025587082, -0.05378030613064766, 0.06118310987949371, 0.028667910024523735, -0.00030297093326225877, -0.030650511384010315, 0.01348079089075327, 0.002813642844557762, -0.009982000105082989, 0.04324015602469444, -0.012872028164565563, 0.04832599684596062, 0.028150569647550583, -0.005803665611892939, -0.036539897322654724, 0.051752541214227676, -0.07286461442708969, 0.02501910738646984, 0.0010586207499727607, -0.005352345760911703, -0.020187189802527428, 0.014844736084342003, 0.12128933519124985, 0.05704237148165703, -0.055365122854709625, -0.031484391540288925, 0.025376617908477783, 0.013430858962237835, -0.0310132447630167, -0.004561193287372589, -0.00546630984172225, 0.006160421762615442, 0.005152353551238775, -0.01669328846037388, -0.006356342229992151, 0.02205330692231655, -0.04078000411391258, -0.007461064029484987, 0.07840221375226974, -0.025330130010843277, 0.058672741055488586, 0.012273777276277542, -0.034370895475149155, 0.03467067703604698, -0.009880130179226398, -0.009759094566106796, 0.008636252023279667, 0.019962135702371597, -0.008738095872104168, 0.05591791495680809, -0.02280041202902794, -0.005576843395829201, 0.005695100873708725, -0.012835102155804634, 0.023288488388061523, 0.03201677277684212, 0.046006884425878525, -0.018503529950976372, 0.059591617435216904, -0.03199000284075737, -0.027995338663458824, -0.011015448719263077, -0.07205019891262054, -0.016796670854091644, 0.008480791933834553, 0.05716982111334801, 0.04237493500113487, -0.0018068969948217273, -0.01684465818107128, 0.023282548412680626, 0.011405620723962784, -0.042529113590717316, -0.023209936916828156, 0.043885424733161926, 0.0027761918026953936, -0.07595495134592056, -0.048732709139585495, -0.04464690387248993, 0.06475598365068436, -0.023662017658352852, -0.04240292310714722, -0.0482453927397728, -0.04959484934806824, 0.0703907161951065, -0.08681973814964294, -0.046051815152168274, 0.002280502114444971, 0.05348469689488411, 0.008796320296823978, -0.02798236347734928, 0.00046123325591906905, 0.06397932022809982, 0.043490998446941376, 0.0020577008835971355, 0.03908967971801758, 0.013647348619997501, -0.007338620722293854, -0.0266085397452116, 0.013174896128475666, 0.056557547301054, 0.017692700028419495, 0.00840951967984438, -0.03747344762086868, 0.022122297435998917, 0.018543163314461708, -0.26313650608062744, 0.036953892558813095, -0.013032895512878895, 0.0034941607154905796, 0.011770482175052166, -0.03393224626779556, -0.0076943025924265385, -0.040013719350099564, -0.006595720537006855, 0.029525790363550186, -0.032452065497636795, -0.005898104049265385, -0.027521971613168716, 0.04431702941656113, 0.01808164268732071, -0.004178979899734259, -0.020599301904439926, -0.026242053136229515, -0.012928728945553303, 0.06127135083079338, -0.009700717404484749, -0.06604693084955215, -0.009587021544575691, 0.03655870258808136, 0.023844758048653603, 0.0361354723572731, -0.07542765140533447, 0.03437294811010361, -0.039821695536375046, -0.006741746328771114, -0.04615774005651474, 0.0005816618213430047, 0.024768037721514702, -0.049684010446071625, -0.0052425675094127655, -0.03276184946298599, 0.007876896299421787, 0.030088800936937332, -0.0049363779835402966, 0.045205406844615936, -0.0187827218323946, -0.06777756661176682, -0.004538925364613533, 0.0075531331822276115, 0.08435647189617157, -0.015786532312631607, -0.04463962838053703, -0.011059361509978771, -0.04564719647169113, 0.06433245539665222, -0.030003266409039497, -0.03730946034193039, -0.022811001166701317, 0.06391341984272003, -0.010736011900007725, -0.022693324834108353, 0.019717372953891754, -0.01014687679708004, -0.02796871028840542, -0.02022472955286503, -0.01316436193883419, -0.06307424604892731, 0.00011209416697965935, -0.030818644911050797, -0.029901251196861267, -0.04992367699742317, -0.06441690772771835, 0.006265218835324049, 0.043564289808273315, 0.01191826444119215, -0.002058017998933792, -0.01145460270345211, -0.0034613111056387424, -0.10196493566036224, -0.025230761617422104, -0.02597002312541008, -0.03344324603676796, -0.04002268612384796, 0.00733183603733778, 0.07158016413450241, -0.040353160351514816, -0.05005963519215584, 0.040780480951070786, 0.0292099267244339, 0.01640336774289608, -0.005518290214240551, 0.017232906073331833, -0.02032821998000145, -0.02974024973809719, -0.009100105613470078, 0.047742635011672974, -0.004578310530632734, 0.005004740785807371, -0.03741240128874779, 0.02675066702067852, 0.0259358249604702, 0.018317576497793198, 0.008085543289780617, 0.03882411867380142, 0.005757943261414766, 0.06347115337848663, -0.046831343322992325, 0.010260200127959251, -0.026117093861103058, -0.01270402129739523, -0.000044993172195972875, -0.03628593310713768, 0.02355004847049713, 0.03651382401585579, -0.005580666940659285, -0.014312776736915112, -0.02249564416706562, 0.03049752674996853, -0.051476143300533295, -0.0018213123548775911, -0.032189156860113144, 0.005086682736873627, 0.01008862629532814, 0.013245350681245327, 0.004756096284836531, -0.05100676417350769, 0.027932116761803627, -0.01868790201842785, -0.018482090905308723, -0.07372233271598816, -0.04578061029314995, -0.012820174917578697, -0.037342753261327744, -0.028359869495034218, 0.03507251292467117, -0.011504889465868473, 0.034779131412506104, -0.0027172069530934095, -0.01276279054582119, 0.04485086724162102, -0.00993309821933508, 0.007185323163866997, -0.0450909249484539, -0.03012404404580593, -0.021576084196567535, 0.006949298083782196, -0.008796045556664467, 0.04305913671851158, 0.016390861943364143, 0.0639236643910408, 0.0228174589574337, -0.016798485070466995, 0.015075059607625008, -0.010599003173410892, 0.03803633153438568, 0.009913294576108456, -0.05183219537138939, 0.03463313356041908, -0.049717243760824203, -0.018506905063986778, -0.020360102877020836, 0.030859027057886124, -0.03912651166319847, -0.023604460060596466, -0.06733360886573792, 0.039769623428583145, -0.00827714242041111, -0.04246505722403526, -0.052758846431970596, 0.004185461904853582, 0.052072420716285706, -0.05166938900947571, 0.041085969656705856, -0.020412946119904518, 0.008593978360295296, 0.028981437906622887, 0.018650082871317863, -0.014373627491295338, 0.028706254437565804, -0.015872927382588387, -0.004907568451017141, 0.016680149361491203, 0.026215247809886932, 0.003453571815043688, 0.02574986405670643, -0.0034368671476840973, -0.03938032314181328, 0.015086005441844463, -0.01774885319173336, 0.05479585751891136, 0.04394560679793358, -0.01359504647552967, -0.011770430952310562, -0.02084348537027836, -0.009777071885764599, -0.04363672435283661, -0.010323643684387207, -0.03678318113088608, 0.027570409700274467, -0.03331019729375839, -0.06778176873922348, 0.013761436566710472, 0.022182902321219444, -0.00944405235350132, 0.008828283287584782, 0.02383006177842617, -0.016610141843557358, 0.020472750067710876, 0.007507139816880226, 0.05882435664534569, -0.037628185003995895, 0.040782343596220016, 0.016568150371313095, 0.020854031667113304, 0.04923157021403313, 0.035816777497529984, -0.04152459278702736, -0.015004902146756649, -0.025916604325175285, 0.0010922385845333338, -0.018589017912745476, -0.010614662431180477, 0.004723069258034229, 0.018959002569317818, -0.020237114280462265, -0.01547977328300476, -0.024410495534539223, 0.002264377661049366, -0.02926728129386902, -0.017554694786667824, 0.0319821797311306, -0.04841994866728783, -0.03320398926734924, 0.021344423294067383, -0.04433692619204521, -0.010623767971992493, -0.028221141546964645, 0.017533529549837112, 0.016896167770028114, -0.03905992954969406, -0.02276068925857544, -0.050781089812517166, 0.03432535007596016, -0.06294568628072739, 0.05381769314408302, -0.01069454662501812, -0.023877963423728943, -0.016220537945628166, -0.018355868756771088, -0.06017372012138367, 0.014744523912668228, 0.011467679403722286, -0.026897378265857697, 0.02317170985043049, 0.052883852273225784, -0.021342936903238297, 0.02730485424399376, -0.007379382848739624, 0.0002837276551872492, 0.06300580501556396, -0.036983877420425415, -0.004163327626883984, -0.03070717863738537, -0.036128826439380646, 0.030859237536787987, -0.007684712298214436, 0.013025330379605293, -0.032921064645051956, 0.026818569749593735, 0.05762104690074921, 0.019083935767412186, 0.03786322474479675, -0.006715746130794287, 0.03411825746297836, -0.010061139240860939, 0.03725644573569298, -0.07625998556613922, 0.00903789047151804, 0.02903091162443161, 0.010008090175688267, -0.02768036723136902, -0.01405718270689249, -0.016557928174734116, 0.02210049144923687, -0.07565063238143921, -0.026013430207967758, 0.009212790988385677, -0.011672575026750565, 0.028143489733338356, -0.0050216494128108025, -0.03676377609372139, 0.012581679970026016, 0.03739696368575096, -0.018999027088284492, -0.0449424609541893, -0.026625599712133408, 0.047566141933202744, 0.018174204975366592, -0.02820512093603611, -0.02146756835281849, 0.008429539389908314, 0.04015079140663147, 0.04175937548279762, 0.0317825973033905, 0.09607892483472824, -0.02753296121954918, 0.01738789491355419, 0.012194663286209106, -0.037467241287231445, -0.0036261987406760454, -0.000758959969971329, 0.0014733028365299106, -0.038864221423864365, -0.0002076340897474438, 0.017383873462677002, -0.015843473374843597, -0.06993240863084793, 0.06869573891162872, 0.003829061985015869, -0.01206581387668848, -0.04611223563551903, 0.022102458402514458, -0.05405411496758461, -0.010758892633020878, -0.02468089573085308, -0.0009882028680294752, -0.014845763333141804, 0.06500352919101715, -0.007955634966492653, -0.008921513333916664, 0.058585576713085175, 0.000777074892539531, 0.007963011041283607, 0.026576027274131775, 0.0828772783279419, 0.08024155348539352, 0.04904956370592117, -0.03314860165119171, 0.055429648607969284, -0.02249813638627529, -0.05484328046441078, 0.008510535582900047, -0.0463436022400856, -0.002273192396387458, -0.011138496920466423, 0.06697802245616913, 0.08615817129611969, -0.010776815935969353, 0.05640246346592903, -0.046910401433706284, 0.01693819649517536, -0.031186705455183983, 0.014025001786649227, 0.031221602112054825, 0.0501336045563221, 0.01004078146070242, 0.010355512611567974, 0.01871376484632492, -0.03933011367917061, 0.05643094331026077, -0.0004521807422861457, -0.0057157655246555805, -0.024739546701312065, 0.018320253118872643, -0.009131055325269699, 0.012919752858579159, 0.04895002767443657, 0.07286610454320908, -0.031029419973492622, -0.028125647455453873, 0.023101136088371277, 0.011224922724068165, 0.006840485148131847, -0.03782499581575394, -0.005181102082133293, -0.016358908265829086, -0.00742123369127512, 0.014001972042024136, -0.006980918347835541, -0.036075033247470856, -0.012929345481097698, 0.018979404121637344, -0.027780471369624138, -0.006422002799808979, -0.008111735805869102, -0.014114944264292717, -0.027766816318035126, -0.04073464497923851, -0.05544409900903702, -0.03883030265569687, -0.08412234485149384, 0.003443594789132476, -0.0038423994556069374, -0.008063518442213535, -0.025470681488513947, -0.05905013531446457, 0.009471527300775051, -0.008798976428806782, 0.06232227757573128, -0.00958158541470766, -0.033849772065877914, 0.015433560125529766, 0.025716464966535568, 0.0464470349252224, 0.027862785384058952, 0.03529094532132149, -0.022102519869804382, -0.008659746497869492, -0.053804460912942886, -0.039284203201532364, 0.054066844284534454, 0.02703428454697132, -0.00461608124896884, -0.08407262712717056, 0.011020123027265072, 0.015020656399428844, 0.001657996908761561, -0.0966583639383316, -0.027198871597647667, 0.028047431260347366, -0.012011367827653885, 0.044028718024492264, -0.01278961356729269, -0.034123580902814865, -0.04747265577316284, 0.0063089895993471146, 0.029057210311293602, -0.004921555053442717, 0.059990689158439636, -0.05056406930088997, 0.06693301349878311, 0.0034386436454951763, -0.01746383123099804, -0.027071595191955566, 0.025685079395771027, -0.028311438858509064, 0.03746491298079491, -0.055321868509054184, -0.029713178053498268, -0.002085683401674032, -0.030694415792822838, 0.01398718822747469, 0.008659031242132187, -0.041050978004932404, -0.04975117743015289, 0.027573803439736366, 0.036008257418870926, -0.0826665386557579, 0.04136914387345314, -0.028263509273529053, 0.02623019739985466, -0.012704199180006981, -0.029499152675271034, 0.010278251022100449, 0.055663276463747025, 0.011340231634676456, 0.02328755334019661, 0.031209003180265427, -0.007519017439335585, -0.030116388574242592, -0.030262527987360954, 0.019203677773475647, 0.04506801441311836, -0.005075620021671057, 0.06149779632687569 ]
[ -0.10216988623142242, -0.022122450172901154, -0.030785448849201202, -0.02869362011551857, 0.0454084537923336, -0.03533291071653366, 0.02182883583009243, -0.001802603481337428, 0.011915995739400387, -0.025588758289813995, -0.006659018341451883, -0.04186713322997093, 0.00442940928041935, -0.003021498676389456, 0.06320212036371231, 0.012597276829183102, -0.02609799988567829, 0.002578064100816846, -0.05182697996497154, -0.016918892040848732, 0.08091036230325699, -0.05202491953969002, -0.07068774849176407, -0.04824534058570862, 0.04940403252840042, 0.010849596932530403, 0.028732283040881157, -0.06417208909988403, -0.0035705517511814833, -0.19826993346214294, 0.008865979500114918, 0.019992314279079437, 0.006268670782446861, -0.026785334572196007, 0.02210846170783043, 0.009648697450757027, 0.0201907679438591, 0.04060596972703934, -0.020919624716043472, 0.06415986269712448, 0.01100531592965126, 0.04704180732369423, -0.031782858073711395, 0.015782156959176064, 0.01971833035349846, -0.004258953500539064, -0.0518578477203846, -0.025463148951530457, -0.013977444730699062, -0.011887107975780964, -0.050020888447761536, -0.00524260476231575, -0.04928014054894447, 0.007354846689850092, -0.019380951300263405, 0.04811820387840271, 0.02296903356909752, 0.04296165332198143, 0.020363325253129005, 0.03260746970772743, 0.014916117303073406, -0.03942916542291641, -0.10475607961416245, 0.08878389745950699, 0.019040299579501152, 0.04751155897974968, -0.0012256314512342215, -0.057840920984745026, -0.01179096382111311, 0.12029322981834412, 0.023679394274950027, -0.021422861143946648, -0.025869999080896378, 0.056058771908283234, 0.014938721433281898, -0.06531648337841034, -0.023006420582532883, 0.029952403157949448, 0.05431690812110901, 0.010282137431204319, -0.06606801599264145, -0.011130129918456078, 0.03415491804480553, 0.00789702869951725, -0.06449788063764572, -0.011862372048199177, -0.010549521073698997, 0.0249455738812685, 0.02129230834543705, 0.01894572749733925, 0.019742825999855995, -0.02779548242688179, 0.03550533577799797, 0.04522944986820221, -0.04514819756150246, -0.007123340852558613, 0.009430048055946827, -0.026887519285082817, 0.031251780688762665, 0.38748830556869507, -0.034087054431438446, 0.012297512963414192, 0.04485074803233147, 0.0027630000840872526, -0.022546621039509773, 0.0032546529546380043, 0.03125826641917229, -0.02822924591600895, -0.011134647764265537, -0.04877130314707756, -0.023925336077809334, -0.032762039452791214, 0.05189969390630722, -0.0680427998304367, -0.010552170686423779, 0.01548941619694233, 0.03375774994492531, -0.014757990837097168, -0.004958672448992729, -0.005792589392513037, 0.008522169664502144, -0.012446360662579536, 0.038602087646722794, 0.01107754372060299, 0.011412602849304676, -0.0015573638956993818, 0.0256640762090683, 0.0672658309340477, 0.05639353767037392, 0.03107699565589428, 0.05000630021095276, -0.062411561608314514, -0.07681054621934891, -0.012786411680281162, 0.03819078207015991, 0.030937841162085533, 0.02044714242219925, -0.05933713912963867, 0.011102692224085331, 0.011430368758738041, 0.01150164008140564, -0.011161677539348602, 0.028734801337122917, -0.04765933379530907, -0.04294237121939659, 0.16441349685192108, -0.013750557787716389, -0.021384229883551598, -0.06606292724609375, -0.01624510996043682, 0.017081698402762413, 0.03304848074913025, -0.02274058386683464, -0.07707303762435913, 0.03527817502617836, 0.020885642617940903, 0.07392625510692596, 0.007868805900216103, -0.03227819874882698, -0.021869713440537453, -0.0841149091720581, 0.007340483833104372, -0.037472549825906754, 0.04377461597323418, 0.01678374782204628, -0.04449121281504631, -0.031607288867235184, 0.011336449533700943, -0.01167692244052887, -0.10888980329036713, 0.0014755871379747987, 0.023759562522172928, -0.0544782429933548, -0.01908675581216812, 0.06408434361219406, 0.020886188372969627, -0.05749642103910446, -0.05871418118476868, 0.031105278059840202, 0.00555031094700098, -0.036123666912317276, 0.02645483799278736, -0.073112852871418, 0.0013191571924835443, -0.006995344068855047, -0.08333253860473633, -0.02985571324825287, -0.001021012431010604, 0.0007369398372247815, -0.008175719529390335, 0.00005351199797587469, -0.012742736376821995, -0.031670667231082916, 0.09445873647928238, -0.08507692068815231, -0.038757018744945526, 0.027367617934942245, 0.02518317475914955, -0.0043020970188081264, 0.003455118741840124, 0.041780516505241394, 0.03869076818227768, 0.0167484600096941, 0.045449577271938324, -0.04851187765598297, -0.013060362078249454, 0.01942601427435875, -0.04983034357428551, 0.03446017950773239, 0.025653311982750893, -0.016445426270365715, -0.023327501490712166, -0.01671331375837326, 0.03925295174121857, -0.0055470895022153854, -0.05878569185733795, 0.017028173431754112, -0.001681246212683618, 0.017065122723579407, -0.021675676107406616, -0.01962437853217125, -0.07145751267671585, -0.019678384065628052, -0.3427613377571106, -0.009417565539479256, -0.046362824738025665, -0.028377672657370567, 0.011531444266438484, -0.07030080258846283, -0.023925310000777245, -0.016554059460759163, -0.05451728031039238, 0.01604665070772171, 0.06301774829626083, -0.02253532037138939, 0.004952399060130119, -0.03314586356282234, -0.009209342300891876, 0.018603907898068428, -0.021270647644996643, -0.061891671270132065, -0.04687994718551636, 0.031337887048721313, 0.008464639075100422, 0.0320463590323925, 0.009729186072945595, -0.0456886924803257, 0.02783561870455742, -0.018932057544589043, 0.07997097820043564, -0.029387181624770164, 0.12000610679388046, 0.002559788292273879, 0.048376988619565964, -0.0016206256113946438, 0.015514956787228584, -0.01469026505947113, -0.025550149381160736, -0.040122367441654205, -0.0503988154232502, -0.00652424106374383, 0.019703004509210587, -0.002880133455619216, -0.0212174691259861, 0.010342609137296677, -0.033982157707214355, -0.033618438988924026, -0.001916862209327519, 0.016117224469780922, -0.0170467309653759, 0.03476306051015854, 0.02788163721561432, 0.06971380859613419, -0.010754316113889217, 0.010280136950314045, -0.0029131965711712837, 0.04063188284635544, 0.019987493753433228, -0.011983901262283325, -0.06899942457675934, -0.03500131517648697, -0.033613171428442, 0.00220167706720531, 0.052124325186014175, 0.020941603928804398, 0.02879033237695694, -0.015888627618551254, 0.00500017823651433, -0.0076177893206477165, -0.01761908084154129, -0.01126561127603054, 0.0487673282623291, -0.0649578720331192, -0.03961946442723274, 0.05520877614617348, -0.036113034933805466, 0.03697625547647476, 0.059995051473379135, 0.05959981679916382, 0.00020084952120669186, 0.019303392618894577, 0.012660302221775055, -0.013981620781123638, 0.014735887758433819, 0.003796354401856661, 0.02128453180193901, -0.03253766894340515, 0.012020188383758068, 0.01677084155380726, -0.01011663768440485, 0.045083656907081604, 0.01173021923750639, -0.02952389605343342, -0.03790070489048958, 0.0031120097264647484, 0.026393955573439598, -0.045873526483774185, 0.06092480942606926, -0.017064563930034637, -0.26240554451942444, 0.01109199970960617, 0.08897893875837326, 0.036897338926792145, 0.002086454536765814, 0.01290389895439148, 0.042265232652425766, -0.06906246393918991, 0.014093516394495964, -0.013324194587767124, 0.00877424143254757, 0.05550263822078705, 0.019521914422512054, -0.02455742098391056, 0.01838662289083004, -0.010802287608385086, 0.024369172751903534, 0.021091094240546227, 0.035192444920539856, 0.03134407103061676, 0.05973360687494278, 0.009898122400045395, 0.21378420293331146, 0.01147985178977251, 0.03594105318188667, 0.02703402005136013, 0.04113049805164337, -0.009938198141753674, 0.0378979817032814, 0.02933431975543499, 0.0628267154097557, -0.015537280589342117, 0.08354095369577408, -0.013740098103880882, 0.0017606329638510942, -0.07441280782222748, 0.033347614109516144, 0.0916634052991867, 0.030699681490659714, -0.03181877359747887, -0.050693415105342865, 0.009751626290380955, -0.045108284801244736, -0.028605414554476738, 0.09276732802391052, -0.015428823418915272, 0.013702488504350185, -0.04617191478610039, -0.036930158734321594, -0.008156433701515198, -0.03422582149505615, 0.03359586372971535, 0.028722144663333893, -0.049503736197948456, 0.04147481545805931, 0.031231021508574486, 0.016624169424176216, -0.021283186972141266, -0.02319294773042202, 0.029851200059056282, 0.01772475056350231, 0.02861136943101883, 0.05658954754471779, 0.042778752744197845, 0.03343982249498367 ]
[ -0.020851098001003265, 0.011817218735814095, -0.0063601285219192505, 0.025493323802947998, 0.016350694000720978, 0.02037837542593479, 0.02442624606192112, 0.037024132907390594, 0.022926056757569313, 0.02064180001616478, -0.06316253542900085, -0.0449063703417778, 0.016978323459625244, -0.036397725343704224, 0.0022961897775530815, -0.03051874414086342, 0.003955641761422157, -0.018437961116433144, 0.03234761580824852, -0.02956104651093483, -0.021433845162391663, 0.03314799815416336, -0.0071332152001559734, -0.014757840894162655, -0.008816427551209927, -0.036337703466415405, -0.02735256403684616, -0.02248052880167961, 0.005289397668093443, -0.140574648976326, -0.06833716481924057, -0.03333548828959465, -0.00019942448125220835, 0.04628876596689224, -0.02294101193547249, -0.020876361057162285, -0.006264647468924522, 0.022137008607387543, -0.021859176456928253, -0.01953144744038582, -0.05189336836338043, 0.01095614768564701, -0.03734412416815758, -0.020516542717814445, -0.003167355665937066, -0.00024456653045490384, -0.004953213967382908, 0.0031383130699396133, -0.010379397310316563, 0.04137730970978737, 0.0019369198707863688, 0.03514796495437622, -0.007212711498141289, 0.022195737808942795, 0.07772021740674973, 0.008032366633415222, -0.012649486772716045, -0.06521810591220856, -0.025776715949177742, -0.007551720831543207, -0.00515890633687377, -0.00828571617603302, -0.04576973244547844, -0.013726986944675446, 0.04164060950279236, -0.018604489043354988, 0.0176681075245142, 0.009861555881798267, 0.0029973513446748257, -0.02174462005496025, 0.012117495760321617, 0.04847368225455284, 0.013215543702244759, 0.031113965436816216, 0.009947400540113449, 0.014016108587384224, 0.04562930017709732, -0.022656027227640152, -0.005512580741196871, -0.0024012462235987186, -0.07164231687784195, 0.03000255860388279, -0.00214782333932817, -0.00007722211012151092, 0.024222811684012413, -0.06264141201972961, -0.032962724566459656, -0.007688102312386036, 0.0159115269780159, 0.025996485725045204, -0.02424243837594986, 0.024867117404937744, 0.052704501897096634, 0.04417061805725098, -0.02615967020392418, 0.03574938327074051, -0.01914500631392002, -0.02599448151886463, -0.011483054608106613, 0.7935006618499756, -0.07233433425426483, 0.10265812277793884, 0.030945273116230965, -0.020309925079345703, -0.007597174495458603, -0.05361586809158325, 0.006886298302561045, -0.013283195905387402, -0.011132546700537205, -0.07257553935050964, 0.02717874012887478, 0.002995692193508148, 0.04356801509857178, -0.00046305288560688496, 0.0006127277738414705, -0.012711424380540848, -0.010768212378025055, -0.004899855703115463, -0.014119909144937992, -0.004430735483765602, 0.042291149497032166, -0.003557851305231452, 0.005189888644963503, 0.022216465324163437, 0.06083221733570099, -0.15647079050540924, -0.0015947128413245082, -7.640882992341769e-33, 0.03398725390434265, -0.026899153366684914, 0.043667472898960114, 0.022404812276363373, 0.04151230677962303, 0.006745327264070511, 0.033747803419828415, 0.009933706372976303, -0.029765969142317772, -0.014115655794739723, -0.01580476202070713, -0.005180026404559612, 0.021144581958651543, -0.027567323297262192, 0.053989894688129425, -0.03499598056077957, -0.0037593566812574863, 0.03552521392703056, -0.022288907319307327, 0.010831238701939583, 0.03998832032084465, 0.03327208012342453, 0.04918690025806427, -0.01948065310716629, -0.02645936980843544, 0.0011091233463957906, -0.023382987827062607, 0.0025311599019914865, 0.017633913084864616, -0.02183438092470169, -0.025587651878595352, 0.0390232615172863, -0.01803266443312168, -0.02398168481886387, 0.05976375564932823, -0.04191127419471741, 0.00270740850828588, 0.003610368585214019, 0.007606904953718185, -0.027304215356707573, -0.013358591124415398, 0.03524787351489067, 0.024078337475657463, -0.023417586460709572, -0.033198174089193344, -0.025852195918560028, 0.006098605692386627, 0.011121321469545364, 0.030766798183321953, 0.04107854142785072, 0.03522486612200737, 0.0033282830845564604, -0.013378772884607315, -0.02628038264811039, -0.007799085229635239, 0.013266169466078281, -0.0005737955216318369, -0.006107222754508257, 0.028626805171370506, 0.038290318101644516, -0.002607621718198061, -0.004798284266144037, 0.017237886786460876, -0.004051318857818842, -0.012612382881343365, -0.01907431147992611, 0.012403124943375587, -0.03367772698402405, 0.03322698548436165, -0.07115735113620758, -0.03602643683552742, -0.005276860669255257, -0.00825329590588808, -0.01037855539470911, 0.02447970025241375, -0.004778196569532156, -0.00148009043186903, -0.02763064019382, -0.030379120260477066, -0.02201174572110176, -0.013052104040980339, -0.017831452190876007, 0.0012933399993926287, 0.004090306349098682, 0.022149978205561638, -0.013916400261223316, -0.018947478383779526, 0.021590419113636017, 0.04058791697025299, -0.05681765079498291, 0.04643455147743225, 0.018219253048300743, 0.008490746840834618, -0.05763837322592735, -0.02769804373383522, 7.49800091931535e-33, -0.013034703209996223, -0.024660203605890274, 0.007943944074213505, -0.004994933493435383, -0.022816773504018784, -0.03555853292346001, 0.00206558546051383, 0.01739705167710781, -0.022543812170624733, 0.05639480799436569, 0.023862114176154137, 0.009065193124115467, -0.010494988411664963, 0.007851706817746162, 0.03850749135017395, -0.007173151709139347, 0.05629149451851845, -0.027801046147942543, 0.01691686175763607, -0.0018273729365319014, 0.007870231755077839, -0.0023357365280389786, 0.004644177388399839, -0.03321436047554016, -0.011085526086390018, 0.0882340669631958, -0.04773298650979996, -0.03191220760345459, 0.01679033599793911, 0.020089510828256607, -0.009294401854276657, 0.029673118144273758, 0.010852680541574955, -0.014034923166036606, -0.007672113832086325, -0.0031053386628627777, 0.009365489706397057, -0.058681268244981766, 0.049300696700811386, 0.0009997605811804533, 0.019052403047680855, -0.0060727521777153015, 0.047115348279476166, -0.03429437056183815, 0.006722853984683752, -0.006776738446205854, 0.02216017059981823, 0.02156897820532322, 0.0007699406705796719, 0.024448072537779808, 0.0422426275908947, 0.033945564180612564, -0.01279159914702177, 0.031272031366825104, 0.03691001981496811, -0.018053725361824036, -0.007099522277712822, -0.05715349316596985, -0.009008517488837242, -0.005533816758543253, 0.006304512731730938, 0.03137039765715599, -0.007182540372014046, -0.044064685702323914, -0.016464702785015106, 0.00830272026360035, -0.053443267941474915, -0.0024996560532599688, -0.005565742030739784, 0.004912391304969788, -0.03649236261844635, -0.02045242302119732, 0.015943633392453194, 0.011319600977003574, -0.009598572738468647, -0.011192362755537033, -0.000586019828915596, 0.020904505625367165, 0.026341084390878677, 0.051996149122714996, -0.023280808702111244, -0.021739188581705093, 0.008189767599105835, 0.009836400859057903, -0.009773318655788898, -0.03731270879507065, 0.00722050666809082, -0.02588043361902237, 0.03759605810046196, 0.005472299177199602, -0.04794985428452492, -0.052324820309877396, 0.04041431099176407, 0.0573030449450016, 0.04416188970208168, -1.2682256134155523e-8, -0.07816050946712494, -0.009960340335965157, -0.022577179595828056, 0.017074473202228546, 0.03123462200164795, -0.0020428441930562258, -0.07479394227266312, 0.0025023799389600754, -0.02835889346897602, -0.021513691172003746, 0.01328726951032877, 0.013108961284160614, 0.03915650025010109, -0.025894895195961, 0.04983993619680405, -0.03030693158507347, 0.0071495831944048405, -0.012324785813689232, 0.009202834218740463, 0.005968123208731413, 0.004465083125978708, 0.02273378148674965, 0.0012873276136815548, -0.0009175199666060507, 0.03338934853672981, 0.024118784815073013, 0.006612246856093407, -0.10103828459978104, -0.01717519760131836, 0.021143555641174316, -0.0035517283249646425, -0.02150714211165905, -0.019112179055809975, 0.051104698330163956, -0.004547299351543188, -0.020967969670891762, -0.0059534660540521145, 0.043775491416454315, 0.031977295875549316, -0.019322864711284637, 0.01922648213803768, -0.021128034219145775, 0.0005117214168421924, 0.00683848699554801, -0.013061235658824444, -0.007519840262830257, -0.03209557756781578, 0.02202940545976162, 0.007922236807644367, -0.03696206584572792, -0.036134086549282074, 0.022253330796957016, 0.04889920353889465, 0.012404670007526875, -0.005461000371724367, 0.044164687395095825, 0.021287105977535248, -0.04464656114578247, -0.024067874997854233, 0.03971482440829277, 0.022522704675793648, 0.007673308253288269, -0.0480928048491478, -0.008359720930457115 ]
functional-c-writing-a-partition-function
https://markhneedham.com/blog/2010/02/01/functional-c-writing-a-partition-function
false
2010-02-24 00:45:38
Refactoring: Small steps to pull out responsibilities
[ "coding", "refactoring" ]
[ "Coding", "Incremental Refactoring" ]
I wrote previously about how I've been http://www.markhneedham.com/blog/2010/02/23/coding-effect-sketches-and-the-mikado-method/[using effect sketches to identify responsibilities in objects] so that I can pull them out into other objects and once I've done this I often find that I can't see a small next step to take. At this stage in the past I've often then stopped and left the refactoring until I have more time to complete it but this hasn't really worked and a lot of the time I end up only seeing the code change in my mind and not in the actual code. I came across this problem again last week in an object which had 8 dependencies when I came across it. Having drawn the effect sketch I realised that 3 of those could be pulled out into a new object which could then be injected into the original object and help to encapsulate those other 3 dependencies. The code that I wanted to change was something like this: [source,csharp] ---- public class TheObject { private readonly DependencyA; private readonly DependencyB; private readonly DependencyB; ... public Foo FooCreation() { var dependencyAValue = dependencyA.GetSomething(); var dependencyBValue = dependencyB.GetSomething(); var dependencyCValue = dependencyC.GetSomething(); return new Foo(dependencyAValue, dependencyBValue, dependencyCValue); } ... } ---- I wanted to pull the 'FooCreation' method out into another object and then change all the places that were calling 'TheObject'FooCreation' to just call this new object directly. The first step was to create a 'FooFactory' and just have that delegated to internally: [source,csharp] ---- public class FooFactory { private readonly DependencyA; private readonly DependencyB; private readonly DependencyB; ... public Foo Create() { var dependencyAValue = dependencyA.GetSomething(); var dependencyBValue = dependencyB.GetSomething(); var dependencyCValue = dependencyC.GetSomething(); return new Foo(dependencyAValue, dependencyBValue, dependencyCValue); } } ---- [source,csharp] ---- public class TheObject { ... public Foo FooCreation() { return new FooFactory(dependencyA, dependencyB, dependencyC).Create(); } ... } ---- I ran out of time at this stage to finish off the refactoring but it was obvious where the refactoring was going so the next time I got the chance I injected the 'FooFactory' into 'TheObject': [source,csharp] ---- public interface IFooFactory { Foo Create(); } ---- [source,csharp] ---- public class TheObject { private readonly IFooFactory; ... public TheObject(IFooFactory fooFactory) { this.fooFactory = fooFactory; } public Foo FooCreation() { return fooFactory.Create(); } ... } ---- To do this I had to go and change the tests on 'TheObject' and move some of them to go directly against 'FooFactory'. The third stage of the refactoring was to change all the places which called 'TheObject.FooCreation()' to just call 'FooFactory.Create()' directly. Some of those places were also using other methods on 'TheObject' so those objects now have an extra dependency although I think at least the code is more intention revealing than it was previously. I'm sure there are some other patterns for this type of small step refactoring but this is just one that I've noticed so far.
null
null
[ 0.015257146209478378, -0.011877207085490227, -0.0176230538636446, 0.011524266563355923, 0.07484076172113419, 0.01019790768623352, 0.05037188157439232, 0.004599624313414097, -0.015664512291550636, -0.036752987653017044, -0.012529946863651276, 0.012904106639325619, -0.07469229400157928, 0.021858884021639824, -0.027936486527323723, 0.06045908480882645, 0.09896495193243027, -0.03412416949868202, 0.01408496592193842, -0.0073975734412670135, 0.029131818562746048, 0.08664287626743317, -0.018914205953478813, 0.04184865206480026, 0.026941945776343346, 0.03127138316631317, 0.00172417052090168, 0.006630971096456051, -0.048501238226890564, -0.0331709198653698, 0.02315504662692547, 0.014933479949831963, 0.0015679150819778442, -0.025367114692926407, 0.016435733065009117, -0.031122958287596703, -0.018515465781092644, -0.016091134399175644, 0.013393276371061802, 0.02071778103709221, -0.07691770792007446, -0.003541015088558197, -0.014839050360023975, -0.0056910328567028046, -0.02244557999074459, -0.007115116808563471, -0.03641577064990997, 0.009845517575740814, -0.01964491419494152, -0.02265215292572975, -0.08025196194648743, 0.010227305814623833, -0.010785626247525215, 0.009525006636977196, -0.008950997143983841, 0.051759637892246246, 0.030849596485495567, -0.0889749750494957, 0.033224817365407944, -0.06979002058506012, -0.0034073612187057734, -0.0040757437236607075, -0.004746819846332073, 0.03558105602860451, 0.005830617155879736, -0.01911795698106289, -0.003642600029706955, 0.051734741777181625, -0.03849855810403824, -0.03270302712917328, -0.02473233826458454, -0.018206065520644188, -0.013729985803365707, 0.007144761737436056, 0.013761631213128567, -0.04204171150922775, -0.0010765607003122568, 0.03223486244678497, 0.0014295130968093872, 0.05289687588810921, 0.0010664176661521196, 0.003438632469624281, 0.0289076566696167, -0.015464155934751034, 0.007837609387934208, -0.02710159309208393, -0.006442883517593145, 0.017904553562402725, -0.02189737558364868, 0.04005159065127373, 0.00306121027097106, -0.040057189762592316, -0.0010738386772572994, 0.05226137489080429, 0.0010065833339467645, -0.008242364041507244, 0.03061564266681671, 0.020142657682299614, 0.002674649003893137, 0.01891852170228958, -0.005623084958642721, -0.028650891035795212, 0.027483487501740456, 0.02435995265841484, -0.06065930426120758, -0.0023967386223375797, -0.024771595373749733, -0.03720761835575104, -0.016176095232367516, 0.010633984580636024, -0.046140097081661224, 0.03666841611266136, -0.021855289116501808, 0.009502138011157513, -0.07129006087779999, 0.03410380333662033, 0.01882968656718731, 0.002717845607548952, -0.02202470228075981, 0.049246646463871, 0.052071478217840195, 0.016680654138326645, 0.01247812807559967, 0.08883644640445709, 0.01210931409150362, 0.04509769380092621, -0.03815237805247307, 0.07429426908493042, -0.004826155956834555, -0.07502177357673645, 0.0068228901363909245, 0.04678367078304291, 0.006404339335858822, -0.006901137996464968, -0.0008332845172844827, -0.053768545389175415, -0.03478948771953583, 0.01737283729016781, 0.035859547555446625, 0.0263275895267725, -0.043118253350257874, -0.02700655534863472, 0.019389234483242035, -0.011020872741937637, -0.00420784205198288, 0.006911513861268759, 0.0008853962644934654, -0.025087686255574226, -0.009056507609784603, 0.05816154181957245, 0.022396612912416458, 0.07034046947956085, 0.04862852767109871, -0.0477961041033268, 0.01869785413146019, 0.06814859807491302, -0.007152129430323839, 0.03455853462219238, -0.006837890017777681, 0.021242571994662285, 0.03800521045923233, 0.03245370835065842, 0.018290312960743904, 0.0485636442899704, 0.006478409748524427, 0.007641070522367954, 0.000704614503774792, 0.0349564254283905, -0.014917059801518917, -0.028501121327280998, -0.06977777183055878, -0.02353973686695099, 0.03433665260672569, -0.07250235229730606, -0.042440541088581085, 0.03751935809850693, 0.06172747537493706, 0.001869266852736473, 0.07960043847560883, 0.02493702620267868, -0.08046843111515045, -0.0010673324577510357, 0.01632627099752426, -0.006363321095705032, 0.004258955363184214, 0.009389283135533333, 0.05949507653713226, 0.026874274015426636, -0.0061127436347305775, 0.02645181305706501, -0.06080160662531853, -0.05615673586726189, -0.012913639657199383, -0.015639593824744225, 0.06841818988323212, -0.013171687722206116, -0.040662430226802826, 0.08340014517307281, 0.03272797539830208, 0.042866650968790054, 0.03045743890106678, -0.019878147169947624, 0.02801796980202198, -0.019764315336942673, -0.02919912151992321, 0.018129529431462288, 0.04118165001273155, 0.03422922268509865, -0.055762242525815964, 0.014530041255056858, -0.03208526596426964, -0.01029571145772934, 0.02686832845211029, -0.0080647524446249, 0.04301779344677925, 0.004293316043913364, 0.003983563743531704, -0.03940024599432945, 0.059297483414411545, -0.06208168715238571, 0.005073128268122673, -0.006962887942790985, -0.010321781039237976, -0.009912951849400997, 0.010350645519793034, 0.12720999121665955, 0.029848871752619743, -0.059267520904541016, -0.040016014128923416, 0.011143455281853676, 0.020966913551092148, -0.0371621772646904, 0.013727731071412563, -0.03715129941701889, -0.001028040423989296, 0.009581650607287884, -0.02374013140797615, -0.0027438513934612274, 0.013713049702346325, -0.03591421619057655, 0.036604467779397964, 0.062464527785778046, -0.01691482402384281, 0.04995475709438324, -0.00922678504139185, -0.00972838420420885, -0.015240931883454323, -0.01560059655457735, -0.05595129728317261, 0.011927436105906963, 0.01614873670041561, -0.01679280959069729, 0.04592172056436539, -0.017906997352838516, -0.011546672321856022, 0.005725914612412453, -0.06391590088605881, -0.007618776056915522, 0.0020248619839549065, 0.06495366245508194, -0.0018606896046549082, 0.05378461256623268, -0.015241650864481926, 0.013226120732724667, -0.016827497631311417, -0.044014353305101395, -0.0005519804544746876, -0.005678310990333557, 0.008280351758003235, 0.03359144553542137, 0.02528802491724491, -0.003210456809028983, 0.04647732526063919, 0.00587265333160758, -0.0272540133446455, -0.013469414785504341, 0.03267187997698784, 0.009908444248139858, -0.020267589017748833, -0.056155893951654434, -0.03917185217142105, 0.020020470023155212, -0.04730523005127907, -0.03369351103901863, -0.006033306010067463, -0.08418817073106766, 0.03065570816397667, -0.06166008487343788, -0.07662631571292877, -0.01548976730555296, 0.024935100227594376, 0.037264689803123474, -0.019752472639083862, 0.026856008917093277, 0.0663810446858406, 0.004662955179810524, 0.0034306743182241917, -0.014087815769016743, -0.010273711755871773, 0.03100837953388691, 0.01489973347634077, -0.002171692904084921, 0.027559231966733932, -0.001070345169864595, -0.0011846842244267464, -0.029154755175113678, 0.03208516538143158, -0.02046728879213333, -0.2694087028503418, 0.007197899278253317, -0.015336603857576847, -0.02913452684879303, 0.03889979049563408, -0.01696166954934597, 0.028052043169736862, -0.048778366297483444, -0.016207605600357056, 0.0476558580994606, -0.0513608455657959, -0.04162674769759178, -0.02837172895669937, 0.08009711652994156, -0.006329158321022987, 0.01034419797360897, 0.0008242695475928485, -0.037373531609773636, 0.0042850421741604805, 0.06356047838926315, -0.012898213230073452, -0.04878213256597519, -0.014583975076675415, 0.03396507725119591, 0.016030333936214447, 0.02682492509484291, -0.08033973723649979, 0.0756559669971466, -0.02720648981630802, -0.005675510503351688, -0.014918207190930843, -0.023707859218120575, 0.003713308833539486, -0.037511322647333145, -0.021758252754807472, -0.014616908505558968, 0.002884299959987402, 0.04195398837327957, -0.017010817304253578, 0.0003415286191739142, -0.03616342321038246, -0.07513435930013657, -0.01593082584440708, 0.029238881543278694, 0.0882442444562912, 0.0015766180586069822, -0.051338452845811844, -0.015715118497610092, -0.07181447744369507, 0.08226881176233292, -0.019567133858799934, -0.05655580013990402, 0.0009250016883015633, 0.023258745670318604, 0.009164668619632721, -0.01756300777196884, 0.0072882892563939095, -0.022849729284644127, -0.040137093514204025, -0.02419380098581314, -0.01528678834438324, -0.05099717527627945, -0.013484799303114414, -0.045497894287109375, 0.004411555826663971, -0.05491878464818001, -0.05796636641025543, -0.005727310664951801, 0.053898654878139496, 0.04252442345023155, -0.023280194029211998, -0.014368652366101742, -0.0029648379422724247, -0.11294203251600266, 0.03411674499511719, -0.04291576147079468, -0.012430000118911266, -0.028599001467227936, -0.00417003408074379, 0.05075348541140556, -0.016477711498737335, -0.040371231734752655, 0.036418430507183075, 0.019117336720228195, 0.0030514472164213657, 0.006447657011449337, 0.01928372122347355, 0.017589738592505455, -0.0400078259408474, 0.00675178924575448, 0.08518809825181961, 0.0010300262365490198, -0.009158706292510033, -0.0596696101129055, 0.013005760498344898, 0.026848413050174713, 0.06096428632736206, -0.013412319123744965, 0.013989515602588654, 0.012696784920990467, 0.03956339880824089, -0.05464312806725502, 0.020148582756519318, -0.01808694750070572, 0.010425856336951256, -0.022134441882371902, -0.06331806629896164, 0.031229592859745026, 0.04054698720574379, 0.022064698860049248, -0.023395033553242683, -0.020611904561519623, 0.0039649177342653275, -0.05037938430905342, -0.03449838608503342, -0.039725229144096375, 0.028041135519742966, 0.05690346658229828, -0.027805017307400703, -0.030666155740618706, -0.04504174366593361, 0.023402592167258263, 0.00166574667673558, -0.0049346801824867725, -0.06535281240940094, -0.019675694406032562, -0.015403252094984055, -0.00219006952829659, 0.015445012599229813, 0.026333961635828018, -0.014618361368775368, 0.038028791546821594, 0.007278079632669687, -0.028078792616724968, 0.004800374154001474, 0.006598284002393484, -0.03138735145330429, -0.028523093089461327, -0.02072906494140625, -0.014972308650612831, 0.020212789997458458, -0.01832590624690056, 0.004594014957547188, -0.011126426979899406, 0.05453822761774063, -0.002242766320705414, 0.03735402226448059, 0.00743760634213686, -0.04460358992218971, 0.00510270893573761, 0.02696080133318901, -0.06332991272211075, 0.012306527234613895, -0.03723898157477379, -0.030851123854517937, -0.03817411884665489, 0.02566676028072834, -0.02822215110063553, 0.024846216663718224, -0.021025441586971283, 0.03435393422842026, -0.0575125515460968, -0.028819622471928596, -0.04509527608752251, -0.004219457507133484, 0.0489710196852684, -0.01743493787944317, 0.03775693103671074, 0.0019906924571841955, -0.03566775843501091, 0.004271830897778273, 0.008635199628770351, -0.04812483489513397, 0.038985591381788254, 0.013192715123295784, 0.007111425045877695, -0.01229727454483509, 0.004171058535575867, 0.033305030316114426, 0.035994838923215866, 0.01531817764043808, -0.056216493248939514, 0.017647914588451385, -0.03712323680520058, 0.05593707412481308, -0.020389374345541, 0.0077899061143398285, -0.012914503924548626, -0.00897720456123352, -0.01891760341823101, -0.02952895313501358, 0.004588785581290722, -0.029950885102152824, 0.03921345993876457, -0.041258811950683594, -0.07714254409074783, 0.0058447010815143585, 0.025437425822019577, 0.026748795062303543, 0.008685876615345478, 0.008859240449965, 0.03014068491756916, -0.032188329845666885, 0.026417702436447144, 0.07583513855934143, -0.06228131800889969, 0.019587526097893715, 0.005004879552870989, 0.010279466398060322, 0.016831334680318832, 0.02187829464673996, -0.033716242760419846, -0.020734965801239014, -0.022150469943881035, -0.02209596522152424, -0.030285745859146118, -0.02330245077610016, -0.03631553053855896, 0.020154230296611786, -0.0025880769826471806, -0.00988982617855072, -0.009637328796088696, -0.006292303092777729, -0.006016110070049763, -0.014387866482138634, -0.002161971526220441, -0.025461876764893532, 0.009247849695384502, 0.019635554403066635, -0.04322313517332077, 0.027869639918208122, -0.008542006835341454, 0.04416598007082939, 0.021367955952882767, -0.007989965379238129, -0.037349335849285126, -0.049088604748249054, 0.011537967249751091, 0.002288025338202715, 0.049194030463695526, 0.02767200767993927, 0.008847316727042198, -0.027094049379229546, -0.013868873007595539, -0.015379287302494049, 0.017266931012272835, -0.024013973772525787, -0.0069589451886713505, 0.02139868773519993, 0.06332983821630478, 0.032577577978372574, 0.03684874624013901, 0.0031528077088296413, 0.0015458142152056098, 0.08894877135753632, -0.0718676745891571, -0.022423259913921356, -0.019490588456392288, -0.06980618834495544, 0.035353757441043854, 0.031439006328582764, 0.027364693582057953, -0.05172726511955261, 0.031904470175504684, 0.051719266921281815, 0.008690987713634968, 0.03773285448551178, 0.02149127423763275, 0.025513596832752228, -0.04077392444014549, 0.007458748761564493, -0.058007944375276566, 0.024989765137434006, 0.06004232168197632, 0.0075916447676718235, -0.026344286277890205, -0.02835480496287346, -0.03501969203352928, 0.05031856149435043, -0.08852145075798035, 0.002144661732017994, 0.05055777728557587, -0.020999297499656677, 0.00007765930786263198, 0.013712001964449883, -0.06482705473899841, 0.01805245690047741, 0.017352918162941933, -0.011563614942133427, -0.048674438148736954, -0.01250157319009304, 0.0411597304046154, 0.045351628214120865, 0.029178952798247337, -0.03184249997138977, 0.027368273586034775, 0.07273374497890472, 0.018142471089959145, 0.045902375131845474, 0.05538268759846687, -0.02044154517352581, 0.03423038125038147, 0.02819555252790451, -0.009234296157956123, -0.011636377312242985, 0.01925451122224331, 0.00945243239402771, -0.0642605796456337, 0.007833444513380527, 0.00236817030236125, -0.016012853011488914, -0.061118949204683304, 0.04918906092643738, 0.00978558138012886, -0.013635370880365372, -0.04922281950712204, 0.010653815232217312, -0.035094376653432846, -0.03954024240374565, -0.030228441581130028, -0.0014580005081370473, -0.009905376471579075, 0.07006274163722992, -0.00039265750092454255, -0.0031960527412593365, 0.06338029354810715, 0.00465806620195508, 0.0019783417228609324, -0.052437152713537216, 0.0889929011464119, 0.06705769151449203, 0.04755766689777374, 0.00550697511062026, 0.058466434478759766, 0.002438643015921116, -0.036333661526441574, 0.027840113267302513, -0.023610321804881096, -0.002116758143529296, -0.03280359506607056, 0.0064229462295770645, 0.08377251774072647, 0.011094560846686363, 0.04788215830922127, -0.019908515736460686, -0.023875750601291656, 0.0005178388091735542, 0.005825886502861977, 0.0036234701983630657, 0.03382532298564911, 0.02108299918472767, -0.0057378895580768585, 0.021913129836320877, -0.04644499346613884, -0.0016545975813642144, -0.025891738012433052, 0.00957985408604145, 0.017748050391674042, -0.009503582492470741, 0.02313314378261566, 0.013204707764089108, 0.00887798797339201, 0.0679858922958374, -0.0074547771364450455, -0.006416800897568464, -0.020009275525808334, 0.026293348520994186, 0.016570469364523888, -0.035818856209516525, -0.027060560882091522, -0.029658885672688484, 0.004596444312483072, -0.014648554846644402, -0.011912340298295021, -0.004729659296572208, 0.008779407478868961, 0.03295290097594261, -0.004875910468399525, 0.0312587209045887, 0.01359380129724741, 0.04040452837944031, -0.06269776076078415, -0.05528143048286438, -0.04571963846683502, -0.04515602067112923, -0.05237467959523201, -0.0175875723361969, 0.03072251006960869, -0.019531166180968285, -0.04610128700733185, -0.02259053848683834, -0.02567107602953911, 0.009233477525413036, 0.045011959969997406, -0.04870977625250816, -0.027184100821614265, 0.030603034421801567, 0.005007883999496698, 0.033706434071063995, 0.02627682499587536, 0.02894558757543564, -0.006794894579797983, -0.014553355984389782, -0.05186352878808975, 0.0058037289418280125, 0.044349305331707, -0.0030186777003109455, 0.034859463572502136, -0.08091699331998825, 0.04759277030825615, -0.00048163312021642923, -0.0010790681699290872, -0.0747310146689415, -0.0021272366866469383, 0.019133172929286957, -0.013229593634605408, 0.054669298231601715, -0.01253640465438366, -0.02246883325278759, -0.012619080021977425, -0.0005188538343645632, 0.03032137081027031, 0.027551067993044853, 0.06539154797792435, -0.016138553619384766, 0.07152799516916275, 0.007891139946877956, -0.03670089319348335, -0.01866604946553707, 0.0009076518472284079, -0.036475058645009995, 0.007058801129460335, -0.0448075495660305, -0.02260565757751465, -0.03388586267828941, -0.05858854576945305, -0.009827150031924248, 0.047078948467969894, -0.01013797428458929, -0.0396740697324276, -0.008155861869454384, 0.013041484169661999, -0.057083096355199814, 0.0376996248960495, -0.016441747546195984, 0.039118047803640366, -0.029692452400922775, -0.011093623004853725, 0.023591158911585808, 0.010283736512064934, 0.019512295722961426, 0.020422857254743576, 0.00914678256958723, -0.04210994765162468, -0.01693442463874817, -0.022864162921905518, 0.017058933153748512, 0.03743394464254379, -0.027954358607530594, 0.009440532885491848 ]
[ -0.09722433984279633, -0.016476105898618698, -0.017068982124328613, -0.062282729893922806, 0.0404214933514595, -0.03034539334475994, 0.002614261582493782, 0.03196508809924126, -0.0007272794027812779, 0.011433561332523823, 0.011985189281404018, -0.02336050197482109, -0.0018735099583864212, -0.004709732253104448, 0.07876528054475784, 0.017605556175112724, -0.0419490747153759, -0.029483558610081673, -0.018004288896918297, -0.006207557395100594, 0.03243553265929222, -0.03505588322877884, -0.02962605096399784, -0.03104923851788044, 0.016100715845823288, 0.06446733325719833, 0.03411760926246643, -0.042363110929727554, 0.02129167877137661, -0.22535893321037292, 0.008360836654901505, 0.01769220642745495, 0.011869803071022034, -0.03032493218779564, -0.003210832364857197, 0.07184664905071259, -0.0006420820718631148, 0.050831280648708344, -0.007913127541542053, 0.06273961067199707, 0.034308090806007385, 0.04991529509425163, -0.08037318289279938, -0.06035434082150459, 0.02550467848777771, -0.016613129526376724, 0.004106534644961357, -0.030724404379725456, 0.017154481261968613, 0.008167417719960213, -0.05398671329021454, -0.059927359223365784, -0.019282447174191475, -0.015410996042191982, 0.006705788895487785, 0.017775652930140495, 0.05839602276682854, 0.060409292578697205, 0.030072063207626343, 0.025066716596484184, 0.004122020676732063, -0.017915381118655205, -0.12142277508974075, 0.08981174975633621, 0.029001355171203613, 0.06388018280267715, -0.03512994945049286, -0.030436061322689056, 0.03306129202246666, 0.10152433812618256, 0.011649150401353836, -0.020729992538690567, -0.01299486868083477, 0.052315011620521545, 0.03128889575600624, -0.01570574752986431, 0.009514949284493923, 0.013924844563007355, 0.0358106791973114, -0.04501934349536896, -0.06825098395347595, -0.017046231776475906, -0.0025172512978315353, -0.00407650088891387, -0.007409396581351757, 0.029831526800990105, -0.0019886400550603867, -0.0003864344034809619, 0.06476382166147232, 0.03965287283062935, 0.03507641330361366, -0.01899438537657261, 0.05289757624268532, -0.004913241136819124, -0.1147855818271637, -0.004959325771778822, -0.012535324320197105, -0.0274603720754385, -0.022749602794647217, 0.40278205275535583, -0.03855665773153305, -0.045290298759937286, 0.0389285571873188, 0.052081961184740067, -0.009591139853000641, 0.0028241120744496584, 0.01847722753882408, -0.052597563713788986, 0.020043175667524338, -0.039067916572093964, 0.005853365175426006, -0.007140452042222023, 0.03913775458931923, -0.04845358058810234, -0.013711279258131981, 0.032242417335510254, -0.007052471861243248, 0.013980596326291561, -0.022159652784466743, 0.010805475525557995, 0.0237259641289711, 0.006805100478231907, 0.00994861125946045, 0.03221733868122101, -0.0041362508200109005, -0.020981809124350548, -0.0006332307821139693, 0.06340109556913376, 0.02066940814256668, -0.0018639981281012297, 0.03746609389781952, -0.029565561562776566, -0.07491599023342133, -0.01742505468428135, 0.026760507375001907, 0.03958498314023018, 0.013796035200357437, -0.0395532064139843, 0.008744293823838234, 0.022316092625260353, 0.020373692736029625, 0.012926039285957813, 0.018307777121663094, -0.01376471295952797, -0.03764422982931137, 0.125724196434021, -0.009848173707723618, -0.017386270686984062, 0.0010396987199783325, -0.029790299013257027, -0.0011083498829975724, 0.04493400454521179, -0.023288913071155548, -0.046936485916376114, 0.016215316951274872, 0.0072451401501894, 0.06379251182079315, -0.0038015893660485744, -0.023581700399518013, -0.011812955141067505, -0.033735714852809906, -0.015196800231933594, -0.054274097084999084, 0.03025832585990429, 0.035455457866191864, -0.05678432434797287, -0.038241349160671234, 0.005457097198814154, 0.03328019753098488, -0.07594038546085358, -0.023685075342655182, 0.042717669159173965, -0.028663448989391327, -0.01109338365495205, 0.05812845751643181, -0.004588714335113764, -0.03755946457386017, 0.016243863850831985, 0.05584953725337982, 0.029510779306292534, 0.03604351356625557, 0.035985760390758514, -0.07092373073101044, 0.005553771276026964, -0.022699639201164246, -0.09424076974391937, -0.023285221308469772, -0.01354518998414278, -0.04439827799797058, -0.0070778438821434975, -0.043392475694417953, 0.02055998332798481, -0.0523640476167202, 0.08206013590097427, -0.006047166883945465, -0.030403831973671913, 0.01052080374211073, -0.0014195588883012533, -0.015145249664783478, -0.010363757610321045, 0.029853180050849915, 0.08280716091394424, -0.01780565455555916, 0.005979371257126331, -0.05787666514515877, 0.06139278784394264, 0.02909907139837742, -0.04603036120533943, 0.05005352944135666, 0.03578607365489006, -0.08168895542621613, -0.01417136937379837, 0.02210715226829052, 0.022323058918118477, 0.009235935285687447, 0.0017199961002916098, -0.01775800809264183, 0.03869299590587616, 0.031408123672008514, -0.018023306503891945, -0.03580406308174133, -0.06633147597312927, 0.02243477664887905, -0.3506198227405548, -0.02116355486214161, 0.006966009270399809, -0.03896310552954674, -0.0005770028219558299, -0.061130210757255554, 0.009301966056227684, -0.04256272688508034, -0.027356022968888283, -0.036480627954006195, 0.06394050270318985, -0.031439170241355896, 0.015987740829586983, -0.07285016030073166, 0.012712622061371803, -0.0002691883419174701, -0.028495147824287415, -0.02946033515036106, -0.050272732973098755, 0.009782836772501469, -0.008662291802465916, -0.0014066726434975863, 0.02661467157304287, -0.06710246950387955, 0.005451194941997528, -0.056294266134500504, 0.09614230692386627, -0.032856687903404236, 0.06291669607162476, -0.03844786807894707, 0.04778142273426056, 0.027585573494434357, 0.01166380662471056, -0.09815911203622818, 0.024981176480650902, -0.015251385048031807, -0.03219285607337952, -0.011954251676797867, 0.04563656076788902, -0.01863352581858635, -0.010473214089870453, 0.02494947984814644, -0.05526145175099373, -0.040886007249355316, -0.034191492944955826, -0.005600993055850267, -0.03303516283631325, -0.04068894684314728, -0.00623243348672986, 0.07601781189441681, -0.014024315401911736, 0.012044223956763744, -0.01095918845385313, 0.020064176991581917, -0.02041427046060562, -0.009945639409124851, -0.062297288328409195, 0.030799590051174164, 0.02610495686531067, 0.020328283309936523, 0.03518817946314812, 0.07025553286075592, 0.026482684537768364, -0.07239438593387604, 0.009561847895383835, 0.013835257850587368, 0.014098764397203922, -0.031465400010347366, 0.041669126600027084, -0.03995705395936966, -0.005181019194424152, 0.08685548603534698, 0.02427801862359047, -0.0329473651945591, 0.0481300950050354, 0.040206026285886765, -0.01975683681666851, 0.011707821860909462, -0.011437433771789074, 0.00482691777870059, -0.0037376151885837317, -0.003021545009687543, 0.009383630007505417, -0.004562122281640768, -0.018440112471580505, 0.015748515725135803, -0.019018447026610374, -0.03594285994768143, 0.039103906601667404, -0.002611101372167468, -0.03494182974100113, -0.0085950568318367, -0.00010097160702571273, -0.03013424016535282, 0.06377615034580231, -0.010656440630555153, -0.2665426433086395, 0.02025487646460533, 0.08192239701747894, 0.07914755493402481, 0.015612057410180569, 0.04396073520183563, 0.02519034966826439, -0.07761450111865997, 0.032671406865119934, -0.024042043834924698, 0.006396010518074036, 0.007737564854323864, 0.02462015300989151, 0.017821211367845535, 0.06673014909029007, -0.021367425099015236, 0.04985618591308594, -0.021020017564296722, 0.03695971518754959, -0.03316368907690048, 0.00045455587678588927, -0.005642051808536053, 0.16876012086868286, 0.008909014984965324, 0.04402667656540871, -0.020814701914787292, 0.003757315222173929, -0.004598989617079496, 0.07238685339689255, 0.009907614439725876, -0.0028743240982294083, -0.0003948273661080748, 0.08629458397626877, 0.009427077136933804, 0.03290379419922829, -0.06942442059516907, -0.04427138715982437, 0.031246962025761604, 0.014386779628694057, 0.00544660072773695, -0.003389635356143117, 0.010600008070468903, -0.05396651476621628, 0.006965676322579384, 0.09047055244445801, 0.016054807230830193, -0.0185080599039793, -0.042602092027664185, -0.06318043917417526, -0.0010808564256876707, -0.02948816865682602, -0.01728985458612442, 0.011346662417054176, -0.014831464737653732, 0.016196001321077347, 0.04735533520579338, 0.016724547371268272, -0.0005967319011688232, -0.03834215924143791, 0.02412707731127739, 0.023481659591197968, 0.0008685903740115464, 0.1161922737956047, 0.022479429841041565, 0.00149631779640913 ]
[ -0.01664615236222744, -0.01605537347495556, 0.02347554638981819, 0.019637692719697952, -0.0018826944287866354, 0.055555764585733414, -0.013376805931329727, 0.012673699297010899, 0.013543267734348774, 0.03826380521059036, 0.00828341580927372, -0.011423052288591862, -0.02583763375878334, 0.010309250093996525, 0.04529285430908203, 0.02823103964328766, 0.014900656417012215, -0.009572220966219902, 0.013929281383752823, 0.028387537226080894, 0.022953685373067856, 0.0069302842020988464, 0.0035783902276307344, -0.02798672392964363, 0.025005798786878586, 0.0181595329195261, -0.008074815385043621, -0.033925630152225494, 0.04761745035648346, -0.14041952788829803, -0.006330370437353849, 0.004452848806977272, -0.005786276888102293, -0.004383554216474295, -0.030909400433301926, 0.017230350524187088, 0.005074287764728069, 0.05080624297261238, 0.00932600349187851, 0.002007977804169059, -0.014536726288497448, 0.03070683404803276, 0.0162811316549778, -0.014831322245299816, 0.029175570234656334, -0.03224215283989906, -0.013526411727070808, -0.02641218528151512, -0.007403816096484661, -0.026500578969717026, -0.021953077986836433, -0.019807839766144753, -0.002476564608514309, 0.003641897113993764, 0.021055005490779877, -0.008792093023657799, 0.02670338749885559, -0.003317903494462371, -0.005069708451628685, -0.019107796251773834, -0.015905696898698807, 0.0058056144043803215, -0.0075808316469192505, -0.03732544556260109, 0.019392138347029686, -0.007522154599428177, -0.00593912648037076, -0.009526381269097328, -0.004313252866268158, 0.010543029755353928, -0.004174769856035709, 0.0049358755350112915, 0.019726591184735298, -0.006216664798557758, 0.004996626637876034, 0.01818273216485977, 0.005404239986091852, 0.015302506275475025, 0.023546675220131874, -0.03636249899864197, -0.014799975790083408, 0.044838014990091324, 0.03777552768588066, 0.022090822458267212, -0.015347934328019619, -0.011590597219765186, -0.0011173763778060675, 0.0013095354661345482, 0.017411168664693832, 0.0339544452726841, -0.009667419828474522, 0.025618305429816246, 0.034224290400743484, 0.017708443105220795, -0.06711051613092422, -0.010400475934147835, -0.012600887566804886, -0.032099220901727676, -0.011049596592783928, 0.8633937239646912, -0.004187620710581541, 0.04938557371497154, 0.03271659463644028, 0.008357780985534191, 0.006642218679189682, 0.003519496414810419, -0.01202946063131094, -0.012648358941078186, 0.0043929205276072025, -0.023571372032165527, 0.024308117106556892, 0.01994418352842331, 0.005153308622539043, 0.00439080037176609, -0.004809400998055935, 0.00819889921694994, 0.03869298845529556, -0.019157791510224342, 0.016344785690307617, 0.01891413703560829, 0.026762371882796288, 0.010952443815767765, 0.034213900566101074, -0.005672674160450697, 0.01083326991647482, -0.18589064478874207, -0.009755147621035576, -8.115678384950337e-33, 0.06588426232337952, -0.011409600265324116, 0.02145932801067829, 0.02628248557448387, -0.011474644765257835, -0.007879969663918018, 0.033370062708854675, 0.013376240618526936, -0.00405912147834897, -0.03981487452983856, 0.00335122924298048, -0.026973575353622437, -0.026446091011166573, 0.006143104285001755, 0.032320741564035416, -0.007971758022904396, -0.023236868903040886, 0.01695338636636734, 0.007345688529312611, 0.027429746463894844, -0.010347345843911171, 0.0065428270027041435, -0.02578160911798477, -0.014586585573852062, 0.0028304564766585827, 0.028322819620370865, 0.039593592286109924, 0.003463432192802429, -0.035135991871356964, -0.04405347257852554, 0.02172674611210823, 0.021966345608234406, -0.010067187249660492, -0.06337406486272812, -0.008486108854413033, -0.054608941078186035, -0.016527000814676285, 0.0014160927385091782, -0.02159745804965496, -0.04942280799150467, -0.005213005468249321, -0.006264671683311462, -0.04565051943063736, 0.016191259026527405, -0.013313052244484425, -0.03467840328812599, -0.0069991047494113445, -0.004617305006831884, 0.024134807288646698, 0.02045487053692341, 0.004034137818962336, 0.04812680557370186, 0.0038007404655218124, -0.01276624109596014, -0.022169258445501328, 0.007170613389462233, -0.007933437824249268, 0.02139969915151596, 0.024912677705287933, 0.0035727915819734335, 0.0211030226200819, -0.014178612269461155, -0.03220685198903084, 0.04331081733107567, -0.009440558962523937, 0.007789510302245617, -0.003266050713136792, -0.03470103070139885, 0.019717929884791374, 0.0007344131590798497, -0.06811095774173737, 0.001562519115395844, -0.0009423774899914861, -0.022576354444026947, -0.006617844570428133, -0.04087943583726883, -0.03961680829524994, 0.018045641481876373, -0.02565494179725647, 0.012710369192063808, -0.019262833520770073, 0.008328660391271114, 0.003810197114944458, -0.02145642228424549, -0.02111029624938965, 0.008984513580799103, 0.040281642228364944, -0.012794656679034233, -0.026588736101984978, 0.005909211002290249, 0.0336526557803154, 0.03882906585931778, -0.007112634368240833, -0.04254559427499771, -0.00877692736685276, 8.279022141204725e-33, -0.01911984570324421, 0.004028563853353262, -0.0231186393648386, 0.0208570696413517, -0.02133462205529213, -0.0470770038664341, -0.006530401762574911, 0.02707475796341896, -0.0522630400955677, 0.04223402217030525, -0.015777867287397385, 0.0038897159975022078, -0.021845323964953423, 0.018539024516940117, 0.06251712888479233, -0.008822673931717873, 0.011993156746029854, -0.033473700284957886, 0.028262190520763397, -0.015190435573458672, 0.04683183506131172, 0.016355514526367188, 0.037403933703899384, -0.01590113900601864, -0.0127224987372756, 0.048043105751276016, -0.028875261545181274, 0.027228131890296936, -0.011659509502351284, -0.0012768985470756888, -0.005969088524580002, -0.014565778896212578, 0.005666719283908606, -0.02923821099102497, -0.02070781961083412, -0.0035243802703917027, -0.019444208592176437, -0.030751317739486694, -0.00031481904443353415, -0.012781908735632896, -0.000517583976034075, -0.03939850628376007, -0.0029710312373936176, 0.012176098302006721, -0.016163861379027367, -0.037662189453840256, -0.009816610254347324, 0.008010406978428364, 0.028975127264857292, -0.003992357756942511, 0.0015852430369704962, -0.00032973260385915637, -0.0060454667545855045, 0.015631141141057014, 0.00961339846253395, -0.02845754101872444, -0.027847986668348312, -0.023630304262042046, 0.006258740089833736, 0.020053399726748466, -0.0026545687578618526, 0.010693492367863655, -0.012235014699399471, 0.003149416297674179, -0.010126002132892609, 0.013688357546925545, -0.009673523716628551, -0.011324130930006504, -0.007181509397923946, 0.0072146314196288586, -0.016401957720518112, 0.01414298452436924, 0.005174100864678621, 0.04468578100204468, 0.023303549736738205, -0.0028188263531774282, 0.0075399549677968025, 0.008117571473121643, 0.003785497974604368, -0.02015477418899536, 0.022916972637176514, -0.027608796954154968, 0.017777591943740845, -0.015752268955111504, 0.013677188195288181, -0.009387826547026634, -0.00977344624698162, 0.00862285029143095, -0.01667925715446472, -0.011252636089920998, -0.03240609169006348, -0.0016711116768419743, 0.005364603828638792, 0.00010685848246794194, 0.014880231581628323, -1.3745084181948641e-8, -0.016269855201244354, 0.017784850671887398, -0.002004612237215042, 0.032479215413331985, 0.01970725879073143, -0.009288201108574867, -0.0230216383934021, -0.01778556779026985, -0.010349101386964321, -0.0070144981145858765, 0.040683258324861526, 0.005727128591388464, 0.0036700202617794275, 0.03558257594704628, 0.037904269993305206, -0.06148671731352806, -0.03239946812391281, 0.0023220586590468884, 0.011417336761951447, 0.011762895621359348, -0.024928689002990723, 0.022985611110925674, -0.00118033227045089, -0.024812323972582817, -0.012276205234229565, 0.00464585842564702, 0.017895257100462914, -0.061299342662096024, 0.01996426470577717, 0.02403416484594345, 0.023457851260900497, -0.01089393999427557, -0.025852471590042114, 0.030907800421118736, -0.03361446037888527, -0.03277289867401123, -0.012966702692210674, -0.0002714713627938181, 0.018389269709587097, 0.0037692280020564795, 0.0012739939847961068, -0.0009551928378641605, 0.01888236775994301, -0.017916668206453323, -0.00730157783254981, -0.015608923509716988, -0.00658497866243124, -0.013006260618567467, -0.0006762144039385021, 0.01758662424981594, -0.0316765271127224, 0.012297403998672962, -0.014394552446901798, 0.028673721477389336, 0.0068246726877987385, 0.003994469530880451, 0.029651906341314316, -0.02101999521255493, -0.024766692891716957, 0.007999269291758537, 0.037839002907276154, 0.007418364752084017, -0.028954703360795975, -0.0341021753847599 ]
refactoring-small-steps-to-pull-out-responsibilities
https://markhneedham.com/blog/2010/02/24/refactoring-small-steps-to-pull-out-responsibilities
false
2010-02-23 00:29:34
Coding: Effect sketches and the Mikado method
[ "coding" ]
[ "Coding" ]
I've http://www.markhneedham.com/blog/2009/11/04/reading-code-unity/[written previously about how useful I find effect sketches] for helping me to understand how an object's methods and fields fit together and while drawing one a couple of weeks ago I noticed that it's actually quite useful for seeing which parts of the code will be the easiest to change. I was fairly sure one of the object's in our code base was doing too many things due to the fact that it had a lot of dependencies. However, it wasn't obvious to me from looking at the code which would be the easiest place to start in pulling out some of those responsibilities. I therefore drew out an effect sketch which looked something like this: image::{{<siteurl>}}/uploads/2010/02/blog.png[blog.png,700] From the diagram I could see more clearly that 'MethodC' is using 3 fields which are not used by any of the other methods in the object. This therefore seemed like the perfect method to pull out since I could do so really easily and get rid of 3 of the object's fields since noone else used them anyway. This reminded me a lot of the http://danielbrolund.wordpress.com/2009/03/28/start-paying-your-technical-debt-the-mikado-method/[Mikado method] for addressing technical debt which I've read about but haven't used yet. As I understand it, the goal with the Mikado method is to locate areas of the code base that we can change easily because there are no dependencies on this piece of code. When using effect sketches the goal is to try and use the sketch to work out how we can group functionality and I think the idea of making initial changes that have a low impact is a good one to follow. I drew my initial effect sketch on paper but I noticed that drawing it up in http://www.graphviz.org/Documentation.php[graphviz] actually makes it even more obvious which bits of functionality are related. For example I hadn't realised that 'fieldB' was used by so many methods until I typed this up. It's quite a neat tool and easy to pick up. This is my 'dot' file for the above sketch: blog.dot [source,text] ---- digraph effectgraph { size="8,8"; "MethodA" -> "fieldA"; "MethodA" -> "fieldB"; "MethodA" -> "fieldC"; "MethodB" -> "fieldB"; "MethodB" -> "fieldE"; "MethodB" -> "fieldF"; "MethodC" -> "fieldG"; "MethodC" -> "fieldH" "MethodC" -> "fieldD" "MethodD" -> "fieldB" "MethodD" -> "fieldI" } ---- And to generate a png I ran the following command from the terminal: [source,text] ---- dot -Tpng -blog.png blog.dot ----
null
null
[ 0.015968913212418556, 0.010362469591200352, 0.0022232241462916136, 0.033621225506067276, 0.0552469864487648, 0.013880225829780102, 0.01451656874269247, 0.04469258338212967, 0.009194212034344673, -0.030832037329673767, -0.007247764617204666, -0.00021731259766966105, -0.07039517909288406, 0.011412950232625008, -0.03569720685482025, 0.07980802655220032, 0.07558999955654144, -0.010003444738686085, 0.014372473582625389, -0.0008101639687083662, 0.044939491897821426, 0.06865362823009491, -0.017843419685959816, 0.03776730224490166, 0.035918500274419785, 0.002822455484420061, 0.0065801008604466915, 0.01569785177707672, -0.05370166525244713, -0.013142714276909828, 0.03143535926938057, 0.013654960319399834, 0.011247466318309307, -0.02665502019226551, 0.025235401466488838, -0.04156390577554703, -0.048593468964099884, 0.000566544069442898, 0.01889440044760704, 0.027566667646169662, -0.06756646931171417, 0.0210962425917387, -0.0030852346681058407, 0.010803726501762867, -0.023213660344481468, 0.005764039698988199, -0.05133282393217087, 0.019344966858625412, -0.014953427016735077, -0.00580610753968358, -0.06907244771718979, 0.03937520086765289, 0.017467904835939407, -0.0018084188923239708, -0.027150480076670647, 0.07255975902080536, 0.03871866315603256, -0.04691333696246147, 0.013717061839997768, -0.06034238636493683, -0.014350716024637222, -0.005390747915953398, 0.002829859033226967, 0.04807743430137634, 0.019933633506298065, -0.033867087215185165, -0.007419432979077101, 0.04769584909081459, -0.0259267445653677, -0.0329660028219223, 0.01523550320416689, 0.014247880317270756, -0.009684148244559765, -0.026192640885710716, -0.006921056192368269, -0.03796103596687317, -0.006794995162636042, 0.05060403794050217, -0.004550267476588488, 0.046758607029914856, -0.01370881125330925, 0.01875225082039833, 0.007149153389036655, -0.00022447395895142108, -0.010418275371193886, -0.03609010949730873, -0.02027711272239685, -0.00585936801508069, -0.04551232233643532, 0.03937618434429169, 0.009425879456102848, -0.061406683176755905, 0.01787826046347618, 0.04153010994195938, -0.0026333185378462076, 0.003575894283130765, 0.030196664854884148, 0.023376792669296265, -0.008655074052512646, -0.018181059509515762, -0.031445711851119995, -0.03468040004372597, 0.017431076616048813, 0.017876487225294113, -0.06048949435353279, -0.017424562945961952, -0.013349991291761398, -0.03815793991088867, 0.0016296282410621643, 0.012199521996080875, -0.039113935083150864, 0.015886401757597923, -0.042014289647340775, -0.017741430550813675, -0.06719142198562622, 0.05057026445865631, 0.014317338354885578, -0.014428985305130482, -0.0063157640397548676, 0.040464092046022415, 0.0504937544465065, 0.01785643957555294, 0.004689715802669525, 0.09278324246406555, 0.012954956851899624, 0.02314995974302292, -0.019567353650927544, 0.06514241546392441, -0.04072771221399307, -0.06708928942680359, 0.016635362058877945, 0.056176405400037766, -0.007774288300424814, -0.00837577972561121, 0.02127731218934059, -0.06495197117328644, -0.011893058195710182, -0.008586334064602852, 0.03328799083828926, 0.038560714572668076, -0.02375994808971882, -0.057820916175842285, 0.009397829882800579, -0.0071845329366624355, 0.00292561505921185, -0.001571407075971365, 0.010693183168768883, -0.03931981325149536, -0.03197557479143143, -0.005987224634736776, 0.023014595732092857, 0.04461637884378433, 0.0248042494058609, -0.023310046643018723, 0.02156723290681839, 0.07619218528270721, 0.019113661721348763, 0.024010341614484787, -0.010575000196695328, 0.021501736715435982, 0.047626759856939316, 0.033388905227184296, 0.029643109068274498, 0.03921078145503998, -0.016339397057890892, -0.006108365021646023, -0.0015012460062280297, 0.06660672277212143, 0.00993691198527813, -0.019781609997153282, -0.05640464276075363, -0.04432776942849159, 0.07398810237646103, -0.05971291661262512, -0.019421031698584557, 0.04305090382695198, 0.06611533463001251, 0.014653818681836128, 0.04157030209898949, 0.014569834806025028, -0.07149779051542282, 0.013890317641198635, 0.023192940279841423, -0.007608049549162388, 0.00824265368282795, -0.023363688960671425, 0.0732814148068428, 0.048245228826999664, 0.01897459290921688, 0.028452131897211075, -0.08689349889755249, -0.06146528944373131, -0.010834943503141403, -0.017077021300792694, 0.07419127970933914, -0.026181047782301903, 0.001793350325897336, 0.07517732679843903, 0.047628555446863174, 0.05284369736909866, 0.027874497696757317, 0.0174849946051836, 0.019609680399298668, -0.032371263951063156, -0.02773182839155197, 0.006404947955161333, 0.04865603893995285, 0.0019627802539616823, -0.04956015571951866, 0.025997744873166084, -0.009047317318618298, -0.016861451789736748, 0.03984244540333748, -0.028860583901405334, 0.024183455854654312, 0.02579537034034729, 0.059423528611660004, -0.0244407020509243, 0.055538248270750046, -0.0576939731836319, -0.01325832586735487, 0.010718191973865032, -0.024884184822440147, -0.00286085600964725, 0.004488402046263218, 0.12837472558021545, 0.04749021679162979, -0.059147052466869354, -0.03301446884870529, 0.0015054894611239433, 0.01629846915602684, -0.03729439526796341, 0.006656234618276358, -0.01831972785294056, -0.0008769684936851263, -0.0002932740899268538, -0.037655964493751526, -0.015638474375009537, 0.02096538059413433, -0.03916832059621811, 0.010817650705575943, 0.05136050283908844, -0.01357598789036274, 0.038423579186201096, -0.023345327004790306, -0.028972523286938667, -0.02593650296330452, -0.026775727048516273, -0.05682680010795593, 0.03360714390873909, 0.02657615765929222, -0.000890333263669163, 0.04612257704138756, -0.01625591702759266, -0.020093822851777077, -0.010242459364235401, -0.055398665368556976, -0.01724245771765709, 0.04042030870914459, 0.04461158066987991, -0.0091884545981884, 0.048060398548841476, 0.00762781361117959, 0.023173073306679726, -0.0016423349734395742, -0.04910646751523018, -0.03403186798095703, -0.027859482914209366, -0.012861683033406734, 0.04175181686878204, 0.0312355849891901, 0.046618007123470306, 0.013078471645712852, -0.009330227971076965, -0.02086622640490532, -0.013574903830885887, 0.0377056784927845, 0.013812771067023277, -0.02440054342150688, -0.040797095745801926, -0.02999679371714592, 0.04977669566869736, -0.06682173162698746, -0.03806338831782341, -0.0048301974311470985, -0.060528192669153214, 0.04062342643737793, -0.03826219215989113, -0.0718967393040657, 0.013428179547190666, 0.006050304975360632, 0.047157350927591324, -0.020518453791737556, 0.02342025190591812, 0.06552368402481079, 0.0029562211129814386, 0.006178415846079588, -0.03690018132328987, 0.00978060532361269, 0.027356741949915886, 0.03513560816645622, -0.01547805592417717, 0.04325828328728676, -0.013011543080210686, -0.02157146856188774, -0.021553007885813713, 0.020937394350767136, 0.005140802823007107, -0.3005755841732025, 0.028695138171315193, -0.021592598408460617, -0.03810187801718712, 0.012595106847584248, -0.009582356549799442, 0.011976748704910278, -0.045362625271081924, -0.008595430292189121, -0.004615275654941797, -0.05117057263851166, -0.06209040433168411, -0.044010382145643234, 0.06918679922819138, -0.012813493609428406, 0.01950342394411564, 0.003137643914669752, -0.029174383729696274, -0.008946997113525867, 0.05924331024289131, -0.008703711442649364, -0.05892902985215187, -0.011370622552931309, 0.042677950114011765, 0.033389825373888016, 0.020677173510193825, -0.10696106404066086, 0.03338571637868881, -0.059182412922382355, 0.01290651224553585, 0.0028592597227543592, 0.005195292644202709, -0.021917026489973068, -0.018438570201396942, -0.016146142035722733, 0.0037305287551134825, 0.025266574695706367, -0.00135163648519665, -0.013810042291879654, 0.011416537687182426, -0.036633215844631195, -0.026965061202645302, -0.027004912495613098, 0.03159762918949127, 0.08058538287878036, -0.005221656523644924, -0.0573078952729702, -0.00964801013469696, -0.042583171278238297, 0.0795804113149643, -0.01779852993786335, -0.036576032638549805, -0.0022231382317841053, 0.031569089740514755, -0.006492130924016237, -0.033911433070898056, 0.008724451996386051, -0.021601980552077293, -0.036970723420381546, -0.04034462198615074, -0.0161758866161108, -0.03797583281993866, -0.007359406445175409, -0.03975183889269829, 0.019371332600712776, -0.056969448924064636, -0.056792840361595154, -0.02736639603972435, 0.06811714172363281, 0.03359771892428398, -0.014983498491346836, 0.017344195395708084, -0.0062967813573777676, -0.11368902772665024, 0.0007981577655300498, -0.016583427786827087, -0.01652412861585617, -0.004657111596316099, 0.005302119068801403, 0.03543998301029205, -0.02021149918437004, -0.07135996222496033, 0.03575414419174194, 0.005220420658588409, -0.020188339054584503, -0.0020500756800174713, 0.029910104349255562, 0.012359295040369034, -0.029256513342261314, 0.01531838346272707, 0.07800082862377167, -0.011551445350050926, -0.01764741912484169, -0.04822859913110733, 0.021084822714328766, 0.023948127403855324, 0.0648309737443924, -0.010366660542786121, 0.009472043253481388, 0.04168446734547615, 0.023433249443769455, -0.07421280443668365, 0.02794480323791504, 0.005810988135635853, -0.013493772596120834, -0.017983153462409973, -0.03914504870772362, 0.031623147428035736, 0.04608906805515289, 0.017766514793038368, -0.01430716272443533, -0.032425135374069214, 0.010841857641935349, -0.05315055325627327, -0.034219250082969666, -0.018962016329169273, 0.027970895171165466, 0.024847274646162987, -0.01972629688680172, -0.03352521359920502, -0.026992756873369217, 0.0018957731081172824, -0.01533263549208641, -0.019461996853351593, -0.06131984293460846, -0.013933605514466763, -0.019734911620616913, -0.004249134100973606, 0.031758878380060196, 0.03211759775876999, -0.009657301940023899, 0.05095294490456581, -0.0036893014330416918, -0.03950129449367523, 0.025178680196404457, 0.009175760671496391, -0.04445146769285202, -0.030735831707715988, -0.005998921114951372, -0.030553128570318222, 0.019398145377635956, 0.016621071845293045, -0.01301376149058342, 0.005239272955805063, 0.042026687413454056, -0.01618439517915249, 0.02543141134083271, -0.01998141035437584, -0.019582537934184074, -0.0022332980297505856, 0.01133749634027481, -0.06976797431707382, 0.013673692010343075, -0.04271012544631958, -0.038260139524936676, -0.03245463967323303, 0.016819410026073456, -0.021808823570609093, -0.013034519739449024, -0.009649031795561314, 0.04169449582695961, -0.04607875645160675, -0.0327179841697216, -0.03578714653849602, -0.004803052172064781, 0.037569236010313034, -0.0077392952516674995, 0.03542695939540863, -0.011085795238614082, -0.01064368337392807, 0.02649490348994732, 0.02300596609711647, -0.04333261772990227, 0.004666783846914768, 0.016942791640758514, -0.0065438030287623405, -0.02521693706512451, 0.011185521259903908, 0.04624852538108826, 0.007456659805029631, -0.0004981094389222562, -0.03895622864365578, 0.025594985112547874, -0.003559666220098734, 0.05211787670850754, 0.0074297115206718445, 0.016825227066874504, -0.00003820487472694367, -0.0067812795750796795, -0.013954185880720615, -0.05209588259458542, 0.003028569044545293, -0.01237315684556961, 0.016563910990953445, -0.04971076175570488, -0.08211175352334976, 0.028436996042728424, 0.024022093042731285, 0.013570177368819714, 0.010887321084737778, -0.008620837703347206, 0.031081736087799072, -0.045813802629709244, 0.03618844598531723, 0.05884985253214836, -0.056435126811265945, 0.00036445894511416554, 0.0017733430722728372, 0.014844395220279694, -0.017486197873950005, 0.021598294377326965, -0.04524257406592369, -0.0334341935813427, -0.051557756960392, 0.003559351898729801, -0.042550742626190186, -0.00847517978399992, -0.04393666610121727, -0.0023098152596503496, -0.0019015283323824406, -0.015134421177208424, 0.00370257580652833, -0.026004724204540253, 0.019249508157372475, -0.009490525349974632, 0.006167817395180464, -0.03562687709927559, 0.004217286594212055, 0.016759274527430534, -0.038934752345085144, 0.03850077837705612, -0.005248732399195433, 0.049425218254327774, 0.02667713351547718, -0.01432112604379654, -0.0003749311144929379, -0.05668501555919647, 0.01133405975997448, -0.00042829482117667794, 0.058475691825151443, 0.01833438314497471, -0.009800663217902184, -0.02981487102806568, -0.006054998841136694, -0.018615975975990295, 0.02178000472486019, -0.026957208290696144, -0.025798074901103973, 0.012712856754660606, 0.08023262023925781, 0.03829248622059822, 0.03581925854086876, -0.006611591670662165, -0.016112759709358215, 0.040863849222660065, -0.060763418674468994, -0.029367228969931602, -0.03046594187617302, -0.06696268916130066, 0.030992107465863228, 0.01268827822059393, 0.031728144735097885, -0.03578437119722366, 0.034098122268915176, 0.036797359585762024, 0.024975404143333435, 0.04831572249531746, 0.005946037825196981, 0.03889370337128639, -0.057506315410137177, 0.0040172492153942585, -0.06853121519088745, 0.02392636425793171, 0.04378078877925873, 0.0038639139384031296, -0.014462620951235294, -0.005806275177747011, -0.02922961115837097, 0.0558042898774147, -0.09684490412473679, -0.005337962415069342, 0.06009053438901901, 0.013620606623589993, -0.02868201769888401, -0.012278548441827297, -0.06901832669973373, 0.0049690501764416695, 0.03811435401439667, -0.024797502905130386, -0.02833639830350876, -0.0127057284116745, 0.03690234199166298, 0.009736038744449615, 0.019945312291383743, -0.02040858007967472, 0.017423871904611588, 0.06792032718658447, 0.022287197411060333, 0.023753587156534195, 0.04281722754240036, 0.011394412256777287, 0.05523510277271271, 0.051336560398340225, 0.003913061693310738, -0.009599648416042328, 0.017173131927847862, 0.004353145603090525, -0.042965129017829895, 0.032403912395238876, 0.0056175715290009975, -0.04859866574406624, -0.051112718880176544, 0.05092116817831993, 0.028045786544680595, -0.02401348203420639, -0.044162601232528687, 0.006480131298303604, -0.03907833993434906, -0.012499704957008362, -0.016207031905651093, -0.017496079206466675, -0.014761644415557384, 0.051692359149456024, -0.005427928641438484, -0.007440988440066576, 0.053461287170648575, -0.0011649943189695477, -0.022837359458208084, -0.03185376524925232, 0.0944492518901825, 0.09289445728063583, 0.05869226157665253, 0.023902999237179756, 0.05329257249832153, 0.006372265517711639, -0.027124864980578423, 0.020700983703136444, -0.016234280541539192, -0.0028655207715928555, -0.018397262319922447, 0.01735440082848072, 0.059034064412117004, -0.008111502043902874, 0.049677614122629166, 0.0011666237842291594, -0.01119579654186964, 0.004820289555937052, 0.01163052674382925, -0.016693076118826866, 0.06062527373433113, 0.02022852934896946, 0.010685076005756855, 0.0019007064402103424, -0.03378206491470337, 0.019504189491271973, -0.03558382764458656, 0.0037531990092247725, 0.02646775357425213, 0.0050648534670472145, 0.013343675062060356, 0.008611748926341534, 0.04510868340730667, 0.06349097192287445, -0.05312566086649895, -0.014085660688579082, 0.0032442985102534294, 0.022565724328160286, 0.01754518784582615, -0.0015031184302642941, -0.026325974613428116, -0.0165142472833395, 0.000007131108304747613, -0.030300322920084, 0.020356392487883568, -0.005052398424595594, -0.0036405574064701796, 0.06392461061477661, -0.003596669528633356, -0.005893383175134659, 0.04484541714191437, 0.03795316442847252, -0.06212535873055458, -0.04440802335739136, -0.030558478087186813, -0.04561162367463112, -0.07478060573339462, -0.007421519607305527, 0.03589952737092972, -0.025960344821214676, -0.0394786112010479, -0.013498283922672272, -0.026498019695281982, -0.0037152948789298534, 0.046619489789009094, -0.06372783333063126, -0.035151176154613495, 0.025433814153075218, 0.028233977034687996, 0.017299382016062737, 0.021792739629745483, 0.029049089178442955, -0.0014752439456060529, -0.010875195264816284, -0.03155302628874779, -0.0036697164177894592, 0.03240171819925308, 0.004435532260686159, 0.025161849334836006, -0.08545801788568497, 0.03495742753148079, 0.013050206936895847, 0.00689407903701067, -0.06859111785888672, 0.00925514381378889, 0.005188737530261278, -0.010817093774676323, 0.059737998992204666, -0.038502439856529236, 0.0056274221278727055, -0.0348031148314476, 0.010861950926482677, 0.0018728303257375956, 0.012218255549669266, 0.0494622141122818, -0.015220707282423973, 0.07782373577356339, -0.0010797216091305017, -0.0419493243098259, -0.011334892362356186, -0.019203823059797287, -0.002482636598870158, 0.00007374413689831272, -0.03564678877592087, -0.023407986387610435, -0.0221038106828928, -0.06801413744688034, -0.020016226917505264, 0.056369516998529434, -0.004271447658538818, -0.05092595890164375, -0.004325512796640396, 0.005528997164219618, -0.061065543442964554, 0.034516990184783936, -0.028005514293909073, 0.04376175254583359, -0.03497389703989029, 0.011739276349544525, 0.007211719639599323, 0.00967545434832573, -0.0015993104316294193, 0.0036557631101459265, 0.013806354254484177, -0.04552770406007767, -0.00398642523214221, -0.024174993857741356, 0.008934715762734413, 0.006542552728205919, -0.004203446675091982, -0.0017508994787931442 ]
[ -0.08826587349176407, -0.009338747709989548, -0.010994836688041687, -0.040023770183324814, 0.04433591663837433, -0.026676641777157784, -0.012110400944948196, 0.022316088899970055, -0.01855328120291233, 0.01999519392848015, 0.02169509418308735, -0.029986968263983727, -0.024062613025307655, 0.002827706513926387, 0.05758781358599663, -0.004522212781012058, -0.01976827159523964, -0.015819402411580086, -0.0016761641018092632, 0.003776735858991742, 0.015123710036277771, -0.029541509225964546, -0.037033773958683014, -0.03178763762116432, 0.015378252603113651, 0.04948370158672333, 0.026131361722946167, -0.039636220782995224, 0.012508437037467957, -0.211533784866333, 0.025879686698317528, 0.05540255457162857, 0.026805531233549118, -0.018010444939136505, -0.015369098633527756, 0.06687028706073761, 0.03540545701980591, 0.04411563277244568, -0.01335542369633913, 0.037955865263938904, 0.0085444962605834, 0.020106296986341476, -0.06826736032962799, -0.04370392486453056, 0.050339702516794205, -0.01242177002131939, 0.007884861901402473, -0.04409201443195343, 0.0011751707643270493, 0.03365063667297363, -0.023886485025286674, -0.054047517478466034, -0.034553833305835724, -0.032692816108465195, 0.002355764852836728, 0.01966308243572712, 0.03374933823943138, 0.05514683946967125, 0.016683323308825493, 0.008192921057343483, 0.004007609561085701, -0.03216090425848961, -0.12349669635295868, 0.08472011238336563, 0.046696633100509644, 0.06555719673633575, -0.03408215567469597, -0.04417991638183594, 0.016365719959139824, 0.09432099759578705, -0.0003162007196806371, -0.018231496214866638, -0.023769794031977654, 0.026677878573536873, 0.011100314557552338, -0.022516168653964996, -0.004829553421586752, 0.004553396254777908, 0.02607611194252968, -0.06948345899581909, -0.05065950006246567, 0.006585186813026667, -0.02299572341144085, -0.0009139797184616327, -0.005750807002186775, 0.03719429299235344, -0.001275339163839817, 0.035112835466861725, 0.049695976078510284, 0.026102060452103615, 0.038513727486133575, -0.02048933319747448, 0.04723196104168892, 0.009806719608604908, -0.08767641335725784, -0.014906053431332111, 0.004140970762819052, -0.02252405323088169, -0.031974468380212784, 0.42254331707954407, -0.01043166033923626, -0.048675019294023514, 0.07626640051603317, 0.03933873772621155, -0.00664126081392169, 0.006027383264154196, 0.03650300204753876, -0.046703170984983444, 0.014373973943293095, -0.013970335945487022, 0.001982789020985365, -0.010330095887184143, 0.020593008026480675, -0.04824371263384819, 0.00548135582357645, 0.01438666321337223, 0.005069635342806578, 0.01166188158094883, 0.013980590738356113, -0.003742730710655451, -0.003516389988362789, 0.006436394993215799, 0.011735116131603718, 0.01618410274386406, -0.01865984871983528, -0.03699924796819687, 0.02001797966659069, 0.05525181442499161, 0.04253747686743736, 0.0066086663864552975, 0.05430606007575989, -0.017263641580939293, -0.061526134610176086, 0.010023473761975765, 0.01916583813726902, 0.02665005251765251, 0.042025189846754074, -0.0031587036792188883, -0.01442831102758646, 0.0263957679271698, 0.027280591428279877, 0.03454325348138809, 0.04855535179376602, -0.005470333620905876, -0.02441214956343174, 0.10501885414123535, -0.007858699187636375, -0.03358343243598938, 0.0044446890242397785, -0.022821422666311264, 0.0026561336126178503, 0.04264797642827034, -0.03766663372516632, -0.03276415541768074, 0.0038113913033157587, 0.000809112039860338, 0.07376667857170105, -0.007364975288510323, -0.04516151547431946, -0.008978082798421383, -0.036487407982349396, -0.03866453096270561, -0.04251745343208313, 0.04073213413357735, 0.03997325524687767, -0.11210420727729797, -0.0444636195898056, 0.02210623398423195, 0.018175678327679634, -0.0857967659831047, -0.0337773896753788, 0.029716141521930695, -0.019393116235733032, -0.033693064004182816, 0.05234220251441002, -0.011970393359661102, -0.05052844062447548, 0.016510574147105217, 0.07295361906290054, 0.01756836287677288, 0.013455597683787346, 0.043803781270980835, -0.045793768018484116, -0.004536081105470657, -0.05264612287282944, -0.07210646569728851, -0.044048670679330826, -0.0001249899505637586, -0.025277167558670044, 0.0012517711147665977, -0.023683594539761543, -0.03115297295153141, -0.09071989357471466, 0.11215649545192719, -0.03938458487391472, -0.0019198062364012003, 0.0044694142416119576, -0.025333844125270844, -0.021091988310217857, -0.01773284748196602, 0.0015444400487467647, 0.03277788311243057, -0.01151559129357338, 0.022839749231934547, -0.03743429854512215, 0.06525436788797379, 0.0400308258831501, -0.039813555777072906, 0.07179182022809982, 0.04536079242825508, -0.07711417227983475, -0.043422337621450424, 0.02873798832297325, 0.034876540303230286, 0.004295771475881338, 0.0012130009708926082, -0.0050245411694049835, 0.032112348824739456, -0.008692249655723572, 0.010915783233940601, -0.026124024763703346, -0.05838686600327492, -0.01536867767572403, -0.33171510696411133, -0.028479499742388725, -0.02569197490811348, 0.0043579936027526855, 0.03499560430645943, -0.08379409462213516, 0.008003178052604198, -0.028069373220205307, -0.012242093682289124, -0.036435361951589584, 0.08117511868476868, -0.007681277114897966, 0.025568054988980293, -0.10962676256895065, -0.017127625644207, 0.02873465232551098, -0.03973586857318878, -0.05394896864891052, -0.05621224269270897, 0.012789350003004074, -0.017256932333111763, -0.01542915590107441, -0.0018739885417744517, -0.061205651611089706, -0.008666843175888062, -0.05521226301789284, 0.09567875415086746, -0.014920027926564217, 0.08507248014211655, -0.03127515688538551, 0.0353328101336956, -0.0029523728881031275, 0.013777155429124832, -0.09646926075220108, 0.010812352411448956, -0.0147859500721097, 0.00007604921847814694, -0.026731356978416443, 0.03244026377797127, -0.03245069831609726, -0.03288479149341583, -0.0074757966212928295, -0.04051346331834793, -0.034099794924259186, -0.07207676768302917, 0.031123457476496696, -0.01204975601285696, -0.009921455755829811, -0.0364624485373497, 0.06450647115707397, 0.007250549737364054, -0.0004314794496167451, -0.002529449062421918, 0.03501366078853607, -0.008564706891775131, -0.007914883084595203, -0.0831904411315918, 0.008088872767984867, 0.005499614402651787, 0.03130935877561569, 0.027348250150680542, 0.05126483365893364, 0.04775720462203026, -0.08663851767778397, 0.03645654022693634, 0.03185013309121132, 0.017296060919761658, -0.025837751105427742, 0.07785119861364365, -0.00977525394409895, 0.010008490644395351, 0.11539868265390396, -0.002471381798386574, -0.02214479260146618, 0.05572853237390518, 0.025958146899938583, 0.02386605739593506, 0.05008144676685333, 0.00844158697873354, 0.00016762247832957655, -0.0012046615593135357, -0.006905032321810722, 0.0030216884333640337, -0.00873658899217844, -0.013261551968753338, 0.012110017240047455, -0.019276097416877747, -0.07293035089969635, 0.018361538648605347, -0.0025567058473825455, -0.030828962102532387, 0.011496767401695251, -0.0049105617217719555, -0.05276121199131012, 0.0631740614771843, -0.015694081783294678, -0.2576369345188141, 0.023646142333745956, 0.0827302411198616, 0.07834777235984802, -0.0044823442585766315, 0.025242846459150314, 0.0447864904999733, -0.05629178509116173, 0.019530361518263817, -0.026175344362854958, 0.007787552662193775, 0.03474682196974754, 0.011538336984813213, -0.024654895067214966, 0.03193601220846176, 0.023575374856591225, 0.03193553537130356, -0.01165360864251852, 0.03549225255846977, -0.01395595632493496, 0.016060013324022293, -0.003885906655341387, 0.17347849905490875, 0.01713010109961033, 0.01698947884142399, -0.014598355628550053, 0.001673538121394813, -0.03405041620135307, 0.07305720448493958, 0.010950269177556038, 0.01191491074860096, 0.002186055760830641, 0.04103509336709976, -0.0023852393496781588, 0.03882770240306854, -0.07193495333194733, -0.033640116453170776, 0.031401343643665314, 0.018010107800364494, -0.007094421423971653, -0.007217833772301674, 0.02559572085738182, -0.03158823773264885, 0.022011451423168182, 0.05063696950674057, 0.017479142174124718, -0.010259789414703846, -0.02458668313920498, -0.030508756637573242, -0.012377116829156876, -0.028106689453125, -0.04860750958323479, -0.00042491627391427755, -0.029250364750623703, -0.006915512029081583, 0.08228138834238052, 0.00039455469232052565, -0.007825853303074837, 0.001966605894267559, 0.05647294968366623, 0.02397254854440689, -0.013792373239994049, 0.12917999923229218, 0.01196716632694006, 0.030173350125551224 ]
[ -0.028497526422142982, -0.009828140959143639, 0.022601589560508728, 0.007094887550920248, -0.007545801345258951, 0.012008614838123322, 0.01837616227567196, 0.026275793090462685, 0.0027766625862568617, 0.037957508116960526, -0.00061616679886356, 0.04172723740339279, -0.0012170826084911823, 0.014991027303040028, 0.01504757534712553, -0.012831022031605244, 0.004306914284825325, -0.009875725023448467, 0.01886318437755108, 0.0477873794734478, 0.0177618321031332, -0.010321669280529022, 0.0035104148555547, -0.007243850734084845, 0.0436987429857254, 0.055955614894628525, -0.01176524069160223, -0.01212530117481947, 0.03865519538521767, -0.15226319432258606, -0.03735007345676422, -0.012410923838615417, 0.00878740195184946, -0.017370212823152542, 0.008361953310668468, 0.020089302211999893, 0.004812256433069706, 0.02422894909977913, 0.00745923537760973, 0.002324432134628296, -0.0032175329979509115, -0.010336210019886494, 0.013153760693967342, -0.0051755644381046295, 0.04187548905611038, -0.001056564156897366, -0.011249614879488945, -0.012605536729097366, 0.017293572425842285, -0.029099225997924805, -0.04467696696519852, -0.033362261950969696, -0.02864423394203186, 0.0023630859795957804, 0.00497288815677166, -0.0065919021144509315, 0.025107532739639282, 0.0033536588307470083, -0.011908900924026966, -0.020440487191081047, -0.0047936574555933475, 0.014677871018648148, -0.037737585604190826, -0.02089475840330124, 0.01866767555475235, 0.007994642481207848, -0.006446664221584797, 0.0011624385369941592, -0.031821127980947495, 0.01288522221148014, 0.020932592451572418, 0.01949097216129303, -0.03545850142836571, -0.029393143951892853, 0.0023396785836666822, 0.01815727725625038, 0.021545127034187317, 0.02251322567462921, -0.011664548888802528, -0.05346272140741348, -0.0011337788309901953, 0.02021261490881443, 0.036145780235528946, 0.008429407142102718, -0.026966312900185585, -0.009933825582265854, 0.004914425313472748, 0.0013252487406134605, 0.05063186213374138, 0.02218109928071499, 0.008654171600937843, 0.039787888526916504, 0.03002534620463848, -0.0007081010844558477, -0.10484407842159271, -0.029175257310271263, -0.021568728610873222, -0.008578939363360405, -0.02213500440120697, 0.8486142158508301, 0.026524202898144722, 0.008404185995459557, 0.04323101416230202, 0.01788317784667015, 0.03201445937156677, 0.01753384806215763, 0.0264818724244833, -0.0011781830107793212, 0.02871973253786564, -0.030717667192220688, -0.01480143889784813, 0.038772884756326675, -0.027320893481373787, -0.01519815530627966, 0.00870366208255291, 0.02479977160692215, 0.02682056650519371, -0.03862642124295235, -0.0029639429412782192, 0.004431264009326696, 0.05336543917655945, 0.007135007530450821, 0.00010868605022551492, 0.001118496642448008, 0.0034852144308388233, -0.14504744112491608, -0.01827639900147915, -6.748089155420487e-33, 0.0509951077401638, -0.007010032422840595, -0.011854766868054867, 0.0022087383549660444, -0.04339716583490372, 0.033402685075998306, 0.0027018128894269466, -0.000596390338614583, -0.027511190623044968, -0.006971170660108328, -0.02640845626592636, -0.012111607939004898, 0.00254947692155838, -0.016961224377155304, 0.029836220666766167, -0.009627435356378555, -0.01602768339216709, 0.017792658880352974, 0.04082374647259712, 0.031003709882497787, 0.04032773897051811, -0.00696604186668992, -0.0261545367538929, 0.006173356901854277, 0.0055616023018956184, 0.029760228469967842, 0.007701524067670107, -0.01193626131862402, -0.013088378123939037, -0.04170748591423035, 0.018396127969026566, 0.00797944888472557, 0.00015339438687078655, -0.02999080717563629, -0.04972715675830841, -0.04924878478050232, -0.045111283659935, -0.027622776105999947, -0.03217729553580284, -0.010917622596025467, -0.026466773822903633, -0.02999604307115078, -0.055146243423223495, 0.001921859453432262, -0.0069933258928358555, 0.006617909763008356, -0.011599663645029068, 0.01377430371940136, 0.011195238679647446, -0.004359392449259758, 0.01238649059087038, 0.0061422912403941154, 0.013437884859740734, 0.02931305579841137, -0.03889329358935356, 0.019294248893857002, -0.01122981682419777, -0.02327372133731842, 0.0036989336367696524, -0.015439524315297604, 0.038216788321733475, -0.03154914826154709, -0.02242266945540905, 0.036870092153549194, -0.03427677974104881, 0.018398379907011986, 0.005238831043243408, 0.008878148160874844, 0.010509015060961246, 0.018081001937389374, -0.07566855847835541, 0.028314052149653435, -0.009017485193908215, -0.001196541590616107, -0.009462187997996807, -0.018692517653107643, -0.02557530626654625, 0.023812243714928627, -0.018755123019218445, 0.04844963923096657, -0.023501407355070114, -0.00666443444788456, 0.0020488013979047537, 0.006120644975453615, -0.025526152923703194, 0.03210963308811188, 0.08827652782201767, -0.02072400599718094, -0.020804274827241898, 0.022002682089805603, 0.021066943183541298, 0.04671948403120041, 0.0024801224935799837, -0.021941056475043297, -0.004873914644122124, 7.235305115213432e-33, -0.0006524985656142235, 0.0004898587358184159, -0.01789774000644684, 0.014556579291820526, -0.01580866053700447, -0.03770751133561134, 0.017040591686964035, 0.03347887098789215, -0.046172596514225006, 0.05102574825286865, -0.004158985801041126, -0.03495407477021217, -0.047587648034095764, 0.012848421931266785, 0.050203874707221985, -0.006618693005293608, -0.0020384073723107576, -0.056390151381492615, 0.017417317256331444, 0.001504059531725943, 0.0027500686701387167, 0.01676703616976738, 0.007533795200288296, 0.007159973494708538, -0.005021556280553341, 0.056101247668266296, -0.04385412111878395, 0.0032378851901739836, -0.02091512642800808, 0.008850282058119774, -0.03291436284780502, -0.029565781354904175, 0.0205466877669096, -0.007560508791357279, -0.01696811616420746, 0.03889799863100052, -0.014813589863479137, -0.0324430949985981, 0.01251000165939331, 0.003137167077511549, 0.025009755045175552, 0.02035173401236534, 0.015063916333019733, 0.019817648455500603, -0.0243217796087265, -0.041720107197761536, 0.015024934895336628, -0.0014507864834740758, -0.004577663727104664, 0.01637287065386772, 0.0010906306561082602, -0.011384846642613411, 0.005216542165726423, 0.02628481201827526, -0.005448565818369389, -0.027817245572805405, 0.03252669423818588, -0.007236696779727936, -0.015595774166285992, 0.031817540526390076, -0.018430618569254875, 0.027679728344082832, -0.014618181623518467, -0.0004623408894985914, -0.014145095832645893, -0.000871232827194035, 0.019592123106122017, -0.005263458471745253, -0.028308885172009468, -0.004219824448227882, -0.00379643845371902, -0.0013613520422950387, 0.020940769463777542, 0.04911554232239723, 0.04542427137494087, -0.016406552866101265, -0.011728037148714066, 0.03431648388504982, 0.00749384518712759, -0.01967131718993187, 0.025318149477243423, -0.0027361311949789524, 0.032638341188430786, 0.001846860977821052, -0.03094399720430374, 0.005468913819640875, -0.029232408851385117, 0.0044113812036812305, 0.013163293711841106, -0.04419128969311714, -0.015498599968850613, -0.03181656077504158, 0.024652600288391113, 0.03676730766892433, 0.014153823256492615, -1.3015663213877815e-8, -0.04504511505365372, 0.0025358337443321943, -0.02115500345826149, 0.004997537471354008, 0.028029438108205795, 0.00014399066276382655, 0.002325934125110507, -0.017281854525208473, -0.023946313187479973, 0.0026110182516276836, 0.03728601709008217, 0.002034166594967246, -0.033665575087070465, 0.01732015609741211, 0.006116863805800676, -0.03415145352482796, -0.018990589305758476, -0.027377061545848846, 0.007077265530824661, 0.0016466921661049128, 0.011311903595924377, 0.013415427878499031, -0.014854969456791878, -0.03548742085695267, -0.002260326175019145, -0.013668466359376907, -0.012330219149589539, -0.06575631350278854, 0.008881238289177418, -0.00946679338812828, 0.012429090216755867, -0.011450143530964851, -0.01101816538721323, 0.01989182084798813, -0.0044078100472688675, -0.025409266352653503, 0.0291835255920887, -0.00880903098732233, 0.0033745544496923685, 0.014547945000231266, -0.02502431347966194, -0.004172316286712885, 0.01991363801062107, -0.022065619006752968, 0.0005882382392883301, -0.02946716547012329, -0.023753751069307327, -0.03997727110981941, 0.02874092385172844, -0.015271618962287903, -0.01355529110878706, 0.020207442343235016, 0.021487446501851082, 0.058365218341350555, 0.0030757368076592684, -0.016316154971718788, 0.03759612515568733, -0.023606861010193825, -0.03421611338853836, 0.012269178405404091, 0.019204936921596527, 0.0005921271513216197, -0.01746022328734398, -0.028069669380784035 ]
coding-effect-sketches-and-the-mikado-method
https://markhneedham.com/blog/2010/02/23/coding-effect-sketches-and-the-mikado-method
false
2010-02-15 00:05:17
F#: Passing an argument to a member constraint
[ "f" ]
[ "fsharp" ]
I've written previously about http://www.markhneedham.com/blog/2009/04/28/f-overloading-functionspattern-matching/[function overloading in F# and my struggles working out how to do it] and last week I came across the concept of http://www.markhneedham.com/blog/2010/02/10/f-inline-functions-and-statically-resolved-type-parameters/[inline functions and statically resolved parameters] as a potential way to solve that problem. I came across a problem where I thought I would be able to make use of this while playing around with some code parsing Xml today. I had a 'descendants' function which I wanted to be applicable against 'XDocument' and 'XElement' so I originally just defined the functions separately forgetting that the compiler wouldn't allow me to do so as we would have a duplicate definition of the function: [source,ocaml] ---- let descendants name (xDocument:XDocument) = xDocument.Descendants name let descendants name (xElement:XElement) = xElement.Descendants name ---- I wanted to make use of the inline function to define a function which would allow any type which supported the 'Descendants' member: [source,ocaml] ---- let inline descendants name (xml:^x) = (^x : (member Descendants : XName -> seq<XElement>) (xml)) ---- I couldn't work out how I could pass the 'name' input parameter to 'Descendants' so I was getting the following error: [source,text] ---- expected 2 expressions, got 1 ---- I http://stackoverflow.com/questions/2260939/f-overloading-functions[posted the problem to StackOverflow] and 'Brian' pointed out the syntax that would allow me to do what I wanted: [source,ocaml] ---- let inline descendants name (xml:^x) = (^x : (member Descendants : XName -> seq<XElement>) (xml,name)) ---- Tomas Petricek pointed out that in this case we could just write a function which took in 'XContainer' since both the other two types derive from that anyway: [source,ocaml] ---- let descendants name (xml:XContainer) = xml.Descendants name ---- In this situation that certainly makes more sense but it's good to know how to write the version using member constraints for any future problems I come across.
null
null
[ -0.027912382036447525, -0.010036645457148552, -0.009148377925157547, 0.001238242257386446, 0.04992706701159477, 0.009767072275280952, -0.00441673444584012, 0.012668529525399208, 0.023135200142860413, -0.004914564546197653, -0.03360380232334137, -0.013538955710828304, -0.07943432033061981, 0.034444410353899, 0.007804527413100004, 0.05465354025363922, 0.07289814949035645, -0.02655717544257641, 0.006390475668013096, -0.026542289182543755, 0.018889006227254868, 0.05032433941960335, -0.00962514616549015, 0.024044670164585114, 0.023710891604423523, -0.008727489970624447, -0.007141325157135725, -0.0014179614372551441, -0.0362541638314724, -0.003609477076679468, 0.024020053446292877, 0.028475459665060043, -0.013232779689133167, -0.03010118007659912, -0.03092217817902565, -0.02569238469004631, 0.012374034151434898, -0.014041004702448845, 0.002400418510660529, 0.044605378061532974, -0.05065753310918808, 0.008886448107659817, -0.0015400865813717246, 0.024817224591970444, -0.05921786651015282, 0.019108708947896957, -0.05212777480483055, -0.016541900113224983, -0.03279006481170654, 0.008434541523456573, -0.07417607307434082, 0.014211579225957394, -0.0272806566208601, -0.012631264515221119, 0.009758630767464638, 0.04718121886253357, -0.012393169105052948, -0.06398598849773407, 0.045876286923885345, -0.03799913078546524, 0.013068030588328838, 0.008722582831978798, 0.024560192599892616, 0.03760145604610443, 0.036059800535440445, -0.00404402706772089, -0.03111230954527855, 0.03015155903995037, -0.08198662847280502, -0.02939043566584587, -0.026466354727745056, 0.03650575131177902, -0.004034675657749176, -0.03165339678525925, 0.01857474073767662, -0.02640414983034134, -0.017880605533719063, 0.05678216367959976, 0.04030212014913559, 0.0437256395816803, 0.002532480750232935, 0.05376065522432327, 0.04248268902301788, 0.028368087485432625, 0.022650009021162987, -0.0012425241293385625, -0.02295581065118313, 0.013227200135588646, -0.037039224058389664, 0.048865437507629395, 0.013562004081904888, -0.07638584822416306, -0.010083324275910854, 0.022835422307252884, 0.005348930601030588, 0.004657640587538481, -0.00016781137674115598, -0.029218673706054688, 0.00022947523393668234, -0.00005741971108363941, -0.04612499102950096, -0.023936033248901367, -0.0025020481552928686, -0.006071901880204678, -0.08340968936681747, -0.02068755030632019, -0.04071883112192154, -0.002086331369355321, 0.025717969983816147, 0.00594504876062274, -0.026798255741596222, 0.011095121502876282, -0.001441759173758328, -0.006898380350321531, -0.08951043337583542, 0.0324438139796257, 0.023542365059256554, 0.009830465540289879, -0.00948709063231945, 0.023905297741293907, 0.06938653439283371, 0.02685832418501377, -0.008514785207808018, 0.08058442920446396, 0.04767266660928726, 0.0412810854613781, 0.00011860951781272888, 0.07273900508880615, -0.01778651401400566, -0.0525846853852272, -0.012122535146772861, 0.06473679095506668, -0.047299575060606, 0.005890806671231985, 0.0017367566470056772, -0.011950448155403137, -0.04791104048490524, -0.006801703944802284, 0.05755472183227539, 0.02420557662844658, 0.001601014519110322, -0.0402960367500782, -0.000517122563906014, -0.02322678454220295, 0.008392555639147758, -0.013061601668596268, -0.041342709213495255, -0.009462996385991573, -0.021791158244013786, 0.027812914922833443, 0.033764492720365524, 0.06000619754195213, 0.03362699970602989, -0.04322638362646103, 0.030695131048560143, 0.08181978762149811, 0.029270553961396217, -0.0040589882992208, -0.021972279995679855, 0.025730812922120094, 0.04236363247036934, 0.035437166690826416, 0.0064962501637637615, 0.062285397201776505, 0.013174974359571934, 0.0019132561283186078, 0.01662914827466011, 0.035028308629989624, -0.0016309932107105851, -0.014201423153281212, -0.04997165501117706, -0.007278894539922476, 0.056650131940841675, -0.0481112040579319, 0.0059720780700445175, 0.018073556944727898, 0.06596343219280243, -0.02143159508705139, 0.03681033104658127, 0.028231747448444366, -0.059492092579603195, 0.0091728325933218, 0.012833734042942524, 0.00228636572137475, -0.017403768375515938, 0.023917468264698982, 0.054344985634088516, 0.024308184161782265, 0.005989646073430777, -0.00031949105323292315, -0.05136673524975777, -0.07795479148626328, -0.030551183968782425, -0.01667584665119648, 0.09318885207176208, -0.04081941023468971, -0.016279276460409164, 0.06282805651426315, 0.012034094892442226, 0.052102383226156235, 0.03608936816453934, -0.006609866861253977, 0.02127627469599247, -0.010454672388732433, -0.04989751800894737, 0.06587833911180496, 0.02269413322210312, -0.014993540942668915, -0.011178260669112206, 0.016420014202594757, 0.020563265308737755, 0.04990328475832939, 0.06886860728263855, -0.003495162120088935, 0.023317374289035797, 0.029421234503388405, -0.029174737632274628, -0.05703512206673622, 0.025866102427244186, -0.05499948561191559, 0.012710743583738804, 0.016180749982595444, -0.020307375118136406, -0.0047531733289361, -0.01865389384329319, 0.1351793259382248, 0.09106626361608505, -0.02845136448740959, -0.05075928568840027, 0.004584893584251404, -0.022461209446191788, -0.04091304913163185, 0.014320285990834236, 0.016988584771752357, -0.002029098803177476, -0.011816591024398804, -0.007880964316427708, 0.018711071461439133, -0.005495300982147455, -0.030897939577698708, 0.011022078804671764, 0.09112060070037842, -0.02879149280488491, 0.032675620168447495, -0.004356796853244305, -0.021770330145955086, 0.03307173773646355, -0.017099985852837563, -0.037476688623428345, 0.018143877387046814, 0.02753727324306965, -0.01346665434539318, 0.06277045607566833, -0.026707641780376434, -0.04273059591650963, -0.0023638526909053326, -0.016854291781783104, 0.010570145212113857, 0.046868160367012024, 0.04932703077793121, 0.009924893267452717, 0.0055580465123057365, -0.006163241807371378, -0.0237229336053133, -0.008852802217006683, -0.08926539123058319, -0.005645582918077707, 0.011617069132626057, 0.053563620895147324, 0.06092480570077896, 0.024995742365717888, 0.0062335398979485035, 0.019672110676765442, -0.003262588055804372, -0.05254991352558136, -0.019694775342941284, 0.017465369775891304, 0.005697176791727543, -0.04931444302201271, -0.05826146900653839, -0.04871860519051552, 0.05839912220835686, -0.021456802263855934, -0.042125534266233444, -0.04727913811802864, -0.034650616347789764, 0.04903177544474602, -0.0850006490945816, -0.026910968124866486, -0.005956633482128382, 0.0323331393301487, 0.012825659476220608, -0.04551111161708832, -0.009715180844068527, 0.04827643930912018, 0.031951114535331726, 0.03580815717577934, 0.03936475142836571, -0.026973452419042587, 0.02876317873597145, -0.03160738945007324, -0.009944139048457146, 0.0636812299489975, -0.0020192612428218126, -0.022545425221323967, 0.002105150604620576, -0.01732291467487812, -0.005506533198058605, -0.2602768838405609, 0.011678368784487247, -0.03435494750738144, -0.0035700039006769657, 0.007803726475685835, -0.03841421753168106, 0.021384363994002342, -0.039373792707920074, -0.0352453887462616, 0.021717414259910583, -0.04333547130227089, -0.012771617621183395, -0.0041834223084151745, 0.028692759573459625, 0.003964129835367203, -0.015735197812318802, 0.00912210438400507, -0.037501588463783264, 0.03068029321730137, 0.06583645939826965, -0.03129711002111435, -0.0621892549097538, -0.0040227496065199375, 0.04757582023739815, 0.031130393967032433, 0.010219144634902477, -0.09814851731061935, 0.012854994274675846, -0.0226659644395113, -0.012050829827785492, -0.027887854725122452, 0.01374669000506401, 0.0021112661343067884, -0.02969016507267952, -0.028379062190651894, -0.01229095458984375, 0.035108014941215515, 0.018966056406497955, 0.020599624142050743, 0.03286314010620117, -0.030329231172800064, -0.07949046790599823, -0.00031455501448363066, -0.02804013527929783, 0.055916860699653625, -0.005819922778755426, -0.07361398637294769, -0.00002428425614198204, -0.03250047564506531, 0.0650131106376648, -0.03287743031978607, -0.021496420726180077, 0.004166373051702976, 0.006845894735306501, 0.00039504579035565257, -0.030870720744132996, 0.02864271216094494, -0.023351803421974182, -0.02507389895617962, 0.0014935341896489263, -0.002463764511048794, -0.04022236540913582, -0.011287655681371689, -0.03271029517054558, -0.019380629062652588, -0.04868267849087715, -0.08154302835464478, -0.005926880054175854, 0.0626692995429039, 0.01971408538520336, 0.025596877560019493, -0.027319634333252907, 0.005466740112751722, -0.11309216171503067, -0.06620395928621292, -0.045764997601509094, -0.048458393663167953, -0.05658627673983574, 0.014872919768095016, 0.05879354849457741, -0.015993759036064148, -0.054023828357458115, 0.02713945508003235, 0.012766900472342968, 0.00885686557739973, 0.0018688366981223226, -0.0008818770875222981, 0.0013828299706801772, -0.021355250850319862, -0.024224525317549706, 0.06925289332866669, 0.01175264734774828, 0.015192589722573757, -0.021503910422325134, 0.02566957101225853, 0.01853361167013645, 0.013082384131848812, 0.00479147071018815, 0.04667937383055687, 0.011163074523210526, 0.027301060035824776, -0.04121052101254463, 0.01156584732234478, -0.04947909712791443, -0.03315802663564682, 0.001977871172130108, -0.04128200188279152, 0.030928228050470352, 0.028721557930111885, 0.011352017521858215, -0.017131764441728592, -0.03254583850502968, 0.027948154136538506, -0.05914188176393509, -0.02792884036898613, 0.005619170609861612, -0.008775453083217144, 0.009864597581326962, 0.047563739120960236, -0.02742384560406208, -0.059948477894067764, -0.0014824500540271401, -0.004280142951756716, -0.04392033815383911, -0.07404889911413193, -0.01662485860288143, -0.013599814847111702, -0.006667113862931728, -0.0023394443560391665, 0.030442964285612106, -0.00046345897135324776, 0.0356137678027153, -0.004443905781954527, -0.035205915570259094, 0.017275413498282433, 0.0040809763595461845, -0.005097249057143927, -0.009134329855442047, -0.020802831277251244, -0.025107307359576225, 0.008783778175711632, 0.005260276608169079, 0.045997362583875656, 0.009566904045641422, 0.0683150663971901, 0.009014960378408432, -0.007112718652933836, 0.009639629162847996, -0.019792994484305382, 0.04125567898154259, 0.010256260633468628, -0.04715079814195633, 0.047538671642541885, -0.03974224627017975, -0.022695869207382202, -0.011706923134624958, 0.02692042663693428, -0.0007562636747024953, -0.04418160766363144, -0.0566675178706646, 0.03506321460008621, -0.03952449560165405, -0.018546897917985916, -0.034607794135808945, -0.002964459592476487, 0.04213863983750343, -0.0486154742538929, 0.056883592158555984, -0.03927677497267723, 0.016503384336829185, 0.006098079029470682, 0.05548689141869545, -0.021941570565104485, 0.014693275094032288, -0.009483454748988152, -0.003707683878019452, -0.02153473161160946, 0.020413754507899284, 0.028816670179367065, 0.005506339017301798, -0.009902493096888065, -0.015276523306965828, 0.04081367701292038, -0.007530306465923786, 0.04438057541847229, -0.007053405046463013, 0.0008051973418332636, -0.006683922838419676, -0.0377485416829586, 0.008207106962800026, -0.025341536849737167, 0.0022441709879785776, -0.040305811911821365, 0.038484714925289154, -0.029583854600787163, -0.04843708872795105, 0.012834984809160233, -0.0029412375297397375, 0.0011756939347833395, 0.006246298085898161, -0.013745391741394997, -0.018245937302708626, -0.009199870750308037, 0.0017605392495170236, 0.057167552411556244, -0.04143138602375984, -0.014993744902312756, 0.004148087929934263, -0.009103238582611084, 0.03511391207575798, 0.03652631491422653, -0.040524717420339584, -0.02354922704398632, -0.017302894964814186, 0.0069568264298141, 0.003890175838023424, -0.0012589056277647614, -0.011104817502200603, -0.012539184652268887, -0.019869087263941765, -0.01649884693324566, -0.017260268330574036, 0.01680649444460869, -0.0189466942101717, -0.03214072808623314, 0.03178543224930763, -0.03545007109642029, -0.007387272547930479, 0.04988699406385422, -0.03770987689495087, 0.030679143965244293, -0.019330516457557678, 0.03829503804445267, 0.0400187224149704, 0.011503680609166622, -0.0008283107308670878, -0.07595200091600418, 0.004999680910259485, -0.03905550763010979, 0.049935128539800644, 0.011427589692175388, -0.012112644501030445, -0.01102098636329174, -0.015987135469913483, -0.07481658458709717, 0.028111690655350685, 0.006448454223573208, -0.06443490087985992, 0.021341100335121155, 0.05718087777495384, -0.009040889330208302, 0.019581221044063568, -0.02446288987994194, 0.004140016157180071, 0.026761494576931, -0.035016994923353195, -0.04835432395339012, 0.0013902973150834441, -0.0375954806804657, 0.0055876909755170345, -0.006176861468702555, 0.018199844285845757, -0.05119655281305313, 0.042881984263658524, 0.0764743834733963, 0.0341271236538887, 0.011874153278768063, 0.015886781737208366, 0.023889388889074326, -0.01869516633450985, 0.0048750462010502815, -0.08665637671947479, -0.013127535581588745, 0.016524774953722954, 0.03430413454771042, -0.02584662102162838, -0.019811511039733887, -0.020746391266584396, 0.05343279242515564, -0.05022173374891281, -0.0011286011431366205, 0.05140405893325806, 0.046264342963695526, 0.024967513978481293, 0.00021795040811412036, -0.04683367535471916, 0.020431313663721085, 0.03518219664692879, -0.01086333580315113, -0.03291744738817215, -0.02773040533065796, 0.03835750371217728, 0.03451226279139519, 0.01586482673883438, 0.004389998037368059, 0.0003576664603315294, 0.02914787456393242, 0.024913806468248367, 0.003999422304332256, 0.054433424025774, -0.011006183922290802, 0.01878400519490242, 0.029292387887835503, -0.00008872925536707044, -0.011791884899139404, 0.019876673817634583, -0.01205406617373228, -0.08215149492025375, 0.013440878130495548, -0.00504894508048892, -0.017110593616962433, -0.055208880454301834, 0.055242110043764114, 0.00723376777023077, -0.01841919496655464, -0.010919677093625069, 0.003915356006473303, -0.045430365949869156, 0.03231840953230858, -0.045437999069690704, 0.045352719724178314, -0.017033841460943222, 0.07158739119768143, -0.032400380820035934, -0.02952571213245392, 0.0658624991774559, -0.002545303199440241, 0.008788409642875195, -0.003351131919771433, 0.09470313787460327, 0.06068335473537445, 0.05548502132296562, -0.02670452743768692, 0.05867573246359825, -0.049551382660865784, -0.05693381652235985, -0.009559662081301212, -0.004634525161236525, 0.01667153090238571, 0.023139474913477898, 0.06105910241603851, 0.11806929856538773, -0.016032615676522255, 0.07246667146682739, -0.03175721317529678, -0.020344924181699753, -0.010237605310976505, -0.019927481189370155, 0.029001355171203613, 0.08330948650836945, -0.010737546719610691, 0.006871442310512066, 0.010498562827706337, -0.04948412999510765, 0.03174243122339249, 0.0011978597613051534, -0.01741241104900837, -0.009050781838595867, 0.03251482918858528, 0.030970968306064606, -0.02805173397064209, 0.036103907972574234, 0.06228521093726158, -0.022951554507017136, -0.007666124030947685, 0.013724553398787975, 0.05814139544963837, 0.009424262680113316, -0.016450434923171997, -0.028093459084630013, -0.012632310390472412, 0.011463094502687454, 0.0010609740857034922, -0.018894115462899208, -0.03862355649471283, -0.030075397342443466, 0.053900592029094696, -0.06654432415962219, -0.008371105417609215, -0.01066568959504366, -0.016386348754167557, -0.03615020588040352, -0.03197385370731354, -0.05247607082128525, -0.019651560112833977, -0.07222367823123932, -0.002920185448601842, 0.01400291733443737, 0.0005124188028275967, -0.03565555065870285, -0.029698016121983528, -0.0037860253360122442, 0.005692284554243088, 0.03898308426141739, 0.004457853734493256, -0.00696384534239769, -0.004010175820440054, -0.000878801743965596, 0.03045875020325184, 0.014795562252402306, 0.025511227548122406, 0.008524971082806587, -0.007423591800034046, -0.03640322387218475, -0.02120479755103588, 0.05224153399467468, 0.007817903533577919, -0.005568757187575102, -0.0885315090417862, 0.008732288144528866, 0.02981707639992237, 0.00037236689240671694, -0.08161717653274536, 0.00468148197978735, 0.019821522757411003, -0.03527224808931351, 0.035093918442726135, -0.017109520733356476, -0.030096327885985374, -0.022970881313085556, -0.014728115871548653, 0.011748148128390312, -0.005951502826064825, 0.04017028212547302, -0.028884898871183395, 0.06977318227291107, 0.00010382245091022924, -0.013276900164783001, -0.012912129983305931, 0.006091159302741289, -0.029791060835123062, 0.027838649228215218, -0.034413982182741165, 0.003081581089645624, 0.0029248218052089214, -0.013873932883143425, 0.003672126680612564, 0.015118696726858616, -0.02643423341214657, -0.022606899961829185, -0.004899666644632816, 0.06502406299114227, -0.06731149554252625, 0.06670704483985901, -0.022876452654600143, 0.026224397122859955, -0.0020636313129216433, -0.05839162692427635, -0.001904707052744925, -0.008512722328305244, 0.03852281719446182, 0.01373258139938116, 0.06438478082418442, -0.05085059255361557, -0.01976098120212555, -0.01995823159813881, -0.007815276272594929, 0.03611328825354576, -0.026038305833935738, 0.04427407681941986 ]
[ -0.0759802982211113, 0.008797531947493553, -0.03708334639668465, -0.015093007124960423, 0.018284285441040993, -0.04191914200782776, -0.025625426322221756, 0.015979861840605736, 0.014209054410457611, -0.011720203794538975, 0.021501662209630013, -0.045569002628326416, 0.026313910260796547, -0.010115629062056541, 0.058243703097105026, -0.001150707365013659, -0.030060669407248497, 0.029675088822841644, -0.06104733422398567, -0.020711397752165794, 0.04108508676290512, -0.007501064334064722, -0.05860080197453499, -0.07065436989068985, 0.0407373383641243, 0.04605540260672569, -0.007588398177176714, -0.029462458565831184, 0.007812992669641972, -0.20429858565330505, -0.012884914875030518, 0.0028859125450253487, 0.017914826050400734, -0.006557684391736984, -0.006616408936679363, 0.016522463411092758, 0.029323656111955643, 0.016826117411255836, 0.017633553594350815, 0.04444606229662895, 0.02553330920636654, 0.03924054279923439, -0.035635579377412796, -0.010336744599044323, 0.021054130047559738, -0.004882052540779114, -0.04137824475765228, -0.037273481488227844, -0.05579949542880058, 0.04170288145542145, -0.02940264530479908, 0.01630227640271187, 0.029479356482625008, -0.020363595336675644, -0.02967546135187149, 0.06060783192515373, 0.03530518710613251, 0.04310308396816254, 0.024474376812577248, 0.02151154726743698, -0.0243669580668211, 0.005489306524395943, -0.11000028997659683, 0.1386258602142334, -0.004629966337233782, 0.020546630024909973, -0.03737160935997963, 0.000011615707990131341, 0.0069747078232467175, 0.10494673252105713, 0.03500961512327194, -0.03170156851410866, -0.041653797030448914, 0.07615852355957031, 0.02273903414607048, -0.01702852174639702, 0.0018276176415383816, -0.013400093652307987, 0.06460697203874588, -0.043188948184251785, -0.03183329850435257, -0.0340973436832428, 0.005395330488681793, -0.03280520439147949, -0.010711451061069965, 0.006030406802892685, 0.01603345014154911, 0.0038054059259593487, 0.03167751058936119, 0.03293301910161972, 0.0308322012424469, -0.055332284420728683, 0.03654646873474121, 0.018741579726338387, -0.07789153605699539, -0.014747045002877712, -0.005663884337991476, -0.0009376558009535074, -0.05397317558526993, 0.39078065752983093, -0.05909181386232376, 0.021813057363033295, 0.05270487070083618, 0.02427034080028534, -0.03356589376926422, 0.02789783664047718, 0.009662040509283543, -0.05169437825679779, -0.02660098858177662, -0.07996665686368942, -0.030659863725304604, -0.07561425864696503, 0.05218955874443054, -0.028414210304617882, -0.034312158823013306, 0.025589747354388237, 0.0012659833300858736, -0.017856581136584282, -0.009496969170868397, -0.015331821516156197, 0.05382382869720459, 0.006097985897213221, -0.004032927565276623, 0.05637284740805626, -0.001714669051580131, 0.00494920089840889, 0.013354964554309845, 0.04847581684589386, 0.0354691818356514, 0.0428943932056427, 0.05833016708493233, -0.03348100185394287, -0.07519521564245224, -0.017956489697098732, 0.02153840661048889, 0.038316816091537476, 0.03400307521224022, -0.03682294487953186, -0.0057036676444113255, 0.00935746356844902, -0.004131621681153774, -0.050512395799160004, 0.021489271894097328, -0.006623893044888973, -0.0434969887137413, 0.10913579910993576, -0.009203820489346981, -0.019354861229658127, -0.011194524355232716, 0.0006308445590548217, -0.008207065984606743, 0.032754428684711456, -0.01643865555524826, -0.06041930988430977, 0.011810597963631153, 0.029543450102210045, 0.04203461483120918, 0.0017314818687736988, -0.051390841603279114, -0.01938842609524727, -0.05025136098265648, -0.0027639809995889664, -0.05205539986491203, 0.06443774700164795, 0.013667074963450432, -0.09180176258087158, -0.050468262284994125, 0.04023033007979393, -0.020445654168725014, -0.08375019580125809, 0.049383651465177536, -0.006370581220835447, -0.05902993306517601, -0.045579057186841965, 0.032313477247953415, -0.003958110697567463, -0.02655543014407158, -0.04276781901717186, 0.04453691095113754, 0.034068163484334946, 0.05640087276697159, -0.024212494492530823, -0.07805477827787399, -0.009950040839612484, -0.041893042623996735, -0.08360481262207031, -0.06923320889472961, 0.011679119430482388, -0.011294527910649776, -0.015638276934623718, -0.006465872284024954, -0.03026111051440239, -0.04139259085059166, 0.044501978904008865, -0.034687161445617676, -0.022969644516706467, 0.013374777510762215, 0.0332665778696537, 0.03928551450371742, -0.028116540983319283, 0.05063830688595772, 0.05160178244113922, 0.027049923315644264, 0.051171496510505676, -0.0652061179280281, 0.02020091749727726, 0.060170967131853104, -0.033229295164346695, 0.02533159777522087, 0.024476071819663048, -0.048732973635196686, -0.0003399611741770059, -0.0018025345634669065, 0.007904027588665485, 0.003923461306840181, 0.0072088660672307014, -0.006672567687928677, 0.006135591771453619, 0.007901312783360481, 0.03406067565083504, -0.02278449386358261, -0.050741832703351974, 0.008943803608417511, -0.34553828835487366, -0.05735936760902405, -0.025993712246418, -0.019430624321103096, -0.02344847470521927, -0.03476698324084282, 0.023586800321936607, 0.0038565234281122684, -0.06454687565565109, 0.010862331837415695, 0.0717901661992073, 0.03235006332397461, -0.010164687409996986, -0.10333291441202164, -0.032852448523044586, 0.0025291915517300367, 0.011089302599430084, -0.08484892547130585, 0.013915025629103184, 0.04389171302318573, -0.00024003857106436044, 0.019538501277565956, -0.006075784098356962, -0.046479299664497375, 0.02688365988433361, -0.03762703016400337, 0.08747942745685577, 0.012156817130744457, 0.11331722140312195, -0.03841886296868324, 0.06826616078615189, -0.023250272497534752, 0.028387589380145073, -0.026003021746873856, -0.006101737264543772, -0.011734267696738243, -0.010769803076982498, -0.01425889041274786, 0.06187470257282257, -0.014395592734217644, -0.022767653688788414, -0.0036895601078867912, -0.026635855436325073, -0.03358807787299156, -0.007604970596730709, 0.012127213180065155, -0.02586795575916767, -0.023020178079605103, 0.0060445270501077175, 0.0721178874373436, 0.02351318672299385, -0.005341988988220692, 0.006241568364202976, 0.037444040179252625, 0.0057845041155815125, -0.012708651833236217, -0.04501864314079285, 0.0009675910114310682, -0.022594057023525238, -0.01763582043349743, 0.013777850195765495, 0.021910473704338074, 0.03862525522708893, -0.029887057840824127, 0.023094404488801956, 0.016924507915973663, 0.009864730760455132, -0.013658463023602962, -0.005165014881640673, -0.05315127223730087, -0.012971163727343082, 0.09442758560180664, -0.03362200781702995, 0.018226539716124535, -0.01332244835793972, 0.08448337763547897, -0.0189103651791811, 0.03351487219333649, -0.007413147948682308, -0.018135573714971542, 0.02055731974542141, 0.026499532163143158, 0.04126499965786934, -0.01973583735525608, -0.03314933553338051, 0.005075862631201744, -0.03291516751050949, -0.00902392715215683, 0.04858212172985077, -0.04611080139875412, -0.08172379434108734, -0.007769868243485689, -0.004324725829064846, -0.024097921326756477, 0.04130755737423897, 0.001969527453184128, -0.2464180290699005, 0.009635121561586857, 0.08892034739255905, 0.036389514803886414, -0.0020151210483163595, 0.046860065311193466, 0.07690933346748352, -0.08710725605487823, 0.017748720943927765, 0.03925272822380066, 0.0055105057545006275, 0.048462726175785065, 0.050552356988191605, 0.0014785865787416697, 0.042666349560022354, -0.023737097159028053, -0.004044238943606615, 0.02151349186897278, 0.012159004807472229, 0.0033718119375407696, 0.04180954024195671, -0.001141271903179586, 0.20035047829151154, -0.03633224591612816, 0.04398208484053612, -0.013097735121846199, -0.022341538220643997, 0.005381130147725344, 0.10636932402849197, -0.028616610914468765, 0.01763961836695671, 0.03994588181376457, 0.05233485996723175, -0.016370149329304695, 0.0018471678486093879, -0.07706723362207413, 0.029383229091763496, 0.02909470908343792, 0.0703461542725563, -0.039200615137815475, -0.01786220446228981, -0.003568589221686125, -0.051850203424692154, -0.01805710978806019, 0.061607714742422104, 0.0037532364949584007, 0.005927087273448706, 0.0019048791145905852, -0.054767753928899765, 0.016728129237890244, -0.033735986799001694, 0.023458635434508324, -0.009420426562428474, -0.0019372886745259166, 0.0010585789568722248, 0.039706580340862274, 0.005473402328789234, -0.009484811685979366, -0.039471350610256195, 0.03085589036345482, 0.015149920247495174, 0.019799847155809402, 0.09643497318029404, 0.08211568742990494, 0.0661105141043663 ]
[ -0.0014803718077018857, -0.002694654744118452, 0.01284837443381548, 0.009119280613958836, 0.008188926614820957, -0.03959275409579277, -0.007791636046022177, 0.022036787122488022, -0.03496098518371582, -0.03177421912550926, 0.02980091981589794, -0.005396304186433554, 0.016737446188926697, -0.05199349671602249, 0.05149761959910393, 0.023855388164520264, -0.0021160186734050512, -0.029038183391094208, -0.0057709114626049995, 0.015165770426392555, 0.025358574464917183, 0.0414515882730484, -0.006889161188155413, 0.0016054564621299505, -0.018825825303792953, 0.002678981749340892, -0.0771067664027214, -0.011007643304765224, 0.040649306029081345, -0.12350701540708542, -0.006646360736340284, -0.027301382273435593, 0.0068343342281877995, 0.04694734513759613, -0.0431801974773407, 0.012559179216623306, -0.002080770907923579, -0.03285159170627594, -0.02009202539920807, 0.011769803240895271, -0.00987953320145607, -0.008022422902286053, -0.02300981990993023, -0.01135573722422123, -0.03720896691083908, -0.020805437117815018, 0.03808210790157318, -0.043924424797296524, -0.028443409129977226, 0.045576971024274826, -0.010447283275425434, -0.014999916777014732, -0.0050366888754069805, 0.03744979202747345, 0.04388473927974701, 0.013177188113331795, -0.0010995692573487759, -0.03608144447207451, -0.016788002103567123, -0.00351317529566586, -0.02262313850224018, 0.0391034334897995, -0.05217200890183449, -0.030923092737793922, -0.034604255110025406, 0.0004413920978549868, -0.03732829913496971, 0.0015363666461780667, 0.01163792610168457, 0.0004205835284665227, -0.007220147643238306, 0.015661196783185005, 0.00808197632431984, 0.004033704288303852, 0.01670764945447445, 0.028215978294610977, 0.038040485233068466, -0.012054592370986938, -0.02779042162001133, -0.07204180210828781, -0.03326371684670448, 0.0017141398275271058, 0.02176840603351593, 0.017772607505321503, 0.013024445623159409, 0.02163751795887947, 0.022517820820212364, -0.011604026891291142, 0.0054182084277272224, 0.0378837026655674, -0.024042412638664246, 0.013942684046924114, 0.02183082513511181, 0.040152065455913544, -0.055281106382608414, 0.01864033006131649, 0.02316204272210598, -0.028641683980822563, -0.02426859177649021, 0.8191866874694824, -0.02582256682217121, 0.08077052980661392, 0.041826508939266205, -0.01156890019774437, -0.04959133267402649, -0.03256358578801155, -0.06095390394330025, 0.00024220693740062416, 0.005717783235013485, -0.048921119421720505, 0.026714295148849487, -0.028534086421132088, 0.0314820297062397, 0.0030283669475466013, -0.016746800392866135, -0.009150388650596142, 0.04627291113138199, -0.02271152473986149, 0.009050918743014336, -0.012892228551208973, 0.03493964672088623, -0.014922934584319592, -0.015633467584848404, 0.05745510756969452, 0.050944503396749496, -0.19695380330085754, -0.006675895769149065, -8.081207013112474e-33, -0.018934503197669983, 0.007131013087928295, -0.01268472895026207, 0.0015252255834639072, 0.02430449239909649, -0.003916032146662474, 0.04128749668598175, 0.01699179783463478, -0.030946582555770874, -0.020081575959920883, 0.021632395684719086, -0.032584913074970245, -0.03189091756939888, -0.03703436255455017, 0.026140298694372177, -0.007883896119892597, -0.01933928206562996, 0.052856817841529846, 0.010215271264314651, 0.04255210980772972, 0.041163016110658646, 0.009496155194938183, 0.0007372977561317384, -0.03049289621412754, -0.023472608998417854, 0.04713118448853493, 0.006206851452589035, -0.023900005966424942, 0.002610584255307913, -0.05124539136886597, -0.027301978319883347, 0.009327410720288754, 0.014062914066016674, 0.015399531461298466, 0.03456233814358711, -0.020028330385684967, 0.015026082284748554, -0.004586019553244114, -0.014945773407816887, -0.006707044318318367, -0.054001953452825546, -0.0012286005076020956, -0.00413459911942482, -0.0122747290879488, 0.016301626339554787, -0.032601308077573776, -0.021248098462820053, -0.01477587129920721, 0.020258482545614243, -0.010391131974756718, 0.0463363341987133, 0.017967939376831055, 0.019384002313017845, -0.009190413169562817, -0.004578364081680775, 0.009926742874085903, -0.04727364331483841, 0.032432861626148224, -0.022409588098526, 0.03246605768799782, 0.026620635762810707, -0.03918289393186569, -0.014740205369889736, 0.021862439811229706, -0.01739521510899067, -0.042212918400764465, 0.0017067407025024295, 0.004542039707303047, 0.02558823488652706, 0.0038388667162507772, -0.05006510019302368, -0.014464402571320534, -0.007613122463226318, -0.03384773060679436, 0.009434807114303112, -0.020265959203243256, -0.040574897080659866, -0.03321558237075806, -0.017075447365641594, 0.034477438777685165, 0.006489580497145653, 0.007437157444655895, -0.0012208272237330675, 0.0014574400847777724, 0.028934365138411522, -0.00903234351426363, -0.003955292049795389, 0.01828272081911564, 0.004293287638574839, 0.03152275085449219, 0.03163055703043938, -0.02118256688117981, -0.006872251629829407, -0.061800915747880936, -0.03375116363167763, 7.718143827917502e-33, -0.04656393453478813, -0.008885904215276241, -0.040067385882139206, 0.025564758107066154, 0.016755014657974243, -0.017206301912665367, -0.01749684475362301, 0.009806309826672077, -0.04224661737680435, 0.03242187947034836, -0.006065415218472481, 0.030873145908117294, -0.02218230627477169, -0.017969580367207527, 0.020633390173316002, -0.016593575477600098, 0.0040059881284832954, -0.020835107192397118, 0.0009010850335471332, -0.01245045941323042, 0.02087210677564144, -0.01513062883168459, 0.0398753397166729, 0.023122617974877357, 0.02573399618268013, 0.04066602513194084, -0.022811688482761383, 0.023020850494503975, 0.025256263092160225, -0.02958385832607746, -0.015988290309906006, 0.01163763739168644, 0.0463363453745842, -0.03628494590520859, 0.021484335884451866, 0.012870126403868198, -0.010588474571704865, -0.0033142580650746822, 0.0550924576818943, -0.033493880182504654, 0.019557997584342957, -0.015810608863830566, 0.02983657456934452, 0.0164862759411335, -0.020983457565307617, 0.004463658668100834, -0.015307411551475525, -0.009533338248729706, 0.032737623900175095, 0.07341969758272171, 0.004589475691318512, -0.014357744716107845, 0.017077121883630753, 0.03286348655819893, 0.010136254131793976, -0.0221165269613266, -0.00990422535687685, 0.0012666855473071337, -0.03034011833369732, 0.002634644042700529, -0.031408991664648056, 0.0062457965686917305, 0.003864879719913006, 0.024172522127628326, -0.010910139419138432, -0.010447533801198006, -0.05102687329053879, -0.0074941981583833694, -0.03483928367495537, 0.033040426671504974, -0.039315544068813324, -0.006681122817099094, -0.008142457343637943, 0.014587443321943283, -0.0015688081039115787, -0.006616566330194473, 0.015512126497924328, 0.013752548024058342, -0.005102371331304312, 0.0283355750143528, -0.010104012675583363, 0.01202374417334795, 0.03353200852870941, 0.006153321824967861, 0.014259411953389645, -0.012819214724004269, 0.0010979755315929651, 0.06408073008060455, 0.011327560059726238, -0.03697897493839264, 0.009164438582956791, -0.025221142917871475, -0.0018420533742755651, -0.0217570923268795, -0.013588257133960724, -1.3287024813735115e-8, -0.0723106637597084, -0.00035461204242892563, -0.026259098201990128, -0.015831800177693367, 0.04295874759554863, 0.026139240711927414, -0.013705802150070667, 0.031939174979925156, -0.02115584723651409, -0.013018502853810787, 0.042533840984106064, 0.003867095336318016, 0.034063439816236496, -0.030574236065149307, 0.03353136405348778, -0.05481875315308571, 0.013696476817131042, 0.006730413995683193, 0.008361012674868107, -0.02207324653863907, -0.040635667741298676, 0.05160665139555931, -0.008078436367213726, 0.051830340176820755, 0.0005291470442898571, 0.006942516192793846, 0.008563290350139141, -0.06021835282444954, 0.02586616575717926, -0.01673612743616104, 0.02137177437543869, -0.013986889272928238, -0.01088573969900608, 0.014881888404488564, -0.030136415734887123, -0.020929310470819473, 0.03602217510342598, 0.026574205607175827, 0.0069784135557711124, 0.00820354837924242, 0.030915480107069016, -0.016748711466789246, 0.017396653071045876, -0.01763121597468853, 0.016174867749214172, -0.019446445629000664, 0.004591962322592735, 0.006981130223721266, 0.0554487407207489, -0.0014537350507453084, 0.0013808810617774725, -0.007418865337967873, 0.023801706731319427, -0.008711691945791245, 0.013174404390156269, -0.004933083895593882, -0.005499583203345537, 0.0013758522691205144, 0.0046564009971916676, 0.05603409931063652, -0.0040115234442055225, 0.017475035041570663, -0.005568469874560833, 0.018566783517599106 ]
f-passing-an-argument-to-a-member-constraint
https://markhneedham.com/blog/2010/02/15/f-passing-an-argument-to-a-member-constraint
false
2010-02-12 21:11:54
Javascript: Some stuff I learnt this week
[ "javascript" ]
[ "Javascript" ]
I already wrote about how I've learnt a bit about the 'call' and 'apply' functions in Javascript this week but as I've spent the majority of my time doing front end stuff this week I've also learnt and noticed some other things which I thought were quite interesting. == Finding character codes We were doing some testing early in the week where we needed to restrict the characters that could be entered into a text box. As a result we needed to know the character codes for the banned characters. While googling to work them out we came across http://jdstiles.com/java/cct.html[Uncle Jim's CharCode Translator] which allows you to type in a character and get its character code and vice versa. I guess you could easily just call the Javascript functions in FireBug but it's a nice little utility to save the effort. == Duck typing makes some testing much easier Related to that we needed to be able to pass in an event object to a function which only made use of the 'charCode' method. In a statically language we would have needed to create an event object which had all the properties that an event object needs. In Javascript we could just create the following... [source,javascript] ---- var event = { eventCode : 57 }; ---- ...and then pass that into the function and check that the result was as expected. I haven't done a lot with languages which support duck typing so this is pretty cool to me and I imagine we'd probably see the same advantages of duck typing when testing in language like Ruby, Python and so on. == Compressing Javascript files One of the requirements for my project is that we need to compress all the javascript files used in our application to allow them to be downloaded more quickly by the user. On a previous project that I worked on we made use of some Javascript minifying code written by Douglas Crockford but on this one we're making use of the http://combres.codeplex.com/[Combres] library which does all this work for us and compresses CSS files as well. I haven't done a lot with it but so far it seems to work pretty well. == Command query separation I find it quite intriguing how difficult we've sometimes found it to unit test Javascript on some of the projects I've worked on without ending up with really complicated tests and it seems to me that perhaps the biggest reason for this is that we're often writing functions which violate the idea of command query separation principle. The idea here is that a function should either be a command i.e. it has some side effect which means DOM manipulation in Javascript code usually or it should be a query i.e. it returns a value probably based on the input. Typically we might end up writing a function which validates an input in a text box and tells us whether or not it's valid, but then also sets up the display of the error message in the same function. I don't think this would happen as frequently in Java or C# so perhaps it's down to the fact that it's so easy to reference a global variable (i.e. jQuery) that we end up doing so in our code. It seems like if we could separate these two types of logic then it would be easier to test the query type code in unit tests and we could rely more on Selenium or manual tests to check that the page is being manipulated correctly.
null
null
[ -0.013248641975224018, 0.017169492319226265, -0.018481526523828506, 0.01909853145480156, 0.05413033440709114, 0.032433219254016876, 0.01772739738225937, 0.0387035496532917, 0.007566582877188921, -0.012016204185783863, -0.03010920248925686, -0.0020365924574434757, -0.06562502682209015, -0.009435730054974556, -0.028646616265177727, 0.06043075770139694, 0.08665284514427185, -0.010210580192506313, 0.06541285663843155, -0.005073273088783026, -0.0005062709096819162, 0.059884581714868546, -0.007490785326808691, 0.03989362716674805, 0.04692605137825012, 0.015268507413566113, 0.000728433660697192, 0.011424392461776733, -0.06593947112560272, -0.00671960785984993, 0.023184755817055702, 0.03654450923204422, 0.0029286108911037445, -0.016520656645298004, 0.0061174239963293076, -0.011154158040881157, -0.0028393343091011047, 0.015459402464330196, 0.010751476511359215, 0.056769195944070816, -0.06476057320833206, 0.02576565556228161, 0.019526120275259018, 0.02497371844947338, -0.038092631846666336, -0.00371211557649076, -0.06278611719608307, -0.000873111595865339, -0.019054600968956947, 0.019698774442076683, -0.054246094077825546, 0.03769559785723686, -0.017792245373129845, -0.011329940520226955, -0.007187974639236927, 0.05245624855160713, 0.015449270606040955, -0.07174469530582428, 0.009107013233006, -0.05006634443998337, 0.012479950673878193, 0.011566583067178726, -0.014721919782459736, 0.030257627367973328, 0.019758006557822227, 0.003125492250546813, -0.008810331113636494, 0.04980941116809845, -0.05475573614239693, -0.023942390456795692, 0.03190188482403755, 0.042561259120702744, -0.03543940186500549, -0.02703406848013401, 0.013849896378815174, -0.030538996681571007, -0.02166823297739029, 0.032346539199352264, -0.009470408782362938, 0.04685152694582939, -0.022392932325601578, 0.017707502469420433, 0.029328634962439537, 0.025593873113393784, 0.015293426811695099, -0.025477690622210503, -0.033283933997154236, -0.0060670687817037106, -0.03224252164363861, 0.04869646206498146, 0.027474643662571907, -0.05729375034570694, 0.024232862517237663, 0.02029501460492611, 0.001965334638953209, 0.00807525496929884, -0.006528440862894058, -0.015558461658656597, -0.02043774165213108, -0.0014333806466311216, -0.0601000152528286, -0.016791030764579773, 0.05148269981145859, -0.0037061821203678846, -0.07159291952848434, 0.01701553724706173, -0.0063702878542244434, -0.005871144589036703, 0.030070943757891655, 0.019344942644238472, -0.011738267727196217, -0.00018774237832985818, -0.010573448613286018, -0.013281567022204399, -0.0697176456451416, 0.05536762997508049, -0.005164450965821743, -0.010715271346271038, -0.008926418609917164, 0.029449841007590294, 0.06252764910459518, 0.02216499298810959, -0.02412733994424343, 0.08148054033517838, 0.022245099768042564, 0.012409339658915997, -0.005448431242257357, 0.07536055892705917, 0.0020876992493867874, -0.07615285366773605, -0.016551095992326736, 0.04283713176846504, -0.02935526892542839, -0.003805780317634344, 0.010527052916586399, -0.009269854985177517, -0.013971553184092045, -0.007817136123776436, 0.038171060383319855, 0.045561715960502625, 0.005641194060444832, -0.043576259166002274, 0.008650445379316807, -0.023717772215604782, 0.016806693747639656, 0.008703910745680332, -0.023162387311458588, -0.03294499218463898, -0.026888681575655937, 0.02935192361474037, -0.0038326724898070097, 0.000919789366889745, 0.04910656809806824, -0.014778424985706806, -0.008640279062092304, 0.06496427953243256, 0.014839714393019676, 0.003105551702901721, -0.02346642315387726, 0.0057770851999521255, 0.02539280615746975, 0.01879275217652321, -0.030659116804599762, 0.040251340717077255, -0.005068439524620771, -0.001987090799957514, 0.010221665725111961, 0.07729160785675049, -0.0285078976303339, -0.00100648682564497, -0.04359659180045128, -0.018151311203837395, 0.08741030097007751, -0.047372493892908096, -0.012720193713903427, 0.01588216796517372, 0.05725501477718353, 0.000441147421952337, 0.047272711992263794, 0.007778069004416466, -0.06138608604669571, 0.021971743553876877, -0.00696142902597785, 0.036367613822221756, 0.05893173813819885, -0.008423445746302605, 0.0900745540857315, -0.003997101914137602, -0.008571667596697807, 0.04549993947148323, -0.0764792263507843, -0.08289935439825058, -0.0349963940680027, 0.007025584578514099, 0.0606861338019371, -0.05196303129196167, -0.00569812161847949, 0.06398790329694748, 0.018883880227804184, 0.05529796704649925, 0.014641569927334785, -0.03605198115110397, 0.022818874567747116, -0.012424541637301445, -0.015925033017992973, 0.03712451830506325, 0.05529719218611717, -0.027572495862841606, -0.028902564197778702, -0.0023038287181407213, -0.00002804885843943339, 0.006518037989735603, 0.03980737179517746, -0.009561493992805481, 0.04434854909777641, 0.022300321608781815, 0.04034053161740303, -0.031061187386512756, 0.03898899629712105, -0.06713419407606125, 0.032107532024383545, 0.025791794061660767, -0.0016084753442555666, -0.014868228696286678, 0.02166503295302391, 0.14180885255336761, 0.05650550127029419, -0.04191330820322037, -0.03598200902342796, 0.007479677442461252, -0.011916075833141804, -0.07292678952217102, 0.009692266583442688, -0.001476409612223506, -0.01489577442407608, -0.009189832024276257, -0.03135421499609947, -0.015256776474416256, 0.0028171271551400423, -0.021824704483151436, 0.026481086388230324, 0.06963565200567245, -0.01710672304034233, 0.04131817817687988, -0.034635771065950394, -0.019857963547110558, 0.015337810851633549, -0.004288037773221731, -0.007650284096598625, -0.02217288874089718, 0.030932506546378136, 0.005142125766724348, 0.03757297247648239, -0.029232250526547432, -0.012088438495993614, -0.019499164074659348, -0.038260772824287415, 0.01299193687736988, 0.04778545722365379, 0.045536961406469345, 0.013387167826294899, 0.05659221485257149, 0.01863868162035942, 0.01734587736427784, -0.003363347612321377, -0.04521896317601204, -0.029480207711458206, -0.019710855558514595, -0.008954064920544624, 0.06850258260965347, 0.007032131310552359, 0.0348399318754673, 0.0033060465939342976, -0.015283847227692604, -0.012210829183459282, -0.0058546713553369045, -0.0022676540538668633, -0.04574470967054367, -0.039756614714860916, -0.020822934806346893, -0.047468557953834534, 0.03972472622990608, -0.04486934468150139, -0.053558290004730225, 0.00870788935571909, -0.05798560380935669, 0.018512431532144547, -0.09009262174367905, -0.062283020466566086, -0.0031902079936116934, 0.04365842044353485, 0.012059220112860203, -0.014172377064824104, 0.009854231961071491, 0.06679919362068176, -0.0028612485621124506, 0.020583443343639374, 0.0023484285920858383, 0.023591281846165657, 0.03791815787553787, 0.024954043328762054, 0.013110324740409851, 0.040654100477695465, 0.003192991018295288, -0.018629612401127815, -0.04345286637544632, -0.0006530612008646131, 0.005579584743827581, -0.28238293528556824, 0.04013993963599205, -0.02035219594836235, -0.02995307184755802, 0.020405981689691544, -0.03260115906596184, 0.014410994946956635, -0.04282774031162262, -0.001825411687605083, 0.012896057218313217, -0.03147343918681145, -0.06224125251173973, -0.03968214616179466, 0.05071910843253136, -0.025929279625415802, -0.011606293730437756, 0.0012139331083744764, -0.023843126371502876, -0.004091691225767136, 0.06187254190444946, -0.006126624997705221, -0.07327643036842346, 0.05029541999101639, 0.06100546941161156, 0.039725273847579956, 0.02750449627637863, -0.08978986740112305, 0.030136942863464355, -0.02706773951649666, -0.005286019295454025, 0.01417772751301527, 0.0011280805338174105, 0.003711434779688716, -0.020420776680111885, -0.011557075195014477, 0.008008906617760658, 0.05637019872665405, 0.01782599650323391, 0.02164953202009201, 0.029184624552726746, -0.0380789116024971, -0.047425247728824615, -0.027463490143418312, 0.00772850913926959, 0.05843248963356018, -0.013066199608147144, -0.06767922639846802, 0.02332940325140953, -0.041397176682949066, 0.057013776153326035, -0.021789539605379105, -0.041399624198675156, -0.01719086430966854, 0.04834021255373955, 0.017101921141147614, -0.023239554837346077, -0.030044395476579666, 0.008044520393013954, -0.042954254895448685, -0.06122380495071411, 0.008000259287655354, -0.037791285663843155, -0.036194540560245514, -0.03427774831652641, 0.009431557729840279, -0.07279007136821747, -0.0646691620349884, -0.01602453924715519, 0.0834866538643837, 0.040738657116889954, -0.014513060450553894, -0.005669760052114725, 0.005623554810881615, -0.11747108399868011, 0.018760332837700844, -0.0075517334043979645, -0.011487451381981373, -0.047136642038822174, 0.0036137374117970467, 0.04241122677922249, -0.02350846491754055, -0.05703217536211014, 0.04059124365448952, -0.010405288077890873, 0.015811903402209282, -0.02824545092880726, 0.02797437272965908, -0.0007178019732236862, 0.002046724781394005, -0.0158160999417305, 0.10413478314876556, -0.030205070972442627, -0.0334358885884285, -0.029435336589813232, 0.014599993824958801, 0.006851937621831894, 0.03792563080787659, -0.010714245028793812, -0.0005569361383095384, 0.011908561922609806, 0.02231401577591896, -0.03655005618929863, 0.012484087608754635, -0.04225467890501022, 0.02164028026163578, -0.00738878920674324, -0.046317730098962784, 0.061676714569330215, 0.052328649908304214, 0.024167994037270546, -0.03302454948425293, -0.040857866406440735, 0.00932289008051157, -0.06088710203766823, -0.019991472363471985, -0.028043167665600777, 0.023099130019545555, -0.012526212260127068, -0.008343880996108055, -0.04274056851863861, -0.025028090924024582, 0.0020320883486419916, 0.03738168627023697, -0.011617088690400124, -0.05447865277528763, -0.02536162920296192, -0.02880185842514038, -0.0004774853587150574, 0.00006192294677020982, -0.010723712854087353, 0.0030461337883025408, 0.019979307428002357, -0.023209581151604652, -0.030612746253609657, 0.007342108990997076, 0.0025734377559274435, -0.038753654807806015, -0.01586798205971718, -0.036087341606616974, -0.017719397321343422, 0.04052846133708954, -0.0013541168300434947, 0.019338862970471382, 0.03247332200407982, 0.03346741944551468, 0.0038398790638893843, 0.010218729265034199, 0.00915316492319107, -0.00811696331948042, 0.030026478692889214, -0.002923218999058008, -0.07972442358732224, 0.008330678567290306, -0.01288092602044344, -0.033308520913124084, -0.02620241977274418, 0.04007599502801895, 0.01881539262831211, -0.008733515627682209, -0.021079540252685547, 0.03410264477133751, -0.05183636397123337, -0.017497919499874115, -0.04038016125559807, 0.00360626308247447, 0.03599810227751732, -0.0006701078382320702, 0.048310305923223495, -0.01308179646730423, 0.0019701861310750246, 0.00030369602609425783, 0.0556635819375515, -0.01935436949133873, 0.0011782848741859198, 0.0024918578565120697, -0.012349851429462433, -0.017535246908664703, 0.022734468802809715, 0.022598257288336754, 0.0004977114149369299, 0.02888779528439045, -0.03258788585662842, 0.01430340763181448, 0.03626153618097305, 0.04681054875254631, -0.005670368671417236, -0.0046078721061348915, -0.008583201095461845, -0.03618134185671806, -0.03814839571714401, -0.06229092925786972, -0.043120376765728, -0.011082501150667667, 0.014190270565450191, -0.05782685428857803, -0.07813876122236252, 0.020291822031140327, 0.03699919208884239, 0.00913273449987173, 0.03273361176252365, 0.01871013641357422, -0.010137696750462055, -0.029860835522413254, 0.022968078032135963, 0.04133044555783272, -0.04796518757939339, -0.0005647101206704974, -0.01370925921946764, 0.03386538848280907, 0.009846136905252934, 0.048724185675382614, -0.04963080585002899, -0.019221358001232147, -0.02838713862001896, -0.02360568754374981, -0.028216680511832237, -0.030088486149907112, -0.04301455244421959, 0.006899567786604166, -0.022654803469777107, -0.03657408803701401, -0.0057045938447117805, -0.010198148898780346, -0.017767729237675667, -0.013131124898791313, 0.003082986455410719, -0.056718625128269196, -0.0003127746458631009, 0.029981572180986404, -0.015968304127454758, 0.038775429129600525, 0.0005523538566194475, 0.05003812909126282, 0.0273401141166687, 0.0022115481551736593, -0.032040148973464966, -0.06300833076238632, -0.0013072529109194875, -0.01407709438353777, 0.06768321245908737, 0.0011753771686926484, -0.02061782404780388, -0.02347254753112793, 0.01200809981673956, -0.04539630189538002, 0.035733796656131744, -0.04447343200445175, -0.033233534544706345, 0.02116590179502964, 0.05480967089533806, 0.021000027656555176, 0.042706988751888275, 0.004802113398909569, -0.013399734161794186, 0.03791336342692375, -0.049142878502607346, -0.008302627131342888, -0.012006516568362713, -0.05222472921013832, 0.02561067044734955, 0.01332832034677267, 0.03732604160904884, -0.03492623195052147, 0.04439565911889076, 0.007324567064642906, 0.02601666934788227, 0.01529764011502266, -0.02367260307073593, 0.04364048317074776, -0.023270877078175545, -0.006508470978587866, -0.07846931368112564, 0.015260984189808369, 0.04190327599644661, 0.00621415488421917, -0.027054650709033012, -0.021379631012678146, -0.03604299575090408, 0.04576769098639488, -0.04931655898690224, 0.017663218080997467, 0.052428051829338074, 0.013213864527642727, -0.006522100884467363, 0.0042896391823887825, -0.07437936216592789, 0.03387674689292908, 0.03982771560549736, -0.021169671788811684, -0.032106947153806686, -0.03091512620449066, 0.049203500151634216, -0.0030397046357393265, 0.021389583125710487, -0.00872977077960968, 0.017047299072146416, 0.044889017939567566, 0.024546999484300613, 0.003505394561216235, 0.030361486598849297, -0.020896553993225098, 0.026840684935450554, 0.029882539063692093, 0.013605689629912376, 0.005166405811905861, 0.02670884318649769, -0.010679807513952255, -0.0758526474237442, 0.005751075688749552, 0.04210495576262474, -0.04578915610909462, -0.054878707975149155, 0.057239703834056854, 0.01619124226272106, -0.022445648908615112, -0.039927445352077484, -0.0008206858183257282, -0.058562446385622025, -0.016821982339024544, -0.03354031220078468, -0.005283210892230272, -0.026588836684823036, 0.05810292437672615, -0.004714428912848234, -0.026516199111938477, 0.07247213274240494, -0.011740545742213726, -0.00042816088534891605, -0.017945345491170883, 0.06744743138551712, 0.09212332218885422, 0.05295887216925621, 0.035983406007289886, 0.03344528377056122, -0.006651911418884993, -0.05084935203194618, 0.012627719901502132, -0.030449168756604195, 0.003846899839118123, -0.020294420421123505, 0.016032172366976738, 0.07081475853919983, -0.01028942596167326, 0.06063167750835419, 0.005557630676776171, -0.007980731315910816, -0.010039137676358223, 0.03869403526186943, 0.002783403964713216, 0.07011328637599945, 0.02722278982400894, 0.012600940652191639, 0.0070367539301514626, -0.008781603537499905, 0.044882141053676605, -0.04983304813504219, -0.03971441090106964, 0.01408566627651453, 0.023689746856689453, 0.018285291269421577, 0.013791539706289768, 0.04556126892566681, 0.08443102985620499, -0.03157109394669533, 0.012390775606036186, 0.016328347846865654, 0.04517810419201851, -0.0042121559381484985, -0.00001917675581353251, -0.026298340409994125, -0.025581778958439827, -0.022493697702884674, -0.01577296294271946, -0.024380015209317207, -0.016834475100040436, -0.038675542920827866, 0.07021203637123108, -0.03225713223218918, -0.0011697865556925535, 0.012555480934679508, -0.0133505929261446, -0.03767801821231842, -0.05306096374988556, -0.06812167167663574, -0.0362427718937397, -0.059420015662908554, -0.06367544829845428, 0.040444228798151016, -0.013327118940651417, -0.05237816274166107, -0.022914551198482513, -0.005092596635222435, -0.00992867723107338, 0.013588253408670425, -0.02107308991253376, -0.041728679090738297, 0.01663607731461525, -0.008936111815273762, 0.061167068779468536, 0.028971385210752487, 0.03182519972324371, -0.023693043738603592, -0.015220069326460361, -0.0405658595263958, -0.03167565539479256, 0.048074979335069656, 0.020498985424637794, 0.007629944942891598, -0.056263480335474014, 0.019137421622872353, -0.00027678970945999026, 0.007391386665403843, -0.057174209505319595, 0.017350617796182632, -0.013147881254553795, -0.00022601035016123205, 0.06853201985359192, -0.0367383249104023, 0.023881684988737106, -0.04452860355377197, -0.015236477367579937, -0.011958174407482147, 0.015609974972903728, 0.05102267488837242, -0.014893715269863605, 0.08160364627838135, 0.017915477976202965, -0.01288736704736948, -0.019818369299173355, -0.014936716295778751, -0.027404749765992165, 0.0020935270003974438, -0.027508994564414024, -0.005569999571889639, -0.0449918732047081, -0.05502508208155632, -0.030468160286545753, 0.03396618366241455, -0.007765267044305801, -0.008282394148409367, 0.02461480163037777, 0.030435888096690178, -0.04242956265807152, 0.046553611755371094, -0.043748389929533005, 0.031114596873521805, -0.012551980093121529, -0.030056536197662354, 0.008321748115122318, 0.0016760282451286912, -0.022211242467164993, -0.015261885710060596, 0.01103638019412756, -0.019216766580939293, -0.013923732563853264, 0.0161784365773201, 0.027628066018223763, 0.018006015568971634, -0.03823939710855484, 0.010726102627813816 ]
[ -0.11140474677085876, -0.01913982257246971, -0.027115238830447197, -0.051972635090351105, 0.006569807883352041, -0.021168584004044533, 0.007946631871163845, 0.02898699790239334, -0.021148717030882835, -0.02233518846333027, -0.061200227588415146, -0.02098385989665985, -0.013224763795733452, -0.00020645589393097907, 0.09432853013277054, -0.004582602996379137, -0.017664333805441856, -0.06704241782426834, -0.058722734451293945, 0.04019436985254288, 0.0046312506310641766, 0.0023696529679000378, -0.03777667135000229, -0.0432930625975132, -0.02073756791651249, 0.023696694523096085, 0.03170840069651604, -0.025002259761095047, 0.04452699422836304, -0.1900038719177246, 0.0007150811143219471, -0.0029480166267603636, 0.0468503013253212, -0.0253562293946743, -0.03141343593597412, 0.021722659468650818, 0.035782340914011, 0.020124996080994606, 0.003498059930279851, 0.03541933745145798, 0.021764518693089485, -0.002327044727280736, -0.05166676640510559, -0.026823384687304497, 0.06718611717224121, -0.018615975975990295, -0.00363235198892653, -0.06110018119215965, -0.04069142788648605, -0.01062075886875391, -0.06089915707707405, 0.002086125547066331, 0.004956544376909733, -0.033913008868694305, 0.02594875544309616, 0.0041017914190888405, 0.025648580864071846, 0.0842953771352768, 0.012410934083163738, 0.010602387599647045, -0.0022552802693098783, -0.011545920744538307, -0.10062122344970703, 0.11006341874599457, 0.046052031219005585, 0.07262758165597916, -0.015704499557614326, -0.03425336256623268, 0.0006207551341503859, 0.07798534631729126, -0.004273504950106144, -0.010002544149756432, -0.039250448346138, 0.06856003403663635, -0.012821616604924202, -0.02215210162103176, -0.012385770678520203, 0.011170569807291031, 0.03699195012450218, -0.04404144734144211, -0.06306006014347076, -0.041801709681749344, 0.006924446206539869, -0.0024863933213055134, -0.02988925762474537, 0.024744359776377678, -0.0069817835465073586, 0.04749385640025139, 0.016155200079083443, 0.021338554099202156, 0.03688831999897957, -0.009656407870352268, 0.05438608676195145, 0.02440892904996872, -0.07359964400529861, 0.00015659241762477905, 0.001688826596364379, 0.015525448136031628, -0.04623414948582649, 0.44362857937812805, -0.044383708387613297, -0.03594915196299553, 0.03611065447330475, -0.03485693782567978, 0.004052071366459131, -0.01187543198466301, 0.0027005309239029884, -0.06341536343097687, 0.0034122869838029146, -0.04695982486009598, -0.009928766638040543, -0.010415615513920784, 0.07416299730539322, -0.021584386005997658, -0.02672429196536541, 0.021693965420126915, 0.017091313377022743, 0.023008102551102638, 0.008534631691873074, 0.01376449503004551, 0.013019287958741188, 0.034339871257543564, 0.005668943747878075, 0.0010454680304974318, 0.026226328685879707, 0.0000473223662993405, 0.017964668571949005, 0.06164497882127762, 0.0318324975669384, 0.028285134583711624, 0.05180783197283745, -0.022008316591382027, -0.04652473330497742, 0.012892932631075382, 0.0006903967587277293, 0.028242457658052444, 0.011756425723433495, -0.00942620262503624, 0.008181290701031685, 0.01930828206241131, 0.019104674458503723, -0.027209077030420303, 0.03332194685935974, 0.00792976189404726, -0.03390101343393326, 0.07273915410041809, -0.012433135882019997, -0.037409067153930664, -0.02075529471039772, -0.03922735154628754, 0.013029334135353565, 0.04470362514257431, -0.009836736135184765, -0.057899147272109985, 0.009201807901263237, 0.008619166910648346, 0.06222492456436157, -0.00008803995297057554, -0.04650069400668144, -0.02727680467069149, -0.055118486285209656, -0.010638909414410591, -0.03403335064649582, -0.017974209040403366, 0.05961627885699272, -0.12081730365753174, -0.021174199879169464, 0.025176847353577614, 0.02753937803208828, -0.08220438659191132, -0.026167115196585655, 0.0014238381991162896, -0.06428356468677521, -0.007029790431261063, 0.030082326382398605, -0.04342048987746239, -0.03775759041309357, 0.021276351064443588, 0.05327928066253662, 0.02389671839773655, 0.006310303695499897, 0.005473162513226271, -0.041613996028900146, -0.004890806041657925, -0.024403387680649757, -0.07036729156970978, -0.039586182683706284, -0.003875441150739789, 0.005574093200266361, 0.015857500955462456, -0.012096929363906384, -0.0587816946208477, -0.07127702981233597, 0.060038287192583084, -0.008004313334822655, -0.030378786846995354, 0.010194938629865646, -0.014595762826502323, 0.0034285958390682936, 0.0023171326611191034, 0.015019365586340427, 0.031951747834682465, 0.007563723251223564, 0.0234310794621706, -0.03391914442181587, 0.04840599372982979, 0.0897919088602066, -0.06180761009454727, 0.08770836144685745, 0.04502040892839432, -0.07337368279695511, -0.003917524591088295, 0.0418982058763504, 0.020759595558047295, 0.013840526342391968, -0.03750768303871155, -0.015340538695454597, 0.012275433167815208, 0.011652897112071514, 0.00978558138012886, -0.04007935896515846, -0.03870472311973572, -0.018334507942199707, -0.3324083387851715, -0.04030323773622513, -0.00672932481393218, -0.027531728148460388, 0.031381864100694656, -0.051380641758441925, 0.02553924359381199, -0.012367403134703636, 0.005214419215917587, -0.015121723525226116, 0.08412037044763565, -0.032101962715387344, 0.005750018637627363, -0.09837210178375244, 0.0035198393743485212, 0.030960386618971825, -0.009738024324178696, -0.07533710449934006, -0.007917337119579315, 0.03348072990775108, -0.004463732708245516, -0.0036945424508303404, -0.024993259459733963, -0.06681756675243378, 0.005201051477342844, -0.05340578779578209, 0.09556248784065247, -0.0018874936504289508, 0.09745694696903229, -0.057174503803253174, 0.038433291018009186, -0.009222496300935745, 0.027367547154426575, -0.0717560350894928, 0.01834625005722046, -0.008235453628003597, -0.018529003486037254, 0.002638798439875245, 0.04781131446361542, 0.012737702578306198, -0.0350494422018528, -0.012622931972146034, -0.03702303394675255, -0.029570717364549637, -0.03632040321826935, -0.0007377383299171925, -0.01809260994195938, -0.07435049116611481, -0.023072801530361176, 0.04546539485454559, 0.03061305731534958, 0.0008590092766098678, 0.03768523782491684, 0.027327705174684525, -0.021564435213804245, -0.023954199627041817, -0.05473256856203079, -0.016895659267902374, 0.008059466257691383, 0.006927171256393194, 0.05450166389346123, 0.021497627720236778, 0.017428960651159286, -0.04011222720146179, 0.004251302219927311, 0.017233313992619514, 0.014915792271494865, 0.003068513236939907, 0.0609196312725544, -0.006952944677323103, -0.05086560547351837, 0.11225840449333191, 0.037758685648441315, 0.016170082613825798, 0.02692299522459507, 0.05679469555616379, 0.015882618725299835, 0.03363572433590889, 0.020942172035574913, 0.012295033782720566, 0.01599123328924179, -0.013376071117818356, 0.041407182812690735, -0.034835267812013626, -0.01493521872907877, 0.03223910555243492, -0.002884117653593421, -0.033123958855867386, 0.051695242524147034, -0.0016994598554447293, -0.05007125064730644, -0.01140280719846487, 0.008847261779010296, -0.07342199236154556, 0.05981610342860222, -0.0006276265485212207, -0.25852730870246887, 0.007398753426969051, 0.07864384353160858, 0.06203233078122139, 0.0067977034486830235, 0.025600943714380264, 0.037958867847919464, -0.06091521680355072, -0.004735274240374565, 0.02451893500983715, 0.010788527317345142, 0.014474233612418175, -0.0034745598677545786, -0.006455538794398308, 0.03526816517114639, 0.0025723816361278296, 0.024753890931606293, -0.014920612797141075, 0.006544936448335648, -0.021250586956739426, 0.036795973777770996, -0.00596225168555975, 0.1780034601688385, 0.003010582411661744, 0.03748025745153427, 0.02017541043460369, 0.021091314032673836, 0.013381938450038433, 0.08886909484863281, -0.009160144254565239, 0.015508023090660572, -0.013354542665183544, 0.0694730207324028, -0.009420874528586864, 0.03019159473478794, -0.06503801047801971, -0.061772070825099945, 0.06847258657217026, 0.00009392875654157251, -0.026183512061834335, 0.02081351727247238, 0.02405804954469204, -0.035673849284648895, 0.0004367760266177356, 0.03257784992456436, 0.01702512428164482, -0.01075978297740221, -0.023067474365234375, -0.013862512074410915, 0.004804709460586309, -0.023760193958878517, -0.04348256066441536, 0.008086094632744789, -0.019556192681193352, 0.009890277869999409, 0.07942219823598862, 0.03823917731642723, -0.01304356288164854, 0.01586063951253891, 0.03678120672702789, -0.0017632428789511323, -0.032419536262750626, 0.11126769334077835, 0.07194188237190247, 0.0318324975669384 ]
[ -0.0431649312376976, 0.004020182881504297, -0.006007239688187838, 0.033555056899785995, 0.010763030499219894, 0.019270431250333786, 0.01383894681930542, 0.02276737056672573, 0.011052208952605724, -0.030315520241856575, -0.03066447377204895, 0.022530002519488335, 0.0243880283087492, 0.0005384708056226373, 0.006666787900030613, -0.02513534389436245, -0.04121548309922218, 0.01116851344704628, 0.008248260244727135, -0.010911084711551666, -0.025415686890482903, 0.006074408069252968, 0.025341205298900604, -0.01180874090641737, -0.007879518903791904, 0.010558326728641987, -0.005117550026625395, -0.015660006552934647, 0.023933785036206245, -0.13243013620376587, -0.029087448492646217, -0.04914352297782898, 0.008279240690171719, -0.008812380023300648, -0.025151893496513367, 0.003530210582539439, 0.0014130629133433104, 0.015305396169424057, 0.010398377664387226, 0.00248738843947649, -0.05806338042020798, -0.0008888128795661032, -0.015713440254330635, 0.028985805809497833, -0.010512988083064556, -0.019215110689401627, -0.03396301716566086, -0.03174149990081787, -0.028333524242043495, 0.01402304694056511, -0.030068334192037582, 0.0359954796731472, -0.0023813541047275066, 0.010791173204779625, 0.007740200962871313, -0.046054545789957047, 0.004142181947827339, -0.011424805037677288, 0.016969116404652596, 0.011804921552538872, -0.02444484457373619, -0.002205550204962492, -0.024518080055713654, -0.009341594763100147, -0.01402485091239214, -0.030295085161924362, 0.014225717633962631, 0.008800542913377285, -0.0034089747350662947, -0.01406733226031065, -0.023827288299798965, 0.021049167960882187, -0.011817648075520992, -0.03141849488019943, -0.013933609239757061, -0.0017649100627750158, 0.0051870341412723064, -0.0012467928463593125, 0.04728467017412186, 0.0215880386531353, -0.036165278404951096, -0.01902770809829235, 0.030712073668837547, 0.035643525421619415, -0.01081664115190506, 0.03630724921822548, -0.025443628430366516, -0.001522311707958579, 0.007112296763807535, 0.04184361547231674, -0.05127725750207901, 0.01630311831831932, 0.02113073505461216, 0.0470002219080925, -0.08276596665382385, 0.002668944885954261, 0.006958182901144028, -0.011220858432352543, -0.020079398527741432, 0.8595156669616699, -0.015508642420172691, 0.04346267879009247, 0.03163955360651016, -0.006803019903600216, 0.029547858983278275, -0.014763770624995232, -0.006754003465175629, -0.011812491342425346, 0.04676863178610802, -0.036931250244379044, 0.010002459399402142, -0.011584020219743252, 0.022083289921283722, -0.007821445353329182, 0.025523100048303604, 0.029498636722564697, 0.0414496585726738, -0.0025990076828747988, 0.011500388383865356, 0.031421270221471786, 0.04689168184995651, 0.0020544424187391996, 0.00778899434953928, 0.0153099549934268, 0.02278723195195198, -0.16773252189159393, -0.0003882188757415861, -8.214951086929187e-33, 0.05030566081404686, -0.006967672146856785, -0.011620313860476017, -0.006696045398712158, -0.017359916120767593, 0.017712416127324104, 0.016678227111697197, 0.03737875074148178, -0.008441388607025146, -0.005564626771956682, 0.0140061154961586, -0.0072064027190208435, -0.006627795752137899, -0.023487545549869537, 0.04023785889148712, -0.005760957486927509, -0.003934390377253294, 0.03151324763894081, -0.028133992105722427, 0.012443700805306435, 0.009090760722756386, 0.03735297545790672, 0.05411440506577492, 0.029356302693486214, 0.0005939159891568124, 0.017454084008932114, 0.007173982448875904, 0.01770084537565708, -0.007964671589434147, -0.03543076291680336, -0.012359035201370716, -0.013258429244160652, -0.03142445906996727, -0.020439157262444496, 0.024205639958381653, -0.04180547967553139, -0.03127238154411316, 0.006032696459442377, 0.0037248169537633657, 0.012138240039348602, -0.017462166026234627, -0.012268773280084133, -0.04015326872467995, -0.021391073241829872, -0.01844182424247265, -0.03322669118642807, -0.0032488778233528137, -0.018394680693745613, -0.0036244781222194433, -0.005412274971604347, 0.016038546338677406, 0.03824257105588913, 0.01738922670483589, -0.003610353684052825, 0.0014294246211647987, 0.02921459451317787, 0.0004541476082522422, 0.004734551999717951, 0.014782711863517761, 0.008880812674760818, -0.0012861136347055435, 0.0031854521948844194, -0.010161272250115871, 0.01628739945590496, -0.0057357922196388245, -0.05531984195113182, -0.005386658478528261, 0.004670458380132914, 0.023614725098013878, -0.0008557487744837999, -0.015133303590118885, 0.013712960295379162, 0.012759833596646786, 0.008480980060994625, -0.003030588384717703, -0.028524944558739662, 0.005189190153032541, 0.013689062558114529, 0.0069495621137320995, 0.023243475705385208, 0.031004274263978004, -0.020713206380605698, 0.002324771834537387, -0.02550043910741806, 0.023313427343964577, -0.019514452666044235, 0.017506178468465805, -0.009673572145402431, -0.0033182227052748203, -0.003420865396037698, 0.06482618302106857, -0.004457729868590832, 0.01017860695719719, -0.04729851707816124, -0.020438814535737038, 8.060641739444838e-33, -0.00033423645072616637, 0.015742890536785126, -0.04826460778713226, 0.00874658115208149, -0.012519302777945995, -0.017768343910574913, 0.00606684060767293, 0.008308732882142067, -0.0491890087723732, 0.02310882695019245, -0.023400548845529556, 0.023355145007371902, -0.013968831859529018, 0.013210365548729897, 0.04239995405077934, -0.007579954341053963, 0.0010131403105333447, -0.010901492089033127, 0.021577216684818268, -0.026293417438864708, 0.021721789613366127, -0.0016514546005055308, -0.008533451706171036, 0.018210889771580696, 0.013460653834044933, 0.02372889593243599, -0.02897052839398384, 0.0051067001186311245, 0.021713728085160255, 0.012635170482099056, -0.01846296153962612, 0.027473054826259613, 0.00214589131064713, -0.020857790485024452, -0.01677006110548973, -0.00009437245898880064, 0.01075440738350153, 0.017546193674206734, 0.05467725917696953, -0.019568705931305885, 0.022871412336826324, -0.018410533666610718, 0.01711997762322426, 0.011301135644316673, 0.019317111000418663, 0.050016216933727264, -0.0010012041311711073, -0.004454139620065689, 0.033547308295965195, 0.0238491240888834, -0.015960384160280228, 0.02113732136785984, -0.016862910240888596, 0.009352818131446838, 0.002174898749217391, -0.037339575588703156, -0.053674567490816116, -0.0033992708195000887, -0.03634905442595482, 0.037248317152261734, -0.014717950485646725, -0.03285987675189972, -0.0053415861912071705, -0.0021168736275285482, -0.028045136481523514, -0.00843262393027544, -0.0562313050031662, 0.0036971329245716333, 0.020179729908704758, -0.061305176466703415, -0.01571640558540821, -0.013004997745156288, 0.02333679609000683, 0.03187566250562668, 0.012627342715859413, -0.01823585107922554, 0.005155646242201328, -0.018174322322010994, -0.0033140783198177814, 0.01987627148628235, 0.02838880755007267, 0.026923105120658875, -0.006222272291779518, -0.007097260095179081, 0.023978712037205696, 0.030549511313438416, -0.045562826097011566, 0.02340710163116455, -0.009726373478770256, -0.05252084881067276, -0.026683202013373375, 0.04298605024814606, 0.014593484811484814, 0.00032199814449995756, 0.004033777862787247, -1.3426553202577907e-8, -0.020538756623864174, -0.005200906191021204, -0.010496067814528942, -0.018801631405949593, 0.02081046998500824, 0.025934286415576935, -0.04490603506565094, -0.022394927218556404, -0.030276339501142502, -0.022361591458320618, 0.05955854430794716, 0.019298354163765907, 0.009862388484179974, 0.027599701657891273, 0.014260388910770416, -0.027550093829631805, -0.0025376048870384693, -0.00006246857810765505, 0.02477196231484413, 0.01086547039449215, 0.007675409782677889, 0.05283351615071297, -0.004098808858543634, 0.0161454938352108, -0.013133279047906399, -0.014180345460772514, -0.0005635741981677711, -0.07735244184732437, -0.007947767153382301, 0.003093065693974495, -0.027056511491537094, -0.026415778324007988, -0.010314567014575005, -0.028790822252631187, -0.023127909749746323, -0.02758074551820755, 0.01952929049730301, -0.019503671675920486, -0.00042525504250079393, -0.002468724735081196, 0.03746737912297249, -0.024681758135557175, 0.006818100344389677, -0.02607271634042263, -0.02129875309765339, -0.016109144315123558, 0.0067501370795071125, 0.021461419761180878, 0.009801925159990788, -0.030175454914569855, 0.011441959999501705, 0.003531620604917407, -0.00844143982976675, 0.031936462968587875, 0.03858543932437897, 0.011506527662277222, 0.010318860411643982, -0.0008950081537477672, 0.002880855929106474, 0.005416680593043566, -0.0012857476249337196, 0.029209529981017113, -0.025471998378634453, -0.02633289434015751 ]
javascript-some-stuff-i-learnt-this-week
https://markhneedham.com/blog/2010/02/12/javascript-some-stuff-i-learnt-this-week
false
2010-02-12 20:18:02
Javascript: Passing functions around with call and apply
[ "javascript" ]
[ "Javascript" ]
Having read Douglas Crockford's 'http://www.amazon.com/gp/product/0596517742?ie=UTF8&tag=marneesblo-20&linkCode=as2&camp=1789&creative=390957&creativeASIN=0596517742[Javascript: The Good Parts]' I was already aware that making use of the 'this' keyword in Javascript is quite dangerous but we came across what must be a fairly common situation this week where we wanted to pass around a function which made use of 'this' internally. We were writing some http://code.google.com/p/js-test-driver/[JSTestDriver] tests around a piece of code which looked roughly like this: [source,javascript] ---- function Common() { this.OtherMethod = function(value) { // do some manipulation on value return someMagicalNewValue; }; this.Method = function(value) { return this.OtherMethod(value); }; }; ---- In the test we were originally making the following call: [source,javascript] ---- TestCase("Common", { testShouldDoSomeStuff:function(){ var common = new Common(); var result = common.Method("some value"); assertEquals("some value", result); } }; ---- After writing a couple of tests it became clear that we were pretty much repeating the same few lines of code over and over so we decided to pull out a function: [source,javascript] ---- function ShouldAssertThatValueIs(f, value, expectedValue) { var result = f(value); assertEquals(expectedValue, result); } ---- [source,javascript] ---- TestCase("Common", { testShouldDoSomeStuff:function(){ var common = new Common(); ShouldAssertThatValueIs(common.Method, "some value", "expected value"); } }; ---- When we run that code we get the following error: [source,javascript] ---- TypeError: this.OtherMethod is not a function ---- The scope of 'this' has changed so that 'this' now refers to the 'ShouldAssertThatValueIs' function which doesn't have a 'SomeMethod' defined on it and hence we get the error. Luckily we can make use of the http://odetocode.com/Blogs/scott/archive/2007/07/05/function-apply-and-function-call-in-javascript.aspx[call or apply functions] to get around this problem and redefine what we want the scope of 'this' to be. With both 'call' and 'apply' we call either of those methods and pass in the object which we want to be referred to as 'this' as the first argument. We can then then pass in any other parameters to call on our function as an array in the case of 'apply' or just as a list of arguments for 'call'. K Scott Allen covers this in more detail in http://odetocode.com/Blogs/scott/archive/2007/07/05/function-apply-and-function-call-in-javascript.aspx[his post]. Making use of the 'call' function our assertion function would now look like this: [source,javascript] ---- function ShouldAssertThatValueIs(common, f, value, expectedValue) { var result = f.call(common, value); assertEquals(expectedValue, result); } ---- [source,javascript] ---- TestCase("Common", { testShouldDoSomeStuff:function(){ var common = new Common(); ShouldAssertThatValueIs(common, common.Method, "some value", "expected value"); ShouldAssertThatValueIs(common, common.Method, "some value", "expected value"); } }; ---- In this case it probably makes more sense to use 'call' since we only have one parameter to pass to the function. If we had an array of values then we could pass that in using 'apply'. Looking at the test code at the end of the post as compared to the beginning I'm not too convinced that we've actually improved it with this refactoring although it did provide an interesting Javascript lesson for us! I'm still very much learning Javascript so if I have anything wrong please feel free to point it out or if there's a better way to do what I've described, even better!
null
null
[ 0.0013839819002896547, 0.006745134945958853, -0.00916004553437233, 0.020451173186302185, 0.04185229167342186, -0.007874266244471073, 0.03940356522798538, 0.043060846626758575, 0.02970358543097973, -0.03255396708846092, 0.00036928511690348387, 0.019549552351236343, -0.09427575767040253, 0.005232618190348148, -0.034936197102069855, 0.06755407899618149, 0.10795101523399353, -0.010185541585087776, 0.03502144291996956, -0.004856819752603769, -0.0012745038839057088, 0.06320223212242126, -0.009149415418505669, 0.015350135043263435, 0.04354805871844292, 0.017133740708231926, 0.009870138019323349, 0.004353038035333157, -0.07229875028133392, -0.018820110708475113, 0.028917139396071434, 0.04222453013062477, 0.0030283897649496794, -0.013584171421825886, -0.0075658573769032955, 0.0027154877316206694, 0.010233460925519466, -0.012487254105508327, 0.007336768787354231, 0.048921115696430206, -0.0722135379910469, 0.01062681432813406, -0.007723723538219929, 0.02837458811700344, -0.053459424525499344, -0.0203530415892601, -0.05178246647119522, 0.010985741391777992, -0.012137758545577526, 0.001628017402254045, -0.04990971088409424, 0.03228066861629486, -0.011392098851501942, 0.004445391707122326, -0.009515441954135895, 0.05726812779903412, 0.0172214787453413, -0.08578663319349289, 0.011524645611643791, -0.057387616485357285, 0.010047141462564468, 0.006772419437766075, -0.007803014479577541, 0.0489015094935894, 0.034325677901506424, 0.03377232328057289, -0.0015746798599138856, 0.045883599668741226, -0.052666548639535904, -0.01449736300855875, -0.029445791617035866, -0.009737005457282066, -0.037666115909814835, -0.024717938154935837, -0.013143247924745083, -0.01937302015721798, -0.007833464071154594, 0.03470240905880928, -0.012321426533162594, 0.035163599997758865, -0.0005968684563413262, 0.009799322113394737, 0.029334574937820435, 0.018272539600729942, -0.007606771308928728, -0.03495657444000244, -0.05259091034531593, -0.006376921199262142, -0.029514117166399956, 0.06920412182807922, 0.012635488994419575, -0.055130742490291595, 0.005616859067231417, 0.02085558883845806, 0.038348786532878876, 0.012084235437214375, 0.026526525616645813, -0.022079670801758766, -0.008799770846962929, -0.05332343280315399, -0.05697452649474144, -0.02624327875673771, 0.023181268945336342, -0.0002222166513092816, -0.05008016899228096, 0.01872650906443596, -0.0245034359395504, -0.001672265469096601, -0.005527965724468231, -0.004263032227754593, -0.018127750605344772, 0.04776519536972046, -0.008724813349545002, -0.008903349749743938, -0.07547537237405777, 0.05506759509444237, 0.0009114741696976125, -0.01705588959157467, -0.017512382939457893, 0.04938908666372299, 0.028206277638673782, 0.01700316183269024, -0.03684302419424057, 0.08717524260282516, 0.027390718460083008, 0.059357650578022, -0.013962490484118462, 0.07654764503240585, 0.009595222771167755, -0.048300180584192276, -0.0021058449055999517, 0.04732443392276764, -0.009567449800670147, -0.010511613450944424, -0.0272669717669487, -0.008651518262922764, -0.021393777802586555, -0.026712289080023766, 0.03485605865716934, 0.0693674236536026, -0.0022947045508772135, -0.06257029622793198, -0.0026310982648283243, 0.006470834836363792, -0.0012369154719635844, 0.027614913880825043, -0.003505164524540305, 0.0006410392234101892, -0.001655610278248787, 0.05171295627951622, 0.016990024596452713, 0.05788539722561836, 0.056770697236061096, -0.028585346415638924, 0.014916030690073967, 0.0651099681854248, 0.028155731037259102, -0.0031498807948082685, -0.0006600345368497074, 0.03235884755849838, 0.05532978102564812, 0.010855581611394882, 0.027168413624167442, 0.05190849304199219, -0.007099271286278963, 0.0037566472310572863, -0.012478810735046864, 0.08261436223983765, -0.005568305496126413, -0.01366137620061636, -0.05344828963279724, -0.05109542980790138, 0.06555600464344025, -0.044532958418130875, -0.0034711959306150675, 0.025220584124326706, 0.06312006711959839, -0.021998081356287003, 0.05558564513921738, 0.015922388061881065, -0.06795351952314377, 0.021657053381204605, 0.009238890372216702, 0.006986696273088455, 0.035962820053100586, -0.017533447593450546, 0.051583752036094666, 0.009078374132514, 0.005196036770939827, 0.016670269891619682, -0.08797639608383179, -0.09024166315793991, -0.03032860718667507, 0.0010194915812462568, 0.059754762798547745, -0.02869393303990364, -0.004166091326624155, 0.07720557600259781, 0.04978767782449722, 0.03992193564772606, 0.004220401868224144, -0.035314492881298065, 0.0005323162768036127, -0.006395195610821247, -0.01068179402500391, 0.06080121546983719, 0.024696551263332367, -0.025698421522974968, -0.029345951974391937, 0.0016880091279745102, 0.008751324377954006, 0.014670056290924549, 0.03662893921136856, 0.016664035618305206, 0.042698513716459274, 0.022541550919413567, 0.05998808145523071, -0.00956865306943655, 0.04807691648602486, -0.05510004609823227, 0.027118798345327377, 0.005053944420069456, 0.020418010652065277, -0.018126409500837326, 0.018048778176307678, 0.12920819222927094, 0.06756064295768738, -0.02889898791909218, -0.06233389675617218, -0.006436530034989119, -0.0024671638384461403, -0.05123475566506386, 0.005886439234018326, -0.025808162987232208, -0.0016782023012638092, 0.0004392561677377671, -0.013756921514868736, 0.020621947944164276, 0.02038903534412384, -0.050979990512132645, 0.009305248968303204, 0.06135333701968193, -0.04447424039244652, 0.060402579605579376, 0.00470364885404706, -0.021738048642873764, 0.02116643823683262, -0.03581513836979866, -0.038844890892505646, -0.007683100178837776, 0.03403405472636223, -0.014261209405958652, 0.02567378804087639, -0.013812263496220112, -0.024610908702015877, -0.02522369474172592, -0.04150431603193283, -0.0037127912510186434, 0.04830639809370041, 0.07219354808330536, 0.0053872521966695786, 0.05334533751010895, 0.010221114382147789, 0.017315326258540154, -0.0031615388579666615, -0.04847971349954605, -0.019598649814724922, -0.015631690621376038, -0.01763715222477913, 0.06773350387811661, 0.015379004180431366, 0.01636805199086666, 0.025127185508608818, 0.021146221086382866, -0.0442197360098362, 0.015113499015569687, 0.02215799130499363, -0.011724171228706837, -0.030609959736466408, 0.0009747840231284499, -0.02613638900220394, 0.044720906764268875, -0.033435337245464325, -0.03930164873600006, 0.01876821182668209, -0.05750323086977005, 0.01729097217321396, -0.07702061533927917, -0.04698420688509941, 0.0025769202038645744, 0.023495065048336983, 0.043799497187137604, 0.004182041622698307, 0.018112368881702423, 0.06451714038848877, -0.01596670038998127, 0.021836070343852043, 0.009989043697714806, 0.013178021647036076, 0.03559630364179611, 0.013723411597311497, -0.004207449499517679, 0.038702234625816345, -0.012602437287569046, 0.0016701078275218606, -0.03696267306804657, 0.0029411253053694963, 0.002728331834077835, -0.24567535519599915, 0.01582474634051323, -0.004466960206627846, -0.009368795901536942, 0.03417937457561493, -0.03905262053012848, 0.010476079769432545, -0.06342001259326935, -0.009427977725863457, 0.02567204460501671, -0.017832444980740547, -0.02519579604268074, -0.014085850678384304, 0.06512061506509781, 0.012188195250928402, -0.03764666989445686, -0.008178332820534706, -0.027754439041018486, 0.024713262915611267, 0.06415452808141708, -0.007316097617149353, -0.07067307084798813, -0.004529987927526236, 0.046240415424108505, 0.04055303707718849, 0.03898974508047104, -0.09727106243371964, 0.044289782643318176, -0.03406496345996857, 0.009190335869789124, 0.005987637676298618, -0.021934401243925095, 0.012891766615211964, -0.00993108656257391, -0.007015461567789316, 0.007249688729643822, 0.03369571641087532, -0.02348247542977333, -0.0005750319687649608, 0.004099404904991388, -0.04396824538707733, -0.029095003381371498, -0.03209789842367172, 0.020793091505765915, 0.0755833312869072, 0.00025586673291400075, -0.05595507100224495, -0.0002366458938922733, -0.040636833757162094, 0.05561653524637222, -0.033334989100694656, -0.034491732716560364, -0.038808565586805344, 0.04286297783255577, -0.0362868495285511, -0.00026731242542155087, -0.007444196846336126, -0.03377843648195267, -0.021120736375451088, -0.021184736862778664, -0.027214812114834785, -0.03253113105893135, -0.03356390818953514, -0.01845729723572731, -0.01643744483590126, -0.10017160326242447, -0.06025121733546257, -0.023687100037932396, 0.07196851819753647, 0.015884602442383766, -0.008689073845744133, 0.004867156036198139, 0.0030390815809369087, -0.10429681837558746, -0.03214266896247864, -0.013128380291163921, -0.00006469850632129237, -0.016579104587435722, -0.008882180787622929, 0.0329466313123703, -0.04296340048313141, -0.03520442917943001, 0.04700970649719238, -0.0001639272813918069, 0.03875518962740898, -0.019837303087115288, 0.013277591206133366, 0.008421492762863636, -0.01841127872467041, -0.010329621843993664, 0.07606030255556107, -0.007602551952004433, -0.0192435123026371, -0.03533674776554108, 0.024678722023963928, 0.05500427633523941, 0.012283269315958023, -0.01089396234601736, 0.030423246324062347, 0.024747328832745552, 0.013513721525669098, -0.045527391135692596, 0.031826019287109375, -0.02340674214065075, -0.01179441623389721, 0.004340441431850195, -0.05101910978555679, 0.07708373665809631, 0.019244331866502762, 0.0006428145570680499, -0.015246023423969746, -0.016375849023461342, 0.03195331245660782, -0.04593273252248764, -0.03117842599749565, -0.06375252455472946, -0.008908243849873543, 0.004750415217131376, 0.003286398947238922, -0.018834393471479416, -0.049620598554611206, 0.008796550333499908, 0.0130393011495471, -0.02158752828836441, -0.06778356432914734, -0.04165751114487648, -0.0013402905315160751, 0.0005964215379208326, -0.0014996419195085764, 0.020881686359643936, -0.022392410784959793, 0.0347699411213398, 0.007367386482656002, -0.024457065388560295, -0.006516606081277132, -0.05813524127006531, -0.03574027121067047, -0.02019461616873741, -0.016762176528573036, -0.01158984750509262, 0.022041205316781998, 0.007312864996492863, 0.010865317657589912, 0.0046697985380887985, 0.03196219727396965, -0.010378925129771233, 0.013872245326638222, -0.0018575257854536176, -0.04360589385032654, 0.019075198099017143, 0.008199576288461685, -0.054788511246442795, 0.04054854065179825, -0.023543154820799828, -0.029416512697935104, -0.025856299325823784, 0.010520786046981812, -0.018672684207558632, -0.06355106085538864, -0.029387908056378365, 0.0028458621818572283, -0.03361397981643677, -0.03771494701504707, -0.04513723403215408, 0.023506982252001762, 0.033038388937711716, 0.0016389981610700488, 0.03636430203914642, -0.030735589563846588, -0.003623946802690625, 0.019641630351543427, 0.001304090954363346, -0.039227671921253204, 0.006993236485868692, -0.0071599348448216915, -0.021557984873652458, -0.02567603811621666, 0.013404058292508125, -0.011351807974278927, 0.014964993111789227, 0.005465409718453884, -0.02232801727950573, 0.028476856648921967, 0.0234008077532053, 0.04650617390871048, -0.030247651040554047, -0.015808911994099617, -0.009111626073718071, -0.014587918296456337, -0.01850336790084839, -0.040345728397369385, -0.013678525574505329, -0.005595228169113398, 0.040497906506061554, -0.03446085378527641, -0.07051946967840195, 0.028144437819719315, -0.0022461379412561655, 0.008488677442073822, 0.025950327515602112, 0.0001854035072028637, 0.030777163803577423, -0.03321336209774017, 0.008826950564980507, 0.04270485043525696, -0.0549907460808754, 0.03664892166852951, 0.011886839754879475, 0.00874774344265461, 0.0262796338647604, 0.013806565664708614, -0.060333315283060074, -0.04469892755150795, -0.030690716579556465, -0.006641116458922625, -0.038903165608644485, -0.02890903130173683, -0.05223410949110985, 0.0039211539551615715, -0.03182165324687958, -0.011089153587818146, -0.013029268942773342, -0.006500522140413523, -0.028537524864077568, -0.012942513450980186, 0.00027665100060403347, -0.041399646550416946, 0.0028677918016910553, 0.06667699664831161, -0.04285307973623276, 0.011431172490119934, -0.004550883546471596, 0.057390954345464706, 0.005255147814750671, -0.008700390346348286, -0.041672155261039734, -0.06208598241209984, 0.0008225218625739217, -0.006798017770051956, 0.04285816475749016, 0.02136090211570263, -6.541400807691389e-7, -0.025701524689793587, -0.010129302740097046, -0.04152555763721466, -0.008676484227180481, -0.0010667794849723577, -0.057429239153862, 0.028186628594994545, 0.06933442503213882, 0.016110870987176895, 0.03672654554247856, 0.013338673859834671, 0.009687740355730057, 0.06300603598356247, -0.04797164723277092, -0.027820220217108727, -0.034190449863672256, -0.060820940881967545, 0.0149522814899683, 0.012166716158390045, 0.02905021607875824, -0.048922616988420486, 0.04784821718931198, 0.009635316208004951, 0.048136357218027115, 0.01515977457165718, -0.011148585006594658, 0.021885689347982407, -0.04995070770382881, 0.00969381257891655, -0.1048928052186966, -0.0034434888511896133, 0.02040460892021656, 0.00856089312583208, -0.028612392023205757, -0.04048258438706398, -0.034756824374198914, 0.02700783498585224, -0.051147837191820145, -0.00917849037796259, 0.03330755978822708, 0.002448601182550192, -0.023467717692255974, 0.004088187124580145, -0.029253263026475906, 0.03577776253223419, 0.04556228220462799, -0.0205105971544981, -0.03883923962712288, -0.03129468113183975, 0.049543142318725586, 0.05303620174527168, 0.03380511701107025, -0.032457202672958374, 0.027913497760891914, 0.07712321728467941, 0.05970210209488869, 0.0142743568867445, 0.027780812233686447, -0.030777161940932274, 0.03770855441689491, 0.03176475316286087, -0.000887491914909333, 0.014456404373049736, 0.030914220958948135, -0.006313967518508434, -0.04988032951951027, 0.033798158168792725, 0.0015984287019819021, -0.022813674062490463, -0.04116831719875336, 0.0710000991821289, -0.006955696269869804, -0.03273041546344757, -0.04624813795089722, -0.005888801999390125, -0.06078106164932251, -0.0325143039226532, -0.02065763995051384, -0.024441173300147057, -0.016691721975803375, 0.05802182853221893, -0.02200797200202942, 0.009111887775361538, 0.06961190700531006, -0.02360718883574009, 0.00816295575350523, -0.008480659686028957, 0.07344081997871399, 0.0937132015824318, 0.05339479446411133, -0.010597203858196735, 0.04320446029305458, -0.017956921830773354, -0.05183492973446846, 0.00838735606521368, -0.057136159390211105, -0.026240535080432892, -0.017011195421218872, 0.010592716746032238, 0.04358769208192825, 0.005540309939533472, 0.06540903449058533, -0.06002366915345192, 0.008569997735321522, -0.004071306902915239, 0.05908387154340744, 0.004103899002075195, 0.04823654517531395, 0.01185679342597723, 0.029652897268533707, 0.006374012213200331, -0.03128228336572647, 0.05226336792111397, -0.013919098302721977, -0.03148414194583893, 0.012709720060229301, 0.004304277710616589, 0.02054143324494362, 0.015304132364690304, 0.0077901273034513, 0.06603629887104034, -0.02596970647573471, 0.006081837695091963, 0.013519774191081524, 0.04710991308093071, 0.01372182834893465, -0.0083207031711936, -0.009449717588722706, -0.03593932092189789, -0.011837895028293133, -0.03643356263637543, -0.008616665378212929, -0.035701073706150055, -0.03612644970417023, 0.06082220375537872, -0.04057028144598007, 0.04179394990205765, 0.04123277589678764, 0.006122096907347441, -0.04776959866285324, -0.05149902403354645, -0.03451132774353027, -0.04546461999416351, -0.0510358102619648, -0.036511488258838654, 0.04207564517855644, 0.0006098994053900242, -0.05547088012099266, -0.020006544888019562, 0.0056573390029370785, -0.002467511920258403, 0.034447383135557175, -0.01980743743479252, -0.011698965914547443, 0.047286830842494965, 0.010319952853024006, 0.02427721954882145, 0.018543241545557976, 0.022420527413487434, 0.01514414045959711, -0.03143085539340973, -0.009294296614825726, -0.0243340115994215, 0.04728682339191437, 0.010496547445654869, 0.03610660508275032, -0.06888654828071594, -0.009192326106131077, 0.00013893749564886093, -0.005429903045296669, -0.07339765131473541, 0.02739153429865837, 0.002964142942801118, -0.03314749523997307, 0.04957886040210724, 0.00035290521918796003, 0.010172375477850437, -0.03533947467803955, -0.03894181549549103, 0.017654787749052048, 0.010866581462323666, 0.03715882450342178, -0.02359800413250923, 0.09857301414012909, 0.00971611775457859, -0.00423960667103529, -0.022204460576176643, 0.006372212432324886, -0.023138180375099182, 0.011162124574184418, -0.039796553552150726, -0.0248656515032053, -0.049607034772634506, -0.08387641608715057, -0.009786929003894329, 0.008424458093941212, -0.020488563925027847, -0.009904760867357254, 0.004930646624416113, 0.044917523860931396, -0.042879220098257065, 0.05141279846429825, -0.023971419781446457, 0.04819716140627861, -0.04749920964241028, -0.03579673171043396, 0.03268780931830406, 0.03473780304193497, 0.020710300654172897, -0.00596523517742753, 0.03006434254348278, -0.03149345889687538, -0.015277520753443241, -0.008822332136332989, 0.012400062754750252, 0.015647144988179207, -0.03253374993801117, 0.009014694951474667 ]
[ -0.08966471254825592, -0.019942419603466988, -0.03194258734583855, -0.028585802763700485, 0.03383742645382881, -0.04046314209699631, 0.02966306172311306, 0.04466625675559044, 0.02626897767186165, 0.0008703221101313829, -0.02117580734193325, -0.011999508365988731, -0.027664322406053543, -0.011038281954824924, 0.05594613030552864, -0.006327876355499029, -0.03204852342605591, -0.06682229042053223, -0.03173934668302536, 0.016276367008686066, 0.06917543709278107, 0.004674333613365889, -0.05846859887242317, -0.042408477514982224, 0.002537425374612212, 0.043909043073654175, 0.02755322866141796, -0.013452616520226002, 0.030713360756635666, -0.1704210489988327, 0.000572619610466063, -0.026452787220478058, 0.04324325919151306, -0.0034992629662156105, -0.01656206138432026, 0.0043280599638819695, -0.00018745884881354868, 0.03365350887179375, -0.004208054393529892, 0.049219727516174316, 0.01333098579198122, 0.02624436467885971, -0.0557294636964798, -0.01577947847545147, 0.046205975115299225, 0.015250051394104958, -0.020948966965079308, -0.027684420347213745, 0.0008948255563154817, 0.023347968235611916, -0.053203877061605453, -0.018366362899541855, 0.012452756054699421, -0.06470023095607758, 0.009199029766023159, 0.04799473658204079, 0.040000542998313904, 0.06264106929302216, 0.03861961141228676, 0.05477834865450859, 0.022979537025094032, -0.026617081835865974, -0.12009330838918686, 0.112723208963871, 0.04448995366692543, 0.04732091724872589, -0.030220137909054756, -0.020438451319932938, -0.007625709753483534, 0.08897003531455994, 0.03719467669725418, -0.016707254573702812, 0.003328591352328658, 0.06436322629451752, -0.01816864311695099, -0.014857486821711063, 0.01629391685128212, -0.007128030993044376, 0.03478777036070824, -0.03725565969944, -0.03842741996049881, -0.06512867659330368, -0.01825219765305519, -0.02192126028239727, -0.03034193255007267, 0.004966690670698881, -0.027677709236741066, 0.051788173615932465, 0.05134488269686699, 0.024114780128002167, 0.018392525613307953, -0.04099547490477562, 0.015885991975665092, 0.021631179377436638, -0.07985929399728775, -0.014533416368067265, -0.008148709312081337, -0.006566500756889582, -0.057333510369062424, 0.42785149812698364, -0.03032209724187851, 0.01658525876700878, 0.05465395748615265, -0.020564554259181023, -0.018589653074741364, -0.01580626331269741, 0.004589125979691744, -0.0895605981349945, 0.004206751473248005, -0.060644567012786865, 0.008557992987334728, -0.006943681742995977, 0.029830852523446083, -0.025773102417588234, -0.019409790635108948, 0.0103199053555727, 0.02937198430299759, -0.020239146426320076, 0.034344397485256195, 0.026272810995578766, 0.023534977808594704, -0.0033219328615814447, 0.005911669693887234, 0.022140081971883774, 0.02668212540447712, -0.050455786287784576, 0.05078941583633423, 0.05592421442270279, 0.023375116288661957, 0.009276325814425945, 0.06062755733728409, -0.04131140187382698, -0.0499747134745121, 0.00580994738265872, 0.014672862365841866, 0.026565730571746826, 0.02814612165093422, -0.005369993392378092, 0.025921007618308067, 0.049811575561761856, 0.004885905887931585, -0.052543845027685165, -0.0148312421515584, -0.010966792702674866, -0.018639925867319107, 0.0837135761976242, -0.0007589581655338407, -0.020230770111083984, 0.003876633709296584, -0.028565168380737305, 0.010362464934587479, 0.03456956520676613, -0.007299012504518032, -0.060455288738012314, 0.011133160442113876, 0.0004292970697861165, 0.07163816690444946, -0.0197142381221056, -0.048392556607723236, -0.022435983642935753, -0.0309226643294096, -0.009065275080502033, -0.04500500485301018, 0.049058739095926285, 0.05354459583759308, -0.0886102244257927, -0.020337451249361038, 0.008880367502570152, 0.02836652658879757, -0.09394653886556625, -0.017280369997024536, -0.0006172988214530051, -0.053514476865530014, -0.022671373561024666, 0.04145615175366402, -0.006070321425795555, -0.0029039233922958374, 0.013059709221124649, 0.024302667006850243, 0.008319154381752014, 0.009526866488158703, -0.015429681167006493, -0.07175754010677338, 0.015283283777534962, -0.01652514934539795, -0.05319362133741379, -0.04355834424495697, -0.020774628967046738, -0.017099030315876007, 0.014162922278046608, -0.013190806843340397, -0.001994377700611949, -0.09926232695579529, 0.05428284406661987, -0.04134194180369377, -0.022768283262848854, -0.005055190995335579, -0.03030213713645935, -0.022039219737052917, -0.007923930883407593, 0.025579463690519333, -0.013320626690983772, 0.006181446835398674, 0.041491102427244186, -0.06517805904150009, 0.08970032632350922, 0.06559035927057266, -0.05464407801628113, 0.07275409251451492, 0.047218576073646545, -0.05194728076457977, -0.023688696324825287, -0.0018333104671910405, 0.04680044203996658, 0.002084600506350398, -0.04904942959547043, -0.014381632208824158, 0.03241182118654251, -0.009935923852026463, -0.01024249754846096, -0.056665241718292236, -0.009001750499010086, -0.024338845163583755, -0.3253017067909241, -0.037321869283914566, -0.00543292285874486, -0.00465657003223896, 0.0032618106342852116, -0.03770890831947327, 0.017842765897512436, -0.023188531398773193, -0.0469348318874836, 0.002136258175596595, 0.0800902470946312, -0.015484783798456192, 0.027895333245396614, -0.061160195618867874, 0.0020422025118023157, 0.016346221789717674, -0.019372355192899704, -0.06401967257261276, 0.015303157269954681, 0.06919317692518234, -0.005999783985316753, -0.010524441488087177, -0.003743454348295927, -0.08301474899053574, -0.01258266344666481, -0.06772208958864212, 0.12445377558469772, 0.028142740949988365, 0.08504998683929443, -0.0486895926296711, 0.06757842004299164, -0.025752170011401176, 0.03211069479584694, -0.06146461144089699, -0.02151770517230034, -0.03276074305176735, -0.044224709272384644, 0.011720952577888966, 0.0037373218219727278, -0.00040271924808621407, -0.048724230378866196, 0.013038073666393757, -0.05259636417031288, -0.00426590908318758, -0.03085022047162056, -0.004630223382264376, -0.017472563311457634, -0.009399950504302979, -0.033915940672159195, 0.06428835541009903, 0.028368450701236725, -0.003049036953598261, 0.012688225135207176, 0.034825399518013, 0.021040549501776695, -0.033405255526304245, -0.059531111270189285, 0.006613113917410374, -0.0074614426121115685, -0.008854425512254238, 0.03498370945453644, 0.0695609301328659, 0.03432874381542206, -0.042591795325279236, 0.0010408393573015928, 0.015555049292743206, 0.014230369590222836, -0.012443482875823975, 0.04210999980568886, -0.030433084815740585, -0.05673237144947052, 0.11792372912168503, 0.023978114128112793, -0.0015446603065356612, 0.009107749909162521, 0.062409333884716034, 0.023089630529284477, 0.006388270296156406, 0.014694510959088802, 0.030377497896552086, 0.04119159281253815, 0.022000838071107864, 0.010016387328505516, -0.03158345818519592, -0.039189666509628296, 0.008609762415289879, -0.03128783032298088, -0.019015349447727203, 0.04600270465016365, -0.047916755080223083, -0.032030656933784485, 0.0026624095626175404, -0.004424883518368006, -0.0836852639913559, 0.04952607676386833, -0.025167401880025864, -0.2673766613006592, 0.008649932220578194, 0.05595426261425018, 0.06696894764900208, -0.01456527877599001, 0.059498123824596405, 0.0147401737049222, -0.039684876799583435, 0.005260567180812359, 0.025824084877967834, 0.00817742757499218, 0.01592686027288437, -0.0021014788653701544, 0.0016736870165914297, 0.033759474754333496, -0.003751581534743309, 0.0030026163440197706, 0.005008258856832981, 0.014185077510774136, 0.015831653028726578, 0.03402410075068474, 0.02734185755252838, 0.17068272829055786, 0.0019617555662989616, 0.016544735059142113, 0.035073112696409225, 0.01003324706107378, 0.02822454459965229, 0.10212796181440353, 0.01303892582654953, -0.017123661935329437, 0.003932615276426077, 0.054909490048885345, 0.00846785120666027, 0.03468218073248863, -0.08703729510307312, -0.0016252101631835103, 0.02639281377196312, 0.025864392518997192, -0.018070492893457413, -0.011452628299593925, 0.013639436103403568, -0.0386459082365036, 0.008770827203989029, 0.0797887071967125, 0.04125379025936127, 0.0033938181586563587, -0.06684890389442444, -0.04724923521280289, 0.0006836021784693003, -0.045390184968709946, -0.052909061312675476, 0.013810920529067516, 0.007144543807953596, -0.01280197873711586, 0.07437386363744736, 0.050434935837984085, -0.03715134039521217, -0.022581016644835472, -0.001709511037915945, -0.02593260072171688, -0.009224171750247478, 0.10339328646659851, 0.082350954413414, 0.04502701014280319 ]
[ -0.017547717317938805, 0.002596338978037238, -0.008001715876162052, 0.004082323517650366, 0.025884537026286125, 0.00852500181645155, 0.013987150974571705, 0.02011106163263321, -0.012126237154006958, -0.02080335095524788, -0.017013151198625565, 0.018397308886051178, 0.00009763843263499439, -0.030667752027511597, 0.026418467983603477, -0.004739642608910799, -0.006391352042555809, -0.014350716024637222, 0.0009941249154508114, 0.0012330733006820083, -0.024697085842490196, 0.023095032200217247, 0.02526090294122696, 0.011169755831360817, -0.02869800478219986, 0.005947987083345652, 0.004691902548074722, 0.000007817599907866679, 0.02826591022312641, -0.1413300633430481, -0.002878901781514287, -0.04118666797876358, -0.03249659761786461, 0.00896086823195219, -0.040939100086688995, 0.013177530840039253, -0.01828073523938656, -0.0003799234109465033, 0.00547165609896183, -0.011496264487504959, -0.015048060566186905, -0.0010292496299371123, -0.015500186011195183, 0.015376693569123745, 0.01685049943625927, -0.015774674713611603, -0.03325065225362778, -0.0272073894739151, -0.012251404114067554, -0.005613415502011776, -0.01948065683245659, -0.014165106229484081, -0.013020778074860573, -0.01789466291666031, 0.0033623441122472286, -0.029675405472517014, -0.0244585108011961, -0.011368343606591225, 0.026909762993454933, 0.02351611666381359, -0.0047442372888326645, -0.004556152503937483, 0.0018638338660821319, -0.01152731291949749, 0.010910779237747192, -0.023026088252663612, -0.0004806115757673979, -0.01707700826227665, -0.026146020740270615, 0.010963824577629566, 0.01548515073955059, 0.03127533569931984, -0.020172301679849625, -0.007908844389021397, 0.0016829643864184618, 0.007192709948867559, -0.03297463059425354, -0.008718599565327168, 0.004243246745318174, 0.0011241426691412926, -0.03319745138287544, 0.009314975701272488, -0.015989219769835472, 0.020912710577249527, 0.021692827343940735, -0.017965711653232574, 0.02187264896929264, 0.029838157817721367, 0.009271174669265747, 0.022060688585042953, -0.04785671457648277, -0.0032121664844453335, -0.012778280302882195, 0.04563979431986809, -0.0757862776517868, -0.008106891065835953, 0.007422978524118662, -0.03226667642593384, 0.0187216866761446, 0.8694747686386108, -0.016057627275586128, 0.055426955223083496, 0.04914059862494469, -0.011008637957274914, -0.019044021144509315, 0.0002835540799424052, -0.013833501376211643, 0.02320423536002636, 0.03963882476091385, -0.022938866168260574, 0.012553519569337368, 0.03691742196679115, 0.03196481242775917, 0.003102994756773114, 0.023453418165445328, 0.005236635450273752, 0.02164294570684433, -0.0122061213478446, 0.03715204447507858, 0.05452577397227287, 0.01838328130543232, 0.012311190366744995, 0.030199620872735977, 0.02706610970199108, 0.020881187170743942, -0.18228590488433838, -0.010376977734267712, -8.269203824639482e-33, 0.022036613896489143, -0.02341151237487793, 0.0032339408062398434, 0.007398668210953474, -0.0029567601159214973, 0.015225383453071117, 0.001150836586020887, 0.03502948582172394, -0.031214820221066475, -0.043857723474502563, 0.017731182277202606, -0.006074221804738045, 0.008218031376600266, -0.010360960848629475, 0.021066218614578247, 0.018978029489517212, 0.001975549152120948, 0.01636585034430027, 0.012820541858673096, 0.004754086956381798, 0.023374473676085472, 0.02670566365122795, 0.029713083058595657, -0.0037556090392172337, -0.00993424654006958, 0.04136938601732254, 0.03933490440249443, 0.04264725372195244, -0.012735100463032722, -0.04157467558979988, -0.005714023485779762, 0.0015638057375326753, -0.04162054881453514, -0.0012187623651698232, 0.034447912126779556, -0.023810667917132378, -0.04180259257555008, 0.00783946830779314, -0.02432626485824585, 0.00936163030564785, -0.008611257188022137, -0.0034393700771033764, -0.03293684124946594, 0.00535845709964633, -0.01882782392203808, -0.026561785489320755, 0.0074202632531523705, 0.012799326330423355, 0.039132069796323776, 0.014513577334582806, -0.021564429625868797, 0.03883517533540726, 0.023985613137483597, -0.024099187925457954, -0.019517309963703156, 0.01381099782884121, -0.004198705777525902, -0.0042059640400111675, -0.02240322344005108, 0.01751786284148693, 0.028543144464492798, 0.02099432423710823, -0.007891184650361538, 0.02038298174738884, -0.04315905645489693, -0.011682326905429363, -0.00421964330598712, -0.026168230921030045, 0.029104266315698624, 0.0007087962585501373, -0.030374139547348022, 0.0010963138192892075, -0.01765023171901703, 0.009736325591802597, -0.010370677337050438, -0.018029194325208664, -0.015277578495442867, 0.012344896793365479, 0.017317112535238266, 0.0224738959223032, -0.0003926581994164735, -0.026624232530593872, -0.00730382464826107, 0.011447223834693432, 0.007448262069374323, 0.006666590925306082, -0.01964433677494526, -0.012641140259802341, -0.01180386170744896, 0.027414526790380478, 0.02535851299762726, 0.017155751585960388, -0.021696975454688072, -0.02844628132879734, -0.007043539080768824, 7.358022317335463e-33, -0.01950608752667904, -0.013563403859734535, -0.0120568061247468, 0.039947036653757095, 0.010087592527270317, -0.03446377068758011, 0.004541558679193258, 0.013040734454989433, -0.03929742053151131, 0.037855833768844604, -0.02330385334789753, -0.009179082699120045, -0.008846515789628029, 0.004863895010203123, 0.07618731260299683, -0.015867460519075394, 0.013611029833555222, -0.01769987866282463, 0.03511659801006317, -0.012595509178936481, 0.011741182766854763, 0.022797027602791786, 0.02024110220372677, -0.001485554501414299, 0.0017159670824185014, 0.04543690383434296, -0.048000313341617584, -0.000246015697484836, 0.0014581922441720963, -0.009649821557104588, -0.008560465648770332, 0.01226339116692543, 0.013239861465990543, -0.04574793204665184, -0.00731809064745903, 0.009458362124860287, 0.007017491851001978, -0.028341850265860558, 0.025530198588967323, 0.0019353810930624604, 0.011568861082196236, -0.02691248431801796, 0.02298544906079769, 0.019765187054872513, 0.012750772759318352, 0.024235691875219345, -0.005559644196182489, -0.010779756121337414, 0.019463196396827698, 0.011944216676056385, 0.002891244599595666, -0.015023263171315193, -0.026102522388100624, 0.009903095662593842, -0.0037060328759253025, -0.018976714462041855, -0.043283019214868546, 0.002394645707681775, -0.01901591569185257, 0.021423470228910446, 0.0186013076454401, 0.00524241104722023, 0.008496454916894436, -0.0012049797223880887, -0.03010888397693634, -0.019294707104563713, -0.039021145552396774, -0.031764399260282516, -0.013213288970291615, -0.011314278468489647, -0.048297274857759476, -0.027244308963418007, 0.0240249615162611, 0.021503297612071037, -0.003979239147156477, -0.014571338891983032, 0.0035149534232914448, -0.0029583140276372433, 0.018256403505802155, 0.015531854704022408, 0.04770047962665558, -0.00024048468912951648, 0.030988872051239014, -0.008476478047668934, 0.0007416694425046444, 0.021406693384051323, -0.02675298973917961, -0.011760332621634007, -0.0025391981471329927, -0.03086455911397934, -0.0008176174596883357, 0.03418546915054321, -0.03473542630672455, -0.010363874025642872, -0.03098350577056408, -1.3452094549393223e-8, -0.01498397532850504, 0.013966373167932034, -0.022887254133820534, -0.0013339200522750616, 0.0028091175481677055, -0.023277340456843376, -0.029139673337340355, -0.004470217972993851, -0.0023736259900033474, 0.006589054130017757, 0.039857011288404465, -0.015598170459270477, 0.0233113095164299, 0.006992678623646498, 0.0011770681012421846, -0.06402826309204102, -0.02810867503285408, 0.00641429889947176, 0.019907644018530846, 0.03217967599630356, -0.003665495663881302, 0.037602394819259644, 0.014558111317455769, -0.008071450516581535, 0.0246273223310709, -0.024250172078609467, 0.030891185626387596, -0.06301692873239517, 0.011983661912381649, -0.015368659049272537, -0.002733703702688217, -0.023053165525197983, -0.01804358698427677, 0.008715757168829441, -0.026965532451868057, -0.01397615484893322, 0.004290732555091381, 0.02339828386902809, 0.002697644755244255, 0.006407089531421661, 0.01691513881087303, 0.0020972269121557474, -0.01831623539328575, -0.017785651609301567, 0.0020942625124007463, -0.005628263112157583, -0.03491000458598137, 0.02391360141336918, -0.0034871255047619343, -0.007871851325035095, -0.01386894378811121, 0.01943598873913288, 0.004802160430699587, 0.030322419479489326, 0.02797028049826622, -0.014572524465620518, 0.015836453065276146, -0.03274693712592125, -0.03589179739356041, -0.04150484502315521, 0.025265498086810112, -0.009207302704453468, -0.021198729053139687, -0.03162381798028946 ]
javascript-passing-functions-around-with-call-and-apply
https://markhneedham.com/blog/2010/02/12/javascript-passing-functions-around-with-call-and-apply
false
2010-02-14 01:03:34
F#: Unexpected identifier in implementation file
[ "f" ]
[ "fsharp" ]
I've been playing around with some F# code this evening and one of the bits of code needs to make a HTTP call and return the result. I wrote this code and then tried to make use of the 'Async.RunSynchronously' function to execute the call. The code I had looked roughly like this: [source,ocaml] ---- namespace Twitter module RetrieveLinks open System.Net open System.IO open System.Web open Microsoft.FSharp.Control let AsyncHttp (url:string) = async { let request = HttpWebRequest.Create(url) let! response = request.AsyncGetResponse() let stream = response.GetResponseStream() use reader = new StreamReader(stream ) return! reader.AsyncReadToEnd() } let getData = let request = "http://some.url" AsyncHttp <| request Async.RunSynchronously getData ---- The problem was I was getting the following error on the last line: [source,text] ---- Error 3 Unexpected identifier in implementation file ---- I've seen that error before and it often means that you haven't imported a reference correctly and hence the compiler doesn't know what you're trying to refer to. In this case I was fairly sure all my references were correct and I was still getting the same error when I used the full namespace to 'Async.RunSynchronously' which seemed to suggest I'd done something else wrong. After comparing this file with another one which was quite similar but didn't throw this error I realised that I'd left of the '=' after the module definition. Putting that in solved the problem. [source,ocaml] ---- namespace Twitter module RetrieveLinks = // and so on ---- As I understand it if we don't use the '=' then we've created a top level module declaration and if we do use the '=' then we've created a local module declaration. http://msdn.microsoft.com/en-us/library/dd233221(VS.100).aspx[From MSDN]: ____ You do not have to indent declarations in a top-level module. You do have to indent all declarations in local modules. In a local module declaration, only the declarations that are indented under that module declaration are part of the module. ____ Given this understanding another way to solve my problem would be to remove the indentation of the functions inside the module like so: [source,ocaml] ---- module RetrieveLinks open System.Net open System.IO open System.Web open Microsoft.FSharp.Control // and so on until... Async.RunSynchronously getData ---- That compiles as expected. From reading the MSDN page it would suggest that in my first example I'd created a top level module declaration but indenting the code inside that module somehow meant that the 'Async.RunSynchronously' function wasn't recognised. I don't quite understand why that is so if anyone can enlighten me that would be cool!
null
null
[ 0.013131646439433098, -0.017840825021266937, -0.03261677920818329, -0.004800789523869753, 0.0514228530228138, -0.0004545886185951531, 0.029901737347245216, 0.02345387637615204, 0.006728608626872301, -0.01326875388622284, -0.025501050055027008, -0.014921784400939941, -0.11934959888458252, -0.0067647346295416355, 0.03126828372478485, 0.050080981105566025, 0.09399259090423584, -0.0332835353910923, 0.03904062137007713, -0.0020781687926501036, -0.01895970292389393, 0.06283161044120789, 0.0021088665816932917, 0.01122288592159748, 0.021374111995100975, 0.012247204780578613, -0.00782889872789383, -0.022725513204932213, -0.060031965374946594, 0.01572616957128048, 0.019611364230513573, 0.013605182059109211, 0.02339501492679119, -0.02987580932676792, 0.013038971461355686, -0.005024842917919159, 0.01931893639266491, 0.00965209025889635, -0.03497518226504326, 0.03770052641630173, -0.04981948062777519, -0.014518721029162407, -0.004267476033419371, -0.006993809714913368, -0.03280005604028702, 0.016958987340331078, -0.00971069186925888, 0.029894903302192688, -0.03506030887365341, -0.010316314175724983, -0.056662581861019135, -0.01836126111447811, -0.010681006126105785, -0.005615773145109415, 0.014054525643587112, 0.023689422756433487, -0.006596874911338091, -0.07450912147760391, 0.03277875483036041, -0.06904604285955429, 0.03387951850891113, -0.008690139278769493, 0.04289954900741577, 0.04187948256731033, 0.053856782615184784, 0.0030198947060853243, -0.0040203663520514965, 0.06835097819566727, -0.059058982878923416, -0.016306297853589058, 0.02268076501786709, 0.04967499151825905, -0.04873112961649895, -0.007952770218253136, 0.021669991314411163, -0.05282219871878624, 0.005846814718097448, 0.06440772861242294, 0.04856215789914131, 0.056513819843530655, 0.0031116337049752474, 0.05707959085702896, 0.040690574795007706, 0.028580334037542343, 0.02006041444838047, -0.017100416123867035, -0.02091836743056774, 0.054736729711294174, -0.016276760026812553, 0.049270130693912506, 0.02148955501616001, -0.055658139288425446, 0.004081099294126034, 0.012079279869794846, 0.049224067479372025, 0.021041180938482285, -0.037618592381477356, 0.002743883291259408, 0.0005006552091799676, -0.018883824348449707, -0.05849529802799225, -0.04704589769244194, 0.025216134265065193, 0.0036811274476349354, -0.06041476130485535, -0.007276457268744707, -0.009218533523380756, -0.048460185527801514, 0.016454273834824562, 0.010039766319096088, -0.05117468535900116, -0.00547634856775403, -0.017391938716173172, 0.00816817581653595, -0.07239813357591629, 0.05344486981630325, 0.011727962642908096, 0.010974012315273285, -0.026985634118318558, 0.03125737980008125, 0.05545996129512787, 0.012357590720057487, -0.014066760428249836, 0.07113202661275864, 0.02133648470044136, 0.05801171064376831, -0.03259284794330597, 0.06656533479690552, -0.008327435702085495, -0.02747448720037937, -0.0293890368193388, 0.044142987579107285, -0.03862565755844116, 0.012095668353140354, -0.014342270791530609, 0.00289423787035048, -0.024911578744649887, 0.005459201522171497, 0.025838496163487434, 0.04909129440784454, -0.03104369342327118, -0.009590795263648033, -0.006887533236294985, -0.031946778297424316, 0.028946714475750923, 0.03860784322023392, -0.04198808595538139, -0.03572583198547363, 0.007145577576011419, 0.034232623875141144, 0.003736330196261406, 0.03701402619481087, 0.0674394965171814, -0.04063272476196289, 0.03171570971608162, 0.06244194880127907, 0.019992878660559654, 0.020501086488366127, -0.018404534086585045, 0.013744869269430637, 0.0392414927482605, 0.030391482636332512, -0.011336990632116795, 0.057492710649967194, 0.02553354576230049, -0.0052200560458004475, 0.03373495489358902, 0.008924264460802078, -0.019141439348459244, -0.031193086877465248, -0.04757816344499588, 0.012021582573652267, 0.05138228461146355, -0.0107874209061265, 0.02866559475660324, 0.018911372870206833, 0.06183155998587608, -0.02875494211912155, 0.04492002725601196, -0.006488425191491842, -0.06186611205339432, 0.021999118849635124, 0.020951971411705017, -0.018909666687250137, -0.027793074026703835, 0.0193741787225008, 0.09339350461959839, 0.030465105548501015, -0.01282481849193573, 0.017867524176836014, -0.039350125938653946, -0.10589320957660675, -0.04072927311062813, 0.007282729726284742, 0.07362756133079529, -0.040605880320072174, -0.016410836949944496, 0.05405355617403984, 0.007636143360286951, 0.06285937130451202, 0.04886480048298836, -0.03188825771212578, 0.029988490045070648, -0.03838969022035599, -0.058353401720523834, 0.04397401213645935, 0.05407599359750748, -0.01882903464138508, -0.053176261484622955, 0.0033720543142408133, -0.03049674816429615, 0.008347748778760433, 0.05107660964131355, 0.0075126211158931255, 0.058813780546188354, 0.03324801102280617, 0.0030628785025328398, -0.03576464578509331, 0.006836277432739735, -0.06163278967142105, 0.06842455267906189, 0.003732745535671711, 0.01988064870238304, -0.023257900029420853, 0.0066339303739368916, 0.12127707153558731, 0.06708987057209015, -0.02384238690137863, -0.08819115161895752, -0.0077004944905638695, -0.025877779349684715, -0.04902859404683113, -0.00500909797847271, -0.0021534704137593508, -0.03012295812368393, -0.0036807586438953876, -0.01736166886985302, 0.040742069482803345, -0.010706065222620964, -0.0270801093429327, 0.022199155762791634, 0.08314501494169235, -0.017181869596242905, 0.026397274807095528, 0.015482618473470211, -0.029448961839079857, 0.026491280645132065, -0.016227493062615395, -0.03182695060968399, 0.033852048218250275, 0.03661368042230606, -0.0187598317861557, 0.06459169089794159, -0.03186626359820366, -0.036471351981163025, 0.0005972319631837308, -0.03568003326654434, 0.018225086852908134, 0.026727283373475075, 0.0454975850880146, 0.01770261861383915, 0.03045777790248394, -0.03794613853096962, -0.011522138491272926, 0.0021016146056354046, -0.062283631414175034, -0.03048206865787506, 0.013387339189648628, 0.04965876415371895, 0.04016723111271858, 0.014139235951006413, -0.0185648612678051, 0.010074412450194359, 0.0013946833787485957, -0.037318915128707886, 0.007844935171306133, 0.020146382972598076, -0.024009250104427338, -0.04716048762202263, -0.05685385689139366, -0.06883792579174042, 0.055243559181690216, -0.031689874827861786, -0.04877622053027153, -0.02679092064499855, -0.03191768750548363, 0.047931134700775146, -0.04423579201102257, -0.03867810592055321, 0.00039173243567347527, 0.018158262595534325, 0.004678778816014528, -0.017109662294387817, 0.01962200179696083, 0.052656810730695724, 0.009770757518708706, 0.0202788058668375, 0.014017310924828053, -0.02031366527080536, 0.04712719842791557, -0.015578918159008026, 0.030303440988063812, 0.053779568523168564, -0.0038287390489131212, -0.0008684506174176931, -0.06430300325155258, -0.019840514287352562, -0.031181856989860535, -0.24023795127868652, 0.04830421507358551, 0.0008470866596326232, -0.017002185806632042, 0.05750967562198639, -0.04373250529170036, 0.033174145966768265, -0.04259004071354866, -0.00972556322813034, 0.04527807608246803, -0.02753281593322754, -0.004106341395527124, -0.005554844159632921, 0.03226867690682411, -0.0025345315225422382, -0.013321389444172382, -0.0288353580981493, -0.05752186477184296, 0.012311677448451519, 0.041733719408512115, -0.012263176962733269, -0.046775851398706436, 0.012375873513519764, 0.04098866134881973, 0.02571937069296837, 0.0322297178208828, -0.09021609276533127, 0.03873075917363167, 0.016644690185785294, -0.013875533826649189, -0.015048644505441189, -0.0026693984400480986, 0.037007108330726624, -0.022190367802977562, -0.019855530932545662, -0.03960315138101578, 0.02808702178299427, 0.020423464477062225, 0.030603045597672462, 0.0022175507619976997, -0.036862507462501526, -0.0727308914065361, -0.014281271025538445, -0.029405375942587852, 0.06397745013237, -0.018332356587052345, -0.06540316343307495, -0.006403468083590269, -0.026042506098747253, 0.05922561511397362, -0.047302961349487305, -0.07612156122922897, -0.031691718846559525, 0.027669280767440796, -0.024875039234757423, -0.020904667675495148, -0.002273918129503727, 0.005863273981958628, -0.04447687789797783, -0.009912066161632538, -0.013685677200555801, -0.018815837800502777, -0.02503630891442299, -0.028789382427930832, -0.015525787137448788, -0.05631517246365547, -0.061336882412433624, 0.008587940596044064, 0.03880884125828743, 0.020533263683319092, -0.015536232851445675, 0.001715577905997634, -0.018748367205262184, -0.11508219689130783, -0.015398955903947353, -0.026199446991086006, -0.036009009927511215, -0.00853953417390585, -0.011215230450034142, 0.03374107927083969, -0.042216259986162186, -0.03245597332715988, 0.03635869175195694, 0.02065395750105381, 0.05305442586541176, 0.009152795188128948, 0.004129344131797552, -0.021971579641103745, -0.024705834686756134, -0.0015321931568905711, 0.06640280038118362, 0.004253192339092493, 0.016251839697360992, -0.01882287487387657, -0.0015382396522909403, 0.023724861443042755, 0.02453518845140934, 0.013087598606944084, 0.03604951873421669, 0.021335957571864128, 0.06958255916833878, -0.06973687559366226, -0.0031185683328658342, -0.04974084720015526, 0.0025282050482928753, -0.005799487698823214, -0.05161881446838379, 0.022872770205140114, 0.011723131872713566, 0.03150715306401253, -0.015449329279363155, -0.02700074017047882, 0.016579484567046165, -0.05528317764401436, -0.01891840435564518, -0.0007452201680280268, 0.007599980570375919, 0.01449778862297535, 0.019562719389796257, -0.017899179831147194, -0.05662248656153679, 0.0236564539372921, 0.03793283551931381, -0.005735490471124649, -0.034296758472919464, -0.03729745373129845, -0.000570987700484693, -0.03614957258105278, -0.006280254572629929, 0.03086007945239544, 0.00044434505980461836, 0.02675103209912777, -0.006988785229623318, -0.054030127823352814, 0.013282082974910736, -0.0006750583997927606, -0.0013803093461319804, -0.04470345377922058, -0.014256290160119534, 0.008701817132532597, 0.01151200570166111, -0.022830376401543617, 0.01600715145468712, 0.028391163796186447, 0.07477335631847382, 0.04182267561554909, -0.019638698548078537, 0.031620852649211884, -0.009201174601912498, 0.006037302315235138, 0.0077365608885884285, -0.046135373413562775, 0.025636596605181694, -0.03438613563776016, -0.02355116233229637, -0.028722111135721207, 0.031626224517822266, -0.032527048140764236, -0.0013032731367275119, -0.03455333039164543, 0.03780380263924599, -0.04560983553528786, -0.014296740293502808, -0.02754373662173748, -0.026482319459319115, 0.032836198806762695, -0.002062608953565359, 0.04738001525402069, -0.015573996119201183, -0.032295674085617065, -0.013923204503953457, 0.010907018557190895, -0.012479843571782112, 0.04682575911283493, 0.003794922726228833, 0.016641946509480476, -0.009154262021183968, 0.01859871856868267, -0.009404891170561314, 0.03167261555790901, 0.011312223970890045, 0.004919028375297785, 0.03388388827443123, 0.040780600160360336, 0.05107298120856285, 0.003594036912545562, -0.003860530909150839, 0.009530780836939812, -0.03411830961704254, 0.00434870645403862, -0.05039225146174431, 0.005930040962994099, -0.020832668989896774, 0.04979023337364197, -0.014880681410431862, -0.058205246925354004, 0.01706734299659729, 0.009359723888337612, 0.022188011556863785, -0.00937164667993784, -0.027404649183154106, 0.025225352495908737, -0.004255811218172312, -0.017951032146811485, 0.04859388247132301, -0.028853435069322586, -0.009671387262642384, -0.018070634454488754, 0.054689254611730576, 0.019466254860162735, 0.03356389328837395, -0.03426807373762131, -0.012135627679526806, -0.017848586663603783, -0.03479011356830597, 0.03347896412014961, -0.025746265426278114, -0.025028033182024956, -0.008382389321923256, -0.024708228185772896, -0.02457236498594284, -0.023162031546235085, 0.018968459218740463, -0.031923968344926834, -0.009041021578013897, -0.0083393519744277, -0.03690175339579582, -0.04668049141764641, 0.03251826763153076, -0.028441334143280983, -0.00037960975896567106, -0.058317881077528, 0.04559692367911339, 0.014951606281101704, -0.01877203769981861, -0.03564056381583214, -0.05628954619169235, 0.006104441359639168, -0.015255684033036232, 0.05179648846387863, -0.000830882228910923, -0.00370104075409472, 0.01830529421567917, -0.021751124411821365, -0.009531388990581036, -0.01945682242512703, 0.014360178261995316, -0.04751201719045639, 0.020811786875128746, 0.05020248517394066, 0.02134549804031849, 0.03833184018731117, -0.008601167239248753, 0.016847698017954826, 0.03777461498975754, -0.06845208257436752, -0.027108246460556984, 0.001785407541319728, -0.04723251238465309, 0.008014763705432415, 0.025941818952560425, -0.01506385300308466, -0.10441861301660538, 0.06023653224110603, 0.05438632145524025, 0.03347219154238701, 0.0636235848069191, -0.010759681463241577, 0.04106052964925766, 0.004847261123359203, -0.009427146054804325, -0.06751718372106552, 0.01407784502953291, 0.025713808834552765, 0.015826748684048653, -0.018860498443245888, -0.0041420855559408665, 0.004910284653306007, 0.057864751666784286, -0.03722723573446274, -0.024707449600100517, 0.04072904959321022, -0.013170493766665459, 0.003349618287757039, 0.006335374433547258, -0.03729705139994621, 0.020718302577733994, 0.04124220833182335, -0.025237593799829483, -0.0798967257142067, -0.04240786284208298, 0.040487293154001236, -0.017712464556097984, 0.01361253671348095, -0.06130579859018326, -0.05024230480194092, 0.022320125252008438, 0.025563044473528862, -0.019646991044282913, 0.06411675363779068, -0.04650964215397835, 0.007243830244988203, 0.04015791043639183, -0.025110740214586258, -0.01480174157768488, 0.011946354992687702, -0.016372771933674812, -0.06632044911384583, 0.009133434854447842, -0.005637611262500286, -0.014523380436003208, -0.06286227703094482, 0.05372253432869911, 0.011283863335847855, -0.016313254833221436, -0.004849034361541271, -0.0002094414085149765, -0.05594905465841293, -0.015677299350500107, -0.024910593405365944, 0.02454005926847458, -0.0209922157227993, 0.06787145882844925, 0.016339706256985664, -0.01481332816183567, 0.061578601598739624, -0.02166546694934368, 0.03868331387639046, 0.011459357105195522, 0.05726306140422821, 0.05198395252227783, 0.016608459874987602, -0.05811237171292305, 0.06730656325817108, -0.02850741147994995, -0.05020705983042717, -0.030215464532375336, -0.049271415919065475, -0.0197311919182539, 0.011774687096476555, 0.020385758951306343, 0.07849428057670593, 0.026577023789286613, 0.06881540268659592, -0.0761769562959671, -0.0036127648781985044, -0.021337848156690598, 0.028307678177952766, 0.022879621013998985, 0.039446037262678146, 0.011493250727653503, 0.03515982627868652, 0.009421649388968945, -0.03530425578355789, 0.027361875399947166, -0.0090074697509408, 0.009031664580106735, -0.03198698163032532, 0.017201321199536324, 0.005782629828900099, -0.0006858070264570415, 0.04587579518556595, 0.043765839189291, -0.006115753669291735, -0.019274167716503143, 0.019529104232788086, 0.01144431158900261, 0.020157499238848686, -0.013398829847574234, -0.001350102131254971, 0.0065127089619636536, 0.0038284941110759974, -0.00804468709975481, -0.02835717238485813, -0.023242563009262085, -0.015539559535682201, 0.008041689172387123, -0.03203245624899864, 0.0012903609313070774, -0.0410381443798542, -0.049586955457925797, -0.012681215070188046, -0.023884408175945282, -0.0372326634824276, -0.07067534327507019, -0.0780278891324997, 0.004591710865497589, 0.0007534697069786489, -0.0027432572096586227, -0.0396486334502697, -0.04107438027858734, 0.0012484077597036958, -0.0010078513296321034, 0.053157564252614975, 0.00021904779714532197, -0.03439096361398697, 0.02755819261074066, -0.0020422691013664007, 0.05480600520968437, 0.04273158311843872, 0.033535733819007874, -0.023840200155973434, -0.01545894518494606, -0.024118876084685326, -0.01825929805636406, 0.036322832107543945, 0.011644383892416954, -0.017245734110474586, -0.0833723396062851, 0.020526817068457603, 0.022030023857951164, 0.046267069876194, -0.0629446730017662, 0.019340762868523598, 0.03805754333734512, -0.02134143002331257, 0.007279014214873314, -0.023404425010085106, -0.017234332859516144, -0.02528567425906658, -0.02810618467628956, 0.0011076274095103145, 0.024779757484793663, 0.05892067030072212, -0.032531823962926865, 0.05883105844259262, 0.007353551685810089, -0.0021010921336710453, -0.038188327103853226, -0.0020734223071485758, -0.03106497973203659, 0.02979065291583538, 0.0021632148418575525, -0.05276009067893028, -0.04071385785937309, -0.03959823027253151, -0.0048916880041360855, 0.030251292511820793, 0.009535349905490875, -0.03789627179503441, 0.028786176815629005, 0.04662621021270752, -0.08832082152366638, 0.06043396145105362, -0.007519147824496031, 0.013895975425839424, 0.020226042717695236, -0.033123038709163666, 0.016880130395293236, 0.008403783664107323, 0.029112452641129494, -0.027362335473299026, 0.02217903546988964, -0.009390502236783504, -0.011660528369247913, -0.005672845058143139, 0.00993187353014946, 0.03730722889304161, -0.034107986837625504, 0.05702022463083267 ]
[ -0.08519228547811508, -0.03378438577055931, -0.05610932409763336, 0.011477380059659481, 0.0447453111410141, -0.05872942507266998, -0.006927825044840574, 0.03780442476272583, 0.024982256814837456, -0.021466756239533424, 0.04496057704091072, -0.05531419813632965, -0.026201386004686356, 0.001948331599123776, 0.04384081810712814, 0.03180298954248428, -0.03322604298591614, -0.060714513063430786, -0.03468681126832962, 0.01068158820271492, 0.015565709210932255, -0.045330960303545, -0.02488112263381481, -0.028882963582873344, 0.01074327901005745, 0.010339376516640186, 0.023332905024290085, -0.07632745802402496, -0.01180693693459034, -0.18185672163963318, 0.017590047791600227, -0.0208894032984972, 0.0025959727354347706, -0.014809283427894115, -0.00466557964682579, 0.004379063379019499, 0.027949312701821327, -0.015529811382293701, -0.0004644173022825271, 0.08514293283224106, -0.03175213560461998, -0.008170118555426598, -0.04666372388601303, -0.012771723791956902, 0.035469356924295425, -0.017157025635242462, -0.03143380954861641, 0.01292971707880497, -0.024690896272659302, -0.004010900389403105, -0.062383949756622314, -0.01377443503588438, -0.012074487283825874, -0.0482606440782547, 0.01167905144393444, 0.03945355489850044, 0.025632284581661224, 0.0751706138253212, 0.03243220970034599, 0.038764942437410355, 0.03392352908849716, -0.013888787478208542, -0.1347297579050064, 0.10720157623291016, 0.0493498332798481, 0.05484079197049141, 0.008418811485171318, -0.03150312975049019, -0.0026015983894467354, 0.058239590376615524, -0.013699717819690704, -0.0147061413154006, 0.003569946391507983, 0.053612906485795975, 0.0016535972245037556, -0.008671512827277184, 0.0005368905840441585, 0.06748602539300919, 0.05997747555375099, -0.03934298828244209, -0.017628511413931847, -0.021992934867739677, 0.013138653710484505, 0.005215529352426529, -0.018323414027690887, -0.0253165103495121, -0.019895151257514954, 0.049525242298841476, 0.04563012346625328, 0.022403519600629807, -0.016256384551525116, -0.043909959495067596, 0.04695636034011841, 0.011640447191894054, -0.09395841509103775, -0.01523077767342329, 0.0024339950177818537, 0.007963785901665688, -0.04462014511227608, 0.3901561200618744, -0.021000323817133904, 0.015906881541013718, 0.03954790160059929, 0.04693552851676941, -0.017787087708711624, -0.0217148270457983, -0.0072662001475691795, -0.027035614475607872, 0.006309647113084793, -0.027590002864599228, -0.01416354812681675, 0.005705623421818018, 0.030092580243945122, -0.055862296372652054, 0.009370608255267143, 0.04966078698635101, 0.01226804405450821, -0.004113123286515474, -0.04136870428919792, 0.005272736772894859, 0.006671055220067501, -0.0017303862841799855, 0.05548503249883652, 0.031267907470464706, 0.003510866779834032, 0.006318631581962109, 0.06162047013640404, 0.08659126609563828, 0.03943708911538124, 0.012228782288730145, 0.03554946184158325, 0.020616551861166954, -0.07098370790481567, -0.006702368147671223, 0.015988724306225777, 0.033835459500551224, 0.010815039277076721, -0.06601027399301529, -0.0189462099224329, 0.022768722847104073, 0.015393005684018135, -0.050173480063676834, 0.0322176031768322, -0.008814400061964989, -0.0276351235806942, 0.102427639067173, 0.005425840616226196, -0.004156544338911772, -0.04682526737451553, -0.003395714098587632, 0.023135153576731682, 0.050236884504556656, -0.030176114290952682, -0.05701529234647751, 0.007349309511482716, 0.03228118270635605, 0.053031355142593384, -0.0011158556444570422, -0.016371406614780426, -0.03270164504647255, -0.03940895199775696, -0.02581355907022953, -0.007889963686466217, 0.020556414499878883, 0.0031087067909538746, -0.11782538145780563, -0.0477227084338665, 0.022136526182293892, -0.0300334133207798, -0.12036280333995819, -0.018118126317858696, -0.015100744552910328, -0.053469009697437286, -0.058749277144670486, 0.0474846176803112, -0.007279882673174143, -0.019622288644313812, -0.010918883606791496, 0.05076787620782852, 0.02478378638625145, -0.014202563092112541, -0.013256672769784927, -0.01956097222864628, -0.013161676004529, -0.0019522145157679915, -0.08074841648340225, -0.0019589406438171864, 0.0020077559165656567, 0.023759324103593826, -0.040353816002607346, -0.029606636613607407, -0.06735920161008835, -0.0387214794754982, 0.03399437293410301, -0.023990953341126442, -0.025527166202664375, 0.026445811614394188, -0.008130358532071114, 0.051598645746707916, -0.03583100810647011, 0.08190852403640747, 0.043367594480514526, 0.005927116144448519, 0.06604521721601486, -0.05678877979516983, 0.02584889531135559, 0.037992507219314575, -0.024768676608800888, 0.03343741595745087, 0.023036738857626915, -0.05639881640672684, -0.026621919125318527, -0.018621617928147316, 0.0465187206864357, -0.023370200768113136, -0.023540271446108818, 0.01613542251288891, 0.02648014947772026, -0.0233446154743433, 0.022937409579753876, -0.028572114184498787, -0.022547772154211998, 0.004909484181553125, -0.3326836824417114, -0.0063850972801446915, 0.007366116624325514, -0.029181018471717834, -0.00800442136824131, -0.05834046006202698, -0.04046832025051117, -0.02043919451534748, -0.05541692301630974, 0.011030818335711956, 0.11237048357725143, 0.032699208706617355, 0.02617717534303665, -0.09857692569494247, 0.0038191755302250385, 0.016989052295684814, -0.03635142743587494, -0.06453931331634521, -0.01101747341454029, 0.026193371042609215, -0.03435957804322243, -0.008425959385931492, -0.03385230898857117, -0.04420530050992966, 0.017951354384422302, -0.03286655619740486, 0.10241366922855377, 0.004542207345366478, 0.11847253143787384, -0.06142845004796982, 0.055274978280067444, 0.03392217680811882, 0.013213269412517548, -0.09220771491527557, -0.005583698395639658, -0.020520800724625587, 0.03144397214055061, 0.04726617410778999, 0.04837864637374878, -0.0035849236883223057, -0.01620223931968212, 0.030003944411873817, -0.01835785061120987, -0.03813810274004936, -0.00006685921835014597, -0.001558911637403071, -0.042209137231111526, -0.03450829163193703, 0.006383202970027924, 0.06268375366926193, -0.006515278946608305, 0.009194927290081978, 0.03835965692996979, 0.05329185724258423, 0.007962464354932308, 0.006393601186573505, -0.05351591855287552, -0.02374502830207348, -0.033651724457740784, 0.008159703575074673, 0.060496099293231964, 0.046398330479860306, 0.028680680319666862, -0.012846400029957294, 0.02200031653046608, -0.004080386366695166, -0.008973385207355022, -0.025527944788336754, 0.045496195554733276, -0.029158227145671844, -0.02592354081571102, 0.09911272674798965, -0.026381300762295723, 0.055647172033786774, 0.038417864590883255, 0.013701961375772953, 0.012026234529912472, -0.0011532894568517804, -0.012587468139827251, 0.018136925995349884, 0.015585935674607754, -0.008256789296865463, 0.05891977995634079, -0.026520656421780586, -0.0136864697560668, 0.01507294736802578, -0.06427250057458878, 0.05013449117541313, 0.039049919694662094, -0.014946342445909977, -0.03914225101470947, 0.009722724556922913, -0.011475424282252789, -0.07287352532148361, 0.08945299685001373, 0.003125471528619528, -0.2547250986099243, -0.0039812251925468445, 0.05496177449822426, 0.03388785943388939, -0.008485895581543446, 0.00007168371666921303, 0.06312200427055359, -0.05301422253251076, -0.022193266078829765, 0.028017442673444748, -0.024463331326842308, 0.06794905662536621, 0.027182562276721, 0.01641412265598774, 0.027182627469301224, 0.004678855184465647, 0.023627372458577156, 0.014723781496286392, -0.007838609628379345, 0.021849552169442177, 0.03897953778505325, 0.01149741280823946, 0.16039910912513733, -0.00984987709671259, 0.01816241256892681, 0.04707404971122742, -0.006782778073102236, 0.03805534541606903, 0.11368481069803238, 0.00802322942763567, 0.024469979107379913, 0.0015288809081539512, 0.060030050575733185, -0.007594509981572628, 0.047990042716264725, -0.13463374972343445, -0.005280613899230957, 0.03979641571640968, 0.021784421056509018, -0.019816342741250992, -0.04881052300333977, 0.03334162384271622, 0.014373796992003918, 0.01625034585595131, 0.07105021923780441, -0.013416815549135208, -0.024144984781742096, -0.0730338990688324, -0.060473788529634476, 0.015507716685533524, -0.06137193366885185, -0.043669939041137695, 0.02101428434252739, -0.013292738236486912, -0.0045863427221775055, 0.03774309530854225, 0.04425204172730446, -0.015347396023571491, -0.050368502736091614, -0.0073489840142428875, 0.019046254456043243, -0.02191281132400036, 0.10014643520116806, 0.006234628614038229, 0.045707810670137405 ]
[ -0.008575287647545338, 0.004505011718720198, -0.03193875402212143, 0.03563542664051056, 0.029553452506661415, -0.015274145640432835, 0.013798190280795097, 0.02478373609483242, -0.006760067772120237, -0.002996515017002821, -0.006740859244018793, 0.013895976357161999, -0.006106327287852764, 0.00014725964865647256, 0.010640461929142475, 0.025790046900510788, 0.03567321226000786, -0.030724093317985535, 0.01597907580435276, -0.00755057018250227, -0.009866329841315746, 0.04795470088720322, 0.030237985774874687, -0.009779067710042, 0.003671981394290924, -0.043982233852148056, -0.029637616127729416, -0.001244857208803296, 0.03665558993816376, -0.1322285234928131, 0.025731654837727547, -0.03401041775941849, -0.023430442437529564, -0.0017225678311660886, 0.0046394579112529755, -0.02013791725039482, 0.0053419996984303, -0.03380850329995155, -0.03708900883793831, 0.010091708973050117, 0.015144051983952522, -0.03188619762659073, -0.007839630357921124, 0.02520115301012993, -0.03594467043876648, -0.0024531506933271885, 0.0030882663559168577, -0.0019334611715748906, -0.030882814899086952, 0.047672342509031296, -0.0392044372856617, -0.008566228672862053, -0.02822389267385006, 0.021993130445480347, 0.0038918114732950926, -0.009234999306499958, -0.031643930822610855, 0.005370811093598604, -0.0030083523597568274, -0.006352016236633062, -0.0011445197742432356, -0.024433614686131477, -0.034187719225883484, -0.0405096635222435, 0.013969287276268005, 0.021973991766572, -0.044593509286642075, 0.005387451034039259, 0.025190431624650955, -0.0161398034542799, -0.02003427967429161, 0.030187776312232018, -0.005258820950984955, 0.03823991119861603, -0.03643124923110008, -0.01601351611316204, 0.01479418110102415, 0.014846259728074074, -0.0016084294766187668, 0.026292165741324425, -0.0056291623041033745, 0.005213520023971796, -0.0005043578566983342, 0.03862396255135536, 0.002689887071028352, 0.011452862992882729, -0.011085601523518562, 0.007114557549357414, -0.00751855643466115, 0.0034226784482598305, -0.034945935010910034, 0.017199430614709854, 0.002693874528631568, 0.020921478047966957, -0.06244448572397232, -0.0047181639820337296, -0.008970976807177067, -0.028298217803239822, -0.01975114271044731, 0.8235176205635071, -0.04925639554858208, 0.009177380241453648, 0.04554005339741707, 0.015526851639151573, 0.002234522718936205, -0.0467260368168354, 0.02483471669256687, 0.03132162615656853, 0.046154893934726715, -0.059280071407556534, 0.014868301339447498, 0.007356901653110981, 0.025091057643294334, 0.004307299852371216, 0.0261344276368618, -0.03563346713781357, 0.009898330084979534, -0.008449307642877102, 0.0274200476706028, 0.02106987126171589, 0.0394919328391552, -0.011512240394949913, 0.020379777997732162, -0.004860615823417902, 0.01794075220823288, -0.1527559459209442, 0.046949636191129684, -7.144033856343835e-33, 0.03082106076180935, 0.00027903058798983693, -0.010827325284481049, 0.039079416543245316, 0.0626278817653656, -0.01299986056983471, 0.07948074489831924, -0.012860833667218685, -0.02466701902449131, -0.06430941075086594, -0.015252196229994297, -0.04366016760468483, 0.0016839378513395786, -0.039211954921483994, 0.02265137806534767, -0.041426870971918106, 0.0018879262497648597, 0.04113628342747688, 0.003363377181813121, 0.024600183591246605, 0.047912463545799255, 0.05860572308301926, 0.0324343778192997, 0.008642544969916344, -0.020603230223059654, -0.001925933756865561, 0.0023754427675157785, 0.007901445031166077, 0.0015516880666837096, -0.041990842670202255, 0.002816881285980344, 0.03673076629638672, -0.027051663026213646, -0.04253232851624489, 0.08266430348157883, -0.05052098259329796, -0.021554943174123764, 0.00846064742654562, -0.03354530408978462, -0.02267247438430786, -0.05273814871907234, 0.03123566135764122, -0.06322290003299713, -0.011032648384571075, -0.02729087509214878, -0.03754424303770065, -0.03473968431353569, 0.022515974938869476, -0.0006695787888020277, 0.017782852053642273, 0.011214343830943108, 0.024403050541877747, -0.0165096465498209, -0.002789752557873726, 0.00047144523705355823, -0.007009618449956179, -0.02515023946762085, 0.007611235603690147, 0.03861309587955475, -0.003986878786236048, 0.028063960373401642, -0.04605191946029663, -0.009484543465077877, -0.007802745793014765, 0.014910416677594185, -0.023708784952759743, 0.00950111635029316, 0.012700113467872143, 0.019856080412864685, -0.011076890863478184, -0.03710661828517914, -0.023679492995142937, -0.031997621059417725, -0.01748461276292801, 0.020206578075885773, -0.0033682251814752817, -0.019111841917037964, -0.02331690490245819, 0.010809239000082016, 0.014846093021333218, 0.029046474024653435, -0.003101565409451723, 0.010603010654449463, -0.008570353500545025, -0.003886128542944789, -0.007236012257635593, 0.004594413563609123, -0.021300645545125008, -0.014111923053860664, 0.04421918839216232, 0.037915732711553574, 0.012941362336277962, 0.00106361648067832, -0.03360723331570625, -0.02858521044254303, 7.59074595422729e-33, -0.003383356612175703, -0.005432942416518927, -0.047092266380786896, 0.013919287361204624, -0.008914461359381676, -0.0033345341216772795, 0.033310987055301666, -0.0023399116471409798, -0.0008949337061494589, 0.05873517319560051, 0.010617384687066078, 0.007008683402091265, -0.04458075389266014, 0.030159831047058105, 0.05875039100646973, -0.03779733553528786, 0.031234953552484512, -0.04191826656460762, 0.0434444434940815, 0.01880338229238987, -0.0005833173054270446, -0.018084436655044556, -0.001994561403989792, 0.004135191906243563, 0.02053113467991352, 0.06364022195339203, -0.012394515797495842, -0.0030025432351976633, 0.00921886507421732, -0.039879195392131805, 0.023405736312270164, 0.010703906416893005, 0.02699812687933445, -0.04745015129446983, -0.002658626763150096, 0.039029549807310104, 0.03350070118904114, -0.008255261927843094, 0.03418893739581108, -0.027990197762846947, 0.08323404937982559, -0.04789905250072479, -0.023062750697135925, -0.033463530242443085, -0.0006240668590180576, 0.0033091374207288027, -0.04707730561494827, 0.009741993620991707, -0.031005525961518288, 0.004877657163888216, 0.016820205375552177, 0.004763116594403982, 0.014333857223391533, 0.006054673343896866, 0.02243606559932232, -0.030672170221805573, 0.037255868315696716, -0.0021649806294590235, 0.004832849837839603, -0.017389941960573196, 0.012130835093557835, -0.019429504871368408, -0.030191496014595032, 0.00011017795623047277, -0.0192031841725111, -0.013933449983596802, 0.0007962887175381184, -0.0073715695179998875, 0.009597288444638252, 0.009024756029248238, -0.011431231163442135, -0.03543471172451973, -0.005223284941166639, 0.03169015794992447, 0.03743160516023636, -0.022483795881271362, 0.021435512229800224, 0.0023235888220369816, -0.011256090365350246, 0.0344337597489357, -0.02061554789543152, 0.03211023658514023, 0.01706833951175213, -0.017386093735694885, 0.008656599558889866, -0.01412769965827465, -0.0007032243302091956, 0.0013948290143162012, 0.006614708341658115, -0.001058689784258604, -0.009184028953313828, -0.039118364453315735, -0.027182485908269882, 0.01789386197924614, 0.03153042867779732, -1.2757427114706843e-8, -0.062153179198503494, 0.005960835609585047, -0.024678144603967667, 0.04334155470132828, 0.01395697146654129, 0.0233541838824749, -0.028888016939163208, 0.01929120533168316, 0.03378946706652641, 0.008036220446228981, 0.038334283977746964, 0.0047401245683431625, 0.041356176137924194, -0.00928284041583538, 0.03599366173148155, -0.03687359020113945, -0.01746056228876114, -0.060736652463674545, 0.03484551981091499, 0.0014802590012550354, 0.004617516882717609, 0.03092036582529545, 0.00609253253787756, 0.01137787476181984, -0.005658300593495369, 0.006669015623629093, 0.031928375363349915, -0.06691644340753555, -0.013737838715314865, -0.0022475773002952337, -0.00722439493983984, -0.013599253259599209, -0.01811365783214569, 0.022644048556685448, -0.036849819123744965, -0.0028707152232527733, 0.009582842700183392, 0.0065475525334477425, 0.02477370947599411, 0.007715364918112755, 0.020008450374007225, 0.0154091976583004, 0.025203818455338478, -0.02378127910196781, -0.011257961392402649, 0.008480839431285858, -0.0028801739681512117, 0.026480531319975853, -0.004476016387343407, -0.04071144387125969, -0.02036093734204769, 0.0008989000925794244, -0.0016676703235134482, 0.05570320412516594, -0.025372503325343132, -0.03036964125931263, 0.0262207742780447, -0.0756932869553566, -0.05552801117300987, 0.001564284902997315, 0.057587843388319016, 0.025730865076184273, -0.020341238006949425, -0.018939698114991188 ]
f-unexpected-identifier-in-implementation-file
https://markhneedham.com/blog/2010/02/14/f-unexpected-identifier-in-implementation-file
false
2010-02-22 23:14:20
Javascript: Bowling Game Kata
[ "javascript" ]
[ "Javascript" ]
I spent some time over the weekend playing with the http://blog.objectmentor.com/articles/2009/10/01/bowling-game-kata-in-ruby[bowling game kata] in Javascript. I thought I knew the language well enough to be able to do this kata quite easily so I was quite surprised at how much I struggled initially. These are some of my observations from this exercise: * I was using http://github.com/nkallen/screw-unit[screw-unit] as my unit testing framework - I originally tried to setup http://code.google.com/p/js-test-driver/[JSTestDriver] but I was having problems getting that to work so in the interests of not shaving the yak I decided to go with something I already know how to use. I don't think I quite get the idea of the 'describe' and 'it' blocks which I believe are inspired by http://rspec.info/documentation/[Rspec]. I like the idea of describing the behaviour of an object for the different contexts in which it's used but I found myself putting all my examples/tests in the same describe block without realising! I went back and tried to find the different contexts but the only obvious distinction I noticed was that some tests seemed to be covering fairly basic bowling combinations while others were covering specific types of games: ** normal games *** should score a single throw *** should score two throws which do not add up to a strike or spare *** should score a spare *** should score multiple spares *** should score a strike *** should score back to back strikes *** should score a combination of strikes and spares ** special combinations *** should score a full house of strikes *** should score a full house of spares *** should score a gutter game *** should score a dutch 200 + There's no specific setup unique to these two contexts which I've often noticed is a tell tale sign when writing tests in C# that we need to split our tests out a bit so I'm not sure whether I've added much value by doing this refactoring. Following http://blog.orfjackal.net/2010/02/three-styles-of-naming-tests.html[Esko Luontola's terminology] the tests that I've written follow example style test names rather than specification style test names. This means that in order to understand the scoring rules of bowling you would need to look at the implementation of the test rather than just read the name. I think this might be a key difference in the way we write tests in JUnit/NUnit and RSpec/screw-unit. * At one stage I was making use of the Array 'http://www.w3schools.com/jsref/jsref_splice.asp[splice]' function to get an array with an element removed and I had expected that I would be returned a new array with those elements removed. In actual fact that function mutates the original array so if we're going to do anything using 'splice' then it seems like we need to get a copy of the original array by using 'http://www.w3schools.com/jsref/jsref_slice_array.asp[slice]' otherwise we may end up with some quite unexpected behaviour later on in the program. The other thing I found strange is that 'splice' returns the elements that have been removed from the array rather than the newly mutated array. To get an array with the first element removed we'd do something like this: ~~~javascript function removeFirstItemFrom(theArray) { var copy = theArray.slice(0); copy.splice(0, 1); return copy; } var anArray = [1,2,3,4,5]; var anArrayWithFirstItemRemoved = removeFirstItemFrom(anArray); ~~~ After my time playing around with functional approaches to programming it's quite strange to see APIs which mutate values and don't return the results that I'd expect them to. Interesting though. * Since a lot of the test setup involved rolling gutter balls I had a lot of calls to 'bowlingGame.roll(0)' which was making the test quite convoluted and not adding much value. I wrote a function to extend 'Number' so that I could use a Ruby style '10.times' syntax: ~~~javascript Number.prototype.times = function(f) { for(var i=0; i < this; ++i) { f(); } return this; }; ~~~ When I tried to use this function like this: ~~~javascript 10.times(function() { bowlingGame.roll(0); }); ~~~ I kept getting the following error: ~~~text SyntaxError: missing ; before statement ~~~ I couldn't work out what I was doing wrong but http://www.twitter.com/skim[skim] pointed out that in Javascript we need to wrap number literals in parentheses in order to call functions on them: ~~~javascript (10).times(function() { bowlingGame.roll(0); }); ~~~ works much better! I wrote a couple of other general use functions and one thing which I'm not sure about is whether or not I should do validation on the input parameters or is it down to the user of the function to use it correctly? I'm more used to static languages where it would be more difficult to pass in an unexpected value so I'm not sure what the normal approach would be in a dynamic language. * I took quite a lot of ideas from the way http://blog.objectmentor.com/articles/2009/10/01/bowling-game-kata-in-ruby[Brett Schuchert solved the problem in Ruby]. In particular I really like the way that he's broken down the problem into smaller and smaller functions which all do only one thing. It's quite easy to end up writing really complicated functions which are difficult to understand so it was good to see that it is possible to keep it this simple. It would be quite interesting to see how this type of solution evolved. * This wasn't my most incremental bit of coding ever - I found that some of the examples I introduced e.g. scoring a strike often resulted in quite a lot of code needing to change to make the test pass. My current thinking is that for this problem we perhaps need to have some idea of the way that we want the code to evolve before we start writing our solution. A solution doesn't just evolve in front of us when we add in the next test. Either that or I'm not taking steps which are small enough to allow that evolution to happen.
null
null
[ 0.0034376082476228476, 0.011115959845483303, -0.006834810134023428, 0.03228514641523361, 0.053212277591228485, 0.021705353632569313, 0.05392507463693619, 0.026068121194839478, 0.01248023472726345, -0.016716651618480682, -0.004562517628073692, 0.009073225781321526, -0.052470218390226364, 0.011982263997197151, -0.0280582495033741, 0.07711850106716156, 0.08361035585403442, -0.018995873630046844, 0.007882815785706043, -0.007937461137771606, 0.026925602927803993, 0.06286544352769852, 0.006946624256670475, 0.03922463580965996, 0.03915204480290413, 0.008183111436665058, 0.03947598487138748, 0.02361834980547428, -0.06510114669799805, -0.035583727061748505, 0.006897015497088432, 0.031538479030132294, 0.023413026705384254, -0.01713479869067669, 0.023839980363845825, -0.039559055119752884, -0.019312746822834015, 0.02026587724685669, 0.02105247601866722, 0.013292944990098476, -0.05148393660783768, 0.026969797909259796, -0.025409169495105743, -0.011537760496139526, -0.04233310744166374, 0.011084635742008686, -0.007584337145090103, -0.0014703938504680991, 0.0061024632304906845, -0.004323504399508238, -0.0346774198114872, 0.055215369910001755, 0.00879371352493763, -0.023071346804499626, 0.0087233642116189, 0.03396047651767731, 0.03562575578689575, -0.06610523909330368, 0.042450059205293655, -0.04862053319811821, -0.007086882367730141, -0.0003979883040301502, -0.011432001367211342, 0.03999125584959984, 0.006549672689288855, -0.0129516227170825, 0.007316314149647951, 0.04877391457557678, -0.02157742902636528, -0.0146121084690094, -0.017906637862324715, -0.006254513282328844, -0.017007114365696907, -0.025248730555176735, 0.005221075844019651, -0.05897950753569603, 0.022563913837075233, 0.0650465339422226, 0.003094349754974246, 0.049646396189928055, -0.019590357318520546, 0.011128343641757965, 0.03607293218374252, 0.03551999107003212, 0.0027184090577065945, -0.046567779034376144, -0.017337627708911896, -0.01636609248816967, -0.029550893232226372, 0.06853757053613663, 0.020427433773875237, -0.0363631434738636, 0.027205685153603554, 0.013969252817332745, -0.023088527843356133, 0.007490287069231272, 0.012709507718682289, 0.003466260153800249, -0.018025478348135948, -0.016404276713728905, -0.012966204434633255, -0.039281703531742096, 0.007835092954337597, 0.019052952527999878, -0.08004158735275269, 0.014544205740094185, 0.004002844914793968, -0.020336130633950233, -0.013924285769462585, 0.012106433510780334, -0.04035496711730957, 0.010556449182331562, -0.005085190292447805, -0.0064482614398002625, -0.0785655528306961, 0.06084006652235985, 0.008420202881097794, -0.03981658071279526, -0.019405990839004517, 0.038566168397665024, 0.005761444102972746, 0.024696044623851776, -0.017999224364757538, 0.08299735188484192, 0.00617142952978611, 0.021067524328827858, -0.02083829790353775, 0.06404861807823181, -0.019983356818556786, -0.06556899845600128, 0.014724696055054665, 0.04425033554434776, -0.008325610309839249, 0.004018093924969435, 0.008490264415740967, -0.035267312079668045, -0.019180282950401306, -0.019582031294703484, 0.04235909879207611, 0.0659123882651329, -0.020098252221941948, -0.03666330501437187, 0.020377110689878464, -0.007371098268777132, 0.01703636534512043, 0.009436486288905144, -0.01353925559669733, 0.004435555078089237, -0.021777713671326637, 0.029864048585295677, 0.00944329984486103, 0.03493532910943031, 0.03985128924250603, -0.02493789978325367, -0.0060730865225195885, 0.06936754286289215, 0.01774493418633938, 0.010491367429494858, -0.010969266295433044, 0.027226673439145088, 0.02359754778444767, 0.016599057242274284, 0.014168286696076393, 0.034985218197107315, 0.01142374612390995, -0.015561535954475403, 0.01730729267001152, 0.07821989059448242, -0.01010038424283266, -0.005610839929431677, -0.07724742591381073, -0.022716909646987915, 0.07733376324176788, -0.04038464277982712, -0.03534012660384178, 0.044751595705747604, 0.07017063349485397, 0.013798427768051624, 0.06089378520846367, 0.010072188451886177, -0.07707446813583374, 0.0061966110952198505, 0.021371182054281235, 0.03276073932647705, 0.013602575287222862, -0.010345052927732468, 0.044631823897361755, 0.0038482523523271084, -0.01552437711507082, 0.05449117347598076, -0.076934814453125, -0.08099742978811264, -0.009351189248263836, -0.009731756523251534, 0.06495576351881027, -0.03950047120451927, -0.0020328976679593325, 0.06919005513191223, 0.02504737116396427, 0.02645917981863022, 0.013880758546292782, 0.0034079088363796473, 0.015439096838235855, -0.05691894516348839, -0.029790490865707397, 0.06325363367795944, 0.037402279675006866, -0.014231573790311813, -0.07442086935043335, 0.002237144624814391, -0.014956447295844555, -0.013049634173512459, 0.05226391926407814, -0.03388852998614311, 0.001189418020658195, 0.03113134205341339, 0.0737847164273262, -0.016070730984210968, 0.05887191742658615, -0.04310278221964836, -0.005361787974834442, -0.012887794524431229, -0.014766838401556015, -0.015681074932217598, 0.0032692626118659973, 0.12618669867515564, 0.042834024876356125, -0.013861365616321564, -0.05317143723368645, 0.018539968878030777, -0.00570121081545949, -0.021150529384613037, -0.003955939318984747, 0.012101734057068825, 0.005650220438838005, 0.000694124202709645, -0.08294805139303207, -0.03369273245334625, 0.023442279547452927, -0.04670427739620209, 0.004157279618084431, 0.08828510344028473, 0.001002554432488978, 0.038704413920640945, -0.013414058834314346, -0.011323129758238792, 0.010423715226352215, -0.03012949973344803, -0.03399785980582237, 0.009211094118654728, 0.012517299503087997, -0.022749628871679306, 0.03187958151102066, -0.014149419032037258, -0.02444915845990181, -0.014253558591008186, -0.02615661919116974, 0.007045520469546318, 0.04876134172081947, 0.0465039499104023, -0.01770087704062462, 0.0665891245007515, -0.015880314633250237, 0.007470238488167524, -0.016491731628775597, -0.052138421684503555, -0.0509730763733387, -0.022604189813137054, 0.0006374155054800212, 0.039434727281332016, 0.014582179486751556, 0.03165263310074806, 0.019721824675798416, 0.01377376914024353, -0.03413396328687668, -0.003635798580944538, 0.02663842961192131, 0.015736112371087074, -0.04283902421593666, -0.039377935230731964, -0.037711553275585175, 0.048421770334243774, -0.03010660782456398, -0.016380291432142258, 0.030877795070409775, -0.08638402074575424, 0.03756946697831154, -0.07535400986671448, -0.05643221735954285, -0.007063460070639849, 0.0007059333729557693, 0.051820944994688034, 0.0002933483920060098, 0.007730014156550169, 0.07864436507225037, 0.008471891283988953, 0.009424415417015553, 0.027000155299901962, 0.010140505619347095, 0.017908619716763496, -0.013632060028612614, 0.015506106428802013, 0.03098013810813427, -0.017819026485085487, 0.00648967269808054, -0.055982302874326706, -0.008849047124385834, -0.023807397112250328, -0.3019062876701355, 0.021491268649697304, -0.008224880322813988, -0.02059222012758255, 0.028235383331775665, -0.008697901852428913, 0.014844201505184174, -0.03425755724310875, -0.006087654735893011, 0.022107930853962898, -0.03476918116211891, -0.056345339864492416, -0.019931362941861153, 0.04468562826514244, 0.026664333418011665, 0.007727638818323612, 0.020956790074706078, -0.031613897532224655, -0.0061449711211025715, 0.05205148085951805, 0.01833724044263363, -0.0650663748383522, -0.00459419097751379, 0.049441587179899216, 0.022518940269947052, 0.052569665014743805, -0.09075970202684402, 0.03567925840616226, -0.05312228202819824, 0.003246314823627472, 0.012621995992958546, 0.0009300240781158209, -0.004416118375957012, -0.018991919234395027, -0.03174412623047829, -0.00869970303028822, 0.033943526446819305, -0.017237184569239616, 0.0006546811782754958, 0.045240648090839386, -0.04958641529083252, -0.023142622783780098, -0.006211921572685242, 0.011453039944171906, 0.09411720186471939, -0.026765888556838036, -0.055630601942539215, -0.02189738303422928, -0.0542474202811718, 0.06449347734451294, -0.013464880175888538, -0.04197163134813309, -0.03299503028392792, 0.04446806758642197, -0.03203292936086655, -0.03261180594563484, -0.007749601732939482, -0.01549951359629631, -0.024759666994214058, -0.024233434349298477, -0.030222494155168533, -0.03724489361047745, -0.0032919985242187977, -0.03309084475040436, -0.014615310356020927, -0.05557797849178314, -0.03359249234199524, -0.00681803235784173, 0.06094079464673996, 0.012008609250187874, -0.031255245208740234, -0.015782169997692108, -0.024178342893719673, -0.10415666550397873, -0.022766971960663795, -0.004708616062998772, -0.022105932235717773, -0.011980009265244007, -0.014308677986264229, 0.06907349824905396, -0.01914730854332447, -0.07544613629579544, 0.03568713739514351, -0.015058014541864395, 0.019290866330266, 0.01819530501961708, 0.03181714937090874, -0.01246689260005951, -0.0004646300512831658, -0.000579780840780586, 0.07813121378421783, -0.011679967865347862, -0.029687587171792984, -0.00937936082482338, 0.009161373600363731, 0.041287265717983246, 0.012873907573521137, -0.026669476181268692, -0.00714570377022028, 0.04450968652963638, 0.011104448698461056, -0.09064290672540665, 0.020530909299850464, -0.011506658047437668, -0.012160621583461761, 0.0014231711393222213, -0.050752390176057816, 0.03076748549938202, 0.045231252908706665, -0.0032079070806503296, 0.0032026127446442842, -0.048204537481069565, 0.019067471846938133, -0.01670621894299984, -0.011862440034747124, -0.05317080020904541, 0.03808204084634781, 0.02052263543009758, -0.00026116243680007756, -0.0015153661370277405, -0.06317687034606934, 0.011380448937416077, 0.004468829836696386, -0.02893087826669216, -0.06160353124141693, -0.034670401364564896, -0.0015150598483160138, -0.033273112028837204, 0.019799545407295227, 0.02542552724480629, -0.003760384162887931, 0.027285588905215263, 0.010064543224871159, -0.028396716341376305, 0.01349474024027586, -0.01006870437413454, -0.05966664478182793, -0.02443331852555275, -0.024797022342681885, -0.019336415454745293, 0.013211783021688461, -0.006112139206379652, 0.00277182855643332, 0.025830762460827827, 0.0449381023645401, -0.011192405596375465, 0.03112724795937538, -0.014689293690025806, -0.012492787092924118, 0.004596163518726826, 0.017130212858319283, -0.05191486328840256, 0.03738674521446228, -0.04301197826862335, -0.029662858694791794, -0.036024246364831924, 0.008689157664775848, -0.009612921625375748, -0.0386013500392437, -0.025509603321552277, 0.039098240435123444, -0.03840175271034241, -0.0315265990793705, -0.028394045308232307, 0.0308344978839159, 0.03994922712445259, -0.013956205919384956, 0.02185557223856449, -0.014539177529513836, -0.006432010792195797, 0.028070731088519096, -0.008338370360434055, -0.01058297511190176, 0.0059264726005494595, -0.014751904644072056, 0.006552061066031456, -0.010599449276924133, -0.009386611171066761, 0.03872824087738991, -0.014838422648608685, -0.004915060009807348, -0.003132459009066224, 0.022176988422870636, 0.03656245395541191, 0.04666675999760628, 0.03050123155117035, -0.004930091556161642, -0.009427427314221859, -0.011014522984623909, -0.0016998257488012314, -0.05060071870684624, -0.01567818410694599, 0.0006661716033704579, 0.03285790607333183, -0.045111801475286484, -0.06968709826469421, 0.02122509479522705, 0.008740690536797047, -0.017052311450242996, 0.01861581951379776, 0.0399177223443985, -0.0017571544740349054, -0.018885178491473198, 0.012458481825888157, 0.07260401546955109, -0.071309894323349, 0.0012380547123029828, -0.011324992403388023, 0.01749776117503643, 0.020394520834088326, 0.014194834046065807, -0.04972076788544655, -0.003324024146422744, -0.018994368612766266, 0.005337142385542393, -0.06944427639245987, -0.024364767596125603, -0.013783829286694527, 0.001081677619367838, -0.008478108793497086, 0.018319956958293915, -0.023362932726740837, -0.010201827622950077, -0.003327674465253949, -0.05088481307029724, 0.008962827734649181, -0.039933640509843826, -0.019483359530568123, 0.04297042638063431, -0.022035256028175354, 0.034051645547151566, -0.01900722272694111, 0.03131204843521118, 0.033129721879959106, -0.01781298778951168, -0.026227036491036415, -0.0476045235991478, -0.0034243506379425526, 0.0002394369657849893, 0.0331096351146698, 0.00926338229328394, -0.02077018842101097, -0.016457578167319298, 0.0033464119769632816, -0.04814399406313896, -0.012926940806210041, -0.008441174402832985, -0.03275012597441673, 0.0357472226023674, 0.05125338211655617, 0.010847712866961956, 0.02946857549250126, -0.003193620825186372, -0.006185201462358236, 0.04718020185828209, -0.0821206271648407, 0.004093638155609369, -0.025633670389652252, -0.05532385781407356, 0.03831937164068222, 0.0020904969424009323, 0.025070827454328537, -0.043338626623153687, 0.037848491221666336, 0.010811992920935154, 0.02732274681329727, 0.042368266731500626, -0.030622661113739014, 0.0072439294308424, -0.04954085871577263, 0.01660769432783127, -0.0819736123085022, 0.028776228427886963, 0.04957441985607147, -0.00015498316497541964, 0.0025896267034113407, 0.014426779933273792, -0.05639754980802536, 0.05420748144388199, -0.06723584234714508, 0.0030452033970505, 0.04121003299951553, -0.009920810349285603, -0.01297940593212843, -0.006092461291700602, -0.057185590267181396, 0.004733261652290821, 0.03702323138713837, -0.039131417870521545, -0.003448642324656248, -0.039591770619153976, 0.061012860387563705, -0.0033812758047133684, 0.041327524930238724, 0.003030314575880766, -0.002452102955430746, 0.0830140933394432, 0.019311334937810898, 0.03196899592876434, 0.050523824989795685, -0.018151037395000458, 0.03114870935678482, 0.010738787241280079, 0.00998199637979269, 0.0008525138255208731, -0.00987303163856268, -0.01739257201552391, -0.051210321485996246, 0.052002523094415665, 0.004416563548147678, -0.055579159408807755, -0.033652711659669876, 0.07519028335809708, 0.006067540962249041, -0.03951844573020935, -0.06558427959680557, 0.018572021275758743, -0.042622972279787064, -0.03784162178635597, -0.0021399182733148336, 0.009094654582440853, -0.021288862451910973, 0.07258817553520203, -0.004086376167833805, -0.002160298405215144, 0.07029351592063904, -0.014242385514080524, -0.04037328064441681, -0.01175029668956995, 0.1095920130610466, 0.07896801829338074, 0.024501672014594078, 0.0009715821943245828, 0.06440681219100952, -0.020308855921030045, -0.05217877775430679, 0.005597164388746023, -0.023651622235774994, 0.019847447052598, -0.011759510263800621, 0.009806262329220772, 0.03208879008889198, -0.03325285762548447, 0.049966901540756226, -0.01564958319067955, -0.007003920618444681, 0.03462165221571922, 0.01257566548883915, 0.008013292215764523, 0.04522179812192917, 0.02898351661860943, 0.024882081896066666, 0.0041754161939024925, -0.028000358492136, 0.04023469612002373, -0.063278928399086, -0.005639643874019384, 0.016674576327204704, -0.03646431490778923, 0.05215658247470856, 0.025484029203653336, 0.03545873984694481, 0.07906808704137802, -0.03378335386514664, -0.011473977006971836, -0.009299038909375668, 0.044705308973789215, 0.017807001248002052, 0.005329265259206295, -0.008629591204226017, -0.01368477288633585, -0.0229987483471632, -0.027252400293946266, -0.0076745678670704365, -0.020221512764692307, -0.02911270782351494, 0.029785042628645897, -0.020958350971341133, 0.03789743036031723, 0.026996353641152382, 0.00036692144931294024, -0.016153747215867043, -0.05026382952928543, -0.053773123770952225, -0.02637001872062683, -0.06857972592115402, -0.02583165653049946, 0.03066815622150898, -0.016778357326984406, -0.02336931601166725, -0.02956063486635685, 0.006211870815604925, -0.012119789607822895, 0.04723060131072998, -0.048896223306655884, -0.039549488574266434, 0.014156162738800049, 0.018987219780683517, 0.031877145171165466, 0.029252758249640465, 0.051669105887413025, -0.0008537247194908559, -0.0005182711756788194, -0.039455585181713104, -0.0025171830784529448, 0.0299085583537817, 0.0012382407439872622, 0.021422749385237694, -0.04429074749350548, 0.014478382654488087, 0.031852539628744125, 0.003607502207159996, -0.05782095342874527, -0.010835975408554077, 0.008195169270038605, -0.014188218861818314, 0.06821282207965851, -0.06350159645080566, 0.015563706867396832, -0.04769961163401604, 0.003016555216163397, 0.016352906823158264, 0.04245038703083992, 0.02487681247293949, -0.020722003653645515, 0.08591597527265549, -0.0023050892632454634, -0.049431294202804565, -0.02300875633955002, -0.01331331953406334, 0.007999151013791561, -0.004565340932458639, -0.019097205251455307, -0.02911248430609703, -0.03826160356402397, -0.07961434870958328, -0.029839666560292244, 0.04069099202752113, -0.010827064514160156, -0.01564495451748371, 0.022389687597751617, -0.005733235739171505, -0.025130506604909897, 0.015777094289660454, -0.035039328038692474, 0.053932640701532364, -0.03257009759545326, 0.002438161987811327, 0.010319731198251247, 0.03906608745455742, -0.016573961824178696, 0.01121919322758913, 0.043690748512744904, -0.025308912619948387, -0.015379303134977818, -0.01173039898276329, 0.009112752042710781, 0.027940817177295685, -0.02996714413166046, -0.02461688593029976 ]
[ -0.11347316950559616, 0.013177347369492054, -0.018884390592575073, -0.034775812178850174, 0.03128589317202568, -0.038033999502658844, 0.010215673595666885, 0.006561439950019121, 0.005270327907055616, 0.009378910064697266, -0.027378521859645844, -0.06157800555229187, -0.015931852161884308, -0.0059038191102445126, 0.07133345305919647, -0.016512947157025337, -0.019350994378328323, -0.04910612106323242, -0.02209288254380226, 0.002846544375643134, -0.015116012655198574, 0.022115273401141167, -0.03127347305417061, -0.04046880453824997, 0.03580228611826897, 0.06008881330490112, 0.03348476067185402, -0.045417264103889465, 0.017964083701372147, -0.20746764540672302, 0.019947923719882965, 0.002489366801455617, -0.0005401545204222202, -0.007398928049951792, -0.035947106778621674, 0.01809469610452652, -0.002069131936877966, 0.04473960027098656, -0.003052263054996729, 0.02196691744029522, 0.015061591751873493, 0.03325391560792923, -0.03422465920448303, -0.008084751665592194, 0.06425878405570984, 0.012497089803218842, -0.018497221171855927, -0.03024177998304367, 0.006429669912904501, 0.01353198941797018, -0.022775039076805115, -0.030682740733027458, 0.007994359359145164, -0.04989213868975639, 0.02678542211651802, 0.023405030369758606, 0.04445289075374603, 0.06865524500608444, 0.03145959973335266, 0.03041701577603817, 0.013584126718342304, -0.02279907464981079, -0.12537947297096252, 0.09085012972354889, 0.018962882459163666, 0.05084731802344322, -0.03134354576468468, -0.012834858149290085, -0.0003864889149554074, 0.09131115674972534, 0.018022913485765457, -0.006553346756845713, 0.005709684453904629, 0.06144653260707855, 0.0018082131864503026, -0.007812250405550003, -0.0204144474118948, -0.005225790198892355, 0.03014523908495903, 0.00008375766628887504, -0.04687012732028961, -0.01725158281624317, -0.023401256650686264, -0.020767033100128174, -0.03785938024520874, -0.0032514319755136967, -0.0377424992620945, 0.04940870776772499, 0.052705053240060806, 0.04361237213015556, 0.057730305939912796, 0.020455095916986465, 0.004594254307448864, 0.007700443267822266, -0.08868449181318283, -0.025593280792236328, -0.02725904993712902, -0.013293439522385597, -0.07296398282051086, 0.4270067512989044, -0.006734600756317377, -0.04124712944030762, 0.053543660789728165, 0.030860036611557007, -0.004910775925964117, -0.0018988338997587562, -0.01910979673266411, -0.07333595305681229, 0.01063214335590601, -0.037397731095552444, 0.016792671754956245, 0.02415185421705246, 0.02785002812743187, -0.011130423285067081, 0.011899561621248722, -0.0009142127819359303, 0.026730934157967567, 0.023751312866806984, 0.02460123784840107, 0.018695984035730362, 0.0033539931755512953, 0.01019088551402092, -0.017041295766830444, 0.0051355063915252686, 0.002742690034210682, -0.037838712334632874, -0.0011535224039107561, 0.044882550835609436, 0.021302396431565285, -0.014427040703594685, 0.03183899447321892, -0.07798082381486893, -0.08438092470169067, -0.03507021814584732, -0.002508563920855522, 0.03518369421362877, 0.06601551920175552, -0.009426492266356945, 0.04048898071050644, 0.01956118829548359, 0.012400619685649872, -0.036530837416648865, 0.0699542909860611, -0.012890373356640339, -0.05155685171484947, 0.06860889494419098, -0.006202532909810543, -0.02991701103746891, 0.026441119611263275, -0.019332950934767723, 0.0018844293663278222, 0.02558223158121109, -0.009239613078534603, -0.03224558010697365, -0.003723442554473877, 0.005487361922860146, 0.03741034120321274, -0.006045162212103605, -0.034187350422143936, -0.020783692598342896, -0.06123407185077667, -0.03615988418459892, -0.04696974158287048, 0.000707451777998358, 0.040776561945676804, -0.11734266579151154, -0.03286781162023544, 0.014121394604444504, -0.003950498066842556, -0.10134125500917435, 0.004387612454593182, 0.02372698113322258, -0.07674795389175415, 0.0006342546548694372, 0.03492027893662453, 0.0011441672686487436, -0.0017188395140692592, 0.017343809828162193, 0.0643136203289032, 0.01143305841833353, 0.024854838848114014, 0.010351922363042831, -0.013693598099052906, 0.002004476962611079, -0.007412586826831102, -0.06093816086649895, -0.06977970153093338, -0.020842965692281723, -0.004940974060446024, -0.02705356851220131, -0.053581494837999344, -0.018619848415255547, -0.08489172160625458, 0.08343229442834854, -0.023362889885902405, -0.00602981261909008, 0.024580884724855423, -0.035668615251779556, -0.004340495448559523, -0.01887412555515766, -0.015426804311573505, 0.05571729689836502, 0.01051769033074379, 0.04999375343322754, -0.02531789243221283, 0.05827316269278526, 0.06749510020017624, -0.06815637648105621, 0.057823020964860916, 0.023944927379488945, -0.04894663393497467, -0.054190412163734436, -0.018471790477633476, 0.01381707563996315, -0.01469805371016264, -0.010002092458307743, -0.0032656544353812933, -0.0018377952510491014, -0.03040514513850212, 0.02160859853029251, -0.06631286442279816, -0.019950196146965027, 0.005136535502970219, -0.3382796347141266, -0.02394304983317852, -0.007355666719377041, -0.002428231295198202, 0.05040815845131874, -0.04519515484571457, 0.007912006229162216, -0.005820601247251034, 0.00706658186390996, 0.024065177887678146, 0.095992811024189, 0.0009005500469356775, 0.005093969404697418, -0.10084047168493271, 0.014105627313256264, 0.03134923800826073, -0.05997265502810478, -0.06283382326364517, -0.035016018897295, 0.06577660143375397, 0.035631123930215836, -0.010269830003380775, -0.02358315698802471, -0.029323073104023933, -0.020819446071982384, -0.0765453577041626, 0.11998089402914047, -0.00016831005632411689, 0.07008799910545349, -0.05937356501817703, 0.03446012735366821, 0.017933443188667297, 0.020367132499814034, -0.043146513402462006, 0.010458654724061489, -0.026232218369841576, -0.0025655643548816442, -0.013147536665201187, 0.020632069557905197, -0.02548908442258835, -0.029623636975884438, 0.024941354990005493, -0.04373062402009964, -0.07344812154769897, -0.021020278334617615, 0.02829158864915371, -0.0032729145605117083, -0.00009823855361901224, 0.015096822753548622, 0.07120011746883392, 0.016603369265794754, 0.0016596438363194466, 0.03658235818147659, 0.009677411057054996, -0.010601473972201347, 0.0014292403357103467, -0.0730544924736023, 0.04088369011878967, -0.004852882586419582, -0.0016431345138698816, 0.03459577634930611, 0.0409119687974453, 0.04079364240169525, -0.06880268454551697, 0.028030505403876305, 0.04076458886265755, 0.026675211265683174, -0.01739513874053955, 0.04337911680340767, -0.016364144161343575, -0.024788103997707367, 0.043667156249284744, 0.011665523052215576, -0.0046234033070504665, 0.04209648072719574, 0.05654953047633171, 0.02219097502529621, -0.002635310171172023, 0.03630444407463074, 0.01415010541677475, 0.017203867435455322, -0.016048673540353775, 0.030675161629915237, -0.03755882754921913, 0.0007449367549270391, 0.0224491897970438, -0.018082546070218086, -0.012520373798906803, 0.08462343364953995, -0.014915854670107365, -0.0025202869437634945, 0.00876026600599289, -0.01407966110855341, -0.002925836481153965, 0.02798021025955677, -0.021265337243676186, -0.2690746784210205, 0.004293845500797033, 0.1127547174692154, 0.046154823154211044, 0.010327125899493694, 0.018955275416374207, 0.043808888643980026, -0.08107094466686249, -0.009638839401304722, 0.018815232440829277, 0.031083978712558746, 0.02945517934858799, -0.0041659059934318066, -0.045447010546922684, 0.04443167522549629, -0.04037819057703018, 0.03933235630393028, 0.001702931011095643, 0.029014980420470238, -0.00980724673718214, 0.03309626504778862, 0.01708631031215191, 0.17299385368824005, -0.002266385592520237, 0.0125672472640872, 0.014962856657803059, 0.0230894573032856, -0.004327281378209591, 0.05795299634337425, -0.017905976623296738, 0.025559933856129646, 0.004902265500277281, 0.05551019310951233, 0.027850639075040817, 0.020629052072763443, -0.08163148164749146, -0.01958957500755787, 0.04619045928120613, 0.009518971666693687, -0.00957493856549263, -0.0025776836555451155, 0.004601265303790569, -0.04591754451394081, -0.006260073743760586, 0.06929505616426468, 0.040188267827034, -0.022961478680372238, -0.0413692332804203, -0.03742270916700363, -0.030362313613295555, -0.058663539588451385, -0.05285344272851944, 0.01494771521538496, -0.027220336720347404, -0.003433212637901306, 0.06497360020875931, 0.0406637042760849, -0.030631722882390022, -0.01595538668334484, 0.016822367906570435, 0.019181430339813232, 0.014377426356077194, 0.11198453605175018, 0.02925051935017109, 0.008435582742094994 ]
[ -0.0018899275455623865, 0.020914776250720024, -0.03933192044496536, 0.0007598046213388443, -0.018547579646110535, 0.0472416952252388, -0.019604241475462914, 0.015715233981609344, 0.016285954043269157, 0.02296946756541729, -0.011975058354437351, 0.02436683513224125, 0.017197512090206146, 0.004284610040485859, 0.042442601174116135, -0.028503090143203735, 0.02403944730758667, 0.011242112144827843, -0.001076138112694025, 0.00012280272494535893, -0.016258642077445984, -0.0038015858735889196, 0.029736535623669624, -0.013840132392942905, 0.006197439972311258, 0.024671729654073715, 0.00406296830624342, 0.050138987600803375, -0.008500650525093079, -0.1355435699224472, -0.007379455957561731, -0.006111007183790207, 0.0010813088156282902, 0.02599877491593361, 0.0027459431439638138, -0.03657569736242294, -0.011897550895810127, 0.0044678435660898685, -0.026430221274495125, -0.04793155938386917, 0.009640167467296124, 0.010980436578392982, 0.0010256171226501465, 0.0040131001733243465, 0.018641062080860138, 0.008151905611157417, -0.056296493858098984, -0.014138509519398212, 0.019327325746417046, -0.02313285507261753, -0.02149496041238308, 0.015643538907170296, 0.032422591000795364, 0.027698781341314316, 0.06388557702302933, -0.05182027816772461, 0.011160525493323803, -0.027827749028801918, 0.03047441877424717, -0.005865182727575302, 0.014883344061672688, 0.02497531846165657, -0.034264612942934036, -0.02210436388850212, 0.0011556590907275677, -0.03387713059782982, -0.004239690024405718, 0.022102367132902145, -0.025908762589097023, 0.014513777568936348, -0.01376676931977272, -0.0025912816636264324, 0.0015143653145059943, 0.007988541387021542, 0.0005713949212804437, -0.009387497790157795, -0.010976419784128666, -0.0009550823015160859, -0.03537621721625328, 0.011294056661427021, -0.056253742426633835, -0.012975889258086681, 0.012410843744874, 0.039376094937324524, 0.02215559035539627, 0.028311122208833694, 0.02141966111958027, 0.011922723613679409, 0.03712523356080055, 0.01809965819120407, -0.04588005691766739, 0.023500267416238785, 0.015839537605643272, 0.01205755490809679, -0.06839475780725479, 0.008488642983138561, -0.029057703912258148, -0.01145520992577076, -0.03497619926929474, 0.8294656872749329, 0.006025536917150021, 0.026279453188180923, 0.05403873696923256, 0.026094116270542145, 0.017739076167345047, 0.047263387590646744, 0.005713413469493389, 0.0033503405284136534, 0.04555410146713257, -0.04866955801844597, 0.018050896003842354, 0.040871430188417435, 0.03281804546713829, 0.013667122460901737, -0.02815401367843151, 0.01224441360682249, 0.005856103263795376, 0.008099487982690334, 0.0004826355434488505, 0.016106966882944107, 0.013817018829286098, 0.02839312143623829, -0.021382037550210953, 0.011953292414546013, 0.05894738435745239, -0.1478111743927002, -0.01799195073544979, -7.760125139289182e-33, 0.0035359510220587254, -0.04448016360402107, 0.0012300038943067193, -0.012090712785720825, -0.013430513441562653, -0.022667348384857178, 0.01357208751142025, 0.007826647721230984, 0.024669907987117767, -0.011028260923922062, 0.041469477117061615, -0.01915365271270275, 0.009803202003240585, -0.025137031450867653, 0.041497617959976196, -0.0068992916494607925, -0.03188176825642586, 0.022645972669124603, 0.022420894354581833, 0.06677225977182388, -0.0002555982500780374, -0.004065148066729307, -0.003186598652973771, 0.011880666017532349, -0.026341456919908524, 0.04119441285729408, 0.050295088440179825, -0.031031610444188118, -0.005266538355499506, -0.03176245465874672, 0.005462287925183773, 0.015285192988812923, -0.0211405660957098, -0.014689251780509949, 0.009726320393383503, -0.03779467195272446, -0.0027258191257715225, -0.014567960985004902, -0.05837532877922058, -0.02144412323832512, -0.015362437814474106, -0.04440321400761604, -0.07805264741182327, 0.007813232950866222, -0.02494826354086399, -0.0307900533080101, -0.009045575745403767, 0.02992870658636093, 0.033876609057188034, 0.03184770792722702, -0.003235985292121768, 0.03441322222352028, 0.02786225639283657, -0.00382728292606771, -0.025080332532525063, 0.026256943121552467, 0.012611711397767067, 0.01742086000740528, -0.01619630865752697, -0.0009469665237702429, -0.009994021616876125, -0.03237951546907425, -0.04888762906193733, 0.04293586686253548, 0.004836936015635729, -0.002391745802015066, -0.007122242357581854, -0.004641846287995577, 0.0004469390260055661, 0.01003637071698904, -0.05740688741207123, 0.00043669063597917557, -0.020393723621964455, 0.01940547116100788, -0.016555704176425934, -0.035740312188863754, -0.0012801737757399678, 0.032483771443367004, -0.0028736647218465805, 0.018152283504605293, 0.0250263512134552, -0.020763881504535675, -0.030905062332749367, -0.02558412030339241, -0.0028043058700859547, 0.012450678274035454, 0.029189249500632286, -0.04872487485408783, -0.0054157804697752, 0.01601308025419712, 0.02104181982576847, 0.007227424997836351, -0.03455319628119469, -0.0031400348525494337, -0.036498524248600006, 7.251045719254912e-33, -0.034219320863485336, 0.0006542163901031017, -0.059097129851579666, 0.02899390459060669, 0.01894460618495941, -0.040426306426525116, 0.0010007221717387438, 0.0028276978991925716, -0.047596365213394165, 0.02130187302827835, -0.007546373642981052, -0.011344190686941147, -0.014874338172376156, 0.021204600110650063, 0.04867316037416458, -0.00519665889441967, 0.021148499101400375, -0.009439808316528797, 0.03446117416024208, -0.006545694544911385, 0.027266159653663635, 0.02507980912923813, 0.03590356186032295, -0.009913926012814045, -0.012435534037649632, 0.040896106511354446, -0.02133132517337799, 0.03681619465351105, -0.02559133991599083, -0.0023947928566485643, 0.0203508660197258, -0.01196556631475687, 0.01824086345732212, -0.007711575832217932, -0.034614600241184235, 0.03705998510122299, 0.006257032509893179, -0.015524043701589108, -0.008585616014897823, 0.026624245569109917, -0.0009069623192772269, -0.011455656029284, -0.0380755215883255, 0.029359936714172363, -0.02120574750006199, 0.013774635270237923, 0.00787798035889864, -0.00255589815787971, 0.030447067692875862, 0.010084785521030426, 0.00063241773750633, 0.044644977897405624, 0.005845434498041868, 0.01324198953807354, 0.008939828723669052, -0.0319194421172142, 0.007616966962814331, -0.03347218781709671, -0.0026643264573067427, 0.010356416925787926, -0.026647279039025307, 0.05078234523534775, 0.00026358800823800266, 0.016303865239024162, 0.00861573126167059, 0.004452010150998831, -0.016984686255455017, -0.03355909511446953, -0.015811624005436897, -0.002630574395880103, -0.05047553777694702, 0.03403737396001816, 0.040254365652799606, 0.057875022292137146, 0.005038007162511349, -0.007901309058070183, -0.031078627333045006, 0.02380228042602539, -0.025474047288298607, 0.00594166899099946, -0.0005500874831341207, 0.004613678436726332, -0.01121500227600336, -0.00670914351940155, -0.0139301223680377, 0.020354969426989555, -0.019546737894415855, 0.023126117885112762, -0.0026833771262317896, -0.016093794256448746, 0.04319854825735092, 0.0287876408547163, 0.0032797898165881634, -0.02007284015417099, -0.006368017755448818, -1.3129245246545906e-8, -0.027626702561974525, 0.002369923749938607, -0.07641306519508362, -0.000026403580704936758, 0.010926627553999424, 0.023411443457007408, -0.031133554875850677, -0.02595173381268978, -0.03919371962547302, 0.004995047114789486, 0.074134960770607, 0.015743300318717957, -0.021699897944927216, -0.000458496535429731, 0.031144816428422928, -0.06964094936847687, -0.03358856588602066, 0.0017509449971839786, 0.010546905919909477, 0.032029420137405396, 0.030900804325938225, 0.021176127716898918, 0.0033218248281627893, 0.0161956325173378, -0.02895434945821762, 0.0019931262359023094, -0.008383632637560368, -0.09474965184926987, 0.008921582251787186, 0.002341160085052252, -0.00036418120726011693, -0.017660295590758324, -0.0006616089958697557, -0.00010486235987627879, -0.019594838842749596, -0.03900688886642456, 0.027528705075383186, 0.011462066322565079, 0.0313686765730381, 0.02597789466381073, -0.06586791574954987, -0.024077262729406357, -0.03961080312728882, -0.0346476174890995, -0.01921921968460083, -0.012638547457754612, -0.06839272379875183, -0.014925023540854454, -0.01548963226377964, -0.05076124146580696, -0.00408191978931427, 0.01589522883296013, 0.005705326329916716, 0.00608797837048769, 0.015252050012350082, 0.023881476372480392, 0.004120097495615482, -0.06593935936689377, -0.009077236987650394, 0.003681186120957136, 0.026665879413485527, 0.0011235675774514675, -0.02005007117986679, -0.0070867277681827545 ]
javascript-bowling-game-kata
https://markhneedham.com/blog/2010/02/22/javascript-bowling-game-kata
false
2010-02-25 08:03:12
Pair Programming: In interviews
[ "pair-programming" ]
[ "Pair Programming" ]
I came across a couple of quite interesting blog posts recently which described http://blog.thirstybear.co.uk/2010/02/don-just-interview-new-developers_03.html[some approaches] http://www.davenicolette.net/agile/index.blog/1947137/the-new-interview/[to interviewing] which suggest a more empirical approach to interviewing whereby the interview is treated more like an audition for the person being interviewed. I like this idea and it's something that we do when recruiting developers in a pair programming interview. The general idea is that we pair with the candidate as they go through a coding problem. It's perhaps a little different from a normal pairing session in that the interviewee is more than likely driving for the majority of the session. Sometimes we might also have another interviewer observing the pairing session and giving input where necessary. While many people may not have specifically pair programmed before nearly everyone has worked with someone else at one computer on a problem so I haven't ever found that a candidate finds it too much of a leap because they're used to working alone. One of the really cool things about a pair programming interview is that it's much closer to what a real situation on a project would be like which I think helps you to gain a more accurate picture of the skill level and potential of the interviewee. As an interviewer you get the chance to see how quickly the interviewee will pick up new ideas, to an extent how well they work with other people and first hand experience of their level of expertise when it comes to coding. From my experience of other types of interviews it can be quite difficult to tell exactly how much knowledge someone has in a specific topic but in a pair programming you can just see for yourself so it works out quite well in that sense. It's certainly not fool proof and I quite like the way that Hash Rocket have taken this idea to the next level and http://blog.obiefernandez.com/content/2009/09/10-reasons-pair-programming-is-not-for-the-masses.html[get people to come there and pair program with them] for a week before they get hired. This seems like the next logical step and I guess if you have the ability to do this and candidates are prepared to give up their time then it's a really useful approach. As http://blog.knuthaugen.no/2010/02/employee-view-of-agile-interviews.html[Knut Haugen points out], the interview process is as much an opportunity for the employee to work out if they actually want to work for the potential employer and I think having the opportunity to pair with some of the people who work there is a great chance to assess this. http://www.davenicolette.net/agile/index.blog/1947137/the-new-interview/[Dave Nicolette] suggests that the pairing part of the interview process is considered the only meaningful part of the interview process in the team he's coaching and while I'm not I'd go that far I do think it's a very valuable approach and one I'd recommend even if you don't pair program all the time on your team.
null
null
[ 0.018214799463748932, 0.0027128022629767656, -0.022131452336907387, 0.04851187765598297, 0.08308359235525131, 0.03151454031467438, 0.022475063800811768, 0.04341405630111694, 0.023042067885398865, -0.036629725247621536, -0.03328830748796463, -0.006280045956373215, -0.054751813411712646, -0.01226006168872118, -0.05196623504161835, 0.06379523128271103, 0.044751863926649094, -0.015295024029910564, 0.02163269929587841, -0.0009112201514653862, 0.028976012021303177, 0.06969323754310608, 0.006886064074933529, 0.03861331567168236, 0.0404222197830677, 0.00587045680731535, 0.009685978293418884, -0.005309716798365116, -0.05752191320061684, 0.0005792768206447363, 0.027436789125204086, -0.002410369459539652, 0.026093246415257454, -0.017858659848570824, 0.01686924509704113, -0.020116614177823067, -0.013988494873046875, 0.04557383432984352, 0.011338957585394382, -0.0006540084141306579, -0.06403932720422745, 0.05098983272910118, -0.008719483390450478, 0.011466940864920616, -0.03518666699528694, 0.00035975046921521425, -0.030818575993180275, 0.012101785279810429, 0.001687907730229199, 0.013646190986037254, -0.07494883239269257, 0.034965019673109055, 0.0026701348833739758, -0.0032843034714460373, 0.002985746134072542, 0.0424102321267128, 0.031179938465356827, -0.048224858939647675, -0.00006079762533772737, -0.043725233525037766, -0.007301977835595608, -0.008217940106987953, 0.005273123737424612, 0.029067499563097954, 0.03916821628808975, -0.02747795730829239, 0.01409954484552145, 0.03498506918549538, -0.027518421411514282, 0.007786575239151716, -0.0152509193867445, -0.0017998850671574473, -0.018047165125608444, -0.02365487441420555, -0.002985296305269003, -0.03663382679224014, 0.005717761814594269, 0.06489292532205582, 0.026449834927916527, 0.045213982462882996, -0.026484722271561623, 0.022188322618603706, 0.003749224590137601, 0.03500494733452797, -0.021771961823105812, -0.027034305036067963, 0.009820514358580112, -0.02650781348347664, -0.07967206835746765, 0.044803448021411896, 0.019375180825591087, -0.07866220921278, 0.03367052972316742, 0.04906121641397476, -0.0014767557149752975, 0.02898012474179268, 0.02521391771733761, -0.0024812184274196625, -0.008845105767250061, -0.019067855551838875, -0.01665489748120308, -0.003917365800589323, 0.01433300506323576, -0.006552698090672493, -0.07825759053230286, 0.0037434997502714396, -0.0049451920203864574, -0.019872985780239105, -0.020530367270112038, 0.023252174258232117, -0.019779091700911522, 0.02847764827311039, -0.02136761136353016, 0.010416870005428791, -0.06749279052019119, 0.06921174377202988, -0.0047391252592206, -0.04287601634860039, -0.01937774010002613, -0.017779892310500145, 0.03072351962327957, 0.02594711259007454, -0.014468228444457054, 0.08314122259616852, -0.0017548761097714305, 0.021321695297956467, -0.014086589217185974, 0.059156861156225204, -0.013383474200963974, -0.054950051009655, -0.029467595741152763, 0.04923614487051964, -0.02800440974533558, -0.0037111658602952957, -0.0007255274686031044, -0.03164944052696228, -0.004771252628415823, 0.006091489922255278, 0.021653935313224792, 0.055973466485738754, -0.026500878855586052, -0.02421657182276249, 0.028169997036457062, 0.0047416831366717815, 0.010116568766534328, -0.02153012901544571, -0.011083286255598068, -0.028113560751080513, -0.051144346594810486, 0.00038404870429076254, 0.025887472555041313, 0.022492611780762672, 0.01274604257196188, -0.057746097445487976, 0.021969866007566452, 0.07822583615779877, 0.03319882974028587, 0.007398011162877083, -0.014973722398281097, 0.024233466014266014, 0.036532074213027954, 0.007484401576220989, 0.007178081199526787, 0.02570587769150734, 0.010508999228477478, -0.0025413616094738245, 0.0015903508756309748, 0.02872532792389393, 0.001923721400089562, 0.031191393733024597, -0.05586565285921097, -0.022624999284744263, 0.04320260137319565, -0.03281146660447121, -0.04197103902697563, 0.03804463893175125, 0.05751730501651764, 0.02767406962811947, 0.03561965748667717, 0.016436094418168068, -0.07193156331777573, 0.03043328784406185, 0.014249698258936405, 0.027553187683224678, 0.02618292160332203, -0.03252732381224632, 0.04616348072886467, 0.039972513914108276, -0.018829312175512314, 0.04091447964310646, -0.07440978288650513, -0.09001842886209488, -0.030165964737534523, -0.016894802451133728, 0.05110270902514458, -0.02649707719683647, 0.011210409924387932, 0.0717083215713501, 0.02568717859685421, 0.04268881306052208, 0.046048786491155624, 0.011557349935173988, 0.013178247027099133, -0.031541723757982254, -0.04501999914646149, 0.06984417885541916, 0.05744357034564018, -0.010259458795189857, -0.06321562081575394, 0.027415836229920387, -0.016656316816806793, 0.00772274611517787, 0.035110682249069214, -0.042924799025058746, 0.053847502917051315, 0.019175002351403236, 0.06070661172270775, -0.021828174591064453, 0.06819072365760803, -0.04219532757997513, 0.03768312931060791, 0.0014955230290070176, -0.024920077994465828, 0.013605959713459015, 0.00806219782680273, 0.10904571413993835, 0.07058332860469818, -0.06482520699501038, -0.02902830019593239, 0.01930331066250801, 0.03548295795917511, -0.015963749960064888, 0.010706635192036629, -0.0034328196197748184, 0.004727371968328953, 0.005327162798494101, -0.06381133198738098, -0.0266842320561409, 0.02709650993347168, -0.050445880740880966, 0.008977770805358887, 0.07006638497114182, -0.028353391215205193, 0.049229469150304794, -0.019853785634040833, -0.013743612915277481, 0.0009053171379491687, -0.023874687030911446, -0.040487322956323624, 0.011695978231728077, 0.021406952291727066, -0.02701450139284134, 0.03519070893526077, -0.01821020431816578, -0.022505970671772957, -0.044032417237758636, -0.02994411624968052, -0.00018130494572687894, 0.05489518493413925, 0.061013102531433105, -0.003970175050199032, 0.04629615694284439, -0.002667950000613928, 0.03639035299420357, -0.004082813858985901, -0.028315292671322823, -0.032759733498096466, -0.020623616874217987, -0.011737814173102379, 0.0429641529917717, -0.00525543000549078, 0.024914497509598732, 0.016957975924015045, 0.006203797645866871, -0.028336789458990097, -0.008941413834691048, 0.021208109334111214, 0.006140376441180706, -0.0054927715100348, -0.039927851408720016, -0.02140926942229271, 0.031456973403692245, -0.04614892229437828, -0.014433778822422028, 0.009616751223802567, -0.08106803148984909, 0.02056068740785122, -0.07251280546188354, -0.06086825206875801, -0.0037772669456899166, 0.011879855766892433, 0.05685065686702728, 0.005357752554118633, 0.017581436783075333, 0.07968194037675858, -0.009377232752740383, 0.037005715072155, 0.0023643621243536472, 0.011406566016376019, 0.03937916085124016, 0.020917337387800217, -0.0009447384509257972, 0.028885172680020332, -0.018286094069480896, -0.016960101202130318, -0.05353463813662529, 0.075094074010849, -0.02757406048476696, -0.31376543641090393, 0.03361772373318672, 0.0038651025388389826, -0.047331880778074265, 0.014298789203166962, -0.03339359536767006, 0.005985218100249767, -0.050580404698848724, -0.01641170121729374, 0.02650173380970955, -0.06116681918501854, -0.03214316442608833, -0.04855118691921234, 0.04651520401239395, -0.002641340484842658, 0.027446234598755836, 0.034658417105674744, -0.02504521608352661, 0.012653517536818981, 0.052403099834918976, -0.020153604447841644, -0.06424567103385925, 0.0034820830915123224, 0.03302861005067825, 0.040536124259233475, 0.052898939698934555, -0.07944603264331818, 0.03369000181555748, -0.05436985567212105, -0.0052563282661139965, 0.012536736205220222, 0.005527542904019356, 0.02039027214050293, -0.014886564575135708, -0.020708052441477776, -0.010480321012437344, 0.06101823225617409, -0.007795312441885471, 0.0031473669223487377, 0.008772569708526134, -0.03554004430770874, -0.03617016598582268, -0.005711197387427092, 0.011566387489438057, 0.05900970846414566, -0.01552635058760643, -0.07675953954458237, 0.0005352344596758485, 0.0005845387931913137, 0.05919981375336647, -0.04014832153916359, -0.025922542437911034, -0.009943034499883652, 0.047811269760131836, -0.00635863421484828, -0.017779262736439705, 0.004069607239216566, -0.0055168429389595985, -0.03174518793821335, -0.03534075617790222, 0.00040221778908744454, -0.033137667924165726, -0.013446373865008354, -0.05436205118894577, 0.017806317657232285, -0.07220165431499481, -0.061876170337200165, -0.01652098447084427, 0.07212299853563309, 0.004487825557589531, -0.022999394685029984, 0.0077280811965465546, 0.013242002576589584, -0.1034550741314888, -0.008206437341868877, 0.012353222817182541, -0.040283773094415665, 0.0020266922656446695, 0.012916742824018002, 0.060048408806324005, -0.03799837455153465, -0.05356517806649208, 0.04589816927909851, -0.0037567373365163803, 0.03296687453985214, -0.020267490297555923, 0.04014911130070686, 0.028065044432878494, -0.036067962646484375, 0.008981907740235329, 0.06438229978084564, -0.005116567946970463, -0.01885261759161949, -0.02058282494544983, 0.04169450327754021, 0.017972683534026146, 0.029594987630844116, -0.023579701781272888, -0.00034486170625314116, 0.029225733131170273, -0.03321905434131622, -0.036085065454244614, 0.019621457904577255, -0.002065455075353384, -0.00015255785547196865, -0.015117979608476162, -0.052077218890190125, 0.014914050698280334, 0.04396869242191315, 0.036086905747652054, -0.0005234679556451738, -0.03208082169294357, -0.009146690368652344, -0.04226704686880112, -0.025134826079010963, -0.02155611291527748, 0.007885057479143143, 0.0419376902282238, -0.01926092803478241, 0.010417557321488857, -0.06792367994785309, -0.0016391281969845295, -0.007237603422254324, 0.013444495387375355, -0.07189779728651047, -0.02687913551926613, -0.018474500626325607, -0.03037972003221512, 0.0162480641156435, 0.024721039459109306, -0.01810884103178978, 0.038517508655786514, 0.009806699119508266, -0.05176654830574989, 0.029949244111776352, -0.016118355095386505, -0.05021092668175697, -0.022655433043837547, -0.0006419923738576472, 0.003745874622836709, -0.0020928664598613977, 0.029173925518989563, -0.003706576768308878, 0.014830777421593666, 0.03937406465411186, 0.01577024720609188, 0.020639188587665558, -0.028640948235988617, 0.01282467506825924, 0.00861609261482954, -0.002767035271972418, -0.07306085526943207, 0.0013261919375509024, -0.04228682070970535, -0.027237320318818092, -0.032970599830150604, 0.03199237585067749, -0.0036018011160194874, -0.02936043031513691, -0.0036071971990168095, 0.016830196604132652, -0.06623121351003647, -0.02486831322312355, -0.02771243080496788, 0.04633895307779312, 0.07570438832044601, -0.02679317072033882, 0.024862363934516907, -0.030783100053668022, -0.010625254362821579, -0.013219565153121948, 0.013026135973632336, -0.05549388751387596, -0.015694396570324898, 0.013162865303456783, -0.009259000420570374, -0.003339906223118305, 0.008277235552668571, 0.0332062728703022, 0.006436606869101524, 0.004972164053469896, -0.01605432666838169, 0.00042549477075226605, 0.027262479066848755, 0.05119367688894272, 0.018402591347694397, 0.0008683311170898378, -0.007916299626231194, -0.025260232388973236, -0.020628293976187706, -0.06077192723751068, -0.019712531939148903, 0.018376417458057404, 0.031611524522304535, -0.03688894957304001, -0.06322264671325684, 0.04168279096484184, 0.024357657879590988, -0.01701899617910385, 0.010634464211761951, -0.020620325580239296, -0.012124529108405113, -0.01741071417927742, 0.03706501051783562, 0.06334398686885834, -0.05875549465417862, -0.0010404791682958603, -0.01889222487807274, -0.004459340590983629, -0.015515119768679142, -0.0025815791450440884, -0.037031278014183044, -0.017837045714259148, -0.022822462022304535, 0.0051847477443516254, -0.0781312957406044, -0.021234460175037384, -0.014140835963189602, 0.005482262931764126, 0.00725946668535471, -0.014858084730803967, -0.01046602800488472, -0.0204812902957201, -0.03161928057670593, -0.02084311842918396, 0.00045026978477835655, -0.059595562517642975, -0.0059165917336940765, 0.0008369738352485001, -0.04133300110697746, -0.0011249904055148363, -0.02998296171426773, 0.015434525907039642, 0.013219363987445831, -0.028295030817389488, -0.002521788002923131, -0.02803938090801239, 0.02039448730647564, 0.02131458930671215, 0.02940080687403679, -0.008086387068033218, -0.04275466129183769, -0.03539946675300598, -0.008790174499154091, -0.029301637783646584, 0.011566602624952793, -0.032458193600177765, -0.005123327951878309, 0.03098166733980179, 0.05924530699849129, 0.040919192135334015, 0.0476839542388916, -0.018856806680560112, -0.01447328645735979, 0.036982614547014236, -0.04356635734438896, -0.02973029948771, -0.025657881051301956, -0.06469840556383133, -0.003265670733526349, 0.0052099465392529964, 0.024536073207855225, -0.05313210189342499, 0.034768156707286835, 0.014283646829426289, 0.0407918244600296, 0.03323604166507721, 0.005076216533780098, 0.03746611624956131, -0.058935992419719696, -0.001901994924992323, -0.06606444716453552, -0.015439855866134167, 0.04041890427470207, 0.02656826749444008, 0.007856566458940506, -0.01370969507843256, -0.022863844409585, 0.03939201310276985, -0.06087435036897659, -0.014739220030605793, 0.04158923402428627, -0.01177436113357544, -0.024266721680760384, 0.02238929457962513, -0.06174253672361374, 0.024521073326468468, 0.01906239055097103, -0.03928472474217415, -0.0217521283775568, -0.011480852961540222, 0.054765041917562485, 0.004911397583782673, 0.048101264983415604, -0.027542928233742714, -0.020579123869538307, 0.07938475161790848, 0.014893035404384136, -0.010293102823197842, 0.04784500598907471, -0.0006714619812555611, 0.028977230191230774, 0.04169008508324623, 0.007728423923254013, -0.011259105056524277, 0.01883288100361824, 0.00031144937383942306, -0.06825733184814453, 0.019625090062618256, 0.004002026282250881, -0.03896574676036835, -0.016065264120697975, 0.04515779763460159, 0.027962742373347282, -0.045007381588220596, -0.04501965641975403, 0.01000511460006237, -0.0583186000585556, 0.014978356659412384, -0.021966993808746338, -0.005774240475147963, -0.060978006571531296, 0.04015100374817848, 0.010964225977659225, 0.013017219491302967, 0.06655188649892807, 0.008853977546095848, -0.036157093942165375, -0.018509838730096817, 0.08459624648094177, 0.07220059633255005, 0.07847385108470917, 0.020756322890520096, 0.06400052458047867, -0.02109207585453987, -0.03674277290701866, 0.020681900903582573, 0.010497437790036201, -0.015804985538125038, -0.022177675738930702, 0.0034509366378188133, 0.06293138861656189, -0.011873244307935238, 0.07263906300067902, -0.011260531842708588, -0.02881556749343872, 0.016404196619987488, 0.04642210900783539, 0.011896179057657719, 0.07833846658468246, 0.0002281648776261136, -0.0036794093903154135, -0.043008770793676376, -0.05106021836400032, 0.02238454483449459, -0.045702580362558365, -0.025442369282245636, 0.03583558276295662, -0.0005820783553645015, 0.03636021167039871, 0.0011014618212357163, 0.0172427911311388, 0.07341846823692322, -0.06116736680269241, 0.024380864575505257, -0.020668188109993935, 0.03407750278711319, -0.022807639092206955, 0.027357129380106926, -0.01998540759086609, -0.015658685937523842, 0.004098567180335522, -0.03372715413570404, -0.031625568866729736, -0.019085856154561043, -0.013894564472138882, 0.04299269616603851, -0.02875864878296852, 0.004005867056548595, 0.026992343366146088, 0.01872912049293518, -0.027730034664273262, -0.0677889958024025, -0.01937054842710495, -0.029342282563447952, -0.03530367836356163, -0.016771938651800156, 0.03390488773584366, 0.0009501584572717547, -0.029581710696220398, 0.018000872805714607, -0.026254935190081596, -0.015286936424672604, 0.05207165703177452, -0.05137256532907486, -0.02167714759707451, 0.009123860858380795, 0.022070245817303658, 0.053983818739652634, 0.0239430982619524, 0.03528702259063721, -0.024250144138932228, -0.0039877453818917274, -0.022064300253987312, 0.01319557148963213, 0.02663707546889782, 0.012713355012238026, -0.008418120443820953, -0.07738328725099564, 0.007624178193509579, 0.03935714438557625, -0.0057249516248703, -0.04976373538374901, 0.03339046612381935, -0.005929063074290752, 0.010714211501181126, 0.051806218922138214, -0.012037836946547031, 0.028387175872921944, -0.04057979956269264, -0.005940890405327082, -0.014868069440126419, -0.01035007182508707, 0.045082397758960724, -0.025447135791182518, 0.08008795976638794, 0.013304256834089756, -0.006750402040779591, -0.03982149809598923, -0.01783338561654091, 0.022461416199803352, 0.021296143531799316, 0.006520748604089022, -0.03386182710528374, -0.03303797170519829, -0.06945174932479858, -0.028447449207305908, 0.027265382930636406, -0.011373469606041908, -0.03561665862798691, 0.024993283674120903, 0.023229768499732018, -0.0272211953997612, 0.018386563286185265, -0.055048875510692596, 0.05750478804111481, -0.033000946044921875, 0.009230183437466621, 0.004897735081613064, -0.01726585626602173, -0.032402150332927704, -0.017814192920923233, 0.009160331450402737, -0.051989004015922546, 0.0006346817244775593, 0.0034797212574630976, 0.03084224835038185, 0.02791169472038746, 0.017958329990506172, -0.0010914154117926955 ]
[ -0.0941721573472023, 0.016294222325086594, -0.043930038809776306, -0.04269464313983917, 0.04250769689679146, -0.015931949019432068, -0.006252399180084467, -0.01158739160746336, -0.006209338549524546, -0.03848987817764282, -0.0017079701647162437, 0.0015399493277072906, 0.025525260716676712, -0.03449239581823349, 0.08076458424329758, 0.013121808879077435, -0.0004749552463181317, -0.061671335250139236, -0.004678355995565653, 0.03338360786437988, -0.010809727944433689, -0.04525339975953102, -0.06252015382051468, -0.0408019945025444, 0.004067453555762768, 0.02470274269580841, 0.01821223646402359, -0.056824397295713425, 0.03235463425517082, -0.16010607779026031, 0.012592033483088017, 0.04719776660203934, 0.06678657233715057, -0.019213775172829628, 0.0002229700912721455, 0.07403227686882019, 0.015386229380965233, 0.022475212812423706, -0.026088548824191093, 0.017521895468235016, 0.018373122438788414, -0.0031967698596417904, -0.05071946978569031, -0.04368181526660919, 0.033683810383081436, 0.012913193553686142, -0.01173199899494648, -0.06759268790483475, -0.058892618864774704, 0.022852931171655655, -0.04525686427950859, -0.07305289804935455, -0.03482307493686676, -0.04069520905613899, -0.027199985459446907, 0.04581424593925476, 0.03790920600295067, 0.028984470292925835, -0.04672643169760704, 0.03859150782227516, 0.013245603069663048, -0.033207349479198456, -0.127285435795784, 0.0623360238969326, 0.055703215301036835, 0.061433494091033936, -0.058722496032714844, -0.030149225145578384, -0.02330907993018627, 0.09145550429821014, 0.023488851264119148, -0.021950505673885345, -0.012892937287688255, 0.019207773730158806, 0.018698066473007202, 0.005646912381052971, -0.013590396381914616, 0.03305782377719879, 0.03778139129281044, -0.03056718222796917, -0.04290417209267616, -0.00822095014154911, -0.004034790210425854, 0.0003198886406607926, -0.019278615713119507, 0.024532465264201164, -0.001646743156015873, 0.03615788370370865, 0.02475949563086033, 0.010997251607477665, 0.04137429594993591, -0.01470022089779377, 0.0009251502924598753, -0.0024030248168855906, -0.07023057341575623, -0.010446423664689064, 0.019399916753172874, 0.015539493411779404, -0.04931377246975899, 0.438090980052948, -0.045188743621110916, -0.01767541468143463, 0.11144071072340012, 0.01373189128935337, -0.02009265497326851, -0.019777463749051094, -0.004415029659867287, -0.04538516700267792, 0.04579876735806465, -0.03345977142453194, 0.02807079255580902, 0.01800926774740219, 0.039930056780576706, -0.036119427531957626, 0.00012777827214449644, 0.06696673482656479, 0.018914571031928062, 0.032924585044384, 0.030965950340032578, -0.0217787753790617, 0.0015787109732627869, 0.0021443525329232216, 0.0014330468839034438, -0.007716105319559574, -0.03113209456205368, -0.034653495997190475, 0.016663340851664543, 0.03885485604405403, 0.034395117312669754, 0.005913764238357544, 0.08921218663454056, -0.0655321478843689, -0.053827375173568726, -0.0007240683771669865, -0.03771257773041725, -0.00360846403054893, 0.008704932406544685, 0.0011280277976766229, -0.025569917634129524, 0.05643177032470703, 0.03389136120676994, -0.030518867075443268, 0.04106409475207329, -0.01163062546402216, -0.020172586664557457, 0.12997210025787354, -0.006758763920515776, -0.020809873938560486, -0.0376940555870533, -0.02781819924712181, -0.014687101356685162, 0.03931766375899315, -0.008767758496105671, -0.054728493094444275, 0.05058501660823822, -0.004004509653896093, 0.10634058713912964, -0.014983203262090683, -0.0664801225066185, 0.015065562911331654, -0.0026796096935868263, -0.022457081824541092, -0.054665468633174896, 0.012515627779066563, 0.10718004405498505, -0.10758215934038162, -0.00059711147332564, -0.0015889185015112162, 0.05116424337029457, -0.04744457080960274, 0.009128299541771412, 0.001260158489458263, -0.011871397495269775, -0.004429703112691641, 0.018680989742279053, -0.055256593972444534, -0.05098104476928711, 0.027355676516890526, 0.06463923305273056, 0.0010615135543048382, 0.03918127343058586, 0.02275598607957363, -0.03661693260073662, 0.011751707643270493, -0.04554702341556549, -0.08046283572912216, -0.041564539074897766, -0.018076544627547264, -0.04187501221895218, -0.0036249347031116486, -0.025350788608193398, -0.01074482686817646, -0.05887877568602562, 0.08825325220823288, -0.018519535660743713, -0.02769402414560318, 0.05449776351451874, -0.03724407032132149, -0.06351453065872192, -0.022086871787905693, -0.08076127618551254, 0.03952214866876602, -0.04385068267583847, 0.04226643964648247, -0.06095069274306297, 0.04279285669326782, 0.05803783982992172, -0.04215700924396515, 0.10214027762413025, 0.06257569044828415, -0.005804828368127346, -0.048319410532712936, 0.02646389789879322, 0.050900205969810486, 0.00688962871208787, -0.036265622824430466, 0.008949235081672668, 0.04554116353392601, 0.022814283147454262, 0.0561867393553257, -0.027211209759116173, 0.02753075398504734, 0.03181963786482811, -0.32947322726249695, -0.016205955296754837, -0.001519692363217473, 0.03068208321928978, 0.010701294988393784, -0.042144980281591415, 0.024907207116484642, -0.012072634883224964, -0.036935947835445404, 0.027795961126685143, 0.07477381825447083, -0.012054933235049248, 0.01636725850403309, -0.06841966509819031, 0.006345241330564022, 0.025476975366473198, -0.019116025418043137, 0.0006717127398587763, -0.0012923526810482144, 0.001953539438545704, 0.016245346516370773, 0.02447487600147724, -0.020663199946284294, -0.046824149787425995, 0.013496693223714828, -0.049791015684604645, 0.07938717305660248, 0.009918775409460068, 0.061841800808906555, -0.03954647108912468, 0.022687871009111404, -0.004271085374057293, 0.038323648273944855, -0.12924496829509735, 0.03514300659298897, -0.013290935195982456, 0.008609263226389885, -0.058148082345724106, 0.03777540102601051, -0.04200538247823715, -0.0681978091597557, -0.0014588654739782214, -0.04015355929732323, -0.026105528697371483, -0.08124089241027832, 0.004415698349475861, -0.05802449584007263, -0.03367368131875992, -0.027392825111746788, 0.059277862310409546, 0.004238257650285959, 0.017251379787921906, 0.032560452818870544, -0.02643362618982792, -0.02116398699581623, -0.04750693216919899, -0.10751183331012726, 0.012087157927453518, 0.007014271337538958, -0.004412013106048107, 0.016823261976242065, 0.05260884761810303, 0.029711594805121422, -0.04874268174171448, -0.0068557607010006905, 0.00940408930182457, 0.015350270085036755, 0.006595931947231293, 0.026090066879987717, -0.010480137541890144, -0.005470475647598505, 0.08087348937988281, 0.029009874910116196, -0.0013513602316379547, 0.013767172582447529, -0.0015002437867224216, -0.026088571175932884, -0.008206699974834919, 0.04028436541557312, -0.03612399473786354, 0.026184026151895523, -0.042956139892339706, 0.018702829256653786, -0.013445778749883175, 0.027421971783041954, 0.030230412259697914, 0.024644844233989716, -0.019171765074133873, 0.06676837801933289, 0.028794486075639725, -0.04334357753396034, 0.0017314865253865719, 0.0027800912503153086, -0.047581903636455536, 0.05978627875447273, -0.007818247191607952, -0.23418712615966797, 0.022554220631718636, 0.04166500270366669, 0.044436533004045486, -0.014197331853210926, 0.031490568071603775, 0.012765386141836643, -0.04754060506820679, -0.003843179903924465, -0.011659068055450916, 0.014989273622632027, 0.004740860778838396, 0.0038669274654239416, -0.004594855010509491, 0.061026681214571, 0.029905501753091812, 0.06236793100833893, -0.009322264231741428, 0.0007203670684248209, -0.014508998952805996, -0.0026216746773570776, -0.01174507662653923, 0.14174629747867584, -0.009949654340744019, 0.05867231637239456, 0.011898118071258068, -0.007005245424807072, -0.006416295189410448, 0.06695100665092468, -0.02504194900393486, 0.014791508205235004, -0.005809567868709564, 0.036597881466150284, -0.020027296617627144, -0.008040977641940117, -0.04117308557033539, -0.02898327261209488, 0.02011476829648018, 0.032571204006671906, 0.024562617763876915, 0.025024887174367905, -0.022189771756529808, 0.0006922315224073827, 0.010486286133527756, 0.07946466654539108, 0.013577900826931, 0.02236233279109001, -0.03384198993444443, -0.04991535469889641, -0.0014820849755778909, -0.050606634467840195, -0.036645375192165375, 0.025861617177724838, -0.004258073400706053, 0.025889769196510315, 0.0695892944931984, -0.01078330259770155, -0.012284846045076847, -0.0004684140731114894, 0.01820017769932747, -0.011763593181967735, -0.005725168623030186, 0.08864637464284897, 0.0591118298470974, 0.03520892560482025 ]
[ -0.028305185958743095, 0.005337470211088657, -0.012605561874806881, 0.007598732132464647, -0.01632535085082054, 0.04039980098605156, 0.005204793531447649, 0.004033602308481932, -0.014078188687562943, -0.020724326372146606, -0.06089429184794426, 0.0213452260941267, 0.008533811196684837, -0.018686482682824135, 0.02251744456589222, -0.011054197326302528, -0.02393799088895321, -0.027675241231918335, 0.04801568761467934, 0.02481982670724392, -0.0491689033806324, -0.03345245495438576, -0.006924470886588097, -0.03616134449839592, -0.0132927056401968, 0.0016853550914674997, -0.005527928471565247, -0.027925947681069374, 0.03248267620801926, -0.1141311302781105, -0.03152568265795708, 0.003991470672190189, 0.007922478951513767, 0.02547389268875122, 0.007023274898529053, 0.006760395597666502, 0.023642485961318016, 0.026691889390349388, -0.007429389748722315, -0.011481472291052341, 0.011413938365876675, -0.03586537390947342, -0.019689152017235756, -0.012478136457502842, -0.012291043065488338, -0.006212911568582058, 0.011400893330574036, -0.0254913829267025, -0.006541094277054071, -0.016998155042529106, -0.05816773325204849, -0.01851934939622879, -0.010207178071141243, -0.00773881608620286, 0.017972541972994804, 0.019480615854263306, 0.012722814455628395, -0.046668220311403275, -0.005435677710920572, 0.0020739533938467503, -0.013890695758163929, -0.00971375871449709, -0.06435765326023102, -0.0020667968783527613, -0.006741072051227093, -0.021989813074469566, -0.0011510243639349937, 0.011877600103616714, 0.0009048896608874202, -0.0015108725056052208, -0.03236326575279236, 0.011580252088606358, -0.053632788360118866, -0.04111533984541893, 0.012533757835626602, 0.009238594211637974, 0.006713358219712973, -0.018307354301214218, 0.02879556640982628, -0.019936710596084595, -0.06072751432657242, -0.016814393922686577, 0.0017433110624551773, 0.006471209228038788, 0.005172656383365393, -0.014461996033787727, 0.024946555495262146, 0.005028816871345043, 0.0007125644478946924, -0.0047501372173428535, -0.059988610446453094, 0.053754772990942, -0.003605398815125227, 0.003337911330163479, -0.05132034420967102, 0.01187933050096035, -0.012438729405403137, 0.040307141840457916, 0.02081327885389328, 0.8364282250404358, -0.02752452902495861, 0.023478129878640175, 0.04552781209349632, -0.014605703763663769, -0.007131990976631641, -0.011526001617312431, 0.01652105711400509, -0.02722017467021942, 0.05944078788161278, -0.04336036369204521, -0.001638964400626719, -0.019062252715229988, 0.02969558909535408, 0.012557141482830048, 0.03455766662955284, 0.01104513555765152, -0.0020133473444730043, 0.039822641760110855, -0.011639618314802647, -0.017885198816657066, -0.00352662755176425, -0.00015800623805262148, 0.020561903715133667, -0.029082320630550385, -0.0046571348793804646, -0.18422380089759827, 0.013670300133526325, -8.80361808666985e-33, 0.06259600073099136, 0.001073592808097601, 0.003666253760457039, -0.014883983880281448, 0.008214158937335014, 0.03131535276770592, 0.014035302214324474, -0.002772984094917774, -0.03946120664477348, -0.018654845654964447, 0.004926809575408697, -0.016826344653964043, 0.036033760756254196, -0.0038475904148072004, 0.0005291886045597494, -0.010185235179960728, 0.012775112874805927, 0.01745859906077385, -0.024466075003147125, 0.04626477509737015, 0.0521959625184536, 0.04396402835845947, -0.02242024429142475, 0.006989214103668928, -0.0032694402616471052, -0.012731475755572319, 0.00544376764446497, 0.022407473996281624, 0.0059798466973006725, -0.040279537439346313, -0.024373626336455345, 0.05062803998589516, -0.011999339796602726, -0.01067347452044487, 0.027169164270162582, -0.03191354125738144, -0.017400851473212242, 0.009405521675944328, -0.00924671534448862, -0.012272530235350132, -0.02307851053774357, -0.005625514779239893, -0.001160002313554287, -0.049347009509801865, -0.006903361063450575, -0.010527661070227623, -0.008260288275778294, 0.024346932768821716, 0.007727957796305418, -0.025090835988521576, -0.004573027603328228, 0.03445378318428993, 0.0013636121293529868, 0.03314047306776047, -0.0314469151198864, 0.01979863829910755, 0.010216016322374344, -0.005562404170632362, -0.016130812466144562, 0.031689975410699844, -0.01809287816286087, 0.004489095415920019, -0.01953115686774254, -0.0047903829254209995, 0.0068201967515051365, -0.0217856727540493, 0.018935784697532654, 0.013763397000730038, 0.030159100890159607, 0.002621567575260997, -0.049176644533872604, 0.01933617889881134, -0.0065408204682171345, -0.03075563907623291, -0.01661498472094536, -0.012741376645863056, 0.02604779601097107, 0.024156104773283005, -0.0033291298896074295, 0.07928359508514404, 0.011834441684186459, 0.007230499293655157, 0.019824281334877014, -0.041094619780778885, -0.007384699769318104, -0.013988196849822998, 0.004585214890539646, -0.02515474334359169, -0.02118675783276558, 0.03210102766752243, 0.03316410258412361, 0.030694380402565002, -0.01737958751618862, -0.036889780312776566, 0.01999037154018879, 8.468934273839605e-33, 0.005938350223004818, -0.010640022344887257, -0.014659770764410496, 0.00695685064420104, 0.08065324276685715, 0.03164719045162201, 0.0675572082400322, -0.03290829062461853, -0.05680952966213226, 0.05076773092150688, 0.007657208479940891, -0.031838491559028625, 0.012363850139081478, 0.0229633841663599, 0.02337840013206005, -0.006628819275647402, 0.01215345785021782, -0.012454140931367874, 0.03506084159016609, -0.00619902741163969, 0.05049098655581474, -0.00006525405478896573, 0.01849573850631714, 0.005013615824282169, 0.03500760719180107, 0.02481057494878769, 0.01775505393743515, 0.014234370552003384, -0.00869856495410204, 0.0034891325049102306, 0.004660752136260271, 0.014099780470132828, -0.008325268514454365, -0.012579205445945263, 0.019979743286967278, 0.02313767373561859, -0.03643333911895752, -0.04010215774178505, 0.0036783628165721893, -0.000756310997530818, -0.0007861749618314207, -0.0009608151158317924, -0.0117763327434659, 0.010605248622596264, 0.038027323782444, 0.0012591942213475704, 0.008980457670986652, -0.01668236218392849, -0.04181366786360741, 0.010172161273658276, 0.018134642392396927, 0.0402776338160038, -0.03145412355661392, -0.032367460429668427, -0.013049645349383354, -0.05122147873044014, -0.001491265487857163, 0.01671651564538479, -0.0009280309313908219, 0.01879880204796791, 0.015312897972762585, 0.00012574915308505297, -0.012328843586146832, 0.026180963963270187, -0.02802925370633602, -0.002698055701330304, 0.0011305046500638127, 0.026174938306212425, -0.01969456486403942, -0.004110264591872692, -0.011957044713199139, -0.02242659218609333, 0.033567141741514206, 0.05407261848449707, -0.025903508067131042, -0.03323665261268616, -0.05248519405722618, -0.02466575801372528, 0.007214528042823076, -0.002871799049898982, 0.011089975945651531, 0.031089844182133675, 0.026505056768655777, 0.035616740584373474, 0.012791472487151623, 0.06586359441280365, 0.022267967462539673, 0.05435682833194733, -0.030856790021061897, -0.016739200800657272, -0.0042395940981805325, -0.012041540816426277, 0.015853816643357277, -0.0048647355288267136, -0.02176201529800892, -1.3997158987422154e-8, -0.03052939847111702, 0.012007536366581917, -0.02644745260477066, -0.005461604334414005, 0.02458879165351391, 0.004811722319573164, -0.018334589898586273, -0.003208136884495616, -0.03730005770921707, 0.006705734878778458, 0.021546509116888046, -0.02846233919262886, 0.007470583077520132, 0.05412859842181206, 0.04081098362803459, -0.02509777806699276, 0.0007864289218559861, -0.032516855746507645, 0.017981816083192825, -0.0038761065807193518, 0.013993357308208942, 0.061254099011421204, -0.028822781518101692, 0.06055968627333641, -0.024897271767258644, 0.023402834311127663, 0.03012225404381752, -0.05174089968204498, 0.020370163023471832, -0.0030338848009705544, -0.013188746757805347, -0.02079794555902481, -0.047583986073732376, 0.0005735501181334257, -0.005575501825660467, -0.014979076571762562, -0.007520338520407677, 0.016243718564510345, 0.0012428290210664272, -0.023654310032725334, -0.03904861956834793, 0.021186690777540207, -0.005010961554944515, -0.017530228942632675, 0.002015339210629463, 0.010402848944067955, -0.031609561294317245, -0.005424891132861376, -0.048640020191669464, -0.04383030906319618, 0.020259495824575424, -0.0043021757155656815, 0.03681293874979019, 0.021822335198521614, 0.03875577077269554, 0.01834675297141075, -0.037377215921878815, -0.015059747733175755, 0.011922469362616539, 0.0068765669129788876, -0.0018195239827036858, 0.020054522901773453, -0.03048861026763916, -0.026740597561001778 ]
pair-programming-in-interviews
https://markhneedham.com/blog/2010/02/25/pair-programming-in-interviews
false
2010-11-18 18:40:37
Capistrano, sed, escaping forward slashes and 'p' is not 'puts'!
[ "ruby", "sed", "capistrano" ]
[ "Ruby" ]
http://twitter.com/priyaaank[Priyank] and I have been working on automating part of our deployment process and one task we needed to do as part of this is replace some variables used in one of our shell scripts. All the variables in the script refer to production specific locations but we needed to change a couple of them in order to run the script in our QA environment. We're therefore written a sed command, which we call from https://github.com/capistrano/capistrano[Capistrano], to allow us to do this. The Capistrano script looks a little like this: [source,ruby] ---- task :replace_in_shell do directory = "/my/directory/path" sed_command = "sed 's/^some_key.*$/#{directory}/' shell_script.sh > shell_script_with_qa_variables.sh" run sed_command end ---- Unfortunately this creates the following sed command which isn't actually valid syntactically: [source,text] ---- sed 's/^some_key.*$//my/directory/path/' shell_script.sh > shell_script_with_qa_variables.sh ---- We decided to use 'gsub' to escape all the forward slashes in the directory path and to work out which parameters we needed to pass to 'gsub' we started using irb. Executing gsub with the appropriate parameters leads us to believe that 2 backslashes will be added: [source,ruby] ---- ruby-1.8.7-p299 > "/my/directory/path".gsub("/", "\\/") => "\\/my\\/directory\\/path" ---- This is because there IRB is implicitly called 'inspect' on the result which shows a different string than what we would actually get. While writing this blog post I've also learnt (thanks to http://twitter.com/ashwinraghav[Ashwin]) that 'p' is not the same as 'puts' which is what I originally thought and has been driving me crazy as I try to understand why everything I print includes an extra backslash! The following code: [source,ruby] ---- p "/mark/dir/".gsub("/", "\\/") ---- is the same as typing: [source,ruby] ---- puts "/mark/dir/".gsub("/", "\\/").inspect ---- We were able to change our Capistrano script to escape forward slashes like so: [source,ruby] ---- task :replace_in_shell do directory = "/my/directory/path" sed_command = "sed 's/^some_key.*$/#{directory.gsub("/", "\\/"}/' shell_script.sh > shell_script_with_qa_variables.sh" run sed_command end ----
null
null
[ 0.00794425792992115, 0.01988045684993267, -0.0436764657497406, 0.028146514669060707, 0.10834097117185593, 0.04760418459773064, 0.02383369393646717, 0.03266475722193718, 0.024407532066106796, -0.018678734079003334, -0.04206052049994469, -0.0030399749521166086, -0.07400749623775482, 0.02826540917158127, -0.02454199455678463, 0.08221215754747391, 0.07196834683418274, 0.007146993651986122, 0.014309598132967949, 0.0075548188760876656, 0.047954458743333817, 0.07826799154281616, 0.01294897310435772, 0.0044944691471755505, 0.009085748344659805, 0.03026365302503109, 0.004462749697268009, 0.00017875913181342185, -0.08294261246919632, 0.013303720392286777, 0.02097305655479431, -0.007512569893151522, -0.007813970558345318, 0.005362758878618479, 0.03335246071219444, 0.004539585672318935, 0.009431949816644192, -0.013733425177633762, -0.015245089307427406, 0.007715233601629734, -0.04907798767089844, 0.026653442531824112, -0.006473732180893421, 0.012153477407991886, -0.022406909614801407, -0.014756442978978157, -0.03545917943120003, 0.01218392513692379, 0.01149847824126482, -0.006700143683701754, -0.042226772755384445, 0.01575692556798458, -0.02188713476061821, -0.06340525299310684, 0.010440760292112827, 0.05125340819358826, 0.046866852790117264, -0.07259208709001541, 0.027096115052700043, -0.037686411291360855, -0.006744793150573969, 0.010349931195378304, -0.016308153048157692, 0.05580256134271622, 0.04781419038772583, -0.013450062833726406, 0.005309910047799349, 0.036477021872997284, -0.06235809624195099, -0.0064104399643838406, 0.027787618339061737, 0.006599120330065489, -0.03898467868566513, -0.006211153231561184, 0.022437268868088722, -0.010178054682910442, -0.01141608040779829, 0.06875655800104141, 0.009762430563569069, 0.061540376394987106, -0.04772401228547096, -0.0015640192432329059, -0.00656530074775219, -0.003711793338879943, 0.005201007705181837, -0.039052125066518784, 0.0003137149615213275, -0.013100988231599331, -0.04757915437221527, 0.044705234467983246, 0.03282453119754791, -0.04986828938126564, 0.0014944788999855518, 0.013916230760514736, 0.0215744785964489, 0.013721097260713577, 0.0074440957978367805, 0.0166616290807724, -0.011778219603002071, -0.013829682022333145, -0.07032687216997147, 0.021272441372275352, -0.004807343240827322, 0.005525736138224602, -0.09238505363464355, 0.0034092694986611605, -0.04523573815822601, -0.0020044385455548763, 0.020315203815698624, -0.018440736457705498, -0.01790265366435051, 0.026860928162932396, -0.01616692543029785, 0.020593758672475815, -0.07989124208688736, 0.0745125561952591, -0.018417276442050934, -0.05157608166337013, -0.002295737387612462, 0.012515079230070114, 0.027178756892681122, 0.036835163831710815, -0.010512271896004677, 0.06633003056049347, 0.009730566293001175, 0.04002903029322624, -0.0071550398133695126, 0.03604934364557266, -0.016542833298444748, -0.08094340562820435, -0.017845844849944115, 0.047307077795267105, 0.01255032792687416, -0.0006883592577651143, -0.00918372068554163, -0.017900334671139717, -0.015589955262839794, -0.03553793951869011, 0.0539470799267292, 0.05209648236632347, -0.020300639793276787, -0.006245022639632225, -0.02522975020110607, -0.03560236096382141, 0.05039583146572113, 0.012068673968315125, 0.004722577519714832, -0.06629372388124466, -0.0584651455283165, 0.012128896079957485, 0.0076500242576003075, -0.011693998239934444, 0.06364740431308746, -0.019107181578874588, 0.0030250241979956627, 0.04415380209684372, 0.030034812167286873, 0.007782787550240755, -0.02135489508509636, -0.01189879048615694, 0.04616285115480423, 0.039715927094221115, 0.03095162846148014, 0.06992273777723312, 0.011004629544913769, -0.03572818264365196, -0.00005530618000193499, 0.010919636115431786, -0.022021690383553505, -0.02590557187795639, -0.0518387071788311, -0.059652179479599, 0.06408928334712982, -0.04638491943478584, 0.030399231240153313, 0.0198239516466856, 0.07021846622228622, 0.04424514248967171, 0.03425248712301254, -0.014525040984153748, -0.07515347748994827, 0.02272225171327591, -0.02147899754345417, 0.047427594661712646, 0.034180689603090286, -0.03448651358485222, 0.0677209123969078, 0.010172952897846699, 0.0187505092471838, 0.03803959861397743, -0.12355200946331024, -0.09009595960378647, 0.0025904527865350246, 0.010855678468942642, 0.04467097297310829, -0.012034913524985313, -0.0372169129550457, 0.04146036505699158, 0.010895971208810806, 0.008601460605859756, -0.015364600345492363, -0.010136370547115803, 0.0206060279160738, -0.07356105744838715, -0.04758155345916748, 0.0674699991941452, 0.023852238431572914, -0.01605241931974888, -0.025792770087718964, 0.021033070981502533, -0.007737504784017801, 0.019830161705613136, 0.021168608218431473, -0.009765415452420712, 0.029979107901453972, 0.03192657604813576, 0.00961921364068985, -0.033500246703624725, 0.029014846310019493, -0.025001276284456253, 0.006706444546580315, 0.009907405823469162, 0.00328447250649333, -0.014428576454520226, -0.008390017785131931, 0.11737652122974396, 0.048873189836740494, -0.004933121148496866, -0.07636754959821701, 0.0329425185918808, 0.0012213758891448379, -0.06904040277004242, 0.008054151199758053, -0.004042621701955795, -0.02141507901251316, 0.04578036814928055, -0.03473055735230446, -0.02774661034345627, 0.0018863974837586284, -0.026444755494594574, -0.006200408097356558, 0.06829891353845596, -0.020117031410336494, 0.04514379799365997, -0.02479230798780918, -0.005817249417304993, 0.01943974196910858, -0.040964968502521515, -0.09007304161787033, 0.002673979615792632, 0.020088087767362595, -0.00743803009390831, 0.04987085238099098, -0.04458249360322952, -0.02850506268441677, -0.015520675107836723, -0.06737836450338364, 0.008449863642454147, 0.017614854499697685, 0.04921121895313263, -0.03801662474870682, 0.054339367896318436, -0.04523744806647301, 0.046704601496458054, -0.005918434355407953, 0.0007303867023438215, -0.045675814151763916, 0.004958613310009241, -0.016919653862714767, 0.011910171248018742, 0.008773792535066605, 0.006061612628400326, 0.00278026657178998, -0.01351117342710495, 0.034032613039016724, 0.017019232735037804, 0.0029677930288016796, -0.002440566662698984, -0.006421203259378672, -0.011542899534106255, 0.004101098515093327, 0.03545210883021355, -0.021628540009260178, 0.028001422062516212, 0.017204327508807182, -0.05329525098204613, 0.03819575533270836, -0.041366301476955414, -0.0571897067129612, -0.02450837381184101, 0.0026146997697651386, 0.04372113570570946, 0.010380313731729984, 0.020526237785816193, 0.03372271731495857, -0.005050847306847572, 0.03600889816880226, 0.014375000260770321, 0.032259684056043625, 0.05075501650571823, 0.007968810386955738, 0.01261680293828249, 0.03263159096240997, -0.0058188671246171, -0.003940767142921686, -0.023819688707590103, -0.008920982480049133, -0.03293164446949959, -0.261423259973526, 0.04974399134516716, -0.028226854279637337, -0.023976925760507584, 0.03311748057603836, -0.04057890921831131, 0.00029119057580828667, -0.052926141768693924, -0.011187463067471981, 0.010100931860506535, -0.030868718400597572, -0.03633387014269829, 0.018865391612052917, 0.025013843551278114, -0.011083347722887993, -0.010400073602795601, 0.028414519503712654, -0.04776935279369354, 0.0037013913970440626, 0.006791267544031143, 0.01677028089761734, -0.03438590094447136, 0.04601585492491722, 0.0359947569668293, 0.057773761451244354, 0.07057442516088486, -0.06644291430711746, 0.044358327984809875, -0.013341721147298813, -0.05642639845609665, 0.001603843062184751, -0.03949807211756706, 0.01633416675031185, 0.033798348158597946, -0.020230727270245552, -0.008842302486300468, 0.03393341228365898, -0.008474712260067463, 0.05757954716682434, 0.0014297692105174065, -0.03175300359725952, -0.020459862425923347, -0.005941316951066256, -0.006959202233701944, 0.07919248193502426, -0.021850736811757088, -0.07130115479230881, -0.010766287334263325, -0.031155940145254135, 0.0878780409693718, -0.019854778423905373, -0.033440325409173965, -0.008747397921979427, 0.023445362225174904, -0.014908724464476109, 0.003859107382595539, -0.028099751099944115, 0.004713925998657942, -0.020759498700499535, -0.038804445415735245, -0.00016314252570737153, -0.05184397101402283, -0.027731692418456078, -0.0571955107152462, 0.01114888396114111, -0.03701355680823326, -0.08111969381570816, 0.004392349626868963, 0.05915186554193497, 0.007570534013211727, -0.020987866446375847, 0.00875109899789095, -0.028026467189192772, -0.10914001613855362, 0.0005985476891510189, -0.03139382600784302, -0.05350714549422264, -0.044907040894031525, -0.0035106870345771313, 0.03806094080209732, -0.04299277812242508, -0.042212411761283875, 0.014540116302669048, -0.008929315023124218, 0.025082135573029518, 0.01254828367382288, 0.02812715247273445, 0.0021696272306144238, -0.008991338312625885, 0.0013364233309403062, 0.06217918172478676, -0.03591838851571083, -0.04778251051902771, 0.004013735335320234, 0.004186965525150299, 0.029867248609662056, 0.027108943089842796, -0.003312366083264351, 0.006122346501797438, 0.004740685224533081, 0.03884492814540863, -0.045418623834848404, 0.028312671929597855, -0.057032857090234756, -0.02848479524254799, -0.009519866667687893, -0.058683842420578, 0.03989356383681297, 0.002487944671884179, 0.03324165195226669, -0.006682390812784433, -0.037566203624010086, 0.020125772804021835, -0.07743153721094131, -0.022828735411167145, 0.014471495524048805, 0.008976799435913563, 0.0047568450681865215, 0.03738788142800331, -0.03745678812265396, -0.031579893082380295, -0.0016859412426128983, -0.0014175644610077143, -0.011593088507652283, -0.06123417615890503, -0.014512497931718826, 0.034959420561790466, 0.014719303697347641, 0.025867430493235588, 0.010222173295915127, -0.006219612434506416, 0.017163535580039024, 0.03339545056223869, -0.04741527512669563, 0.013743431307375431, -0.015484003350138664, -0.05937398225069046, -0.02739703468978405, 0.003096417523920536, 0.020811155438423157, -0.039709337055683136, -0.012759950943291187, 0.012286628596484661, 0.03402380272746086, 0.0414423868060112, 0.02198454551398754, 0.033853597939014435, -0.0005598959978669882, 0.02825360745191574, 0.002882591914385557, 0.014098897576332092, -0.03138314187526703, -0.03412888944149017, -0.031062394380569458, -0.018995819613337517, -0.011142548173666, 0.024889547377824783, -0.04333057999610901, -0.02425842545926571, -0.02065587230026722, 0.009421959519386292, -0.051069580018520355, 0.0008639936568215489, 0.014852666296064854, -0.027694350108504295, 0.053423330187797546, -0.01373293623328209, 0.024486500769853592, -0.0008570975624024868, 0.03508170321583748, -0.007699007634073496, 0.04070938006043434, -0.016479305922985077, -0.005938519723713398, -0.008982100524008274, -0.013838279992341995, 0.02910512126982212, 0.0398322157561779, 0.02866237610578537, 0.026564134284853935, 0.03168976306915283, -0.004715318791568279, 0.01690923236310482, 0.03906375169754028, 0.028758417814970016, 0.0036768827121704817, -0.02562342956662178, 0.019312938675284386, -0.019906865432858467, -0.029658840969204903, -0.024862151592969894, -0.018397046253085136, -0.04056543856859207, 0.020064430311322212, -0.023779908195137978, -0.06686543673276901, 0.03486667945981026, 0.03636978194117546, 0.01804281398653984, 0.011260545812547207, 0.003019877942278981, -0.016998227685689926, -0.020815705880522728, 0.013205881230533123, 0.04476957768201828, -0.05665521323680878, -0.0023278044536709785, 0.025471264496445656, -0.003456230740994215, 0.012465757317841053, 0.03247162699699402, -0.05613195151090622, -0.03228132426738739, -0.015656210482120514, 0.052129801362752914, -0.04318087548017502, -0.03752348572015762, -0.04787728562951088, -0.005328603554517031, -0.033214639872312546, 0.01059775985777378, -0.02465006522834301, 0.05217582732439041, 0.021354010328650475, -0.016114367172122, 0.005090844817459583, -0.02071160264313221, 0.0009373598149977624, 0.033882949501276016, 0.002245325595140457, 0.026035794988274574, -0.006761183496564627, 0.04550393670797348, 0.00533521780744195, -0.018503881990909576, -0.010322080925107002, -0.009948769584298134, -0.028908921405673027, -0.021392330527305603, 0.02995372749865055, 0.01027250848710537, -0.007112615276128054, -0.03759567067027092, 0.00426712678745389, -0.04288575053215027, -0.0266526248306036, -0.028045648708939552, -0.014016082510352135, 0.02922779694199562, 0.06350988149642944, 0.05183034390211105, 0.029924215748906136, -0.013764380477368832, -0.018065929412841797, 0.052209366112947464, -0.049060266464948654, -0.047244593501091, 0.0010788250947371125, -0.07051977515220642, 0.05273215472698212, 0.036687519401311874, 0.03423517569899559, -0.05342334508895874, 0.03248905763030052, 0.05654968321323395, -0.008918405510485172, 0.058574922382831573, -0.024755027145147324, 0.03473946079611778, -0.03816975653171539, -0.023349622264504433, -0.08128836750984192, 0.01236819103360176, 0.003989186137914658, -0.036446090787649155, -0.03371081501245499, 0.003585737431421876, -0.012880823574960232, 0.010858261026442051, -0.031186331063508987, -0.044373057782649994, 0.05852677300572395, -0.010121268220245838, -0.0027315958868712187, 0.012508098036050797, -0.07511673122644424, 0.036241594702005386, 0.01885402202606201, -0.031141145154833794, -0.01866784691810608, 0.0007499458151869476, 0.043141599744558334, -0.002452267101034522, 0.048902466893196106, -0.04362838715314865, -0.03600659966468811, 0.0893312618136406, 0.0009666442056186497, 0.0066935527138412, 0.039884135127067566, -0.016759946942329407, 0.0006347924354486167, 0.015767285600304604, 0.02197083830833435, -0.007629998028278351, 0.021931719034910202, -0.05018667131662369, -0.040011752396821976, 0.01998213864862919, -0.008172664791345596, -0.005571329966187477, -0.03592687100172043, 0.05546504259109497, -0.0005067162564955652, -0.04228600487112999, -0.08338569849729538, 0.01076429896056652, -0.043038103729486465, -0.0022341255098581314, -0.03268978372216225, 0.007412359584122896, -0.06050023064017296, 0.05227033048868179, 0.00849850382655859, 0.02066853642463684, 0.07129836827516556, -0.0006396115059033036, 0.01105013582855463, 0.002241365145891905, 0.04670795798301697, 0.08593849092721939, 0.03165062144398689, 0.025522788986563683, 0.039234161376953125, -0.033761654049158096, -0.035237278789281845, 0.01814829371869564, -0.017037848010659218, -0.0027056164108216763, -0.023317920044064522, -0.03003627434372902, 0.04727497696876526, -0.026943389326334, 0.08980586379766464, -0.007743870373815298, 0.002498301910236478, -0.014568103477358818, -0.005047203972935677, 0.020323535427451134, 0.04850967600941658, 0.030057933181524277, 0.042257603257894516, -0.009741530753672123, -0.004194032866507769, 0.017192156985402107, -0.03602658584713936, -0.016589254140853882, 0.025627365335822105, -0.024531764909625053, 0.02270367182791233, 0.00851168017834425, 0.03998083993792534, 0.07739479839801788, -0.05579182133078575, -0.008820532821118832, -0.01511722058057785, 0.034831203520298004, -0.034553609788417816, 0.03932403400540352, 0.0002547624462749809, -0.020738517865538597, -0.005403686780482531, -0.05224161222577095, -0.03597431257367134, -0.0028572180308401585, -0.032415665686130524, 0.025024155154824257, 0.014253627508878708, 0.03257448598742485, 0.0480799674987793, -0.018236184492707253, -0.003835526295006275, -0.030363500118255615, -0.06500204652547836, -0.06775026768445969, -0.02532276138663292, -0.038095224648714066, 0.0159738939255476, 0.008913553319871426, -0.02528039924800396, -0.005123772192746401, -0.03079947456717491, -0.027486784383654594, 0.025024158880114555, -0.04662695154547691, -0.01647578738629818, -0.013176027685403824, 0.020620692521333694, 0.012243935838341713, 0.03940286859869957, 0.05811932310461998, -0.016574950888752937, -0.004600610118359327, -0.021733339875936508, -0.010457463562488556, 0.047948259860277176, 0.006288951262831688, -0.0069540380500257015, -0.04490024968981743, 0.005556297954171896, 0.003591891610994935, 0.022696388885378838, -0.04934392869472504, 0.03717023506760597, -0.00047339548473246396, -0.008245831355452538, 0.07239923626184464, -0.03435299172997475, 0.028209995478391647, -0.03856898471713066, -0.0017951247282326221, -0.0052799140103161335, -0.011394000612199306, 0.034992434084415436, -0.010691466741263866, 0.09366077184677124, 0.04903292655944824, 0.01516715157777071, -0.020336193963885307, -0.011840038001537323, 0.007146971765905619, 0.00033933622762560844, -0.012688242830336094, -0.02398413047194481, -0.06868045032024384, -0.0705249160528183, -0.030409248545765877, 0.009075415320694447, -0.020254524424672127, -0.049880072474479675, 0.01485561765730381, 0.007456024643033743, -0.033472005277872086, 0.028274202719330788, -0.043290626257658005, 0.020794428884983063, -0.03494546189904213, -0.034880056977272034, 0.00824868306517601, 0.049039579927921295, 0.009120272472500801, -0.00842782761901617, 0.05930603668093681, -0.015842795372009277, -0.017231803387403488, -0.017728624865412712, 0.051837820559740067, 0.05509857088327408, -0.005840348545461893, 0.029635455459356308 ]
[ -0.06401392072439194, -0.03978390619158745, -0.009747356176376343, -0.055363237857818604, 0.025110669434070587, -0.12414555996656418, -0.0069635831750929356, -0.029933033511042595, -0.01649302802979946, -0.02005469799041748, 0.03700743615627289, -0.01770196296274662, 0.022845223546028137, -0.04944419488310814, 0.07242180407047272, -0.0075025795958936214, -0.016008879989385605, -0.026126205921173096, -0.041869305074214935, 0.06006650999188423, -0.015243219211697578, -0.009748127311468124, -0.014321652241051197, -0.036272816359996796, -0.001391508150845766, 0.04214179143309593, 0.02003134973347187, -0.006971997208893299, -0.037980254739522934, -0.19541867077350616, 0.014177466742694378, 0.003080023918300867, 0.013586416840553284, 0.016810504719614983, 0.005148020107299089, 0.07180991023778915, 0.006190885324031115, -0.03745774179697037, 0.006819198839366436, 0.04590864107012749, 0.038581058382987976, 0.0066315908916294575, -0.075008824467659, 0.0315573588013649, -0.00561907235532999, -0.030010739341378212, -0.03546558693051338, -0.028639694675803185, -0.003179685678333044, 0.0339842289686203, -0.019582176581025124, 0.01758919097483158, -0.0028176428750157356, -0.04641890153288841, -0.008703448809683323, 0.0058562271296978, 0.03519085794687271, 0.06687166541814804, 0.03579827398061752, 0.029159577563405037, 0.0285157673060894, 0.022220995277166367, -0.1646871119737625, 0.08136248588562012, 0.06828506290912628, 0.023837290704250336, -0.008770923130214214, -0.019854217767715454, -0.03748629614710808, 0.05936707556247711, -0.028819790109992027, -0.016363464295864105, -0.06883031874895096, 0.07691288739442825, -0.015328830108046532, -0.03847447410225868, -0.02904803305864334, 0.02761697769165039, 0.027250485494732857, -0.04243926331400871, -0.028146691620349884, -0.03141741827130318, -0.026968540623784065, 0.011468206532299519, -0.011638293974101543, -0.016524098813533783, -0.001668292097747326, 0.08821621537208557, 0.07061655074357986, 0.046508412808179855, 0.014703551307320595, -0.0697532594203949, 0.05258336663246155, 0.04406344145536423, -0.08397465944290161, -0.000837184488773346, -0.0121921980753541, 0.00924057886004448, -0.05301496013998985, 0.40102025866508484, 0.006159977987408638, -0.044835709035396576, 0.01790192350745201, -0.01952756755053997, 0.008684935979545116, -0.006543210707604885, 0.00974441971629858, -0.018109293654561043, 0.028315292671322823, -0.009998517110943794, 0.02218909002840519, -0.03368189558386803, 0.09257087111473083, -0.07150048017501831, -0.026648368686437607, 0.013517322018742561, 0.0254361629486084, 0.008395708166062832, 0.00033103450550697744, -0.024224702268838882, -0.0206576120108366, -0.030805803835392, 0.03868059441447258, 0.02341589890420437, 0.019955135881900787, -0.00973222590982914, 0.04458481818437576, 0.043416619300842285, 0.025323981419205666, 0.048624154180288315, 0.05385338515043259, -0.03637038916349411, -0.07538934051990509, 0.0038295246195048094, -0.026680268347263336, 0.047569453716278076, 0.029611220583319664, -0.018636642023921013, -0.0026604081504046917, -0.00722584268078208, -0.018025759607553482, -0.053873542696237564, 0.010785311460494995, 0.010503249242901802, -0.014656256884336472, 0.060254037380218506, -0.03670034185051918, -0.052702516317367554, -0.022594861686229706, -0.04104993864893913, -0.058200620114803314, 0.02127392217516899, 0.013074520044028759, -0.03605926036834717, -0.003526223124936223, 0.036225978285074234, 0.059371501207351685, -0.016950370743870735, -0.05646971985697746, -0.007388134952634573, -0.0050282832235097885, -0.05413530394434929, -0.03691599518060684, 0.05826759710907936, 0.023461218923330307, -0.09086474031209946, -0.053932007402181625, 0.008338970132172108, 0.04967350885272026, -0.022679153829813004, 0.003966245334595442, -0.013864832930266857, 0.00912252813577652, -0.041805487126111984, 0.03147929534316063, -0.06764212995767593, 0.01588638313114643, 0.030653655529022217, 0.054574742913246155, 0.03105744533240795, 0.02144211158156395, -0.00928216427564621, 0.00010268679761793464, 0.009449201636016369, -0.02989615499973297, -0.08909031748771667, -0.07374418526887894, -0.0017101587727665901, -0.030030297115445137, 0.031020544469356537, -0.04199814796447754, -0.02255510911345482, -0.08136981725692749, 0.012357739731669426, 0.02859118953347206, 0.016123559325933456, 0.017724759876728058, 0.023730427026748657, 0.0017926000291481614, -0.016032075509428978, 0.036384038627147675, 0.056169480085372925, -0.021686874330043793, -0.0037131269928067923, -0.06538812071084976, 0.006414665374904871, 0.05920909717679024, -0.002794914413243532, 0.008184601552784443, 0.04516074061393738, -0.04113457724452019, 0.05145874246954918, 0.006936835125088692, 0.03331594541668892, -0.030685344710946083, -0.06152215227484703, -0.04712251201272011, 0.017174655571579933, 0.07458017021417618, 0.038445305079221725, -0.03916480392217636, -0.03278875723481178, 0.0015636528842151165, -0.3328286111354828, -0.034236520528793335, 0.0034861096646636724, -0.008452645502984524, 0.041704051196575165, -0.08017365634441376, 0.006425256375223398, -0.0015653318259865046, -0.017923541367053986, -0.002035236218944192, 0.09302137047052383, -0.0746583417057991, 0.01324868481606245, -0.07243578881025314, -0.018147796392440796, 0.046026576310396194, -0.015256056562066078, -0.038326721638441086, 0.009790826588869095, 0.031645022332668304, 0.004002933856099844, -0.040953803807497025, 0.016027288511395454, -0.027681298553943634, 0.020452585071325302, 0.00589034054428339, 0.07105598598718643, 0.03623418137431145, 0.07773000001907349, -0.0659385472536087, 0.04614662379026413, -0.0028710849583148956, 0.019890576601028442, -0.11825816333293915, -0.01987815648317337, -0.015067139640450478, 0.017661623656749725, 0.021804511547088623, 0.041729867458343506, 0.005683626979589462, -0.009236669167876244, -0.006358446087688208, -0.05390039086341858, -0.024323811754584312, 0.011468559503555298, -0.012867681682109833, -0.006712664384394884, -0.008774686604738235, 0.007285270839929581, 0.051430243998765945, 0.0029389685951173306, 0.03508686274290085, 0.008606916293501854, -0.0031806358601897955, 0.05289973318576813, -0.01646605134010315, -0.04071973264217377, -0.02016051672399044, 0.008504926227033138, -0.02393275313079357, 0.020385239273309708, 0.04479372873902321, 0.04499153047800064, -0.04252501577138901, 0.020827392116189003, -0.026769284158945084, -0.02275288663804531, 0.020869053900241852, 0.08222230523824692, -0.031300801783800125, -0.011460181325674057, 0.09674850106239319, 0.000452547479653731, 0.02878977730870247, 0.009532076306641102, 0.019752241671085358, -0.005133030936121941, 0.040975283831357956, 0.027146663516759872, -0.03600737825036049, 0.06949780136346817, 0.015608330257236958, 0.08744020015001297, -0.02738436870276928, -0.005703814327716827, 0.032527387142181396, -0.003879811381921172, -0.01820322871208191, 0.08170171827077866, 0.026545558124780655, -0.07136647403240204, -0.028839293867349625, -0.03670720383524895, -0.02586733177304268, 0.07398100942373276, -0.027960889041423798, -0.2678060829639435, 0.020175820216536522, 0.07381261140108109, 0.03528492525219917, -0.011105057783424854, 0.01883651874959469, 0.03087550774216652, -0.07910953462123871, -0.012593129649758339, 0.03396761789917946, 0.003257758216932416, 0.012111000716686249, -0.0015207717660814524, -0.004924440756440163, 0.018160853534936905, -0.009967044927179813, 0.06317542493343353, 0.0326433926820755, 0.015938598662614822, 0.00013762028538621962, 0.006110566668212414, -0.005134056322276592, 0.1709536761045456, -0.0002460081013850868, -0.01318519189953804, 0.007110732141882181, -0.006938185077160597, 0.01993548311293125, 0.07988055795431137, 0.03737631067633629, -0.004476746078580618, -0.005716533400118351, 0.052376147359609604, -0.01624538004398346, 0.04840570688247681, -0.023182149976491928, -0.03398437052965164, 0.045039042830467224, 0.01296278927475214, -0.021059487015008926, -0.024435069411993027, 0.016207993030548096, -0.018420159816741943, 0.032632842659950256, 0.0779772698879242, -0.00882531888782978, -0.004493368323892355, 0.003063978161662817, -0.02174057625234127, 0.015644289553165436, -0.026949919760227203, -0.01679767109453678, -0.028045734390616417, -0.038355227559804916, 0.01128394529223442, 0.05014032870531082, -0.026035375893115997, -0.025149988010525703, 0.0038021118380129337, 0.023238036781549454, -0.040223825722932816, -0.043092288076877594, 0.11974885314702988, 0.038929812610149384, 0.02998626045882702 ]
[ -0.0062336367554962635, 0.007273203227669001, -0.03166911005973816, 0.0373355858027935, 0.020449677482247353, -0.013921226374804974, -0.013865581713616848, 0.05827145278453827, -0.0013999262591823936, 0.034551624208688736, 0.007142479065805674, 0.005407808348536491, 0.024637477472424507, -0.00017811960424296558, -0.01372094638645649, 0.0001053006126312539, 0.016363875940442085, 0.009389770217239857, 0.022424275055527687, -0.02243724837899208, -0.014032130129635334, 0.051407456398010254, 0.033853258937597275, -0.004137953277677298, -0.002881749300286174, -0.024783140048384666, -0.01618567295372486, 0.013208684511482716, 0.011449046432971954, -0.126127228140831, -0.015629831701517105, -0.01999364048242569, 0.0414714589715004, -0.010425164364278316, 0.0330280065536499, 0.04727994650602341, -0.0032770447432994843, -0.0042647309601306915, -0.009791942313313484, 0.01799788698554039, 0.013617227785289288, -0.006329437717795372, -0.041372355073690414, -0.005071318242698908, -0.004209443461149931, -0.032505083829164505, -0.029318364337086678, -0.014337493106722832, -0.007332174573093653, -0.023128580302000046, -0.02755122445523739, -0.012791945599019527, -0.01072972547262907, -0.0049845268949866295, -0.05480138584971428, -0.030193589627742767, -0.0019355207914486527, -0.012410580180585384, 0.033513203263282776, -0.012621879577636719, 0.007198674138635397, 0.029849473387002945, -0.040541838854551315, -0.022174719721078873, 0.00954719353467226, -0.016035528853535652, -0.02582027204334736, 0.0068502891808748245, -0.02451138012111187, 0.010761338286101818, -0.0016320932190865278, 0.01840592734515667, -0.043137986212968826, -0.03946741670370102, -0.05195712298154831, -0.022637050598859787, 0.027592871338129044, 0.011651432141661644, -0.013020808808505535, 0.016863593831658363, -0.05220281332731247, -0.0033485712483525276, 0.003194561693817377, 0.012535080313682556, -0.01201721653342247, 0.028202058747410774, -0.020663857460021973, 0.01577472686767578, 0.0225544273853302, -0.00874924287199974, 0.015345579944550991, -0.01580343209207058, 0.017287006601691246, 0.0039641354233026505, -0.09270976483821869, -0.009234526194632053, 0.003062940901145339, -0.024025795981287956, -0.011764860711991787, 0.8208732604980469, -0.029927946627140045, -0.006271821912378073, -0.004645275417715311, -0.014895353466272354, -0.023163555189967155, 0.009557130746543407, 0.016385700553655624, 0.011364128440618515, -0.008517172187566757, -0.06521683186292648, 0.004122061189264059, -0.00030514466925524175, 0.013810241594910622, 0.03203703835606575, 0.03173328563570976, 0.02662207931280136, 0.013026653788983822, 0.03252900391817093, 0.03787343204021454, 0.0318278968334198, 0.041997723281383514, -0.0013050725683569908, 0.010826227255165577, 0.02933689020574093, 0.011478712782263756, -0.16748082637786865, 0.004544598050415516, -6.898470882405152e-33, 0.04928037151694298, -0.02818381041288376, 0.002500704722478986, -0.020290488377213478, -0.0028444614727050066, 0.036829859018325806, 0.0009829493938013911, -0.002772797830402851, -0.02741089090704918, -0.004987787455320358, 0.017739826813340187, -0.018232310190796852, -0.005481393542140722, -0.029453640803694725, 0.01525880303233862, -0.011541487649083138, -0.0026336675509810448, 0.03932315856218338, -0.011951999738812447, 0.015288825146853924, 0.026040449738502502, 0.014121259562671185, -0.015322927385568619, 0.02697254717350006, 0.0347476489841938, 0.03256094083189964, 0.03452397137880325, -0.0032413264270871878, 0.0015293577453121543, -0.03843924403190613, -0.03729475289583206, 0.0535007119178772, 0.00108238379471004, -0.02369595319032669, -0.009730726480484009, -0.040267154574394226, -0.04058288037776947, 0.014685005880892277, -0.026435110718011856, -0.023296158760786057, -0.0008244187338277698, -0.0017859811196103692, -0.03924267366528511, -0.0360259935259819, 0.02588404342532158, -0.030222369357943535, 0.0012083865003660321, 0.06917092204093933, 0.01246258057653904, 0.02780129201710224, 0.0009801709093153477, 0.00481455959379673, 0.031624920666217804, 0.02009325660765171, -0.012402540072798729, 0.021624170243740082, -0.02164369821548462, -0.009680538438260555, 0.01131835300475359, 0.016112111508846283, 0.060680486261844635, 0.018837716430425644, 0.0019797831773757935, 0.025374434888362885, 0.0048038167878985405, -0.01583969034254551, 0.013103276491165161, 0.037771765142679214, 0.007947803474962711, 0.06349062919616699, -0.06048809736967087, 0.010339000262320042, 0.007341853342950344, 0.015373789705336094, -0.005730420351028442, -0.05502712354063988, 0.011460591107606888, 0.015563959255814552, 0.01735784113407135, 0.026297561824321747, -0.000025844654373941012, -0.005475538782775402, -0.06227508559823036, -0.0324745699763298, 0.007885683327913284, 0.010207686573266983, 0.008999436162412167, -0.015592705458402634, -0.04118749871850014, 0.03001709096133709, 0.05121561139822006, 0.00909214187413454, -0.03070991300046444, -0.01750403642654419, -0.04063532501459122, 7.221465873284407e-33, 0.0232252087444067, -0.04021182283759117, 0.007297889795154333, 0.0017967337043955922, 0.020453833043575287, -0.027721824124455452, 0.034909993410110474, -0.04342116788029671, -0.04434392973780632, 0.008174140937626362, -0.06707064807415009, 0.03629201650619507, -0.050977036356925964, 0.010394252836704254, 0.05125923082232475, -0.018515819683670998, 0.033930618315935135, -0.016462352126836777, 0.006096320692449808, -0.040763892233371735, -0.04321973770856857, 0.01993528939783573, 0.02617439068853855, 0.011496423743665218, 0.04452071711421013, -0.0038503799587488174, -0.03323766961693764, 0.043375927954912186, -0.004728960804641247, -0.004887857008725405, 0.018609851598739624, -0.007044486701488495, -0.008781008422374725, -0.011645992286503315, -0.056672319769859314, 0.03561379760503769, -0.024523550644516945, -0.00669080950319767, 0.049100469797849655, -0.002063990570604801, 0.021029653027653694, -0.03360780328512192, -0.0093750124797225, 0.024836638942360878, -0.007877898402512074, 0.0549100898206234, 0.014951194636523724, -0.021528027951717377, -0.009438605979084969, -0.016999073326587677, 0.019286805763840675, 0.010288558900356293, -0.012062635272741318, 0.0019593266770243645, 0.014812621288001537, -0.03249262273311615, -0.05821571871638298, 0.0066572451032698154, -0.030909398570656776, -0.01145973615348339, 0.0328717902302742, 0.021195780485868454, 0.015407550148665905, 0.03332861140370369, -0.045458704233169556, -0.06202264130115509, 0.007239033933728933, -0.010560867376625538, 0.020335109904408455, 0.005714892875403166, 0.04057113081216812, -0.019876975566148758, -0.016133908182382584, 0.055042386054992676, -0.011769616976380348, -0.004249801859259605, -0.04257875308394432, -0.0023108627647161484, -0.012498162686824799, 0.017778631299734116, -0.011047092266380787, 0.02882797084748745, -0.029916569590568542, 0.0270894356071949, 0.013603287748992443, 0.029940243810415268, -0.021169474348425865, 0.037346530705690384, 0.05941001698374748, -0.0026511396281421185, 0.01109397318214178, -0.019372470676898956, -0.008900963701307774, 0.029092319309711456, -0.018449194729328156, -1.256577508712553e-8, 0.02048594132065773, -0.0002075220545521006, -0.0001080300280591473, 0.048399705439805984, 0.009983699768781662, 0.016016656532883644, 0.0060073151253163815, -0.008902356959879398, -0.06209065765142441, 0.02028648741543293, 0.018639205023646355, 0.012875632382929325, 0.009387323632836342, 0.05979833006858826, 0.017734963446855545, -0.003037309041246772, 0.038208212703466415, 0.03568100929260254, 0.030508296564221382, -0.010819035582244396, 0.029580963775515556, 0.05515989288687706, -0.013860432431101799, -0.003323690965771675, -0.014603754505515099, 0.006254848092794418, -0.02323271334171295, -0.0812138170003891, -0.018480926752090454, -0.002598040271550417, 0.06735047698020935, -0.03263217955827713, -0.017825745046138763, -0.023206595331430435, -0.008643793873488903, -0.003253048053011298, -0.01791405864059925, -0.0063460771925747395, 0.018048496916890144, -0.026679525151848793, 0.00042502785800024867, 0.02835121378302574, -0.001794070703908801, -0.02052401937544346, -0.05701815336942673, -0.02537376433610916, -0.023645645007491112, -0.006611333228647709, -0.0027110509108752012, -0.02261122316122055, 0.029561689123511314, -0.013838118873536587, -0.02785235084593296, 0.046378280967473984, 0.039974432438611984, 0.01599469594657421, 0.025498708710074425, -0.034867461770772934, -0.0369076170027256, -0.015496302396059036, 0.021487101912498474, -0.0030915536917746067, -0.023695707321166992, -0.02444656379520893 ]
capistrano-sed-escaping-forward-slashes-and-p-is-not-puts
https://markhneedham.com/blog/2010/11/18/capistrano-sed-escaping-forward-slashes-and-p-is-not-puts
false
2010-11-27 10:50:27
Team Communication: Learning models
[ "communication", "learning" ]
[ "Communication", "Learning" ]
One of the problems I've noticed in several of the 'agile' communication mechanisms (such as the standup or dev huddle) that we typically use on teams is that they focus almost entirely on verbal communication which only covers one of our learning styles - the auditory learning style. == The Learning Models The http://www.businessballs.com/vaklearningstylestest.htm[VAK learning style model] describes a simple model covering the different learning styles that people have: * *Visual* - seeing and reading. ** Involves the use of seen or observed things, including pictures, diagrams, demonstrations. * *Auditory* - listening and speaking. ** Involves the transfer of information through listening: to the spoken word, of self or others. * *Kinesthetic* - touching and doing. ** Involves physical experience - touching, feeling, holding, doing, practical hands-on experiences. My own learning style is predominantly visual so I tend to find that a well drawn diagram will help me understand something far more quickly than a colleague spending 10 minutes explaining something using only words. If the latter happens then I either find myself totally zoning out or mentally trying to sketch out what the speaker is saying. In a team environment this would translate into ensuring that we use the whiteboard when trying to explain problems. Sometimes just going to the whiteboard isn't enough and we need to cater to the kinesthetic learning model which in software development terms would involve walking through the code. I've never been involved in a team session where we went through a part of the code base together but I've heard from colleagues that it can be very helpful in some situations. I think it's important that we http://www.markhneedham.com/blog/2009/08/24/learning-thoughts-on-doing-so-more-effectively/[know what our favoured learning style is] so that we can guide any discussion in such a way that it plays to our strengths. == In terms of software development Although people tend to have different learning models my general observation is that we can move through the models from auditory to visual and finally kinesthetic depending on the complexity of what's being explained. I think it also partly depends on the experience of team members. For example, I'm now able to understand many more discussions which are purely verbal where previously I'd have needed a diagram or someone to show me what they meant in the code. I think it's important to look at the implicit feedback we're getting from colleagues when explaining something to see whether or not the model we've used has been effective. If it hasn't then at least we know we have some other approaches to try which might be more successful.
null
null
[ 0.023925628513097763, 0.028595464304089546, -0.02309579961001873, 0.030419044196605682, 0.07639310508966446, 0.01054980605840683, 0.034443508833646774, 0.03580273687839508, 0.029440775513648987, -0.04382601007819176, -0.023920800536870956, 0.016829023137688637, -0.04670656844973564, 0.017071207985281944, -0.039658524096012115, 0.08839244395494461, 0.05867818742990494, 0.0019350325455889106, 0.01704922504723072, 0.014821582473814487, 0.029264789074659348, 0.07366587221622467, 0.027124760672450066, 0.03963875398039818, 0.04402454197406769, 0.0115906847640872, 0.01433506328612566, -0.010696041397750378, -0.04747221991419792, -0.00953160971403122, 0.040411509573459625, -0.019511781632900238, 0.01172625832259655, -0.012622931972146034, 0.018683845177292824, -0.005357872229069471, -0.00742230424657464, 0.024051111191511154, 0.029563942924141884, -0.01047211792320013, -0.069101482629776, 0.04764588549733162, 0.002895673271268606, -0.0008882869151420891, -0.034934692084789276, 0.018067963421344757, -0.044033437967300415, 0.0217614583671093, 0.005972900427877903, -0.0031153445597738028, -0.07031124085187912, 0.01112060435116291, 0.00916636548936367, -0.010399439372122288, -0.017742644995450974, 0.023371918126940727, 0.015949079766869545, -0.0568854883313179, 0.0034379016142338514, -0.04524754732847214, -0.00342769012786448, 0.002901769708842039, 0.0014771639835089445, 0.034205012023448944, 0.02889171987771988, -0.024846164509654045, -0.0018773567862808704, 0.031628724187612534, -0.033275723457336426, -0.004756608046591282, -0.01250887755304575, 0.01374534610658884, -0.024042872712016106, -0.01859118416905403, -0.005391404964029789, -0.06305432319641113, 0.024091213941574097, 0.05983402207493782, 0.02850547432899475, 0.03237530589103699, -0.007994313724339008, 0.01404625829309225, 0.01654890552163124, 0.017043989151716232, -0.02846391312777996, -0.034566137939691544, 0.020096810534596443, 0.00559351546689868, -0.07648826390504837, 0.07486984878778458, 0.002942020306363702, -0.06636557728052139, 0.006286958698183298, 0.0472862608730793, 0.0011968555627390742, 0.023835627362132072, 0.023161573335528374, 0.005008029751479626, -0.00762690044939518, -0.03434939682483673, -0.021142911165952682, -0.014819023199379444, -0.008443668484687805, 0.018357660621404648, -0.0908084437251091, -0.0077620442025363445, -0.003327550832182169, -0.017545152455568314, -0.022196711972355843, 0.020659735426306725, -0.031833600252866745, -0.001518369186669588, -0.021165968850255013, 0.003491037990897894, -0.07347021996974945, 0.08401188999414444, 0.018810871988534927, -0.02210587076842785, -0.004454454872757196, -0.0062247999012470245, 0.04239023104310036, 0.01754094660282135, -0.01304467860609293, 0.08529037982225418, 0.0003844861639663577, 0.01746736839413643, -0.0480463020503521, 0.06349296122789383, -0.010048122145235538, -0.05112917721271515, -0.011279148049652576, 0.05221690982580185, -0.03319055214524269, 0.004420280922204256, -0.009204133413732052, -0.019024889916181564, 0.020165767520666122, 0.005103914067149162, 0.0006250999867916107, 0.08032982796430588, -0.00047839610488153994, -0.028175771236419678, 0.01906723342835903, 0.019735153764486313, 0.027364520356059074, -0.023422345519065857, -0.023637423291802406, -0.023471977561712265, -0.0536498986184597, -0.014126723632216454, -0.000019037488527828828, -0.0020726616494357586, 0.02868056111037731, -0.03844854235649109, 0.034587517380714417, 0.08668579161167145, 0.044411689043045044, -0.0023100285325199366, 0.013741313479840755, 0.019360007718205452, 0.037268124520778656, 0.022994214668869972, 0.021707503125071526, 0.02121102064847946, 0.018865864723920822, 0.008540303446352482, -0.029742956161499023, 0.04224865511059761, 0.0008232210529968143, 0.008961467072367668, -0.044974032789468765, -0.03954160585999489, 0.037469152361154556, -0.04818946123123169, -0.025708718225359917, 0.04603340104222298, 0.05315346270799637, 0.047546859830617905, 0.04842551425099373, -0.0054136901162564754, -0.074825219810009, 0.02852170355618, 0.030248265713453293, 0.0060186078771948814, 0.03892103210091591, -0.038477201014757156, 0.05616239830851555, 0.01501065120100975, -0.02722092531621456, 0.03459949418902397, -0.0753687247633934, -0.09113892167806625, -0.008037884719669819, -0.008945658802986145, 0.06215924769639969, -0.047091223299503326, 0.019655350595712662, 0.057929255068302155, 0.03866136819124222, 0.0512055829167366, 0.05111714079976082, 0.020902281627058983, 0.005974770523607731, -0.019821394234895706, -0.021484967321157455, 0.0653301253914833, 0.04566427692770958, -0.013145741075277328, -0.04993842914700508, 0.013220899738371372, -0.016994740813970566, -0.02358214370906353, 0.04061552509665489, -0.010498018935322762, 0.06412253528833389, -0.010230502113699913, 0.05815483257174492, -0.019603604450821877, 0.0580432303249836, -0.05140475183725357, 0.0011459506349638104, -0.0037172907032072544, -0.023053336888551712, 0.013205112889409065, -0.008264145813882351, 0.1041705459356308, 0.07069098204374313, -0.044608574360609055, -0.058198925107717514, 0.0055689564906060696, 0.025522364303469658, -0.043419547379016876, -0.00361004495061934, -0.0014963059220463037, 0.022849947214126587, -0.01841658167541027, -0.07142846286296844, -0.03872709721326828, 0.0221903957426548, -0.05746700242161751, -0.010773559100925922, 0.052111342549324036, -0.01370272133499384, 0.06437870115041733, -0.004873907659202814, -0.0017747503006830812, 0.0029718216974288225, -0.007454696111381054, -0.044770531356334686, 0.027907660230994225, 0.011849738657474518, -0.016278425231575966, 0.04216177761554718, -0.02297031134366989, -0.04014614224433899, -0.02603168413043022, -0.035155799239873886, -0.006973702926188707, 0.0564885139465332, 0.05543242394924164, -0.008507095277309418, 0.06958258897066116, -0.012542398646473885, 0.03862134367227554, 0.004374388139694929, -0.04716777801513672, -0.03164125233888626, -0.03597647324204445, 0.009392060339450836, 0.011316226795315742, 0.00772063946351409, 0.020413924008607864, 0.022349761798977852, 0.010446663945913315, -0.025815559551119804, -0.0009626485989429057, 0.028156517073512077, 0.0015721723902970552, -0.004290486220270395, -0.031407784670591354, -0.01859406568109989, 0.05311565473675728, -0.01830102689564228, -0.010600047186017036, 0.014241007156670094, -0.09215008467435837, 0.01540474221110344, -0.06805908679962158, -0.03643239662051201, -0.003477534744888544, -0.005677190609276295, 0.048164717853069305, 0.01265399344265461, 0.013557970523834229, 0.05878281965851784, 0.00996438879519701, 0.01988035999238491, -0.0028610099107027054, -0.01384807750582695, 0.04101811349391937, 0.011598054319620132, -0.018595783039927483, 0.04195942357182503, -0.00007481616194127128, -0.004155778791755438, -0.05718107521533966, 0.0625377744436264, -0.05642194300889969, -0.28279367089271545, 0.028882024809718132, 0.009426411241292953, -0.04769330099225044, 0.02277887985110283, -0.03563925251364708, 0.010764839127659798, -0.0660620927810669, -0.034134261310100555, 0.026626266539096832, -0.05282445251941681, -0.004426443483680487, -0.007820450700819492, 0.044470448046922684, 0.0086068669334054, 0.007919218391180038, 0.012578842230141163, -0.040684446692466736, 0.015110312029719353, 0.061049655079841614, -0.01668672449886799, -0.06370747089385986, -0.0058688814751803875, 0.04408586397767067, 0.02546577714383602, 0.03915305808186531, -0.0891193374991417, 0.04034227877855301, -0.052035339176654816, 0.00048449920723214746, 0.016610434278845787, 0.0010661116102710366, -0.01184058003127575, 0.0016150616575032473, -0.0040236469358205795, -0.010177445597946644, 0.056499384343624115, 0.00016846145445015281, -0.001654451829381287, -0.0013442774070426822, -0.010516233742237091, -0.03673925995826721, 0.007389118429273367, 0.01140030100941658, 0.06305279582738876, 0.009620742872357368, -0.08441932499408722, -0.010278905741870403, -0.014896076172590256, 0.088620126247406, -0.05725964903831482, -0.034114278852939606, -0.005235178861767054, 0.04057823866605759, 0.0049111610278487206, -0.030812818557024002, 0.0172598697245121, -0.03418123722076416, -0.021682556718587875, -0.034666694700717926, -0.015446709468960762, -0.04303235933184624, -0.018844282254576683, -0.08597829937934875, 0.0021988737862557173, -0.06708864867687225, -0.06839388608932495, -0.003014763118699193, 0.051264725625514984, 0.0027245215605944395, -0.04894653335213661, -0.010290062986314297, -0.010175474919378757, -0.1002480536699295, 0.005233877804130316, -0.004201853647828102, -0.03209102898836136, -0.015270065516233444, 0.035806383937597275, 0.04645923897624016, -0.014641819521784782, -0.06649891287088394, 0.02184411510825157, 0.011353951878845692, 0.01908695138990879, 0.0031525951344519854, 0.058494165539741516, 0.01757718436419964, -0.02064705640077591, 0.000973051181063056, 0.0575566366314888, 0.02712107077240944, -0.0506804883480072, -0.019365431740880013, 0.01210431195795536, -0.006992589682340622, 0.005253276787698269, -0.010598408989608288, 0.0166234839707613, 0.024622732773423195, -0.017921853810548782, -0.05424952134490013, 0.006630358751863241, 0.004561923909932375, -0.002106196479871869, -0.020841890946030617, -0.06223432719707489, -0.003374166786670685, 0.06668869405984879, 0.017572088167071342, 0.0032765837386250496, -0.02588779479265213, 0.010035217739641666, -0.021342240273952484, -0.021503787487745285, -0.035781148821115494, 0.014314764179289341, 0.06276561319828033, -0.012908761389553547, 0.004533885978162289, -0.06524194031953812, 0.0033223568461835384, -0.0354468859732151, 0.005445487797260284, -0.05092765763401985, -0.002466261852532625, -0.023211641237139702, -0.04195711016654968, -0.010838285088539124, 0.01891596056520939, -0.01258972566574812, 0.013269733637571335, 0.05197928845882416, -0.021578676998615265, 0.03061619959771633, -0.023686598986387253, -0.06561446934938431, -0.027607299387454987, -0.007880622521042824, -0.023768533021211624, -0.008546800352633, 0.027585884556174278, -0.0013380199670791626, 0.011365439742803574, 0.021737147122621536, 0.015895754098892212, 0.0037156641483306885, -0.01587142050266266, 0.023821216076612473, 0.010785936377942562, 0.024379439651966095, -0.049706898629665375, 0.012583104893565178, -0.027741478756070137, -0.019833814352750778, -0.023412203416228294, 0.016674814745783806, -0.008547908626496792, -0.023898527026176453, -0.012704065069556236, 0.009786459617316723, -0.03958827257156372, -0.04036828130483627, -0.022686975076794624, 0.03980414941906929, 0.06050360947847366, -0.011939480900764465, 0.005749096162617207, -0.014062395319342613, -0.023212121799588203, 0.02062288671731949, 0.003254078095778823, -0.0418168269097805, 0.007109489291906357, -0.0024141885805875063, -0.008083462715148926, 0.009399408474564552, -0.00028920010663568974, 0.04714365676045418, 0.017991235479712486, 0.014644044451415539, -0.04121646657586098, 0.007182970643043518, 0.004584329202771187, 0.03504526987671852, 0.03104049526154995, 0.0015200476627796888, -0.0100966552272439, -0.03035641461610794, -0.021505143493413925, -0.036300525069236755, -0.0029223086312413216, -0.009002277627587318, 0.01341794990003109, -0.042527057230472565, -0.07384087145328522, 0.05022455379366875, 0.011539492756128311, 0.014450241811573505, 0.010077874176204205, 0.012443939223885536, 0.0051810541190207005, -0.01436405535787344, 0.03629133850336075, 0.050886813551187515, -0.07137393206357956, 0.0061211492866277695, -0.0012952666729688644, -0.00434139184653759, -0.005357237532734871, -0.01547957956790924, -0.030292939394712448, -0.03501199558377266, -0.03777649998664856, -0.007212378084659576, -0.0814838632941246, -0.02456105872988701, -0.042082756757736206, 0.016021529212594032, 0.028577513992786407, -0.0033289052080363035, -0.02270149253308773, -0.0373552106320858, -0.025259654968976974, -0.04230831563472748, -0.0034413114190101624, -0.05168171599507332, 0.029026716947555542, 0.015110498294234276, -0.04102246090769768, 0.0009446196490898728, -0.03473018482327461, 0.028951996937394142, 0.023172982037067413, -0.024158088490366936, -0.01138580497354269, -0.04798021540045738, -0.00023576756939291954, 0.034400999546051025, 0.04341012239456177, 0.0016610048478469253, -0.005482684820890427, -0.048948828130960464, -0.005786283873021603, -0.026453301310539246, -0.00445179408416152, -0.00895798671990633, -0.01925053261220455, 0.03322846069931984, 0.06543231010437012, 0.030231092125177383, 0.03002581186592579, 0.0045259250327944756, -0.016279052942991257, 0.04144980013370514, -0.058987248688936234, -0.04125784710049629, -0.021131569519639015, -0.0589103177189827, 0.0008073351928032935, 0.01077871024608612, 0.011118966154754162, -0.0385589599609375, 0.046733006834983826, 0.016641676425933838, 0.026083869859576225, 0.026009922847151756, 0.013552372343838215, 0.01662849262356758, -0.05830616131424904, 0.015539717860519886, -0.07399094104766846, -0.005683712661266327, 0.026428475975990295, 0.00580193568021059, -0.021971458569169044, -0.004076323006302118, -0.03336096554994583, 0.0622100904583931, -0.07121559977531433, -0.024421298876404762, 0.026906827464699745, -0.014508141204714775, -0.02406129613518715, 0.025222517549991608, -0.07062812894582748, 0.02225266955792904, -0.0010080788051709533, -0.04218988120555878, -0.021128501743078232, -0.008363007567822933, 0.055020708590745926, -0.002287237672135234, 0.04564524441957474, -0.039818793535232544, 0.003436875529587269, 0.0775342509150505, 0.01840617135167122, 0.018129989504814148, 0.04474286362528801, 0.006593679543584585, 0.06514355540275574, 0.03668048605322838, 0.008159340359270573, 0.010175446048378944, 0.010944136418402195, -0.0024760053493082523, -0.06492191553115845, 0.043009355664253235, -0.003822001162916422, -0.040626998990774155, -0.033664949238300323, 0.045693039894104004, 0.020140692591667175, -0.026910904794931412, -0.0433100201189518, 0.01865226775407791, -0.051894526928663254, 0.006653552409261465, -0.019983895123004913, -0.001270060078240931, -0.05779130011796951, 0.04157637804746628, -0.0031936464365571737, 0.01812821626663208, 0.06301778554916382, 0.0024143473710864782, -0.03043142892420292, -0.014352535828948021, 0.08314504474401474, 0.07328895479440689, 0.08404585719108582, 0.025694776326417923, 0.0766315758228302, -0.016107376664876938, -0.032112203538417816, 0.029952535405755043, 0.010432718321681023, -0.021432334557175636, -0.027199637144804, 0.03526971861720085, 0.0485837496817112, -0.014539826661348343, 0.057232994586229324, -0.018618179485201836, -0.021756358444690704, 0.006781173404306173, 0.0355769544839859, 0.000362080754712224, 0.05164008215069771, 0.00352092320099473, 0.015098698437213898, -0.007918301038444042, -0.04021453857421875, 0.018351247534155846, -0.0397164449095726, -0.01048312522470951, 0.040051329880952835, -0.014335565268993378, 0.03329848870635033, 0.02383650466799736, 0.019898496568202972, 0.094838947057724, -0.05543317273259163, 0.01580081321299076, -0.008437310345470905, 0.01791112869977951, -0.016916699707508087, 0.019459953531622887, -0.011139984242618084, -0.02742058038711548, 0.004392469301819801, -0.045630015432834625, -0.023192675784230232, -0.028104355558753014, -0.004037002567201853, 0.03970799222588539, -0.028956741094589233, 0.012970350682735443, 0.03842221572995186, 0.013788560405373573, -0.04413678124547005, -0.06327111274003983, -0.04680812731385231, -0.020584456622600555, -0.042054433375597, -0.006697391159832478, 0.05068434402346611, -0.012346260249614716, -0.03543988615274429, -0.009767837822437286, -0.013015110045671463, -0.03010619431734085, 0.017509084194898605, -0.04609563201665878, -0.03625553101301193, 0.008289268240332603, 0.032019320875406265, 0.02610556036233902, 0.006066386122256517, 0.047494325786828995, 0.005436256993561983, -0.0070815132930874825, -0.013678222894668579, 0.012871241196990013, 0.024504613131284714, -0.016791140660643578, 0.020635589957237244, -0.08878231048583984, -0.001975379418581724, 0.043939922004938126, -0.0044492981396615505, -0.058163125067949295, 0.01030057854950428, 0.014735604636371136, 0.016588550060987473, 0.04558009281754494, -0.003118117107078433, 0.009577478282153606, -0.04774392396211624, -0.01189634669572115, -0.007050301413983107, 0.026243925094604492, 0.05067801848053932, -0.031322840601205826, 0.0996129959821701, 0.02183285914361477, -0.006605084985494614, -0.03735475242137909, -0.019837232306599617, 0.0002569979405961931, -0.0015001915162429214, -0.007862362079322338, -0.036840856075286865, -0.01572742499411106, -0.08855883777141571, -0.03618073835968971, 0.03393164649605751, -0.014373956248164177, -0.03674642741680145, 0.026959605515003204, 0.006796168629080057, -0.006023313384503126, 0.03121701255440712, -0.046937454491853714, 0.025348808616399765, -0.015010896138846874, -0.013824470341205597, 0.012093315832316875, 0.010897761210799217, -0.012858071364462376, -0.02455301396548748, 0.024438414722681046, -0.036866772919893265, -0.0012909213546663523, 0.006930950563400984, 0.00741393119096756, 0.05127248913049698, 0.009011532180011272, -0.001566239632666111 ]
[ -0.06214701011776924, -0.009713750332593918, -0.00653131864964962, -0.04618101194500923, 0.03572465851902962, -0.017523739486932755, -0.0017839729553088546, 0.003769192611798644, -0.004819250199943781, -0.031063832342624664, -0.007624534890055656, -0.018037943169474602, -0.006210069637745619, -0.007246636785566807, 0.09845814853906631, -0.01094055362045765, 0.001254978240467608, -0.06438300758600235, 0.025813892483711243, 0.023256100714206696, 0.0023537559900432825, -0.0016467561945319176, -0.03693859279155731, -0.013686972670257092, 0.0035466731060296297, 0.02372296340763569, 0.017538828775286674, -0.03780917450785637, 0.016784638166427612, -0.18566809594631195, -0.002614970551803708, 0.04386717453598976, 0.05051082372665405, -0.01700190268456936, -0.017320184037089348, 0.07120590656995773, 0.01118768285959959, 0.021489089354872704, -0.01471056416630745, 0.04051568731665611, -0.0008314704173244536, 0.007096686400473118, -0.0433313213288784, -0.04450627416372299, 0.03354834392666817, -0.013228291645646095, 0.0043728849850595, -0.05976263806223869, -0.025866510346531868, -0.018768947571516037, -0.038490235805511475, -0.05242316424846649, -0.009687071666121483, -0.009449931792914867, -0.01359387207776308, 0.025509875267744064, 0.04344343766570091, 0.06645818799734116, -0.0037688626907765865, 0.01621837355196476, 0.012178977951407433, -0.01588151790201664, -0.16089795529842377, 0.09527416527271271, 0.025047287344932556, 0.06694212555885315, -0.05259646475315094, 0.0023041623644530773, -0.007180958520621061, 0.0859655886888504, 0.017092086374759674, -0.043213024735450745, -0.017495401203632355, 0.019553067162632942, 0.028418246656656265, 0.006510425359010696, 0.011111127212643623, 0.003115873783826828, 0.036677952855825424, -0.06996431201696396, -0.02583850733935833, -0.004147693980485201, -0.016526909545063972, -0.02373776212334633, -0.009832726791501045, 0.004706875421106815, 0.013037051074206829, 0.03469805791974068, 0.01779540814459324, 0.023367049172520638, 0.017717622220516205, 0.007480061147361994, -0.0023135184310376644, -0.006727062631398439, -0.06721267104148865, -0.02390170842409134, -0.0014091526390984654, 0.005239150486886501, -0.07482658326625824, 0.41962185502052307, -0.015092981047928333, -0.018952831625938416, 0.06866970658302307, 0.027100201696157455, -0.0005059634568169713, -0.01339936163276434, 0.011211808770895004, -0.04995526000857353, 0.01865154318511486, 0.0007703981245867908, 0.010229253210127354, 0.030924610793590546, 0.04019416868686676, -0.03397434204816818, -0.014755936339497566, 0.04738469794392586, 0.019480038434267044, 0.014323062263429165, 0.012780941091477871, -0.03523988649249077, -0.009721137583255768, -0.00211162306368351, 0.030868714675307274, 0.005416700150817633, -0.016963033005595207, -0.048693157732486725, 0.03186792507767677, 0.07260754704475403, 0.04101792350411415, -0.017966365441679955, 0.07532025128602982, -0.032581575214862823, -0.05144643411040306, -0.013109524734318256, 0.002627176931127906, 0.00854649767279625, 0.04476113244891167, -0.012865313328802586, -0.02336668223142624, 0.05307157337665558, 0.02128705382347107, -0.013481437228620052, 0.03448645770549774, -0.03072536364197731, -0.07210919260978699, 0.12993021309375763, 0.007046179845929146, -0.027443671599030495, -0.03879772499203682, 0.00004052436270285398, 0.004204790107905865, 0.037582021206617355, 0.03114299662411213, -0.03167400509119034, 0.03898288309574127, 0.010767138563096523, 0.1011313870549202, -0.0016045999946072698, -0.07462408393621445, 0.006042869761586189, -0.010884426534175873, -0.03885442391037941, -0.04838687554001808, 0.0399651862680912, 0.06824799627065659, -0.08383914828300476, -0.02341151237487793, 0.0013341187732294202, 0.029960351064801216, -0.08152946084737778, -0.015365046449005604, 0.01719510369002819, -0.013723074458539486, 0.008891463279724121, 0.0466165691614151, -0.027784891426563263, -0.05472193658351898, -0.00354367820546031, 0.038479212671518326, 0.027669211849570274, 0.03915679082274437, -0.0040855202823877335, -0.011542699299752712, 0.005136899650096893, -0.016104014590382576, -0.05049998313188553, -0.025058425962924957, -0.024952873587608337, -0.008969728834927082, -0.003573350142687559, 0.020896542817354202, -0.013785156421363354, -0.07080283015966415, 0.09695358574390411, -0.041417837142944336, 0.004492652602493763, 0.025919191539287567, -0.031553320586681366, -0.07165585458278656, -0.002861382206901908, -0.08368270844221115, 0.04549536481499672, -0.039756424725055695, 0.020812099799513817, -0.057860542088747025, 0.037377193570137024, 0.03324481472373009, -0.022349676117300987, 0.09308919310569763, 0.034621432423591614, -0.043235767632722855, -0.026401372626423836, 0.03870347514748573, 0.019547080621123314, 0.00865219160914421, -0.009184707887470722, -0.0037706003058701754, 0.03649154305458069, -0.018573779612779617, 0.010536656714975834, -0.027712007984519005, 0.005586833227425814, -0.01596994884312153, -0.3536749482154846, -0.019220028072595596, 0.00003798593388637528, 0.010163987055420876, 0.023886889219284058, -0.028437631204724312, 0.04139496758580208, -0.028787732124328613, 0.00804077461361885, -0.014845435507595539, 0.07392590492963791, 0.004052925854921341, -0.013525399379432201, -0.08833339065313339, -0.00008961205458035693, 0.025468839332461357, -0.024438174441456795, -0.014361092820763588, -0.05372820794582367, 0.00001792501461750362, 0.02423134818673134, 0.0050080702640116215, -0.013679349794983864, -0.06274417787790298, -0.013116729445755482, -0.02740303985774517, 0.09576516598463058, -0.026473715901374817, 0.09278374165296555, -0.023044198751449585, 0.022872446104884148, 0.002979864599183202, 0.019947590306401253, -0.10204796493053436, 0.020842088386416435, -0.02283506840467453, 0.02805471606552601, -0.02631204016506672, 0.03891607001423836, -0.05271218717098236, -0.0657813549041748, 0.010792942717671394, -0.06611065566539764, -0.01996803842484951, -0.08359812945127487, 0.0140021787956357, -0.04129291698336601, -0.044321246445178986, -0.03867026045918465, 0.06013206019997597, 0.016768066212534904, 0.02191736362874508, 0.017434244975447655, 0.006149135064333677, -0.03784489259123802, -0.0416703000664711, -0.10432463884353638, 0.009332096204161644, -0.011158470064401627, 0.0009755354258231819, 0.021558711305260658, 0.05160081386566162, 0.013099009171128273, -0.07773721218109131, -0.006356468889862299, 0.0047207786701619625, 0.019257208332419395, 0.00418768310919404, 0.06584390997886658, -0.0337362214922905, -0.010152248665690422, 0.1152578666806221, 0.026634544134140015, -0.030631516128778458, 0.029930630698800087, 0.03365559130907059, -0.004669340327382088, 0.0067565166391432285, -0.02874206192791462, -0.015774745494127274, 0.0205510426312685, -0.0165703184902668, 0.02836751937866211, -0.02602309361100197, 0.011507848277688026, 0.011156057007610798, 0.02094366028904915, -0.06682927161455154, 0.06100183352828026, 0.01651424542069435, -0.025192050263285637, 0.009643529541790485, -0.019029801711440086, -0.061233002692461014, 0.07865352928638458, 0.004802517127245665, -0.24431420862674713, 0.01987202651798725, 0.05935484915971756, 0.06687615066766739, -0.029751159250736237, 0.041391752660274506, 0.0001270348730031401, -0.07980193197727203, -0.007038294803351164, 0.0035996974911540747, 0.024502180516719818, -0.013649245724081993, 0.014028984121978283, 0.008132128044962883, 0.02622799761593342, 0.024014608934521675, 0.11578649282455444, -0.028057141229510307, 0.048356328159570694, -0.02307666838169098, -0.004394944291561842, 0.0011409021681174636, 0.15281835198402405, 0.005250976886600256, 0.04068947955965996, 0.0017567573813721538, -0.014235641807317734, 0.0022160520311444998, 0.07002530992031097, 0.006783516611903906, 0.02881498821079731, -0.0061834100633859634, 0.06630874425172806, 0.028049413114786148, 0.008040431886911392, -0.0435989648103714, -0.017183585092425346, 0.007314369548112154, 0.010930963791906834, 0.011608223430812359, 0.03993598744273186, -0.0012671486474573612, -0.011614926159381866, 0.015249851159751415, 0.06703196465969086, 0.029455339536070824, 0.022368913516402245, -0.05356747657060623, -0.04745853692293167, -0.004135670606046915, -0.027669835835695267, -0.05527326464653015, 0.005070087034255266, -0.005717117805033922, 0.026997847482562065, 0.06082608923316002, 0.0604618638753891, -0.039314497262239456, -0.004424350336194038, -0.006340805906802416, -0.008926947601139545, -0.02431066706776619, 0.09492799639701843, 0.025753168389201164, 0.027177292853593826 ]
[ 0.035999175161123276, 0.01974542811512947, 0.01834864914417267, -0.04289307817816734, -0.01491388026624918, 0.016133520752191544, -0.01785862259566784, 0.02456912212073803, 0.035544510930776596, 0.00984265748411417, 0.025684848427772522, 0.02180379629135132, -0.02095424011349678, -0.000510531710460782, 0.046550288796424866, -0.012934560887515545, 0.06841219961643219, -0.008020577020943165, 0.043833911418914795, 0.04727666825056076, 0.016959916800260544, 0.03700749948620796, 0.0016623495612293482, -0.004647750407457352, 0.0002495028602425009, 0.0047899773344397545, -0.012881155125796795, 0.0033215105067938566, 0.046450745314359665, -0.148060604929924, -0.03573102131485939, -0.040290750563144684, -0.011355001479387283, 0.023041849955916405, -0.011713343672454357, 0.006690220441669226, -0.015971092507243156, 0.021544529125094414, -0.029827233403921127, 0.01888025365769863, -0.05260150134563446, 0.007320380304008722, 0.019617682322859764, 0.028152719140052795, 0.018680904060602188, 0.025073004886507988, -0.004965773783624172, -0.06282589584589005, -0.019245339557528496, 0.019191056489944458, -0.0453522689640522, -0.03782495856285095, 0.005097671877592802, 0.01755629852414131, 0.006546032149344683, 0.024686623364686966, -0.010868331417441368, -0.005151642952114344, 0.005271246191114187, -0.027394510805606842, -0.02029767632484436, 0.005654668435454369, -0.03130914270877838, -0.024960538372397423, -0.026350967586040497, 0.008099757134914398, 0.009659350849688053, 0.02022472769021988, -0.017099348828196526, -0.014293099753558636, -0.0060793496668338776, 0.006253821309655905, -0.0023792770225554705, -0.033810969442129135, 0.01050103735178709, 0.01847757212817669, -0.0025868110824376345, -0.015057207085192204, 0.04175872728228569, -0.05557062849402428, -0.028786227107048035, 0.02524721994996071, -0.0129638547077775, 0.0258918646723032, -0.0181498471647501, 0.011171250604093075, 0.021008307114243507, -0.019024506211280823, -0.0032199015840888023, -0.029818877577781677, -0.03028460592031479, 0.015014690347015858, -0.010884596034884453, -0.010551451705396175, -0.08416923135519028, 0.014629548415541649, -0.02961026504635811, -0.029851941391825676, -0.012696291320025921, 0.8255887627601624, -0.009655630216002464, 0.005073238164186478, 0.03806057572364807, -0.00918407179415226, -0.012327645905315876, -0.002871799748390913, 0.02062755823135376, 0.012155557051301003, 0.025166930630803108, -0.03443251922726631, 0.005942270625382662, 0.03545209765434265, 0.014389683492481709, 0.019822806119918823, 0.03439294546842575, 0.03183070197701454, -0.019118530675768852, 0.008325554430484772, 0.008350950665771961, -0.009387504309415817, 0.015172362327575684, -0.018479539081454277, 0.01484471932053566, -0.008775632828474045, -0.014235993847250938, -0.23844130337238312, 0.021830957382917404, -8.564180907666889e-33, 0.04326654225587845, -0.0044302307069301605, 0.026501460000872612, -0.011613434180617332, 0.007513601798564196, 0.0018770438618957996, 0.03003280609846115, -0.0026385574601590633, 0.01031860988587141, -0.017557092010974884, -0.03196176141500473, -0.020169280469417572, 0.02092420868575573, -0.004379900172352791, 0.02233137935400009, -0.036719873547554016, -0.007633289322257042, 0.023741548880934715, -0.03623140603303909, 0.01683148369193077, 0.04840376228094101, 0.00982856284826994, 0.013207964599132538, -0.0010179533855989575, -0.05272722244262695, 0.012402763590216637, -0.035497989505529404, 0.005904047749936581, -0.003638781141489744, -0.03264231234788895, -0.02872295491397381, 0.02167481556534767, -0.00322856567800045, -0.04805684834718704, -0.019776513800024986, -0.04444235563278198, 0.005995747167617083, -0.0021582162007689476, 0.0057513052597641945, -0.04755694419145584, -0.010808049701154232, 0.009728614240884781, -0.04200584813952446, -0.02730771154165268, -0.001640115398913622, 0.013851027935743332, 0.013355985283851624, -0.003191488329321146, 0.0029579387046396732, -0.05356884375214577, -0.018206307664513588, -0.002664620988070965, -0.010520192794501781, 0.020451605319976807, 0.017329726368188858, 0.016320569440722466, 0.025931771844625473, 0.02586285024881363, -0.007003386039286852, 0.033884722739458084, 0.04780298471450806, 0.013096150010824203, -0.0022514578886330128, 0.022515883669257164, -0.02188175730407238, -0.021302731707692146, 0.009303922764956951, -0.02132023498415947, 0.042690567672252655, -0.05650380253791809, -0.07641502469778061, 0.020885564386844635, -0.019908534362912178, -0.025435887277126312, 0.005092892795801163, -0.04169124364852905, 0.007455059792846441, 0.006713550537824631, -0.006986149586737156, 0.033634625375270844, -0.014285944402217865, -0.009117938578128815, -0.008989237248897552, -0.039970964193344116, 0.019959930330514908, -0.006528341211378574, -0.003601958742365241, -0.049443572759628296, -0.039747849106788635, 0.03830193728208542, -0.00910678319633007, 0.007915684022009373, 0.007776795420795679, -0.005698243156075478, 0.011800535954535007, 8.280656813036338e-33, -0.006244270130991936, 0.03210045397281647, -0.019116783514618874, 0.021254699677228928, 0.0385463610291481, 0.012208875268697739, 0.04032551497220993, -0.01296166516840458, -0.08609696477651596, 0.0021301901433616877, -0.01152724027633667, -0.008406695909798145, -0.03776765614748001, 0.027464983984827995, 0.03176819533109665, 0.008155720308423042, 0.01875547133386135, -0.023063719272613525, 0.034757934510707855, 0.0112743079662323, 0.018780915066599846, 0.027661046013236046, 0.0049968259409070015, -0.0015030403155833483, 0.005478884093463421, 0.060828614979982376, -0.015509703196585178, 0.022059742361307144, -0.0021684973035007715, 0.026514198631048203, 0.0043913088738918304, 0.012956425547599792, 0.010734301060438156, -0.011771310120821, 0.006556480657309294, 0.007005698513239622, -0.014093835838139057, -0.022498920559883118, -0.007460340391844511, -0.0043805125169456005, 0.013525126501917839, -0.007284528575837612, -0.022796865552663803, -0.010358543135225773, 0.026448149234056473, 0.006343080196529627, -0.015670079737901688, -0.028691532090306282, 0.0021111522801220417, 0.006094052456319332, 0.02880229614675045, -0.002457704395055771, 0.01057503093034029, -0.0262774545699358, -0.023762710392475128, -0.006904396694153547, -0.015508007258176804, 0.012945545837283134, 0.022575030103325844, 0.008311029523611069, -0.013547560200095177, -0.00925301481038332, -0.0278744176030159, -0.0017621299484744668, -0.010904389433562756, 0.04522717371582985, 0.003820725018158555, 0.00026082282420247793, -0.003331410000100732, 0.004449884872883558, -0.013354049064218998, 0.007988179102540016, 0.0042379433289170265, 0.033002108335494995, 0.017234915867447853, 0.006380394566804171, -0.026902003213763237, -0.010247081518173218, -0.0388311892747879, 0.005033529829233885, 0.005573043134063482, -0.011099698953330517, 0.033553507179021835, 0.016816923394799232, -0.00778870889917016, 0.04355299100279808, -0.024809790775179863, 0.0378139428794384, -0.007029218133538961, 0.006790990475565195, -0.006248063407838345, -0.03793679550290108, 0.017230583354830742, -0.0009176394669339061, 0.017147528007626534, -1.3827435196844817e-8, -0.036179713904857635, 0.03611280769109726, 0.011841543950140476, 0.0012916082050651312, 0.02998221479356289, 0.00012056408741045743, -0.0005048534367233515, 0.011393274180591106, -0.010578815825283527, 0.02299676090478897, 0.047053802758455276, -0.03688295558094978, 0.006339261773973703, 0.03579900786280632, 0.05638452246785164, 0.03674250468611717, -0.015393518842756748, 0.02945706807076931, 0.01743108034133911, -0.029043884947896004, 0.02438632771372795, 0.03531558811664581, 0.01597515679895878, 0.015367982909083366, 0.0129558015614748, -0.023065609857439995, -0.03378921374678612, -0.07827983796596527, -0.016218043863773346, -0.001439817133359611, 0.04732773080468178, -0.015623408369719982, -0.012900336645543575, 0.018085936084389687, -0.02887878753244877, -0.0275562833994627, -0.00845374632626772, -0.010645723901689053, 0.019637513905763626, -0.004227174445986748, -0.028026023879647255, -0.005030622240155935, 0.01790061965584755, -0.03209343180060387, 0.00397690711542964, 0.030957428738474846, 0.0062596858479082584, -0.06579023599624634, -0.03992563486099243, -0.019577138125896454, -0.030976803973317146, 0.030712833628058434, -0.00970338936895132, 0.022252215072512627, 0.0004963385872542858, 0.023664560168981552, 0.015178167261183262, -0.020237604156136513, -0.034725774079561234, -0.00524908397346735, 0.019035091623663902, 0.027934851124882698, -0.01790011115372181, -0.01503829751163721 ]
team-communication-learning-models
https://markhneedham.com/blog/2010/11/27/team-communication-learning-models
false
2010-11-29 19:42:13
Local port forwarding
[ "software-development" ]
[ "Software Development" ]
A colleague and I ran into an interesting problem today which we wanted to use local port forwarding to solve. In our environment.rb file we have a Solr instance url defined like so: [source,ruby] ---- SOLR_CONFIG = { :service_url => "http://some.internal.address:9983/solr/sco_slave_1" } ---- It's defined like that because our colleagues in Chicago have setup a Solr instance on a test environment and all the developers hit the same box. In Pune everyone has Solr configured on their own box so we really wanted to configure that url to be 'localhost' on port '8983'. Several other colleagues have just changed their environment.rb file and then remember not to check that in. I always forget about that type of thing though so I wanted to find a work around. We started by putting the following in /etc/hosts: [source,text] ---- 127.0.0.1 some.internal.address ---- Having done that we needed to forward anything coming in on port 9983 to 8983 to complete the forwarding. I think there's a proper way of doing this using iptables but we didn't want to shave the yak and hence used http://search.cpan.org/~acg/tcpforward-0.01/tcpforward[this tcpforward perl script]: [source,text] ---- ./tcpforward -k -l some.internal.address:9983 -c 127.0.0.1:8983 ---- If anyone knows a better way or the proper way to do this I'd be interesting in hearing about that but for now this does the job!
null
null
[ -0.011510249227285385, -0.0014255939750000834, 0.007315745577216148, 0.06183869019150734, 0.07198311388492584, -0.01802877150475979, 0.023784615099430084, 0.043115682899951935, 0.020277300849556923, -0.021565889939665794, -0.031098198145627975, -0.004924663808196783, -0.08326434344053268, 0.038589734584093094, -0.007827400229871273, 0.07650723308324814, 0.06013132631778717, -0.020830519497394562, 0.007918882183730602, -0.02404477261006832, 0.02036258392035961, 0.07042481005191803, 0.003579532727599144, 0.0341172032058239, 0.0208771750330925, 0.01756940595805645, -0.01637180708348751, 0.010189702734351158, -0.05325910076498985, 0.010646223090589046, 0.05014124512672424, -0.03154776245355606, 0.020019520074129105, -0.01127095427364111, -0.003999087959527969, -0.011177503503859043, -0.01692281849682331, 0.01083169411867857, -0.012471395544707775, 0.011075921356678009, -0.06160159036517143, 0.07258139550685883, 0.007996038533747196, 0.010232493281364441, -0.031504351645708084, 0.012017964385449886, -0.052192527800798416, 0.019232677295804024, 0.027157891541719437, 0.03811221197247505, -0.09150440990924835, 0.028739137575030327, -0.0019630608148872852, -0.025504980236291885, 0.010263042524456978, 0.045341260731220245, 0.0072081261314451694, -0.07954312860965729, 0.031527094542980194, -0.028220364823937416, -0.020266687497496605, 0.005382358096539974, -0.004154189955443144, 0.03233366087079048, 0.0030650687403976917, -0.023921042680740356, -0.005674945656210184, 0.05763895809650421, -0.03490768373012543, -0.032302141189575195, 0.043697185814380646, 0.00899997167289257, -0.029660319909453392, -0.010587739758193493, 0.03771814703941345, -0.012825824320316315, -0.005843286868184805, 0.0327739380300045, -0.013217818923294544, 0.04974793642759323, -0.05240511894226074, -0.002648639725521207, -0.005011873319745064, 0.015656648203730583, 0.013604078441858292, -0.05262625962495804, -0.044934388250112534, 0.0048795584589242935, -0.05025877431035042, 0.0716242790222168, 0.0454753041267395, -0.049055881798267365, 0.01804133877158165, -0.03107350692152977, 0.020118197426199913, 0.001494751195423305, 0.018143126741051674, -0.002642150269821286, 0.01563469134271145, -0.0024605095386505127, -0.04284052178263664, -0.02061445452272892, 0.0013845445355400443, 0.02519986405968666, -0.0580669604241848, 0.007608884014189243, -0.020114203914999962, -0.012181628495454788, -0.009415525943040848, -0.00021505897166207433, -0.03273797780275345, 0.009558912366628647, -0.01492041815072298, 0.01369504164904356, -0.06373017281293869, 0.06512673199176788, 0.018597494810819626, -0.03918429836630821, 0.021020425483584404, -0.0003296395007055253, 0.03298259899020195, 0.02916211634874344, -0.05641515925526619, 0.08666351437568665, -0.005508497357368469, 0.0015024797758087516, -0.0005311029963195324, 0.05391887575387955, -0.04220745712518692, -0.0728166401386261, -0.004357215482741594, 0.08286666125059128, 0.024336734786629677, 0.020383207127451897, -0.014928779564797878, -0.02174859493970871, -0.02215566672384739, -0.02329746074974537, 0.04480849578976631, 0.030632443726062775, -0.01868896372616291, -0.031875308603048325, -0.010557255707681179, 0.004338790196925402, 0.034761521965265274, 0.008185778744518757, 0.007942878641188145, -0.03913835063576698, -0.02038460038602352, -0.005774655379354954, -0.0028681757394224405, 0.03693500906229019, 0.05888156220316887, -0.040736012160778046, 0.0024857704993337393, 0.061882201582193375, 0.038131263107061386, 0.007894149050116539, -0.03332212567329407, -0.013407420367002487, 0.018272176384925842, 0.029676154255867004, -0.005313362926244736, 0.041325949132442474, 0.018347138538956642, -0.014582506380975246, -0.0036794121842831373, 0.043124008923769, 0.027988992631435394, 0.019383303821086884, -0.04527284577488899, -0.023583875969052315, 0.0727325901389122, -0.041235119104385376, 0.012696650810539722, 0.038568779826164246, 0.06317580491304398, 0.05259693041443825, 0.025294359773397446, -0.028506161645054817, -0.08455338329076767, 0.04569210484623909, -0.030192747712135315, 0.018299948424100876, 0.035025130957365036, -0.030885890126228333, 0.06944639980792999, 0.04965575411915779, 0.026923559606075287, 0.03166026994585991, -0.10347644984722137, -0.08093532919883728, -0.03434787318110466, 0.01828962005674839, 0.06093546003103256, -0.008427184075117111, 0.018870029598474503, 0.05765727162361145, 0.007687000557780266, 0.020604126155376434, 0.02763400226831436, -0.00591729860752821, 0.005258546210825443, -0.09900528192520142, -0.05260350927710533, 0.05068635195493698, 0.02499469183385372, -0.015384218655526638, -0.03449894115328789, 0.019746430218219757, -0.03917475789785385, -0.012556795962154865, 0.032094262540340424, -0.011581904254853725, 0.0394793376326561, 0.037971191108226776, 0.027875782921910286, -0.024868572130799294, 0.05071868747472763, -0.04055871441960335, 0.069330595433712, -0.0010380252497270703, -0.010505085811018944, 0.022023901343345642, 0.005234342999756336, 0.11503834277391434, 0.06101074069738388, 0.005709906108677387, -0.04284762963652611, 0.04000859707593918, 0.03739099204540253, -0.04422444477677345, -0.006916101090610027, -0.018381785601377487, -0.005934454500675201, 0.00755093852058053, -0.05061947926878929, -0.005898106377571821, 0.027978477999567986, -0.022632546722888947, 0.0011652630055323243, 0.07018690556287766, -0.009170188568532467, 0.04639965668320656, 0.007093688473105431, -0.00596580421552062, -0.007458053529262543, -0.05536455288529396, -0.04740716889500618, -0.010124064050614834, 0.010300102643668652, -0.014398612082004547, 0.014921754598617554, -0.03589724376797676, 0.0061479611322283745, -0.03153224289417267, -0.027757596224546432, 0.061310265213251114, 0.04941924661397934, 0.04939885810017586, -0.012075150385499, 0.08161567896604538, -0.05323437228798866, 0.000781437789555639, 0.004915593657642603, -0.0427163727581501, -0.027605080977082253, -0.008843552321195602, 0.009647747501730919, 0.024355152621865273, 0.004092962946742773, 0.011113934218883514, 0.009603824466466904, -0.006370690651237965, 0.015570624731481075, -0.012903185561299324, 0.043603479862213135, -0.0024670555721968412, 0.022033460438251495, -0.018875421956181526, -0.009381868876516819, 0.016630785539746284, -0.026631880551576614, -0.01737414486706257, -0.0033170648384839296, -0.06536656618118286, 0.03879207372665405, -0.064069002866745, -0.05328347533941269, -0.031055497005581856, -0.012653181329369545, 0.001374092185869813, 0.04886408895254135, 0.02837473340332508, 0.061747580766677856, 0.029719101265072823, 0.024920737370848656, 0.03978830203413963, 0.025434035807847977, 0.012715596705675125, -0.015022843144834042, 0.009940416552126408, 0.015146490186452866, 0.0014109492767602205, -0.04733826220035553, -0.05841762572526932, -0.004599806386977434, -0.04318709671497345, -0.27792733907699585, 0.0313626304268837, -0.02428341470658779, -0.03466186299920082, 0.017666399478912354, 0.001478062942624092, -0.006431649439036846, -0.04495212063193321, -0.019124852493405342, 0.026471668854355812, -0.03282083943486214, -0.01781979762017727, -0.006321967113763094, 0.019591936841607094, 0.0033363138791173697, 0.03504844009876251, -0.026317447423934937, -0.04424174875020981, -0.002934614894911647, -0.029907511547207832, -0.0009207066032104194, -0.042876407504081726, 0.002280491404235363, 0.045235924422740936, 0.007372505031526089, 0.084019735455513, -0.05137288570404053, 0.050201818346977234, -0.022526290267705917, -0.030907759442925453, 0.04080124944448471, -0.009739657863974571, -0.000698242278303951, 0.009850270114839077, -0.02232510782778263, -0.03353732451796532, 0.054481394588947296, 0.013396183960139751, 0.03972562775015831, -0.014300277456641197, -0.05980193614959717, -0.012659781612455845, 0.00038782713818363845, -0.018887190148234367, 0.08664494752883911, -0.04739442467689514, -0.04998551309108734, -0.014337330125272274, -0.022723205387592316, 0.08336714655160904, -0.0456283800303936, -0.05039622262120247, 0.011362205259501934, 0.03896808624267578, -0.012178103439509869, -0.00949293002486229, -0.009801303967833519, -0.016538554802536964, -0.021624015644192696, -0.061537981033325195, -0.016347626224160194, -0.02843012474477291, -0.047500431537628174, -0.05648867040872574, 0.00913507305085659, -0.04746489226818085, -0.05286741256713867, -0.008793842978775501, 0.056773532181978226, -0.024162115529179573, -0.023950744420289993, 0.028159810230135918, -0.007723649963736534, -0.09865740686655045, -0.013386937789618969, -0.001794215408153832, -0.06696271896362305, -0.00265669752843678, -0.013564801774919033, 0.020449809730052948, -0.03456861898303032, -0.031048940494656563, 0.0016371040837839246, 0.019081532955169678, 0.006500220391899347, -0.004915244411677122, 0.039635926485061646, -0.05423925817012787, -0.02058161422610283, -0.01995377242565155, 0.07169640809297562, -0.048182468861341476, -0.023354321718215942, -0.004031833726912737, -0.007313234731554985, 0.01094527542591095, -0.0018666869727894664, 0.005725557915866375, 0.04124322906136513, 0.05801893025636673, 0.04357461258769035, -0.056321460753679276, 0.0405954085290432, -0.02385365404188633, -0.032617177814245224, 0.030315427109599113, -0.044698577374219894, 0.0389307476580143, 0.016743872314691544, -0.0013715067179873586, 0.0036556969862431288, -0.055224932730197906, 0.006423071958124638, -0.03792532905936241, -0.03780415281653404, 0.004725948441773653, 0.010570470243692398, 0.018568575382232666, 0.01681261695921421, -0.005833987146615982, -0.05079781264066696, 0.007160498760640621, 0.04865247756242752, -0.0076684849336743355, -0.05231606960296631, -0.015082202851772308, 0.002880467800423503, 0.024568110704421997, 0.050360262393951416, 0.014526622369885445, -0.017131026834249496, -0.005996100604534149, 0.03069719485938549, -0.040564049035310745, 0.015029024332761765, -0.026367906481027603, -0.03484533727169037, -0.01772269792854786, 0.00862730760127306, 0.019532499834895134, -0.014209798537194729, 0.02396816946566105, 0.02821589820086956, 0.05271346494555473, 0.04115450754761696, 0.029017379507422447, 0.034248076379299164, -0.007651295512914658, 0.008376960642635822, -0.00507446238771081, -0.008555631153285503, -0.03625590726733208, -0.017971118912100792, -0.01092760730534792, -0.03976177051663399, -0.018735038116574287, 0.052266210317611694, 0.008490463718771935, -0.05049524083733559, -0.0007812710246071219, 0.002211332321166992, -0.09695547074079514, -0.028093138709664345, 0.008107662200927734, -0.002892052289098501, 0.04430190846323967, -0.031630050390958786, -0.003174292156472802, -0.004824028816074133, 0.010264444164931774, 0.004850632976740599, 0.04730770364403725, -0.03355931490659714, 0.031063249334692955, -0.02490905299782753, -0.017448220402002335, -0.031058326363563538, 0.013292696326971054, 0.06327830255031586, 0.021492013707756996, -0.003356681205332279, -0.0012459540739655495, 0.01912698708474636, 0.023094292730093002, 0.03484846279025078, -0.023632695898413658, -0.023519711568951607, 0.005264599807560444, 0.009236537851393223, -0.012749187648296356, -0.015036223456263542, 0.006292285863310099, -0.031276021152734756, 0.03210267797112465, -0.01163327507674694, -0.08438444137573242, 0.05596994236111641, -0.016199221834540367, -0.007353093009442091, 0.02822074666619301, -0.02115635573863983, -0.005786128807812929, -0.027870267629623413, 0.01713973470032215, 0.04742969572544098, -0.033031072467565536, 0.016007903963327408, 0.012206963263452053, 0.009949514642357826, 0.00306100700981915, 0.0033922502771019936, -0.029159503057599068, -0.003686326090246439, 0.007901384495198727, 0.02053248882293701, -0.056900754570961, -0.041238486766815186, -0.01750573329627514, -0.009784129448235035, -0.012139723636209965, 0.027384141460061073, -0.003768406342715025, -0.0014466725988313556, -0.0033412473276257515, -0.05628480017185211, 0.047959066927433014, -0.012846240773797035, -0.025283806025981903, -0.019358035176992416, -0.01344886515289545, 0.00686238519847393, -0.02486717700958252, 0.0466977097094059, 0.01477255392819643, -0.006890512071549892, 0.01327482983469963, -0.04900190234184265, -0.011071018874645233, -0.018135080114006996, 0.05321304127573967, 0.016218330711126328, -0.002614644356071949, -0.015706250444054604, 0.000652353570330888, -0.006115773227065802, 0.03578837588429451, -0.02591041475534439, -0.025114046409726143, 0.026778383180499077, 0.04368247464299202, -0.010722125880420208, 0.011903327889740467, -0.027124634012579918, -0.01468918938189745, 0.044563282281160355, -0.05439144745469093, -0.03524438664317131, 0.017453987151384354, -0.0397145040333271, 0.040105171501636505, 0.018383968621492386, 0.007355302106589079, -0.07230763882398605, 0.053918808698654175, 0.05137055367231369, -0.01610199734568596, 0.04704030230641365, -0.028686625882983208, 0.0420706644654274, -0.01667782850563526, -0.007593650370836258, -0.07216039299964905, 0.05981655418872833, 0.005560524761676788, -0.028117654845118523, -0.0012102515902370214, -0.0017095976509153843, -0.00033354409970343113, 0.0045698038302361965, -0.06092509254813194, -0.06703191250562668, 0.007326161023229361, 0.015454621985554695, -0.009455499239265919, -0.0006049653748050332, -0.029058942571282387, 0.03808877617120743, 0.019034937024116516, -0.040433045476675034, -0.007601588033139706, -0.02017022669315338, 0.03500714153051376, -0.022132785990834236, 0.018812915310263634, -0.017695242539048195, -0.047106869518756866, 0.048981476575136185, 0.030683398246765137, -0.00818728655576706, 0.04430451989173889, -0.01680455170571804, 0.025001687929034233, 0.022422822192311287, -0.03508024662733078, 0.013941396959125996, 0.03433241322636604, -0.014438665471971035, -0.037748225033283234, 0.03462795913219452, -0.010889128781855106, 0.00238081649877131, -0.054650772362947464, 0.049422554671764374, 0.012472893111407757, -0.032097697257995605, -0.032450441271066666, 0.02683296799659729, -0.021510127931833267, -0.03263149410486221, -0.01009802334010601, 0.004398503340780735, -0.024570701643824577, 0.041629496961832047, 0.007908962666988373, 0.021849127486348152, 0.08517462015151978, -0.008932235650718212, -0.022436749190092087, 0.0016394200501963496, 0.08982990682125092, 0.1064935177564621, 0.003587532788515091, -0.001368722878396511, 0.05420823395252228, -0.017030006274580956, -0.047372233122587204, -0.006254545878618956, -0.027124788612127304, -0.04004807770252228, -0.003449048148468137, 0.005072263069450855, 0.06090457737445831, -0.03228434920310974, 0.03778035566210747, -0.008897694759070873, 0.01091787125915289, 0.030685443431138992, 0.026137877255678177, 0.04271126538515091, 0.030741266906261444, 0.029168371111154556, 0.04394581913948059, -0.003499578917399049, -0.05519226938486099, -0.0016540992073714733, 0.027820320799946785, -0.0445309653878212, 0.014178838580846786, -0.0076175290159881115, 0.004193826578557491, 0.012302270159125328, -0.004560026805847883, 0.07894907146692276, -0.03841058537364006, -0.0097589660435915, -0.012228913605213165, 0.021772734820842743, -0.038643304258584976, 0.024965554475784302, 0.0020063116680830717, -0.014335321262478828, -0.0030831615440547466, -0.03775942698121071, -0.027950381860136986, -0.013020884245634079, -0.01600605994462967, 0.03816365450620651, -0.03336802497506142, 0.01478892657905817, 0.024412034079432487, 0.000909293710719794, -0.018823398277163506, -0.02737167663872242, -0.07775256782770157, -0.051688697189092636, -0.07102908194065094, -0.01621687225997448, -0.0048566157929599285, -0.013860995881259441, -0.05235642194747925, -0.010034156031906605, -0.04813528433442116, -0.03228430077433586, 0.015293980948626995, -0.02571309357881546, -0.026564210653305054, 0.00792174506932497, 0.02082982286810875, 0.020246507599949837, 0.03796285018324852, 0.06466363370418549, -0.018289903178811073, 0.005850897170603275, -0.014441915787756443, -0.00040557709871791303, 0.05487266182899475, -0.011797979474067688, -0.03414794057607651, -0.059965889900922775, 0.01838253252208233, 0.046353064477443695, 0.035447582602500916, -0.05642777681350708, 0.009593726135790348, 0.037806712090969086, 0.008126888424158096, 0.04688994586467743, -0.020549580454826355, -0.009279515594244003, -0.013545027002692223, -0.007489387411624193, 0.004173754248768091, -0.005369760096073151, 0.040627870708703995, 0.013983946293592453, 0.08723965287208557, 0.06892573088407516, -0.008548610843718052, -0.05322306230664253, 0.013012560084462166, 0.035142019391059875, 0.013612182810902596, -0.04495095834136009, -0.059606097638607025, -0.03461145609617233, -0.07556214183568954, -0.06484848260879517, 0.013864533975720406, -0.02247803285717964, -0.03168177977204323, 0.02692272514104843, -0.0060700709000229836, -0.05660684034228325, 0.02006049081683159, -0.044628456234931946, 0.005551578477025032, -0.023619256913661957, -0.0501248799264431, -0.024892916902899742, 0.05107211694121361, 0.003514302661642432, -0.04608404263854027, 0.02236177772283554, -0.004522380884736776, 0.03651884198188782, 0.005423424765467644, 0.0230215135961771, 0.020917635411024094, 0.008011270314455032, 0.003276956733316183 ]
[ -0.039894796907901764, -0.03489544615149498, -0.033705536276102066, -0.013525379821658134, 0.0483267717063427, -0.0943237841129303, -0.03640367463231087, 0.010486987419426441, -0.026382721960544586, -0.038532089442014694, 0.010035084560513496, -0.05759715288877487, -0.01248351950198412, -0.040583085268735886, 0.0733674168586731, -0.00998328160494566, -0.019637448713183403, -0.04278356581926346, -0.011885363608598709, 0.03168489411473274, 0.0031095256563276052, -0.025960013270378113, -0.024053169414401054, -0.055036284029483795, -0.026250427588820457, 0.02369415946304798, 0.05134926363825798, -0.0106258699670434, -0.003790621180087328, -0.18254372477531433, 0.029420314356684685, -0.014082537963986397, -0.014419721439480782, 0.0063160499557852745, 0.010293019004166126, 0.03231796249747276, 0.02107481099665165, -0.01871533878147602, 0.008496121503412724, 0.04739623889327049, 0.03077666275203228, 0.005246702115982771, -0.03697392717003822, 0.01087325531989336, 0.0005690893158316612, 0.0010253690415993333, -0.0034884964115917683, 0.004904816392809153, 0.016603762283921242, -0.006211035884916782, -0.03246207535266876, 0.027346190065145493, -0.009594599716365337, -0.05101025849580765, -0.004918189253658056, 0.019955627620220184, 0.05968005955219269, 0.0655759796500206, 0.0213642381131649, 0.007140771485865116, 0.04063338041305542, 0.01389221753925085, -0.17584329843521118, 0.06855111569166183, 0.038742393255233765, 0.04346824437379837, -0.032080963253974915, -0.007579202298074961, -0.04973908141255379, 0.06021690368652344, -0.0018607437377795577, -0.003983484581112862, -0.06961566209793091, 0.05982433259487152, 0.018086129799485207, -0.02173634245991707, -0.01952870935201645, 0.05061446130275726, 0.04476621374487877, -0.0296905729919672, -0.0013904656516388059, -0.01122234109789133, -0.08722031861543655, -0.006246340461075306, -0.042198095470666885, 0.001190914772450924, -0.004147580824792385, 0.06291061639785767, 0.013139236718416214, 0.029225222766399384, 0.030235322192311287, -0.03661375492811203, 0.023900575935840607, 0.02427348680794239, -0.09753047674894333, -0.01687716133892536, 0.0008149498025886714, 0.027935871854424477, -0.048132240772247314, 0.4124557673931122, 0.00979890301823616, -0.005041091237217188, 0.04137307405471802, 0.020089657977223396, 0.009751493111252785, 0.010221476666629314, 0.0005164624890312552, 0.003366317832842469, 0.03743841126561165, -0.01936420612037182, 0.013789193704724312, -0.017352644354104996, 0.04298960417509079, -0.04191144183278084, 0.009587458334863186, 0.014259460382163525, 0.004895211197435856, 0.019900955259799957, -0.01983792521059513, 0.006703060586005449, -0.036842770874500275, -0.007704039569944143, 0.039186324924230576, 0.03281886875629425, 0.011833908967673779, 0.000023790526029188186, 0.052354034036397934, 0.042231038212776184, 0.004259737674146891, 0.06123385205864906, 0.017232686281204224, -0.06171221658587456, -0.061107978224754333, -0.0027255816385149956, -0.023161379620432854, 0.03174488991498947, 0.031524233520030975, -0.043270450085401535, 0.007377631030976772, 0.05663807690143585, -0.03409883379936218, -0.04820972681045532, 0.009299691766500473, 0.006366545334458351, -0.021223196759819984, 0.05659019201993942, -0.003963883500546217, -0.04799382761120796, -0.011767329648137093, -0.05131940543651581, -0.024781402200460434, 0.040021270513534546, 0.005657379049807787, -0.06017153337597847, 0.0046168481931090355, -0.009055349044501781, 0.07569112628698349, -0.025238489732146263, -0.04608491063117981, 0.0008929977775551379, -0.022160504013299942, -0.07228030264377594, -0.01670754700899124, 0.059969712048769, 0.03522542491555214, -0.13773122429847717, -0.036832671612501144, -0.002333136275410652, 0.026349248364567757, -0.041122425347566605, -0.02031780779361725, -0.0053788963705301285, 0.0078008403070271015, -0.04549339786171913, 0.051774926483631134, -0.032235488295555115, -0.009996689856052399, 0.03636208549141884, 0.009374377317726612, -0.01204435620456934, -0.00824381411075592, 0.027263037860393524, -0.005099921487271786, 0.010989336296916008, -0.027242356911301613, -0.07445987313985825, -0.08124124258756638, -0.005356515292078257, -0.05906030535697937, -0.052009668201208115, -0.07835596054792404, -0.015673808753490448, -0.07720507681369781, 0.06098392605781555, 0.04155953601002693, -0.012131563387811184, 0.018297281116247177, 0.011407217010855675, 0.007399806287139654, -0.006230483762919903, 0.007147553842514753, 0.06249477341771126, -0.020851584151387215, 0.025658724829554558, -0.1019897311925888, 0.04170902073383331, 0.0770871639251709, -0.016717253252863884, 0.016495298594236374, 0.03691030666232109, -0.021088160574436188, 0.006433088332414627, 0.025930391624569893, 0.030395686626434326, -0.021525247022509575, -0.03250720724463463, -0.019428974017500877, 0.005061487667262554, 0.01158395130187273, 0.047127947211265564, 0.0014882930554449558, -0.016842471435666084, -0.010140412487089634, -0.3636121153831482, -0.026453930884599686, -0.011762714013457298, -0.010985460132360458, 0.04401598870754242, -0.058621518313884735, 0.026682211086153984, 0.011876952834427357, -0.006828116253018379, 0.019438322633504868, 0.11648169159889221, -0.05494973435997963, 0.04780571907758713, -0.06082206219434738, -0.011172794736921787, 0.05328821763396263, -0.03141888976097107, -0.007079455070197582, -0.01239822618663311, 0.009932270273566246, -0.0028569356072694063, -0.047812286764383316, -0.011243675835430622, -0.030511587858200073, 0.00012460006109904498, -0.03025037609040737, 0.0927424281835556, 0.005607686471194029, 0.08557702600955963, -0.08238577097654343, 0.05191468074917793, 0.004503911826759577, 0.03389887139201164, -0.09298171103000641, -0.02569148875772953, -0.02487676590681076, 0.03754909336566925, 0.01739128865301609, 0.051173824816942215, 0.006968802306801081, -0.03350142017006874, 0.03364904969930649, -0.0515255443751812, -0.025529293343424797, -0.015667906031012535, 0.018998393788933754, -0.00679441774263978, -0.008456322364509106, -0.018734250217676163, 0.07728877663612366, 0.00955654215067625, 0.013720884919166565, 0.014738769270479679, 0.02817968837916851, 0.049014803022146225, -0.0357355959713459, -0.05411707982420921, -0.05143025889992714, 0.028300264850258827, 0.010215858928859234, 0.01930602639913559, 0.08996981382369995, 0.0480741485953331, -0.0782843679189682, 0.019308924674987793, 0.012578396126627922, -0.017990009859204292, 0.03753897547721863, 0.06613712012767792, -0.009984144940972328, -0.004987460561096668, 0.09999599307775497, 0.007978868670761585, 0.050934914499521255, 0.00347632123157382, 0.028153348714113235, -0.00444910628721118, 0.046046577394008636, 0.0291109811514616, -0.007679204922169447, 0.0402664989233017, -0.039360448718070984, 0.06299818307161331, -0.025396792218089104, 0.031497858464717865, 0.05385684594511986, 0.010737824253737926, -0.009166997857391834, 0.0450904555618763, 0.01966695673763752, -0.0371377058327198, -0.00387812708504498, -0.015050471760332584, -0.03589075431227684, 0.08423872292041779, -0.010633603669703007, -0.267265260219574, 0.017324034124612808, 0.058151260018348694, 0.007398035377264023, 0.011268291622400284, 0.01633831486105919, 0.06106681004166603, -0.025371430441737175, -0.02141013741493225, 0.013210452161729336, 0.014746525324881077, 0.025998404249548912, -0.006559768225997686, 0.00965527631342411, 0.04175790026783943, -0.0022158336360007524, 0.040778953582048416, 0.000803737435489893, -0.033184949308633804, -0.03429930657148361, 0.004997009877115488, -0.014783431775867939, 0.13742317259311676, 0.021214909851551056, 0.005186226684600115, 0.04867972433567047, -0.018097087740898132, 0.024937493726611137, 0.0372137650847435, 0.027205413207411766, 0.008914814330637455, 0.0018021028954535723, 0.016332855448126793, -0.019456030800938606, 0.04679296165704727, -0.05663803219795227, -0.004670167341828346, 0.008987530134618282, 0.043364863842725754, -0.044218629598617554, -0.02233918569982052, 0.007579609286040068, -0.04042622819542885, 0.04720345884561539, 0.041131842881441116, -0.029692145064473152, -0.006864285562187433, -0.017821380868554115, -0.011998524889349937, -0.02226625196635723, -0.007483880966901779, -0.054790738970041275, -0.0027363677509129047, -0.00434054946526885, 0.014624576084315777, 0.0684051588177681, 0.004777736030519009, -0.05481867492198944, -0.0349508672952652, -0.010103246197104454, -0.001180865685455501, -0.04629027843475342, 0.12656907737255096, -0.01825997419655323, 0.04143168404698372 ]
[ -0.027074065059423447, 0.011068199761211872, -0.01984431967139244, -0.006963521707803011, 0.00443501491099596, -0.019046535715460777, -0.028851190581917763, 0.012577123008668423, -0.035490732640028, -0.01681964099407196, -0.02026360295712948, -0.0009866919135674834, 0.006513098254799843, 0.010862711817026138, -0.0020836186595261097, -0.0026279811281710863, 0.03261065483093262, -0.027258671820163727, 0.016116119921207428, -0.0020378415938466787, -0.04091538488864899, 0.003948129713535309, 0.04381953924894333, -0.041767869144678116, -0.014270840212702751, 0.012636074796319008, 0.010724738240242004, 0.016810443252325058, 0.0176360122859478, -0.12565341591835022, -0.02933988720178604, 0.008170326240360737, -0.03264837712049484, 0.059564825147390366, 0.01172473281621933, 0.008215058594942093, 0.007196309510618448, 0.03656005859375, -0.037607356905937195, 0.0492691807448864, 0.04843330755829811, -0.00724401930347085, 0.010774243623018265, 0.00041426162351854146, 0.01384021993726492, -0.030358994379639626, -0.04313482344150543, -0.009060393087565899, 0.006502614356577396, -0.05503368005156517, -0.03270048275589943, 0.0392095223069191, -0.009649447165429592, 0.009052026085555553, 0.01555019523948431, -0.033218927681446075, 0.0025554734747856855, -0.03900832682847977, 0.01398498471826315, 0.008862794376909733, 0.031531643122434616, 0.05453823506832123, -0.012500480748713017, -0.0404130183160305, -0.01657247170805931, -0.047431543469429016, 0.0015778261004015803, -0.01891767606139183, -0.009861240163445473, 0.0074145901016891, -0.04239341989159584, 0.02772725559771061, -0.034141071140766144, 0.01172738429158926, -0.005242065526545048, -0.0011777932522818446, 0.022589711472392082, -0.008498837240040302, -0.03274252638220787, 0.033989183604717255, -0.024255305528640747, -0.02143697254359722, -0.023367447778582573, 0.024919405579566956, -0.022281618788838387, -0.01991570182144642, -0.017057782039046288, -0.01724717952311039, 0.03534675016999245, -0.0008245188510045409, -0.019349629059433937, -0.00632108747959137, -0.037072863429784775, 0.009592793881893158, -0.07143765687942505, -0.018729086965322495, -0.017350537702441216, 0.004139397293329239, -0.019343173131346703, 0.8120073080062866, -0.019396429881453514, 0.017411282286047935, 0.008002975024282932, 0.024643680080771446, 0.005894495639950037, -0.006091298069804907, -0.010975757613778114, 0.035802874714136124, 0.011373342014849186, -0.030634110793471336, 0.03013935312628746, 0.028791584074497223, 0.0012648837873712182, 0.025782447308301926, -0.006766578182578087, 0.027650585398077965, 0.04815760627388954, 0.010049237869679928, 0.0018375155050307512, 0.021554790437221527, 0.007619698531925678, 0.018528545275330544, -0.016861477866768837, 0.017635732889175415, -0.008573833853006363, -0.16333942115306854, 0.020818455144762993, -6.722463378572561e-33, 0.0357549712061882, -0.009235799312591553, -0.027958134189248085, -0.006497784983366728, 0.030076442286372185, -0.01938534714281559, 0.008777872659265995, 0.04594678059220314, -0.010855983942747116, -0.012326281517744064, 0.011552921496331692, 0.006421374622732401, 0.011298350058495998, -0.04363738000392914, 0.021819131448864937, -0.0012875798856839538, -0.037003688514232635, 0.05042078346014023, -0.03611500933766365, 0.00004583763802656904, 0.01867479272186756, -0.008231592364609241, 0.0017778429901227355, -0.021571608260273933, 0.0321044884622097, 0.019740581512451172, 0.015635529533028603, -0.030595434829592705, 0.022947849705815315, -0.06224583834409714, 0.05488196760416031, 0.027014246210455894, -0.011035021394491196, 0.0007303904858417809, 0.026235785335302353, -0.038050659000873566, -0.006879562512040138, 0.008100482635200024, -0.043891895562410355, 0.01198799442499876, -0.030206875875592232, -0.014965902082622051, -0.034679047763347626, -0.004580299369990826, 0.014103815890848637, -0.032236456871032715, -0.02115228958427906, 0.03304423391819, 0.010007130913436413, -0.02131340093910694, 0.020135072991251945, -0.020155413076281548, -0.014945847913622856, 0.058155275881290436, 0.04536822438240051, 0.006167693063616753, -0.018041688948869705, 0.026065392419695854, -0.007668805308640003, -0.015188445337116718, 0.0005199314327910542, -0.025825412943959236, -0.06008905544877052, 0.015067962929606438, 0.012969478033483028, -0.025140125304460526, 0.0086414385586977, 0.023419439792633057, 0.027531923726201057, 0.014310036785900593, -0.036516860127449036, 0.00570576312020421, -0.026133814826607704, 0.052491363137960434, 0.005534544121474028, 0.005931095220148563, -0.00661046477034688, 0.03877247869968414, 0.02139732800424099, 0.00752898957580328, 0.015271914191544056, 0.02694079279899597, -0.0315387137234211, 0.04105115309357643, -0.015983082354068756, -0.008245881646871567, 0.021633105352520943, -0.039082348346710205, -0.011761101894080639, -0.03113582357764244, 0.031222036108374596, 0.03945045918226242, 0.008548497222363949, -0.04938580468297005, -0.06254617869853973, 6.645228256935752e-33, 0.009392766281962395, -0.0338372066617012, -0.057180650532245636, -0.004406675696372986, 0.011246842332184315, -0.03588847815990448, 0.03609815984964371, 0.014848689548671246, -0.014421184547245502, -0.0018895453540608287, -0.028481267392635345, 0.0009050508379004896, 0.05472950637340546, 0.010459084995090961, 0.008476696908473969, -0.023654352873563766, 0.028512582182884216, 0.037030622363090515, -0.013597117736935616, 0.01541920006275177, -0.05268392711877823, 0.029185963794589043, 0.03767210617661476, 0.004633842967450619, 0.010923799127340317, 0.020377371460199356, -0.01567615382373333, 0.013973597437143326, -0.06361395120620728, -0.03424303978681564, 0.059918057173490524, 0.00443662703037262, 0.03629257529973984, 0.009055783972144127, -0.06811505556106567, 0.053819622844457626, 0.00679438840597868, 0.013679077848792076, 0.05239854007959366, -0.008467058651149273, 0.06822214275598526, 0.00043000836740247905, -0.012517062947154045, 0.021169235929846764, -0.03350408375263214, 0.0625905767083168, -0.007113694678992033, -0.035328641533851624, -0.026136500760912895, 0.030110986903309822, 0.012696436606347561, 0.014044630341231823, 0.021580182015895844, -0.02837316133081913, -0.0028048777021467686, 0.00760343112051487, -0.03464430570602417, -0.004016324877738953, 0.03321158513426781, 0.030087506398558617, 0.04236831143498421, 0.009394402615725994, -0.012474410235881805, 0.015859512612223625, -0.033591222018003464, 0.006944585591554642, -0.02075154334306717, -0.01573968678712845, 0.04562336951494217, -0.04496322572231293, 0.01201620977371931, -0.0009150031837634742, -0.0443384125828743, 0.0674499049782753, 0.04230451211333275, -0.014028279110789299, -0.012273948639631271, 0.015725955367088318, 0.0020297726150602102, 0.03466326743364334, -0.02248913235962391, 0.006636553443968296, -0.025863436982035637, 0.014817547053098679, 0.012348552234470844, 0.018868176266551018, -0.015033487230539322, 0.0322904996573925, 0.043785784393548965, -0.01778341829776764, -0.003887734841555357, 0.00043524065404199064, -0.04937572404742241, 0.015633080154657364, 0.003376174019649625, -1.2221213374630224e-8, 0.03875817731022835, 0.00017179720452986658, -0.029717130586504936, 0.047106653451919556, -0.01792619191110134, 0.05386536568403244, -0.0007594085764139891, -0.006757638417184353, -0.04210758954286575, 0.011865358799695969, -0.0024057987611740828, -0.0004182564443908632, 0.003697803243994713, -0.01703844964504242, 0.048633918166160583, -0.04540450870990753, 0.026107879355549812, 0.006180270109325647, 0.030571844428777695, -0.0052725812420248985, 0.03445078805088997, 0.02384852059185505, 0.013325542211532593, 0.032547689974308014, -0.009100042283535004, -0.01482852641493082, -0.0004519559442996979, -0.09495392441749573, -0.01857868582010269, 0.0032181472051888704, 0.014214529655873775, -0.0031903053168207407, -0.00021074812684673816, 0.04760991781949997, -0.04019743204116821, -0.012616248801350594, -0.03455859422683716, 0.015243088826537132, 0.024307386949658394, 0.007262228988111019, -0.005347590893507004, 0.017815547063946724, -0.09139477461576462, -0.02937842346727848, -0.015835652127861977, -0.01424838975071907, -0.0327046737074852, -0.017775001004338264, 0.0032654583919793367, -0.030264075845479965, 0.04325316101312637, -0.026331577450037003, 0.030038850381970406, -0.0028321649879217148, 0.037979789078235626, -0.0012948246439918876, -0.03840814158320427, -0.030901098623871803, -0.03749151527881622, 0.010486503131687641, -0.011567329056560993, 0.043963976204395294, -0.03425440564751625, -0.00630049966275692 ]
local-port-forwarding
https://markhneedham.com/blog/2010/11/29/local-port-forwarding
false
2010-11-16 21:17:00
Rails: A slightly misleading error
[ "ruby", "rails" ]
[ "Ruby" ]
We recently created a new project to handle the reporting part of our application and as with all our projects we decided not to checkin any configuration ".yml' files but rather '.yml.example' files which people can then customise for their own environments. So in our config directory would look something like this when you first checkout the project: * config ** database.yml.example ** some.yml.example + </ul> And we'd need to copy those files to get '.yml' versions, changing any parameters that we need to for our local environment. The disadvantage of this approach is that you have an extra step on using a project for the first time, a step that I've been meaning to automate. Several people ran into a somewhat confusing error message when running our rake file after forgetting to create these '.yml' files which looked like this: ~~~text > rake db:migrate (in /Users/mneedham/SandBox/project) rake aborted! uninitialized constant ActiveRecord (See full trace by running task with --trace) ~~~ Running with --trace didn't reveal our mistake but interestingly launching 'script/console' did! ~~~text script/console Loading development environment (Rails 2.3.5) /Users/mneedham/SandBox/project/config/environment.rb:4:in `initialize':Errno::ENOENT: No such file or directory - /Users/mneedham/SandBox/project/config/some.yml /Users/mneedham/SandBox/project/vendor/rails/railties/lib/rails/backtrace_cleaner.rb:2:NameError: uninitialized constant ActiveSupport::BacktraceCleaner /Users/mneedham/SandBox/project/vendor/rails/railties/lib/console_with_helpers.rb:5:NameError: uninitialized constant ApplicationController ruby-1.8.7-p299 > ~~~ This is the environment.rb file in which we were loading that yml file: config/environment.rb ~~~ruby \.... require 'yaml' some_file = File.join(File.dirname(__FILE__), "some.yml") \... ~~~ It's a relatively simple mistake to make so I was surprised that rake didn't tell us that the file didn't exist rather than failing when trying to require ActiveRecord.
null
null
[ 0.03271503746509552, 0.011951077729463577, -0.02886371500790119, 0.040582846850156784, 0.10971938073635101, 0.014415271580219269, 0.05132099613547325, 0.005362263415008783, -0.005512781906872988, -0.017032980918884277, -0.05738099291920662, 0.005808329675346613, -0.0607888400554657, 0.03182310238480568, -0.02100483886897564, 0.06474657356739044, 0.05950290709733963, 0.012900498695671558, 0.013753404840826988, 0.010667175054550171, 0.007846771739423275, 0.06434684246778488, 0.020984835922718048, 0.020606815814971924, 0.018549684435129166, 0.020567623898386955, 0.009810036048293114, -0.036049652844667435, -0.06801978498697281, 0.015737418085336685, 0.011903330683708191, -0.001433276804164052, 0.02830522507429123, -0.01467096246778965, 0.022198501974344254, 0.012639694847166538, -0.009716213680803776, 0.004002835135906935, -0.008366968482732773, -0.02747131884098053, -0.022950615733861923, 0.04842008650302887, -0.003606063313782215, 0.0020659947767853737, -0.028468705713748932, 0.007472203113138676, -0.04279666766524315, 0.023392142727971077, 0.008722526952624321, -0.03368121758103371, -0.061159685254096985, 0.020437896251678467, -0.045286912471055984, -0.06247970834374428, -0.000028605911211343482, 0.036385636776685715, 0.014620374888181686, -0.08074789494276047, 0.04060579463839531, -0.020078297704458237, -0.009907152503728867, -0.005496945232152939, 0.00879915151745081, 0.050727564841508865, 0.047899674624204636, -0.03077106364071369, -0.003924873191863298, 0.034362565726041794, -0.0668363869190216, -0.03673064336180687, 0.010538088157773018, -0.017188260331749916, -0.014505421742796898, -0.011943199671804905, 0.017593152821063995, -0.03693713620305061, 0.005304932128638029, 0.03142818808555603, 0.014564783312380314, 0.0850798562169075, -0.03333465754985809, 0.028319034725427628, 0.03311914950609207, 0.02931094728410244, 0.0027134621050208807, -0.03314002603292465, -0.04825902357697487, 0.0435992032289505, -0.039800386875867844, 0.04908876493573189, 0.04570705443620682, -0.04202337935566902, 0.05982661247253418, 0.010027176700532436, 0.02002057246863842, 0.0269728135317564, 0.002801195252686739, 0.023028593510389328, 0.0164470337331295, 0.00014260709576774389, -0.026935232803225517, 0.03702891618013382, -0.028171846643090248, -0.019955113530158997, -0.07641930878162384, 0.007095732260495424, -0.029240138828754425, -0.009546090848743916, -0.009715349413454533, -0.016019143164157867, -0.004133936483412981, 0.021318107843399048, -0.06195877492427826, -0.000934234238229692, -0.0831829383969307, 0.06422401964664459, -0.002602077554911375, -0.029774533584713936, 0.00396434310823679, 0.008249873295426369, 0.056164029985666275, 0.01063954085111618, -0.0068147676065564156, 0.06450368463993073, -0.02183096669614315, 0.04413066431879997, -0.011226102709770203, 0.05239829421043396, -0.02260488085448742, -0.049601875245571136, -0.02478029765188694, 0.06006305664777756, 0.028752468526363373, 0.00957588478922844, -0.03024498000741005, -0.016937557607889175, -0.003016275819391012, -0.007223642431199551, 0.06499716639518738, 0.04829339683055878, -0.022334028035402298, -0.03312898054718971, 0.024381747469305992, -0.017085418105125427, 0.011169685050845146, 0.02683989517390728, 0.02457892708480358, -0.025316186249256134, -0.04005664214491844, 0.025716232135891914, 0.034752119332551956, 0.03170618414878845, 0.05013393238186836, -0.039444971829652786, 0.0075753903947770596, 0.09528493136167526, 0.021648673340678215, -0.024615654721856117, -0.03268491476774216, -0.00721402931958437, 0.042900364845991135, 0.04785517230629921, -0.0028223737608641386, 0.03794466704130173, 0.017856812104582787, -0.014522415585815907, -0.004488823469728231, 0.025215672329068184, 0.024563973769545555, -0.010838049463927746, -0.05093124136328697, -0.05099095404148102, 0.07954736053943634, -0.025106333196163177, 0.006155788898468018, 0.04114648699760437, 0.050384487956762314, 0.0469341054558754, 0.0014685679925605655, -0.012485663406550884, -0.07414304465055466, 0.04268300533294678, -0.026524612680077553, 0.009685387834906578, 0.06088240444660187, -0.009261693805456161, 0.0487704835832119, -0.0032980586402118206, 0.009632881730794907, 0.017991581931710243, -0.07486175745725632, -0.108952596783638, -0.016474559903144836, -0.020999671891331673, 0.046713389456272125, -0.02139957621693611, -0.0439450740814209, 0.06160134822130203, 0.008980178274214268, 0.0331856869161129, 0.02678585797548294, 0.0013802492758259177, -0.008245174773037434, -0.06485940515995026, -0.03661810979247093, 0.047064267098903656, 0.027520857751369476, -0.011941413395106792, -0.014538497664034367, 0.02106299437582493, -0.023142138496041298, 0.0016235149232670665, 0.042803023010492325, 0.008792238309979439, 0.07931877672672272, 0.03187377005815506, 0.018531620502471924, -0.03500998765230179, 0.03916892036795616, -0.045893751084804535, 0.017365623265504837, 0.00935097225010395, -0.013896082527935505, -0.033487699925899506, -0.0036575919948518276, 0.09188392758369446, 0.05281226336956024, -0.0031372313387691975, -0.059598710387945175, 0.017563043162226677, 0.04229666292667389, -0.050190094858407974, 0.020292742177844048, -0.00477747805416584, 0.024161623790860176, -0.002680567093193531, -0.017402810975909233, -0.030597180128097534, -0.017032915726304054, -0.030485017225146294, -0.009209142997860909, 0.0730694904923439, -0.03508070111274719, 0.03371686115860939, 0.0011222800239920616, -0.043194178491830826, 0.02550581842660904, -0.026577264070510864, -0.11154821515083313, -0.000010529780411161482, 0.03505845367908478, -0.0031524121295660734, 0.04694399610161781, -0.016193315386772156, -0.031893983483314514, -0.03172239288687706, -0.06594302505254745, 0.003614946035668254, -0.00841674767434597, 0.08114518970251083, -0.030890101566910744, 0.05545331910252571, -0.05286320671439171, 0.02806021086871624, -0.012020244263112545, -0.016398707404732704, -0.02189560979604721, -0.00017772709543351084, 0.014049805700778961, 0.016053812578320503, -0.003001551143825054, 0.021846668794751167, 0.014243577606976032, 0.022521907463669777, 0.01925070583820343, -0.004324603825807571, 0.03214182332158089, 0.009263411164283752, -0.030304448679089546, -0.03281029686331749, -0.017226126044988632, 0.00919318851083517, -0.08706177771091461, -0.01142794918268919, 0.033501867204904556, -0.05861055850982666, 0.03699403628706932, -0.0706750899553299, -0.045027945190668106, -0.023014504462480545, 0.02612762525677681, 0.03125914931297302, 0.010298891924321651, 0.02489485591650009, 0.06628934293985367, 0.05103674530982971, 0.02390468679368496, 0.05387480929493904, 0.03649626299738884, 0.05140521377325058, -0.00032324992935173213, 0.0030471808277070522, 0.022490205243229866, -0.029322341084480286, -0.009691411629319191, -0.022182077169418335, -0.001557813142426312, -0.06268846988677979, -0.27340030670166016, 0.04979892447590828, -0.04405002295970917, -0.0425732359290123, 0.02910921536386013, -0.026620855554938316, 0.008761517703533173, -0.039050761610269547, 0.013718703761696815, 0.031444959342479706, -0.03563523292541504, -0.023291582241654396, -0.013296443037688732, 0.03675246238708496, -0.023066353052854538, 0.027504751458764076, 0.0401415154337883, -0.03014002926647663, 0.008416258729994297, 0.011149770580232143, -0.05410264804959297, -0.04889610782265663, 0.02606072835624218, 0.06323521584272385, 0.01378610823303461, 0.06918879598379135, -0.04080958291888237, 0.0661579817533493, -0.02861640229821205, -0.03282269090414047, 0.014833299443125725, -0.036611951887607574, 0.00233919988386333, 0.005060537252575159, -0.008156710304319859, 0.005662767682224512, 0.021795811131596565, 0.042294517159461975, 0.04569016396999359, -0.005582083482295275, -0.01861327886581421, -0.028947049751877785, -0.005302694626152515, -0.01206673588603735, 0.034804683178663254, -0.05084694176912308, -0.08850961923599243, -0.028143541887402534, -0.041441671550273895, 0.07710068672895432, -0.036215152591466904, -0.021612290292978287, 0.000014795832612435333, 0.043942827731370926, -0.010682793334126472, -0.013109179213643074, 0.014695377089083195, 0.018276462331414223, -0.02915029413998127, -0.034825313836336136, 0.002022942528128624, -0.05526147410273552, -0.022954832762479782, -0.04212544485926628, 0.014871355146169662, -0.06967305392026901, -0.0640236958861351, -0.026892155408859253, 0.041795115917921066, -0.0050058746710419655, -0.04303966835141182, -0.0010066989343613386, -0.006572599522769451, -0.09412577003240585, -0.018991870805621147, -0.04040340706706047, -0.04945635423064232, -0.02510693483054638, -0.007034731563180685, 0.02112952433526516, -0.04445335641503334, -0.015055397525429726, 0.02968265488743782, -0.0007618655217811465, 0.00727319810539484, 0.011884844861924648, 0.02930639684200287, -0.005149997305124998, -0.02640880085527897, 0.007169554941356182, 0.02311631292104721, -0.02788267284631729, -0.030124317854642868, -0.01028328575193882, 0.026995155960321426, 0.006736436393111944, 0.018331224098801613, -0.010114889591932297, 0.05014868825674057, 0.030307959765195847, 0.014686533249914646, -0.049739938229322433, 0.011653774417936802, -0.024989664554595947, -0.004633508622646332, -0.0022592945024371147, -0.0706433430314064, 0.024991635233163834, 0.032196395099163055, 0.0243581123650074, 0.0010617856169119477, -0.027384057641029358, -0.018777498975396156, -0.057881154119968414, -0.04506026208400726, -0.00453564478084445, 0.011106896214187145, 0.020536130294203758, 0.024697404354810715, 0.022268733009696007, -0.07650548964738846, 0.008811927400529385, -0.012301217764616013, 0.012522576376795769, -0.03278657793998718, -0.03973127156496048, 0.0010838250163942575, 0.006702057551592588, -0.0062961941584944725, 0.005122347269207239, -0.0196036659181118, 0.036429449915885925, 0.017538513988256454, -0.04503369331359863, 0.03991241008043289, -0.01672980934381485, -0.04321909323334694, -0.04746697098016739, -0.0012616892345249653, -0.003251921385526657, -0.02596370317041874, 0.015339892357587814, 0.017484743148088455, 0.02639368176460266, 0.046526066958904266, 0.022051414474844933, 0.05181597173213959, -0.00422904035076499, 0.030043113976716995, -0.046330373734235764, 0.0072934553027153015, -0.07242902368307114, 0.015794038772583008, -0.030344916507601738, -0.043686892837285995, -0.04218537360429764, 0.005428444594144821, -0.03580135479569435, -0.040497034788131714, -0.027141433209180832, 0.028691843152046204, -0.04244294390082359, -0.028380656614899635, -0.019402137026190758, -0.004438653588294983, 0.05054973438382149, 0.023039137944579124, 0.020311390981078148, -0.030876023694872856, 0.025662094354629517, 0.01269356720149517, 0.013954535126686096, -0.03185122460126877, -0.018831128254532814, 0.00909317284822464, 0.02200138382613659, 0.0071043940261006355, -0.01295493170619011, 0.04875396564602852, 0.0052599296905100346, -0.012789257802069187, -0.0022642186377197504, 0.022718271240592003, 0.03326071798801422, 0.00805363617837429, 0.0021661899518221617, -0.0278549175709486, -0.0024305926635861397, -0.015293171629309654, -0.024187138304114342, -0.04340483993291855, 0.0014864736003801227, -0.015760008245706558, -0.014726192690432072, -0.024782739579677582, -0.0688008964061737, 0.01893152855336666, 0.013015934266149998, 0.02788163721561432, 0.02969149686396122, -0.0038197056856006384, -0.0036130514927208424, -0.034163229167461395, 0.001151446020230651, 0.06183316931128502, -0.054816585034132004, -0.008272604085505009, -0.00733651639893651, 0.0014312327839434147, 0.010720670223236084, 0.006360357627272606, -0.05814286693930626, -0.017818385735154152, -0.024958672001957893, 0.010293406434357166, -0.02049662359058857, -0.01490600872784853, -0.003690845798701048, -0.013950000517070293, -0.02195371873676777, -0.0054330164566636086, 0.010673794895410538, 0.014282060787081718, -0.006133039481937885, -0.04053889960050583, -0.015081382356584072, -0.001739871921017766, 0.003702880349010229, 0.009478483349084854, -0.00753400893881917, -0.0028528531547635794, -0.04568248987197876, 0.0428999625146389, 0.00017927316366694868, -0.011605363339185715, -0.022378243505954742, -0.03648499399423599, 0.010163501836359501, 0.0440649688243866, 0.009345420636236668, -0.020723184570670128, 0.028569873422384262, -0.016581391915678978, -0.016734961420297623, 0.006776829250156879, -0.01983487419784069, -0.05353917181491852, -0.029821651056408882, -0.002853007521480322, 0.048367902636528015, 0.018184684216976166, 0.04992111399769783, -0.02332817204296589, -0.010235496796667576, 0.047788478434085846, -0.06625137478113174, -0.03351886570453644, -0.003628921927884221, -0.03824584558606148, 0.039896342903375626, 0.041828352957963943, 0.01088434737175703, -0.05752238631248474, 0.040811654180288315, 0.057836711406707764, 0.015329594723880291, 0.036123406141996384, -0.0022138243075460196, 0.02132326178252697, -0.0431625172495842, -0.014825891703367233, -0.06406424194574356, 0.025928260758519173, 0.022905258461833, -0.014610604383051395, 0.009793413802981377, -0.02312173694372177, -0.04087531939148903, 0.044641658663749695, -0.018583668395876884, -0.05406937748193741, 0.035923708230257034, -0.005859638564288616, -0.016451843082904816, 0.004354212433099747, -0.05130629241466522, 0.045196782797575, 0.0536629892885685, -0.05580051243305206, -0.012151514180004597, -0.009180178865790367, 0.04472552612423897, -0.02777654305100441, 0.02717423625290394, -0.04237830638885498, -0.03021424263715744, 0.08825425058603287, 0.034443199634552, 0.027020122855901718, 0.02004270814359188, -0.03391110524535179, 0.07160134613513947, 0.016808928921818733, -0.008767873980104923, -0.028210217133164406, 0.01906476356089115, 0.003851070534437895, -0.044504038989543915, 0.005471935961395502, 0.018982088193297386, 0.00045268339454196393, -0.036911673843860626, 0.0439223051071167, 0.026188373565673828, -0.023477790877223015, -0.037528786808252335, 0.04304424673318863, -0.05271682143211365, 0.010603959672152996, -0.039485808461904526, 0.00048775391769595444, -0.05112473666667938, 0.04745595157146454, 0.013486106880009174, 0.016878554597496986, 0.06992325186729431, 0.020895790308713913, 0.022900041192770004, 0.007302476093173027, 0.05932731553912163, 0.08566336333751678, 0.029025278985500336, 0.009339457377791405, 0.03383493795990944, 0.008760497905313969, -0.040240343660116196, 0.011766655370593071, -0.03067854419350624, -0.0034010177478194237, -0.047171179205179214, 0.014098270796239376, 0.08848801255226135, 0.00565545167773962, 0.055664438754320145, -0.01621110923588276, 0.03360855206847191, 0.0038068024441599846, 0.034805022180080414, 0.01735350303351879, 0.05414512753486633, 0.048297371715307236, 0.047899000346660614, -0.0000391571011277847, -0.02199450135231018, 0.023172609508037567, -0.035178493708372116, -0.014958810992538929, 0.04889816790819168, -0.03950764983892441, 0.002090827329084277, 0.03216095268726349, 0.030536752194166183, 0.05552104488015175, -0.03928882256150246, -0.01572154089808464, -0.015737878158688545, 0.06585075706243515, -0.010700352489948273, 0.016992174088954926, -0.01654483750462532, -0.01621106080710888, -0.02891966514289379, -0.05000098794698715, -0.039433564990758896, 0.0017984418664127588, -0.03359406068921089, 0.045186590403318405, -0.03343256935477257, 0.040043145418167114, 0.026592042297124863, 0.018275653943419456, -0.010980136692523956, -0.03072286583483219, -0.057352062314748764, -0.05185064673423767, -0.07062612473964691, 0.012057765386998653, -0.011683424934744835, 0.00547006307169795, -0.02972087636590004, -0.023904496803879738, 0.00005117740511195734, -0.024843860417604446, 0.04657060280442238, -0.06509549915790558, -0.02855593152344227, 0.000329583854181692, 0.014279383234679699, 0.019238995388150215, 0.014165122993290424, 0.02115510031580925, 0.01083308644592762, -0.03708323463797569, 0.005021248944103718, -0.002254395978525281, 0.05329929664731026, -0.034579720348119736, 0.02752094343304634, -0.05202177166938782, 0.054765231907367706, 0.055878646671772, -0.0069414484314620495, -0.04737292602658272, 0.044109780341386795, 0.03964849188923836, -0.043823376297950745, 0.05359745770692825, -0.03308404982089996, -0.0032402535434812307, -0.01951790601015091, -0.026999585330486298, -0.025372212752699852, 0.023796863853931427, 0.02054062858223915, -0.01827903650701046, 0.07705755531787872, 0.0463172011077404, -0.022676704451441765, -0.02686702273786068, -0.009594520553946495, -0.007183568552136421, -0.0070366403087973595, -0.0288492813706398, -0.018642984330654144, -0.0486372709274292, -0.06122186407446861, -0.00834176316857338, 0.020521631464362144, -0.020932339131832123, -0.03769424557685852, 0.014781361445784569, 0.028232524171471596, -0.013806766830384731, 0.02928510494530201, -0.01787959411740303, 0.0016771461814641953, -0.07448037713766098, -0.020663058385252953, -0.01555057242512703, 0.01928817294538021, 0.0031676562502980232, -0.021479032933712006, -0.004886440467089415, 0.012443731538951397, -0.0036533609963953495, -0.048912618309259415, 0.03076918236911297, 0.014080719090998173, 0.0008153346134349704, 0.047568973153829575 ]
[ -0.0688571110367775, -0.034975916147232056, -0.0082786800339818, 0.004194273147732019, 0.07206796854734421, -0.07152185589075089, -0.04127945750951767, -0.005381755065172911, -0.01769171468913555, -0.02650933712720871, 0.01008378341794014, -0.026128580793738365, -0.006964081898331642, -0.029518350958824158, 0.08379057049751282, 0.013747462071478367, -0.026913385838270187, -0.02868797816336155, -0.004391188267618418, 0.002846341347321868, -0.009790596552193165, 0.008944078348577023, -0.006104195024818182, -0.03234731778502464, -0.0167250819504261, 0.06080372631549835, 0.007953682914376259, -0.019119229167699814, -0.024114418774843216, -0.18610863387584686, 0.030426720157265663, -0.022049183025956154, 0.006891797296702862, -0.014929571188986301, 0.04124116897583008, 0.03644693270325661, 0.01323839370161295, 0.011755012907087803, 0.016985615715384483, 0.05743729695677757, 0.02033090405166149, 0.018943969160318375, -0.0721239298582077, -0.013812470249831676, 0.03358304500579834, -0.00409953435882926, -0.018412532284855843, -0.00575278839096427, -0.005129928234964609, -0.00573392678052187, -0.030038513243198395, -0.0055365413427352905, -0.02964037097990513, -0.04316853731870651, -0.012158350087702274, 0.04370199888944626, 0.060498062521219254, 0.09628590196371078, 0.004354009870439768, 0.051952943205833435, 0.0029385783709585667, -0.006558784283697605, -0.13571639358997345, 0.04920598119497299, 0.028443116694688797, 0.03886238485574722, -0.05343572422862053, -0.047781478613615036, -0.023523425683379173, 0.09995273500680923, -0.028530482202768326, -0.004854979924857616, -0.04192265495657921, 0.08980876207351685, 0.01615951396524906, -0.00790114514529705, -0.011525862850248814, 0.021834392100572586, 0.04519496113061905, -0.03432627022266388, -0.03082222491502762, 0.020815420895814896, -0.04592084512114525, 0.00016738020349293947, -0.030851146206259727, 0.02317884936928749, -0.03557071462273598, 0.07668212056159973, 0.029850946739315987, 0.04153330251574516, 0.0360165610909462, -0.04892309755086899, 0.0286940336227417, 0.048611558973789215, -0.08413896709680557, -0.002936322009190917, 0.00933019258081913, 0.008522650226950645, -0.07020501792430878, 0.43990248441696167, -0.014278117567300797, -0.025484133511781693, 0.06668771058320999, 0.033242374658584595, -0.022182241082191467, 0.02446507103741169, -0.02009340561926365, -0.027169646695256233, 0.02932802401483059, -0.017052695155143738, 0.005729977507144213, -0.02745123766362667, 0.03918469324707985, -0.08795075118541718, 0.012490728870034218, -0.026789655908942223, 0.00748440669849515, 0.024130096659064293, -0.03652079775929451, 0.03125881776213646, 0.021917106583714485, 0.015318845398724079, 0.025509539991617203, 0.02718866616487503, 0.004844788461923599, -0.0017568852053955197, 0.04034782946109772, 0.04265596345067024, 0.02925674431025982, 0.021465493366122246, 0.011607103049755096, -0.028589259833097458, -0.11109816282987595, -0.008349735289812088, -0.029258212074637413, 0.020016461610794067, 0.026093274354934692, -0.0048728277906775475, -0.0033682486973702908, 0.028973139822483063, -0.005422143265604973, -0.018369274213910103, 0.007530627306550741, -0.014800239354372025, -0.0484001487493515, 0.08899738639593124, -0.03370760753750801, -0.021847287192940712, -0.02411096729338169, -0.0432809442281723, -0.022274905815720558, 0.04056683927774429, 0.02198113687336445, -0.04183867201209068, -0.0021754829213023186, -0.013732094317674637, 0.02859058789908886, -0.040236495435237885, -0.03701915219426155, 0.017500465735793114, -0.010860087350010872, -0.06869667023420334, -0.023224618285894394, 0.046692825853824615, 0.023909933865070343, -0.10320138931274414, -0.04669149965047836, -0.007380095310509205, 0.03266908600926399, -0.03363816812634468, -0.00447790278121829, 0.008073595352470875, 0.004054440185427666, -0.015588861890137196, 0.04054168611764908, -0.026628538966178894, -0.012085994705557823, 0.04261155426502228, 0.020564991980791092, -0.004255286417901516, 0.028451722115278244, 0.024819592013955116, -0.029949408024549484, 0.006823570467531681, -0.0424850769340992, -0.06243632733821869, -0.029758678749203682, -0.0362505204975605, -0.015428692102432251, -0.031059179455041885, -0.06928548961877823, -0.0010953089222311974, -0.05269114673137665, 0.025013988837599754, -0.0031272312626242638, 0.006079395767301321, 0.018831120803952217, 0.0024104821495711803, 0.010671509429812431, -0.04094964265823364, 0.01661975495517254, 0.06810472160577774, -0.017519056797027588, 0.04344678297638893, -0.09523243457078934, 0.025491848587989807, 0.03700784593820572, -0.043402448296546936, 0.061939310282468796, 0.03190087527036667, -0.046375665813684464, 0.004982819780707359, 0.027055099606513977, 0.042738787829875946, -0.0258164219558239, 0.017143653705716133, -0.04542165622115135, 0.01907981187105179, 0.025453053414821625, 0.043613314628601074, -0.041837625205516815, -0.0008456981740891933, 0.018417224287986755, -0.3616732060909271, -0.014155824668705463, -0.02204813063144684, -0.006262779701501131, -0.02629375085234642, -0.0414486825466156, 0.013845130801200867, -0.02270902507007122, -0.05668206512928009, 0.014137367717921734, 0.1182088851928711, -0.039528392255306244, 0.010383623652160168, -0.052075184881687164, -0.006253131665289402, 0.03726666048169136, -0.05445345118641853, -0.029253795742988586, 0.011122039519250393, 0.023101897910237312, 0.02867269515991211, -0.05138736963272095, 0.002583955880254507, -0.07045260816812515, 0.014693155884742737, -0.059027936309576035, 0.10659191012382507, 0.0201838631182909, 0.06433537602424622, -0.06055735796689987, 0.043277762830257416, 0.012243020348250866, 0.02388508804142475, -0.11889349669218063, -0.01572670228779316, -0.030433660373091698, -0.0019357888959348202, 0.0415530726313591, 0.032287146896123886, -0.006700348109006882, 0.0005361877265386283, 0.03084729053080082, -0.02935882844030857, -0.05858171731233597, 0.01596713811159134, 0.01650739088654518, -0.018345627933740616, -0.010956643149256706, -0.00240446999669075, 0.038214586675167084, 0.006826456636190414, 0.020388666540384293, 0.030701398849487305, 0.047501251101493835, 0.026812875643372536, -0.033844973891973495, -0.07233326137065887, 0.007010478060692549, 0.05310174450278282, 0.012723682448267937, 0.033765897154808044, 0.05594538897275925, 0.03371191397309303, -0.05762425810098648, 0.018735051155090332, -0.026673011481761932, -0.0018129786476492882, -0.0006702951504848897, 0.04682642221450806, -0.018006592988967896, -0.016006365418434143, 0.10559406876564026, 0.03250886872410774, -0.012381868436932564, 0.0021576976869255304, 0.014291479252278805, -0.015681326389312744, 0.021208764985203743, 0.02514631673693657, -0.017525851726531982, -0.01658354327082634, -0.015796255320310593, 0.060897231101989746, -0.019077880308032036, -0.0033060202840715647, 0.037041112780570984, -0.004628975410014391, -0.028137292712926865, 0.07230956852436066, 0.018383152782917023, -0.022518478333950043, -0.03666141256690025, -0.018653789535164833, -0.041018400341272354, 0.10340416431427002, -0.011038056574761868, -0.2519929111003876, 0.015987781807780266, 0.08611759543418884, 0.047684669494628906, -0.013695611618459225, 0.03278691694140434, 0.0441831573843956, -0.03563539311289787, 0.027445819228887558, -0.0036287587136030197, 0.017534786835312843, 0.008311250247061253, 0.0004875992890447378, -0.030887721106410027, 0.019616950303316116, -0.003722641384229064, 0.05482124537229538, 0.01581709086894989, 0.020629771053791046, 0.010964548215270042, 0.021364759653806686, -0.0019335406832396984, 0.12705285847187042, -0.01011504977941513, 0.007870339788496494, 0.03440617397427559, -0.032715294510126114, 0.024673935025930405, 0.05301949009299278, 0.028778985142707825, 0.0008632673998363316, 0.008864101022481918, 0.06511330604553223, 0.020159300416707993, 0.006584384012967348, -0.05217108130455017, -0.006467061582952738, 0.0025561361107975245, 0.03050706721842289, -0.01439772266894579, -0.044608987867832184, 0.03096388280391693, -0.05098462104797363, 0.015510897152125835, 0.03242909535765648, -0.05962379276752472, 0.012673166580498219, -0.00227496400475502, -0.05056498944759369, -0.03735307976603508, -0.03363506495952606, -0.032665401697158813, -0.014353636652231216, 0.02712821029126644, 0.02878204919397831, 0.07317149639129639, 0.026771700009703636, -0.04538419842720032, 0.009083518758416176, -0.007686068303883076, -0.004557720851153135, -0.027897242456674576, 0.13577301800251007, -0.013747481629252434, 0.008228824473917484 ]
[ 0.005715217441320419, -0.029660198837518692, -0.023154525086283684, 0.029443472623825073, 0.0393071249127388, -0.003173149423673749, -0.007182694505900145, 0.04469709098339081, -0.05009988322854042, 0.016800379380583763, 0.003674771636724472, 0.021842094138264656, 0.026683032512664795, 0.009086956270039082, 0.024864133447408676, 0.028896598145365715, 0.028471659868955612, -0.0034306689631193876, 0.03018658049404621, -0.004698149394243956, -0.0169264767318964, 0.030994947999715805, 0.013936311937868595, 0.005223734304308891, -0.007429749239236116, -0.02731815166771412, -0.0050352588295936584, 0.018068350851535797, 0.008689295500516891, -0.14406782388687134, -0.01668401248753071, -0.027030181139707565, 0.014255317859351635, 0.02095712721347809, 0.04568498954176903, 0.018389340490102768, 0.05531235784292221, -0.012067321687936783, -0.03771997615695, -0.005651269108057022, 0.01505142543464899, -0.004878992214798927, 0.00206134095788002, -0.03862592205405235, 0.00576169416308403, -0.020035376772284508, -0.028121409937739372, -0.03581822291016579, 0.011160311289131641, -0.004417837597429752, -0.025899073109030724, -0.0056079598143696785, 0.009453740902245045, -0.0186694897711277, 0.015499475412070751, 0.014481070451438427, 0.045884452760219574, -0.01034258771687746, 0.010365189984440804, -0.0007680671405978501, 0.0075260549783706665, 0.03576507791876793, -0.05592890456318855, -0.035028889775276184, -0.01887195184826851, -0.041509754955768585, -0.0382441021502018, 0.007160252891480923, 0.010761437937617302, 0.007324694190174341, -0.016458656638860703, 0.018858004361391068, -0.01366900373250246, -0.02663799375295639, -0.04292668402194977, -0.006219830363988876, 0.021534474566578865, 0.010506733320653439, -0.010071191936731339, 0.01971113122999668, -0.06345915049314499, 0.01784611865878105, 0.002983385929837823, -0.021582480520009995, -0.033104848116636276, 0.03639601543545723, -0.00763168977573514, 0.013079200871288776, 0.04696955904364586, 0.002422220539301634, -0.00570296123623848, -0.014797965995967388, -0.01835900917649269, 0.04154205694794655, -0.09250059723854065, -0.04547538980841637, 0.034574296325445175, -0.017880437895655632, -0.00009997829329222441, 0.8047909736633301, -0.016544118523597717, 0.011190877296030521, 0.05466695874929428, 0.026063010096549988, 0.015874488279223442, 0.005506719462573528, 0.03029089979827404, 0.0013040784979239106, -0.005754165817052126, -0.03804450109601021, 0.0387016236782074, -0.005224926862865686, 0.0453156903386116, 0.02495984546840191, 0.044213443994522095, -0.0022149747237563133, 0.02351849153637886, -0.0001457224425394088, -0.0217058677226305, 0.0159474927932024, 0.07390916347503662, 0.027616683393716812, 0.026234997436404228, 0.04542703554034233, 0.01649845391511917, -0.1857784390449524, -0.008272669278085232, -7.229414419147874e-33, 0.02111230045557022, -0.010775815695524216, -0.015671545639634132, 0.03539629653096199, 0.0043909382075071335, 0.013480983674526215, -0.017918424680829048, 0.01727677695453167, 0.0028612189926207066, -0.008643939159810543, 0.008427939377725124, -0.010826238431036472, -0.023030700162053108, -0.004876722581684589, 0.0038506498094648123, -0.011357530951499939, -0.009892335161566734, 0.041658442467451096, 0.0016528763808310032, 0.035808265209198, 0.012806912884116173, 0.007109687197953463, -0.03184393793344498, 0.006269454024732113, 0.01640601083636284, 0.0014162214938551188, 0.056115202605724335, -0.022261962294578552, 0.014848882332444191, -0.043683625757694244, 0.009748123586177826, 0.017727384343743324, 0.0007075733738020062, -0.01528842281550169, 0.007918907329440117, -0.042332373559474945, -0.012462230399250984, 0.0132839260622859, -0.040991924703121185, -0.01437771413475275, -0.0031231422908604145, 0.0020198661368340254, -0.030718378722667694, -0.0506945475935936, 0.005951212719082832, 0.0010033987928181887, 0.0259627066552639, 0.05524720624089241, 0.017112286761403084, -0.012569556012749672, 0.009957356378436089, -0.0027640582993626595, 0.018085505813360214, 0.035739246755838394, -0.009961877949535847, -0.014457307755947113, -0.012403539381921291, -0.015055844560265541, 0.0039619565941393375, -0.007068851497024298, 0.02303033322095871, -0.009549184702336788, -0.020684875547885895, 0.016537843272089958, 0.004865553230047226, -0.027918962761759758, 0.04001865163445473, 0.006972348317503929, 0.020968230441212654, 0.023321326822042465, -0.09117670357227325, -0.015332525596022606, 0.009955530986189842, -0.022226087749004364, 0.005393528379499912, -0.0821743756532669, -0.0018495370168238878, 0.02141478843986988, -0.011090866290032864, 0.042591799050569534, -0.010718299075961113, 0.00851911399513483, -0.06575725972652435, -0.02979167364537716, -0.019213231280446053, 0.014200828969478607, 0.04146651551127434, -0.0017404539976269007, -0.03337526321411133, 0.007956239394843578, 0.028681108728051186, 0.014620352536439896, -0.021856985986232758, -0.01257040724158287, -0.027009136974811554, 7.374057529648618e-33, 0.010009108111262321, -0.05350656434893608, -0.0038847087416797876, 0.01233795564621687, 0.0440354160964489, -0.04252180457115173, 0.03676174581050873, -0.012130940333008766, -0.030161529779434204, -0.0041296351701021194, -0.04479074478149414, -0.003950657323002815, 0.0019044493092224002, 0.01879163272678852, 0.07108819484710693, -0.0234313253313303, -0.011387084610760212, -0.027359405532479286, 0.006017835810780525, 0.0110189663246274, -0.033057138323783875, 0.01468740776181221, 0.025841688737273216, 0.02700847014784813, 0.051995620131492615, 0.05514037609100342, -0.03039581887423992, 0.01799689419567585, -0.018525559455156326, -0.03518800064921379, 0.01088397391140461, 0.010046934708952904, -0.004568884149193764, -0.05583539605140686, -0.07264731824398041, 0.02669064700603485, -0.029164457693696022, 0.004743863362818956, 0.008635533042252064, -0.00850023701786995, 0.05487499758601189, -0.004249868914484978, -0.031810421496629715, -0.013066740706562996, -0.027779007330536842, 0.045783236622810364, 0.018812062218785286, -0.01795533113181591, -0.020909367129206657, -0.005050730425864458, -0.005210490897297859, 0.00828489474952221, -0.013576640747487545, -0.03012370504438877, 0.02970406599342823, -0.02281882055103779, -0.03903974965214729, 0.034391261637210846, -0.01703006401658058, 0.02557956613600254, 0.013274971395730972, 0.04293081536889076, -0.011397931724786758, 0.027693860232830048, -0.0509650893509388, -0.011935205198824406, 0.015864890068769455, 0.01008749008178711, 0.02134852111339569, -0.01103686261922121, 0.006041679531335831, 0.049859415739774704, -0.023083236068487167, 0.026425940915942192, 0.022267717868089676, -0.04818655923008919, -0.03503384813666344, -0.01918715424835682, -0.03145325183868408, 0.010007069446146488, -0.014332541264593601, 0.014224058948457241, -0.014374049380421638, 0.015142092481255531, 0.01817862130701542, 0.047009844332933426, -0.04670366272330284, 0.054868098348379135, 0.011257880367338657, -0.003582275239750743, 0.00607472425326705, -0.04083322733640671, -0.03385983034968376, 0.000142019271152094, -0.06290383636951447, -1.272793781481596e-8, -0.011198260821402073, 0.02738151326775551, -0.003771941876038909, 0.008913686498999596, -0.004238971043378115, 0.007168327923864126, 0.0049540940672159195, 0.04631656035780907, -0.01339675672352314, 0.034049440175294876, 0.04156506806612015, 0.009987985715270042, -0.020700518041849136, 0.0415223054587841, -0.01897856406867504, -0.038324445486068726, -0.02231140062212944, 0.0356222540140152, 0.012405351735651493, -0.011851913295686245, 0.03470688313245773, 0.06602967530488968, -0.04542393982410431, 0.023917369544506073, -0.010639196261763573, 0.019901584833860397, -0.002746826270595193, -0.08818253874778748, 0.03016309067606926, 0.010036557912826538, 0.036934901028871536, -0.009062539786100388, -0.008750141598284245, 0.0026459756772965193, -0.03262163698673248, -0.015120279043912888, 0.024856610223650932, 0.047818977385759354, 0.03108326904475689, -0.03256102278828621, -0.01890989951789379, -0.0006613371660932899, -0.0014383344678208232, -0.03330526128411293, -0.07075784355401993, -0.025174971669912338, -0.027087455615401268, -0.017705123871564865, 0.009347500279545784, -0.03083581104874611, -0.0017819487256929278, -0.008699433878064156, 0.007735602091997862, 0.038994062691926956, 0.0281221903860569, 0.016229715198278427, 0.0015938358847051859, -0.041274745017290115, -0.021557338535785675, 0.011698533780872822, 0.015910007059574127, -0.027887839823961258, -0.014356620609760284, -0.007071240339428186 ]
rails-a-slightly-misleading-error
https://markhneedham.com/blog/2010/11/16/rails-a-slightly-misleading-error
false
2010-11-10 19:58:33
Distributed Agile: Communicating big design decisions
[ "distributed-agile-2" ]
[ "Distributed Agile" ]
Although we mostly split the work on my project so that there aren't too many dependencies between the teams in Chicago and Pune, there have still been some times when we've designed major parts of the code base in Pune and have needed to communicate that to our Chicago colleagues. I've never seen this situation so it's been interesting to see which approaches work in trying to do this effectively and allowing the people in the other location to have input as well. == Explanation on specific email threads While it's useful to communicate the approach being taken by email we've found that it makes more sense to have a specific email thread for that conversation rather than tagging it onto something else. It's surprisingly easy for emails to get lost amongst the hundreds of others that people receive each day but at least if the important messages are all under an email with a clear title then it's much easier to deal with. While discussing this with http://twitter.com/#!/dexterous[Saager], he suggested that an effective approach he's used previously is to include details of design decisions taken in commit messages and then point people towards those particular commits. Of course however skilful we may be in communicating via email it does help to talk on a conference call as well - that medium seems to work better for explaining the reasoning behind decisions, especially if there's a disagreement in the approach. == Commit early As much as we can explain design decisions in emails or conference calls it's still not as useful for people as seeing the actual code which is something we didn't totally appreciate until recently. We're now trying to ensure that we check in more incrementally when making big design changes. This should help to tighten the feedback loop and ensure that we get the benefit of the design skills of people onshore as well as offshore. Something which I initially considered as a disadvantage with checking in incrementally is that you will most likely get suggestions/criticism about what you've done even if you had already planned to address some of those areas anyway. As a colleague correctly pointed out, the intention is generally good and it's not the end of the world if someone suggests something you could have done better anyway. == In summary These types of things seem obvious looking back at them now but I guess it isn't so obvious to me because you never have to think about them at all when anyone interested in the code is sitting in the same room as you as it's been for me when working onshore. I'd be interested to hear any other approaches that have worked well for others working in a distributed fashion.
null
null
[ 0.053569428622722626, 0.00014747212117072195, -0.0007122089737094939, 0.050326257944107056, 0.0719577893614769, 0.021833335980772972, 0.010701515711843967, 0.04407452419400215, 0.04283316060900688, -0.038432441651821136, -0.025575291365385056, -0.011749549768865108, -0.07201382517814636, 0.017859386280179024, -0.031131885945796967, 0.07934457063674927, 0.05963248014450073, 0.0001775506534613669, 0.02411293052136898, 0.028521167114377022, 0.029966115951538086, 0.05748545378446579, 0.011369060724973679, 0.025827813893556595, 0.04208620265126228, 0.0012833635555580258, 0.004340520594269037, -0.015169098973274231, -0.0540429949760437, 0.00016011341358534992, 0.0545453280210495, -0.0023812029976397753, 0.004938038997352123, -0.012528277933597565, 0.008816453628242016, -0.033917807042598724, -0.03601745143532753, 0.02705925889313221, 0.004921006038784981, -0.0010335711995139718, -0.055684152990579605, 0.06111631914973259, -0.005308277439326048, -0.000013768400094704702, -0.03654953092336655, 0.025850122794508934, -0.06231293827295303, 0.021145086735486984, 0.016319604590535164, 0.008311141282320023, -0.0691780224442482, 0.01922670751810074, 0.003434182144701481, -0.0031061044428497553, -0.003014473244547844, 0.055647242814302444, 0.013740143738687038, -0.06974422186613083, 0.01060734037309885, -0.03724270313978195, -0.010891699232161045, -0.016174722462892532, 0.018829340115189552, 0.03632108494639397, 0.03686514496803284, -0.024296952411532402, 0.012799039483070374, 0.04114122316241264, -0.02881947159767151, 0.02085537277162075, -0.023441575467586517, 0.010150429792702198, 0.013126618228852749, -0.03068738617002964, -0.006363634020090103, -0.04221267253160477, 0.00527262594550848, 0.07679510861635208, 0.025866704061627388, 0.04057390242815018, -0.029392987489700317, 0.013015227392315865, -0.005935455672442913, 0.024498164653778076, -0.001892430940642953, -0.03622426837682724, -0.00007614550122525543, -0.021800991147756577, -0.05700047314167023, 0.04973362758755684, 0.016007117927074432, -0.07086575031280518, 0.04211655631661415, 0.02242150716483593, 0.014012997969985008, 0.008663719519972801, 0.01782047189772129, 0.013721573166549206, -0.011375275440514088, -0.024833688512444496, -0.023628929629921913, -0.01718050427734852, -0.020866472274065018, 0.019707174971699715, -0.07165327668190002, -0.02929508686065674, -0.027560673654079437, -0.020374851301312447, 0.004137938842177391, 0.006045652087777853, -0.02229905128479004, -0.010421128943562508, -0.016462698578834534, -0.017671549692749977, -0.055076971650123596, 0.057445280253887177, 0.012958366423845291, -0.03626945987343788, -0.030787769705057144, -0.013577504083514214, 0.037586163729429245, 0.0442570298910141, 0.006992307957261801, 0.08436224609613419, 0.0052514029666781425, 0.017694780603051186, -0.0382942371070385, 0.05554156377911568, -0.043908342719078064, -0.08030913025140762, -0.01978790946304798, 0.04881808161735535, -0.024057654663920403, -0.021703027188777924, 0.0004472444416023791, -0.05239752680063248, 0.0028265099972486496, 0.00886071752756834, 0.02277238667011261, 0.02829607203602791, -0.007289656437933445, -0.029144274070858955, 0.020209001377224922, 0.02665276639163494, 0.020026305690407753, 0.019782178103923798, -0.003430237527936697, -0.033706266433000565, -0.050182733684778214, -0.030065735802054405, 0.0052048638463020325, 0.023816000670194626, -0.0032443960662931204, -0.0381462536752224, 0.02714867703616619, 0.08953408896923065, 0.05452143773436546, 0.01894472725689411, -0.009031737223267555, 0.021258752793073654, 0.023310458287596703, 0.016813533380627632, 0.013750780373811722, 0.026526091620326042, 0.005787281319499016, -0.009432473219931126, 0.0015427932376042008, 0.031643252819776535, 0.0164669007062912, 0.020334959030151367, -0.06145390868186951, -0.05022711679339409, 0.05423703044652939, -0.04133415222167969, -0.0022134389728307724, 0.05564515292644501, 0.07993879169225693, 0.024595364928245544, 0.03429795429110527, 0.0066655478440225124, -0.07380551099777222, 0.0261161420494318, 0.0004283479938749224, 0.013474338687956333, 0.04138227924704552, -0.03368857875466347, 0.04310226812958717, 0.017435213550925255, -0.014610182493925095, 0.042900167405605316, -0.09417781978845596, -0.08528067171573639, -0.017281023785471916, -0.003871508175507188, 0.055345647037029266, -0.027586590498685837, 0.0141537394374609, 0.07385741174221039, 0.02535972371697426, 0.05718211084604263, 0.04438444599509239, 0.013500246219336987, 0.010495077818632126, -0.04361092299222946, -0.0512397401034832, 0.04218646511435509, 0.03625030815601349, 0.0012808031169697642, -0.06214044988155365, 0.02450953796505928, 0.006919044069945812, -0.031496062874794006, 0.06647341698408127, -0.026789551600813866, 0.05604993924498558, 0.0018192395800724626, 0.05283813551068306, -0.031844448298215866, 0.0388297475874424, -0.045408107340335846, 0.013020416721701622, 0.014200725592672825, -0.010289003141224384, 0.04233216866850853, -0.011250797659158707, 0.09637350589036942, 0.04964559152722359, -0.052802082151174545, -0.04546258598566055, 0.034982673823833466, 0.03300445154309273, -0.043678250163793564, -0.00036683338112197816, -0.018629297614097595, 0.02397764101624489, 0.000686991959810257, -0.07784871757030487, -0.03160547465085983, 0.026606546714901924, -0.04368415102362633, 0.012680867686867714, 0.06790600717067719, -0.0415954515337944, 0.047963712364435196, -0.02083040401339531, -0.005321672186255455, -0.012725435197353363, -0.030312230810523033, -0.03261280432343483, 0.047103602439165115, 0.00414588488638401, -0.01885114423930645, 0.05982459709048271, -0.01669475808739662, -0.03468868136405945, -0.041405271738767624, -0.004034711513668299, 0.00855808611959219, 0.05212676152586937, 0.05730421096086502, -0.006537481211125851, 0.058321285992860794, -0.0017423504032194614, 0.0336361899971962, 0.010643918998539448, -0.050771284848451614, -0.020095286890864372, -0.0298834927380085, -0.005381667986512184, 0.03096691332757473, 0.005761438515037298, 0.013175572268664837, 0.010118368081748486, 0.0068379901349544525, -0.02426351234316826, -0.015169055201113224, 0.002799839712679386, -0.014441356062889099, -0.014619500376284122, -0.02098372019827366, -0.018787477165460587, 0.03362023085355759, -0.04463067650794983, -0.04469655826687813, 0.023596391081809998, -0.05346119403839111, 0.038296546787023544, -0.08673252165317535, -0.03155770152807236, -0.012459099292755127, 0.019036846235394478, 0.03175140544772148, -0.02101207710802555, 0.03313498944044113, 0.08803309500217438, 0.00247169123031199, 0.016572661697864532, -0.007546945940703154, -0.010186797007918358, 0.029002720490098, 0.028894171118736267, -0.004877373576164246, 0.04191048815846443, -0.01570206694304943, -0.023702142760157585, -0.05975322797894478, 0.06295008957386017, -0.029177382588386536, -0.28292909264564514, 0.03539909049868584, 0.01564086601138115, -0.04413813352584839, 0.014875799417495728, -0.011791338212788105, 0.02667098306119442, -0.037797145545482635, -0.010006981901824474, -0.008092239499092102, -0.03810162842273712, -0.06110898405313492, -0.009207626804709435, 0.03523976355791092, -0.0011192673118785024, 0.03908510133624077, 0.01695297658443451, -0.02497595176100731, 0.011577771976590157, 0.04233301803469658, -0.021415049210190773, -0.07665802538394928, 0.013568769209086895, 0.013372713699936867, 0.03589393198490143, 0.040819864720106125, -0.09272418916225433, 0.046906594187021255, -0.044113095849752426, 0.016564037650823593, 0.017163770273327827, 0.007257812190800905, -0.005177988205105066, -0.01747298426926136, -0.009379765950143337, -0.02190340682864189, 0.05685313045978546, 0.00786054227501154, -0.011809215880930424, 0.011968424543738365, -0.007697842083871365, -0.010491432622075081, -0.013551373034715652, 0.005714085418730974, 0.061099834740161896, 0.003842773614451289, -0.06718792021274567, -0.010428430512547493, -0.016099942848086357, 0.08272633701562881, -0.02377725951373577, -0.030489718541502953, -0.009996425360441208, 0.041513700038194656, -0.025291597470641136, -0.028002606704831123, -0.023696251213550568, -0.011911041103303432, -0.04387640580534935, -0.030132995918393135, -0.009602254256606102, -0.051228392869234085, 0.002068860922008753, -0.04373137280344963, 0.014238659292459488, -0.05421525239944458, -0.0687454491853714, -0.01558543648570776, 0.06409445405006409, 0.003134271828457713, -0.023678122088313103, 0.04760092869400978, 0.008918090723454952, -0.1034710481762886, 0.004144647158682346, -0.017510604113340378, -0.019874054938554764, -0.013455037958920002, 0.022136850282549858, 0.02414007857441902, -0.02116505056619644, -0.04507270082831383, 0.00911109521985054, 0.030046895146369934, 0.013680368661880493, 0.0006832928047515452, 0.03864583373069763, 0.01576659083366394, -0.04785512387752533, 0.024004997685551643, 0.04759632796049118, -0.018904153257608414, -0.03886670619249344, -0.025874817743897438, 0.022058071568608284, -0.010383510030806065, 0.02618035487830639, -0.030047211796045303, 0.006706721615046263, 0.04179101809859276, -0.003322931472212076, -0.06678397953510284, 0.022069377824664116, -0.02240126207470894, 0.003946099430322647, -0.016279187053442, -0.038503386080265045, 0.023904750123620033, 0.04954668506979942, 0.047390587627887726, -0.0026161980349570513, -0.048419784754514694, 0.003558317432180047, -0.05037333816289902, -0.040142402052879333, -0.011836272664368153, 0.00535934092476964, 0.047955676913261414, -0.03975452482700348, -0.024337124079465866, -0.0440184511244297, 0.019767070189118385, -0.00385924126021564, 0.028791502118110657, -0.05725058168172836, 0.002861596643924713, -0.04404263198375702, -0.028679408133029938, 0.0018982820911332965, 0.023286886513233185, -0.03184842690825462, 0.03377684950828552, 0.023448757827281952, -0.02681882493197918, 0.02440856583416462, -0.005590104963630438, -0.0449947752058506, -0.015991518273949623, -0.017562154680490494, -0.004886248614639044, -0.007164906244724989, 0.04419953003525734, -0.01460715476423502, 0.025748929008841515, 0.05571950972080231, 0.014575688168406487, 0.002283731009811163, -0.027857081964612007, 0.041635289788246155, 0.02540457993745804, -0.014489566907286644, -0.09121513366699219, 0.0136435991153121, -0.04270365834236145, -0.02750326320528984, -0.03305691480636597, 0.030578838661313057, -0.02286108210682869, -0.042422521859407425, 0.008920084685087204, 0.010163693688809872, -0.04889325052499771, -0.03834397718310356, -0.023107310757040977, 0.035106297582387924, 0.05035538226366043, -0.01704733446240425, 0.0030337898060679436, -0.02340582013130188, -0.01464125793427229, 0.0011841439409181476, 0.01327870786190033, -0.059899572283029556, -0.010883141309022903, 0.009514226578176022, 0.011217352002859116, -0.0015566876390948892, -0.002741376869380474, 0.059788573533296585, 0.027400938794016838, -0.004375164397060871, -0.031529705971479416, -0.012608043849468231, 0.022380249574780464, 0.05160276219248772, 0.009194687940180302, 0.00968574732542038, 0.004261143505573273, -0.004461022559553385, -0.026571160182356834, -0.05126684159040451, -0.010268954560160637, 0.005690854974091053, 0.014990322291851044, -0.033989954739809036, -0.07246442884206772, 0.06143476441502571, 0.027040930464863777, 0.011737114749848843, 0.027161527425050735, -0.0010693875374272466, 0.01755140908062458, -0.03497067466378212, 0.040122389793395996, 0.04360288009047508, -0.045076727867126465, 0.005570263136178255, -0.00809534452855587, -0.0021197497844696045, 0.004200722556561232, 0.0007748465868644416, -0.034492939710617065, -0.04062848165631294, -0.02834799885749817, 0.020394813269376755, -0.06808407604694366, -0.032644715160131454, -0.008087130263447762, 0.020779525861144066, 0.002814849140122533, -0.01953403279185295, -0.02531508356332779, -0.0038391812704503536, -0.014710120856761932, -0.042452339082956314, 0.028134724125266075, -0.03248530998826027, 0.017933271825313568, 0.0005106064490973949, -0.04445080831646919, 0.004486987832933664, -0.02509455569088459, 0.025686539709568024, 0.029633808881044388, -0.017974501475691795, -0.009760124608874321, -0.036271609365940094, -0.00892031379044056, 0.004101714119315147, 0.04408389329910278, -0.03392110392451286, -0.031204840168356895, -0.039826057851314545, -0.026170460507273674, -0.03984396159648895, 0.02084249258041382, -0.040725432336330414, 0.006623613648116589, 0.008548269979655743, 0.06788825988769531, 0.02136334963142872, 0.03637976944446564, -0.01514978613704443, -0.011401868425309658, 0.032557256519794464, -0.07220583409070969, -0.023900970816612244, -0.034250278025865555, -0.06826771795749664, -0.013961289077997208, -0.0016364350449293852, 0.009983406402170658, -0.040571726858615875, 0.030615288764238358, 0.014829837717115879, 0.037243492901325226, 0.03800863400101662, -0.006726431660354137, 0.0299695935100317, -0.040707752108573914, 0.010328776203095913, -0.06888273358345032, 0.028586603701114655, 0.011581232771277428, 0.0003503959742374718, 0.0017727537779137492, 0.005911595653742552, -0.03331461921334267, 0.04836536571383476, -0.06736746430397034, -0.018128881230950356, 0.033119793981313705, 0.010717162862420082, -0.005771441850811243, 0.017845315858721733, -0.08027862757444382, 0.008142486214637756, 0.03966818004846573, -0.04707507789134979, -0.025132980197668076, -0.046087924391031265, 0.047005973756313324, -0.011359131895005703, 0.04872611165046692, -0.051849864423274994, -0.0016890427796170115, 0.0645330399274826, 0.018158098682761192, -0.005156537983566523, 0.05596490576863289, -0.01076416578143835, 0.04328857362270355, 0.027550959959626198, -0.0067290342412889, -0.018399422988295555, 0.03676497936248779, -0.017939090728759766, -0.044824257493019104, 0.0414050854742527, 0.005297516472637653, -0.04481127858161926, -0.036634307354688644, 0.06851373612880707, 0.024463213980197906, -0.04856199398636818, -0.02691900171339512, 0.013108452782034874, -0.0547819547355175, 0.00373354135081172, -0.03455816209316254, -0.0234935712069273, -0.040676187723875046, 0.04806174710392952, 0.010042339563369751, -0.004963223822414875, 0.08130817115306854, 0.00766131654381752, -0.016390442848205566, -0.015798136591911316, 0.09466288983821869, 0.07133561372756958, 0.08451152592897415, 0.005346696358174086, 0.0505368635058403, 0.006671523209661245, -0.031163113191723824, 0.018375474959611893, -0.012736957520246506, -0.01177531760185957, -0.018387077376246452, 0.012150202877819538, 0.05735629051923752, -0.010262188501656055, 0.07777741551399231, -0.02485090307891369, -0.0018448339542374015, 0.013148385100066662, 0.03836642950773239, 0.01644897647202015, 0.08041281253099442, 0.015178056433796883, 0.0025224564597010612, -0.014349632896482944, -0.027072623372077942, 0.02408946119248867, -0.040120989084243774, -0.028510702773928642, 0.046332456171512604, 0.008058274164795876, 0.02171424776315689, 0.014490483328700066, 0.005624964367598295, 0.07566363364458084, -0.04597054049372673, -0.005814350675791502, 0.0055258506909012794, 0.0438985601067543, -0.021756481379270554, 0.030632084235548973, -0.017723707482218742, -0.013214654289186, 0.00545282568782568, -0.03699275478720665, -0.03220051899552345, -0.004524813033640385, -0.00627158023416996, 0.05113217979669571, -0.008946950547397137, -0.005464781541377306, 0.023976486176252365, 0.018600456416606903, -0.029544509947299957, -0.04784979298710823, -0.015893636271357536, -0.03265339508652687, -0.05444163829088211, -0.03080814890563488, 0.02086067758500576, -0.016354331746697426, -0.03080597147345543, -0.0024201434571295977, -0.029400870203971863, -0.0350484773516655, 0.05910547450184822, -0.04354134574532509, -0.024428579956293106, 0.02507852017879486, 0.025530550628900528, 0.020199645310640335, 0.015556090511381626, 0.03783586621284485, -0.031023582443594933, -0.000027715706892195158, -0.025701895356178284, 0.040150582790374756, 0.013684508390724659, 0.020923934876918793, -0.0013595883501693606, -0.08457022905349731, 0.028171176090836525, 0.011608620174229145, -0.008526645600795746, -0.06576570868492126, 0.032039254903793335, 0.013950920663774014, 0.005692260339856148, 0.05996343865990639, -0.0020504759158939123, 0.005035309586673975, -0.0393514409661293, 0.011708982288837433, -0.0009685578988865018, 0.02023758925497532, 0.046690963208675385, -0.013932831585407257, 0.07480752468109131, 0.03765144944190979, -0.02744106389582157, -0.01678363047540188, -0.01720181480050087, 0.010481531731784344, -0.006279508117586374, -0.022390270605683327, -0.02903049811720848, -0.03497900068759918, -0.06571213901042938, -0.022521967068314552, 0.026236386969685555, -0.004833095706999302, -0.035477977246046066, 0.029047934338450432, 0.01559551153331995, -0.03655838966369629, 0.007166774943470955, -0.061201613396406174, 0.04483784735202789, -0.02190716192126274, -0.0218418650329113, -0.010778381489217281, 0.009553871117532253, -0.0074581243097782135, -0.010282285511493683, 0.020429164171218872, -0.03968709707260132, 0.001899177674204111, 0.007849871180951595, 0.011830708011984825, 0.0232791006565094, 0.01288588810712099, -0.0041410187259316444 ]
[ -0.0731530636548996, 0.000569049792829901, -0.024958958849310875, -0.03827133774757385, 0.03505103290081024, -0.035593803972005844, -0.03136173635721207, 0.026913277804851532, -0.022008506581187248, -0.03313637897372246, -0.014777311123907566, 0.01129203848540783, -0.004862767644226551, -0.022508734837174416, 0.06488053500652313, 0.012823810800909996, -0.004324483219534159, -0.07457442581653595, 0.036309197545051575, 0.02168380841612816, 0.00833427906036377, -0.032136764377355576, -0.01111950445920229, 0.009610026143491268, 0.010294023901224136, 0.02739141508936882, 0.023872679099440575, -0.04580432549118996, 0.015355370938777924, -0.1910346895456314, 0.011437625624239445, 0.04538857936859131, 0.054063815623521805, -0.006524646654725075, -0.01441764086484909, 0.055921681225299835, 0.009216777049005032, 0.024719644337892532, -0.01684880070388317, 0.027620971202850342, 0.0022050910629332066, 0.01532704196870327, -0.033779315650463104, -0.047794513404369354, 0.01461831759661436, -0.009122052229940891, 0.019000975415110588, -0.053203780204057693, -0.05179113149642944, 0.012809056788682938, -0.02375924587249756, -0.027645202353596687, -0.0090699577704072, -0.011211126111447811, -0.023457977920770645, 0.07025536894798279, 0.010853295214474201, 0.07955148816108704, -0.005126171745359898, 0.021535279229283333, 0.02065338008105755, -0.005454339552670717, -0.14287513494491577, 0.09989472478628159, 0.04703829810023308, 0.02781628631055355, -0.04526861011981964, 0.0038685768377035856, -0.012105034664273262, 0.11173810809850693, 0.016210803762078285, -0.029155699536204338, -0.01795310527086258, 0.04793583229184151, 0.029837481677532196, 0.008189935237169266, 0.008674218319356441, 0.04250948131084442, 0.017558526247739792, -0.054449357092380524, -0.033717378973960876, -0.00849858857691288, -0.02353423275053501, 0.007131379097700119, -0.05177639424800873, 0.02010178007185459, 0.011142617091536522, 0.06699730455875397, 0.03411255031824112, 0.01593738980591297, 0.06402222812175751, -0.03007795847952366, 0.008965333923697472, -0.027194911614060402, -0.08236152678728104, -0.02300226502120495, -0.022924909368157387, 0.009788861498236656, -0.06148017197847366, 0.4527042508125305, -0.03334461897611618, -0.014276224188506603, 0.0836494192481041, 0.03246522694826126, -0.015061190351843834, -0.025192776694893837, 0.02209997922182083, -0.052828699350357056, 0.014743991196155548, -0.01431949157267809, 0.006443666759878397, 0.03308160603046417, 0.03880366310477257, -0.02395535632967949, 0.031770288944244385, 0.04879181087017059, 0.03077460452914238, 0.02356761135160923, -0.01665514148771763, -0.026163294911384583, -0.00877760723233223, 0.024964476004242897, 0.01385033130645752, 0.023226458579301834, -0.029645081609487534, -0.04055078327655792, 0.013501294888556004, 0.0461680144071579, 0.03086734004318714, 0.01149127259850502, 0.04851219430565834, -0.0318276509642601, -0.041740238666534424, 0.010076499544084072, 0.0026798341423273087, 0.005309730768203735, 0.025932827964425087, -0.020268689841032028, -0.002718177391216159, 0.03684188053011894, 0.027211880311369896, 0.021029435098171234, 0.005054024513810873, -0.02772984467446804, -0.04170810431241989, 0.13737621903419495, 0.012258685193955898, -0.031107941642403603, -0.013885488733649254, -0.07267268747091293, 0.033498574048280716, 0.021952269598841667, 0.009594300761818886, -0.06198582053184509, 0.03237228840589523, -0.004384725354611874, 0.0562419667840004, -0.010883409529924393, -0.057048648595809937, 0.01468353159725666, 0.015126489102840424, -0.017887858673930168, -0.04527052864432335, 0.07219437509775162, 0.06184135377407074, -0.11473321169614792, -0.019465992227196693, -0.005650708451867104, 0.035153333097696304, -0.06698302179574966, -0.022922053933143616, 0.025851858779788017, 0.0105209369212389, 0.006964546162635088, 0.05186684429645538, -0.015206159092485905, -0.03831828385591507, 0.007992101833224297, 0.056067951023578644, 0.023089271038770676, 0.027693195268511772, 0.025749601423740387, -0.011718043126165867, 0.023652706295251846, -0.029976338148117065, -0.11020531505346298, -0.03951786458492279, 0.003979002125561237, -0.0417759045958519, 0.019392533227801323, -0.03736487030982971, -0.00019040917686652392, -0.05535009130835533, 0.1125444769859314, -0.0419342927634716, -0.02582668513059616, 0.011437593959271908, -0.04251774027943611, -0.019853461533784866, -0.031306613236665726, -0.04517173394560814, 0.029200324788689613, -0.06471184641122818, 0.023743178695440292, -0.05555686727166176, 0.05019405484199524, 0.051587846130132675, -0.03953646495938301, 0.08129893243312836, 0.061094459146261215, -0.037981241941452026, -0.01973755657672882, 0.03880126401782036, 0.008740498684346676, 0.02639710158109665, -0.022053806111216545, 0.01592135615646839, 0.034758977591991425, 0.01733764447271824, -0.0030687463004142046, -0.024410810321569443, 0.02721271850168705, -0.009671567007899284, -0.34565991163253784, -0.049077358096838, 0.000793231010902673, -0.012891612946987152, 0.017429329454898834, -0.07104058563709259, 0.03309827297925949, -0.029838556423783302, -0.02557561732828617, -0.0010819054441526532, 0.07813311368227005, -0.02189321629703045, 0.001597629045136273, -0.060553520917892456, 0.007039939984679222, 0.01373861450701952, -0.04085414111614227, 0.004445236641913652, -0.020655084401369095, -0.006258058827370405, -0.012622486799955368, 0.023258240893483162, -0.007137051317840815, -0.06444083154201508, 0.006494692526757717, -0.031959183514118195, 0.08184594660997391, -0.017765458673238754, 0.056650932878255844, -0.03247028589248657, 0.033807944506406784, 0.0063977232202887535, 0.027527784928679466, -0.12567731738090515, 0.010572499595582485, 0.001626836834475398, 0.02145434357225895, -0.005560035817325115, 0.025158731266856194, -0.02537548914551735, -0.0373760424554348, 0.010333352722227573, -0.050075024366378784, -0.03241706266999245, -0.06978905200958252, -0.0038758486043661833, -0.058011915534734726, -0.058137040585279465, -0.03884580731391907, 0.052333660423755646, -0.0037338933907449245, -0.02340061217546463, 0.01959635689854622, 0.03396746516227722, 0.010030003264546394, -0.03060833178460598, -0.058357927948236465, 0.017741883173584938, 0.018490321934223175, -0.005415174178779125, 0.03446255251765251, 0.04006565362215042, 0.02632671780884266, -0.04420791193842888, 0.016010327264666557, 0.019184144213795662, -0.00475506205111742, 0.014114577323198318, 0.036122262477874756, 0.011609754525125027, -0.008408783003687859, 0.10642007738351822, -0.010377123951911926, -0.020172109827399254, 0.031151846051216125, 0.018057549372315407, -0.010200019925832748, 0.028607215732336044, 0.006905689369887114, -0.0007350007072091103, 0.014371191151440144, -0.024081071838736534, 0.025636101141572, -0.03713550046086311, -0.013148520141839981, 0.05374513193964958, -0.01497634407132864, -0.06163274496793747, 0.03902164846658707, 0.026718726381659508, -0.02255518175661564, 0.017411570996046066, -0.027876347303390503, -0.027132686227560043, 0.074687659740448, -0.028039952740073204, -0.257162868976593, 0.01040741242468357, 0.059646230190992355, 0.015408760868012905, -0.02887461706995964, 0.04402187839150429, 0.03582755848765373, -0.042680032551288605, 0.015028580091893673, 0.01390727236866951, 0.00804126262664795, 0.004416709765791893, -0.01637750305235386, -0.005469485651701689, 0.04828699678182602, -0.006911630742251873, 0.04161233827471733, -0.0038718755822628736, 0.010988686233758926, -0.021865984424948692, -0.006887864787131548, -0.011285508051514626, 0.15811742842197418, 0.0010984126711264253, 0.026407847180962563, 0.018801173195242882, 0.0049527669325470924, -0.004645753186196089, 0.06693563610315323, -0.0069315433502197266, 0.008073153905570507, -0.02489442750811577, 0.024057520553469658, -0.009408855810761452, 0.024828046560287476, -0.0791294127702713, -0.020751072093844414, 0.021267978474497795, -0.004414980299770832, 0.010828324593603611, 0.0015830437187105417, 0.015801796689629555, -0.00821018312126398, 0.02720808982849121, 0.04970282316207886, 0.03212372586131096, -0.023273132741451263, -0.012601026333868504, -0.052158135920763016, -0.028520705178380013, -0.04114694148302078, -0.047545116394758224, -0.0005139753920957446, -0.008266081102192402, 0.007142120506614447, 0.07143336534500122, 0.013061592355370522, -0.051442697644233704, -0.02975134737789631, 0.03831009566783905, -0.013179972767829895, -0.023463118821382523, 0.1002708151936531, 0.006074520293623209, 0.04839208722114563 ]
[ 0.0044830311089754105, -0.0065146517008543015, 0.03239559009671211, -0.024716470390558243, 0.03887251019477844, -0.014835702255368233, -0.0005752978031523526, -0.005400532856583595, 0.030836815014481544, 0.017639439553022385, -0.025878407061100006, 0.005610928405076265, -0.024006498977541924, -0.02243788167834282, 0.0329364612698555, 0.016289612278342247, 0.009903132915496826, -0.023108145222067833, 0.056632112711668015, 0.02010696567595005, -0.02148020640015602, -0.028940649703145027, 0.007609287276864052, -0.012650296092033386, 0.008616856299340725, 0.012358317151665688, -0.02733326517045498, 0.002095875795930624, -0.003549270099028945, -0.12826529145240784, 0.005676593631505966, 0.00982087105512619, 0.01944601908326149, 0.0414331890642643, -0.009871679358184338, -0.010165208950638771, -0.003915818873792887, 0.048235949128866196, 0.01808857172727585, -0.020063575357198715, -0.018086662515997887, -0.010858241468667984, 0.034984540194272995, -0.006699029356241226, -0.0023085237480700016, 0.016139978542923927, -0.02158178761601448, -0.017344104126095772, -0.026346199214458466, -0.0033443435095250607, -0.02441735379397869, -0.04191973805427551, -0.011579389683902264, -0.0001679423003224656, 0.024315012618899345, 0.011057883501052856, 0.003783372463658452, 0.0044007813557982445, 0.022304857149720192, -0.01665508560836315, 0.017794372513890266, -0.0048490059562027454, -0.05170733481645584, -0.01977882906794548, -0.010933256708085537, -0.02475019544363022, 0.023917488753795624, 0.015235232189297676, -0.017070239409804344, 0.009731868281960487, -0.014672113582491875, 0.023624297231435776, -0.02594524435698986, -0.009266415610909462, 0.010171606205403805, 0.03430057317018509, -0.001533167320303619, 0.005731011740863323, 0.015114390291273594, 0.013971256092190742, -0.05795641988515854, 0.04741300269961357, -0.008644402027130127, -0.013825035654008389, -0.01168362982571125, 0.005813757888972759, 0.008668657392263412, -0.007905708625912666, 0.022896667942404747, 0.02259686402976513, -0.004130053799599409, 0.02395104430615902, -0.026584120467305183, 0.0031923698261380196, -0.07976634055376053, -0.015660440549254417, -0.06497395038604736, -0.0355265848338604, -0.019214071333408356, 0.8584124445915222, 0.02905813790857792, 0.04160967841744423, 0.020200006663799286, -0.022666191682219505, -0.003435908118262887, -0.007817186415195465, 0.005389029160141945, -0.02062389627099037, -0.032152626663446426, -0.04244688153266907, 0.010641117580235004, 0.021870309486985207, 0.02504601702094078, -0.004835303872823715, 0.034312810748815536, -0.012847165577113628, 0.020894307643175125, 0.031555481255054474, 0.02846832573413849, 0.01402096077799797, 0.014248018153011799, 0.006517624016851187, 0.020273711532354355, 0.0022344680037349463, -0.011588153429329395, -0.16479864716529846, 0.01729130744934082, -8.755960606951637e-33, 0.029028065502643585, 0.000985725549980998, -0.004010075703263283, -0.0008096405072137713, -0.003958494868129492, -0.037501901388168335, 0.03406677022576332, 0.03697757050395012, -0.05741572007536888, -0.040504392236471176, -0.013866598717868328, -0.018852679058909416, 0.03293195739388466, -0.012482876889407635, 0.02488938719034195, -0.031583335250616074, 0.002552495803683996, 0.01908939518034458, 0.009115143679082394, -0.0025252988561987877, -0.008075288496911526, 0.010742725804448128, 0.0004316162667237222, -0.005060210358351469, 0.04904446750879288, -0.001374141895212233, 0.02754269167780876, 0.02322276681661606, -0.017588935792446136, -0.031716592609882355, -0.018656229600310326, 0.02318544313311577, 0.0026899385266005993, 0.023806579411029816, 0.006931728683412075, -0.02372431382536888, -0.015262669883668423, 0.01430962048470974, -0.005768901668488979, -0.02236325480043888, -0.024708222597837448, 0.00923066958785057, -0.033032871782779694, 0.006379838101565838, -0.007596116978675127, 0.028163287788629532, 0.018253399059176445, -0.00485408678650856, 0.02328031323850155, -0.03520224243402481, 0.05229056626558304, -0.015489106066524982, -0.017863763496279716, 0.01446098368614912, -0.00669459393247962, 0.011028251610696316, 0.0012887661578133702, 0.010976196266710758, 0.01932336948812008, 0.0330265648663044, -0.01959405280649662, 0.001243525417521596, -0.020579146221280098, 0.01913321763277054, -0.003316693939268589, 0.005476043093949556, 0.014238592237234116, 0.009059850126504898, 0.004949869122356176, -0.048437342047691345, -0.04001643508672714, -0.0338689386844635, 0.009502298198640347, 0.028303395956754684, -0.00514788506552577, 0.0015198333421722054, -0.015997715294361115, 0.02087412029504776, -0.01065677311271429, 0.04318142309784889, -0.016705060377717018, 0.019691282883286476, -0.021133583039045334, -0.01995471678674221, -0.017125839367508888, -0.008762028999626637, 0.01561039313673973, 0.021616356447339058, -0.03440803289413452, 0.05277964472770691, 0.012134709395468235, -0.018298495560884476, 0.025241337716579437, 0.013066611252725124, -0.0008822378003969789, 8.43977466709952e-33, -0.024386735633015633, -0.03704097867012024, -0.05022715777158737, -0.004319806583225727, -0.0050265672616660595, 0.01404382474720478, 0.04186927527189255, -0.008498342707753181, -0.04833614453673363, 0.03852048143744469, -0.041369520127773285, -0.0029398517217487097, -0.023459913209080696, 0.010973441414535046, 0.04455770179629326, -0.0457289032638073, 0.0242270827293396, -0.02424803003668785, 0.008921684697270393, 0.01917102001607418, 0.02847498096525669, 0.012841775082051754, 0.005352302920073271, 0.013372227549552917, -0.0020120711997151375, 0.05451654642820358, -0.012785017490386963, 0.015616863034665585, 0.007765899877995253, -0.03868149220943451, 0.009367293678224087, -0.016780437901616096, -0.006404123734682798, 0.02778334729373455, -0.02941969782114029, -0.0079707782715559, -0.02441367879509926, -0.03561902418732643, 0.025578223168849945, 0.006643562112003565, 0.026086371392011642, 0.036461543291807175, -0.0011597702978178859, 0.024502526968717575, 0.0034724471624940634, -0.0005394502077251673, -0.004337057936936617, -0.02434621751308441, -0.024615759029984474, 0.0035396304447203875, -0.01853463053703308, 0.026340622454881668, 0.019372297450900078, -0.014918485656380653, 0.0012370430631563067, -0.01773313246667385, -0.04171638935804367, -0.020256688818335533, 0.006257916800677776, 0.006154442671686411, -0.03258521109819412, 0.004346746020019054, -0.006329670548439026, 0.00600422965362668, 0.00032283159089274704, -0.0055336556397378445, 0.004198531620204449, 0.017683301120996475, -0.006416024174541235, -0.008240203373134136, 0.002555590821430087, -0.007832800969481468, -0.031295295804739, 0.026643216609954834, 0.02821102738380432, -0.008608449250459671, -0.038755979388952255, 0.023691251873970032, -0.03112390637397766, 0.0412902794778347, -0.00766627537086606, 0.01551157608628273, -0.01754666119813919, 0.022460706532001495, -0.0037814800161868334, 0.0011321287602186203, -0.029590612277388573, 0.013039147481322289, 0.03979361429810524, -0.010446921922266483, 0.0223006010055542, -0.023149168118834496, 0.0024366823490709066, 0.007217429578304291, -0.0056944903917610645, -1.3927101250033047e-8, 0.018734036013484, 0.0032036062330007553, -0.004486746154725552, 0.030212201178073883, -0.009433010593056679, -0.018892772495746613, 0.003477703547105193, 0.018953882157802582, -0.0012411634670570493, 0.012155869975686073, 0.019750982522964478, -0.021670522168278694, 0.005072055850178003, 0.019383441656827927, 0.02338472753763199, -0.04154273495078087, -0.015027605928480625, -0.031055873259902, 0.020871877670288086, 0.0193698201328516, 0.04001934826374054, 0.05358503386378288, -0.022681552916765213, 0.0002704814251046628, 0.01369359903037548, -0.0048303138464689255, -0.032607827335596085, -0.055977653712034225, -0.029557598754763603, 0.030216867104172707, 0.01227454375475645, -0.030834008008241653, -0.06008829548954964, 0.034474264830350876, -0.010544605553150177, -0.0418936051428318, 0.044476959854364395, -0.040160078555345535, 0.024099992588162422, 0.007922331802546978, -0.022674649953842163, -0.010424377396702766, -0.004195650573819876, -0.037750035524368286, -0.017970753833651543, 0.03358935937285423, -0.027458228170871735, -0.0369722880423069, -0.0037802639417350292, -0.016881782561540604, -0.002536999760195613, 0.010261673480272293, -0.025452978909015656, 0.06295721977949142, -0.010631131939589977, -0.0021769783925265074, 0.0003044789482373744, -0.024299444630742073, -0.013859040103852749, -0.015548933297395706, 0.005189466755837202, 0.06110307574272156, -0.03656204044818878, -0.014133959077298641 ]
distributed-agile-communicating-big-design-decisions
https://markhneedham.com/blog/2010/11/10/distributed-agile-communicating-big-design-decisions
false
2010-11-19 20:20:19
From unconsciously incompetent to consciously incompetent
[ "software-development" ]
[ "Software Development" ]
One of the cool things about software development is that despite writing code for 5 years professionally and just under 10 altogether, there are still a phenomenal number of things that I don't know how to do. The learning opportunities are vast! One of the areas which I've known I don't know that much about is Unix command line tools such as awk and sed. Since the majority of projects that I've worked on have involved using Windows as the development environment I've never had extended exposure to the types of problems we get on a project which require their use. I've finally got the opportunity on my current project and my colleague http://twitter.com/priyaaank[Priyank] and I have been looking to use those tools wherever we can. We've learnt how to do some very basic commands with both the tools and although those few command have been very useful for allowing us to quickly manipulate text files we didn't quite realise how little we knew until coming across Eric Pement's 'http://sed.sourceforge.net/sed1line.txt[useful one-line scripts for Sed]' article. I knew that Sed and Awk were powerful tools but I had no idea that you could do this many things with them. I'm now reading the http://www.amazon.com/sed-awk-2nd-Dale-Dougherty/dp/1565922255/ref=sr_1_1?ie=UTF8&s=books&qid=1290197725&sr=1-1-spell[sed and awk book] so that I can close this gap in my knowledge and trying to use these tools wherever possible even if it does slow me down a bit initially. In terms of the http://en.wikipedia.org/wiki/Four_stages_of_competence[four stages of competency model] I would say I've moved from being 'unconsciously incompetent' with respect to sed and awk to being 'consciously incompetent'. Now I just need to reach competence!
null
null
[ 0.004616877995431423, 0.01103390846401453, -0.02864895947277546, 0.039630163460969925, 0.11584161221981049, 0.04507767781615257, 0.01657109707593918, 0.05545224994421005, 0.03255707770586014, -0.02291763387620449, -0.01788010634481907, 0.014759900979697704, -0.054152946919202805, 0.0056196111254394054, -0.029742877930402756, 0.07293342798948288, 0.06923399865627289, -0.015476071275770664, 0.03425193578004837, 0.0042737144976854324, 0.04446488991379738, 0.06502533704042435, 0.014466446824371815, 0.01258272584527731, 0.011126037687063217, 0.00876959040760994, -0.01594993658363819, -0.026960687711834908, -0.06014587730169296, 0.004065454006195068, 0.044459376484155655, -0.012896635569632053, 0.003582573728635907, -0.03462965413928032, 0.002905261470004916, -0.01658009923994541, -0.0309552364051342, 0.024660266935825348, 0.002626340137794614, 0.004616104532033205, -0.06729656457901001, 0.037142977118492126, -0.012495793402194977, 0.015151722356677055, -0.021003274247050285, -0.0005028166342526674, -0.027717409655451775, -0.007548127323389053, 0.004500457551330328, 0.004493242129683495, -0.0649288147687912, 0.03563755750656128, -0.010545839555561543, -0.026578692719340324, 0.0019503135699778795, 0.04304113984107971, 0.04387051984667778, -0.06050967052578926, 0.012267379090189934, -0.016545001417398453, 0.009275106713175774, -0.016505884006619453, -0.015489820390939713, 0.05289456620812416, 0.028865322470664978, -0.025346392765641212, -0.012431385926902294, 0.02317575179040432, -0.04759133607149124, 0.005297931842505932, 0.019550945609807968, 0.015187039040029049, -0.05759817361831665, -0.020239220932126045, 0.03854871168732643, -0.042428795248270035, 0.0006017136620357633, 0.050111375749111176, 0.016513796523213387, 0.07217977941036224, -0.038928307592868805, 0.0328722782433033, -0.0001211354901897721, 0.011271297931671143, -0.0024909183848649263, -0.03233376890420914, 0.02409788779914379, -0.007699027191847563, -0.06990274786949158, 0.0534234456717968, 0.038652192801237106, -0.05325712263584137, 0.004740769974887371, 0.03423318639397621, -0.0015964331105351448, 0.01604970172047615, 0.023497609421610832, 0.014173361472785473, -0.006271794904023409, -0.010155893862247467, -0.03668658807873726, -0.0011770366691052914, 0.0006382096908055246, 0.01673687994480133, -0.08158840984106064, 0.0038847108371555805, -0.012955364771187305, -0.006317353807389736, 0.012158713303506374, -0.006016863510012627, -0.013495533727109432, 0.0063397567719221115, -0.020518170669674873, 0.009632525034248829, -0.08066624402999878, 0.07742808759212494, 0.0055402424186468124, -0.052301209419965744, 0.01924029365181923, -0.012871542945504189, 0.025981824845075607, 0.029334047809243202, 0.001140417531132698, 0.0848938599228859, -0.003259352408349514, 0.003054901724681258, -0.02492736466228962, 0.048476941883563995, -0.002364855958148837, -0.06988551467657089, -0.029592597857117653, 0.04856891185045242, -0.025688474997878075, -0.002487418008968234, 0.006754162255674601, -0.00421530194580555, -0.0035296392161399126, -0.008836978115141392, 0.02306888811290264, 0.05231473967432976, -0.012727702036499977, -0.029391983523964882, 0.005121198482811451, -0.0029311315156519413, 0.023302853107452393, 0.0113407913595438, -0.00712320301681757, -0.03680144622921944, -0.05201217532157898, -0.007630371954292059, 0.024741679430007935, -0.00893351063132286, 0.022132808342576027, -0.0234039518982172, 0.005757342092692852, 0.08343181014060974, 0.024943238124251366, 0.01857324317097664, -0.02642703615128994, 0.021344786509871483, 0.03645860031247139, 0.04580659419298172, 0.020569121465086937, 0.027120931074023247, 0.009158769622445107, -0.030697107315063477, 0.019434571266174316, 0.024718599393963814, -0.022512231022119522, 0.016790058463811874, -0.046278007328510284, -0.018599415197968483, 0.05838160216808319, -0.05783884972333908, -0.00789947435259819, 0.033601537346839905, 0.08771990984678268, 0.05701213702559471, 0.03578440099954605, 0.0026898961514234543, -0.0775681808590889, 0.034071460366249084, 0.012037198059260845, 0.029086852446198463, 0.024444596841931343, -0.035489507019519806, 0.043037619441747665, 0.017035191878676414, 0.008033422753214836, 0.018649354577064514, -0.09491138905286789, -0.10768701881170273, -0.021560916677117348, -0.011550172232091427, 0.04539811238646507, -0.023134898394346237, 0.0147973308339715, 0.04555686563253403, 0.006031781900674105, 0.056079164147377014, 0.008962621912360191, 0.013320676051080227, 0.014541800133883953, -0.052192434668540955, -0.04079859331250191, 0.05389956757426262, 0.03136521205306053, -0.008860038593411446, -0.04744543135166168, 0.012699795886874199, -0.0038078397046774626, 0.0009211996803060174, 0.046088606119155884, -0.014058058150112629, 0.02882654219865799, 0.027430318295955658, 0.05103696137666702, -0.033935874700546265, 0.04359178617596626, -0.05955655500292778, -0.01099743414670229, 0.007849105633795261, -0.013225611299276352, 0.011891034431755543, 0.0017750213155522943, 0.10212432593107224, 0.05710109323263168, -0.04751807078719139, -0.02841937728226185, 0.02545730210840702, 0.005591802764683962, -0.07118699699640274, 0.01338269840925932, -0.023503897711634636, 0.00006235652836039662, 0.0019997067283838987, -0.07082263380289078, -0.038544632494449615, 0.02938070334494114, -0.023509392514824867, 0.0024897055700421333, 0.06256331503391266, -0.03145128861069679, 0.044863827526569366, 0.004590462893247604, -0.009919906035065651, 0.003220674814656377, -0.02110876515507698, -0.06369426101446152, 0.018077103421092033, 0.00223358441144228, 0.0001097710119211115, 0.045670729130506516, -0.05229024216532707, -0.04593828693032265, -0.020534874871373177, -0.04627713933587074, 0.007679469883441925, 0.030472997575998306, 0.0721825510263443, -0.031625520437955856, 0.06907103955745697, -0.008168458007276058, 0.054506491869688034, 0.0094965985044837, -0.03659796342253685, -0.05526446923613548, -0.018303079530596733, -0.0022425889037549496, 0.019361330196261406, -0.006413853261619806, 0.04025154560804367, 0.014526587910950184, -0.015609893016517162, 0.021877795457839966, -0.02680693380534649, 0.03115188144147396, -0.006307354662567377, -0.022449415177106857, -0.04130001738667488, 0.012130066752433777, 0.0454542301595211, -0.041886042803525925, -0.014778608456254005, 0.023389512673020363, -0.04061555862426758, 0.06450255215167999, -0.06255106627941132, -0.04357824847102165, -0.017011383548378944, 0.006079987622797489, 0.04768837243318558, -0.02012542076408863, 0.01949799247086048, 0.059213124215602875, -0.01829502545297146, 0.01766480691730976, -0.027972744777798653, 0.011759775690734386, 0.04573517665266991, 0.03121558390557766, 0.011170394718647003, 0.04042771831154823, 0.0013472073478624225, -0.01638052612543106, -0.034740615636110306, 0.03643689677119255, -0.02582542598247528, -0.2805030047893524, 0.05529848113656044, 0.0021297454368323088, -0.05190396308898926, 0.02236485481262207, -0.03520066291093826, 0.004375685006380081, -0.05500315874814987, -0.013280458748340607, -0.0036606218200176954, -0.057465873658657074, -0.04087313264608383, -0.0053762029856443405, 0.03759946674108505, -0.004936716053634882, 0.01371700968593359, 0.0513492189347744, -0.07174095511436462, 0.011179710738360882, 0.05251279100775719, -0.009948944672942162, -0.05264183133840561, 0.023138653486967087, 0.04102661833167076, 0.044007766991853714, 0.06317218393087387, -0.08898470550775528, 0.0381515696644783, -0.05237402021884918, -0.018492931500077248, 0.00048133317613974214, 0.0011913342168554664, 0.02053503692150116, -0.005088386125862598, -0.022227413952350616, -0.0064017390832304955, 0.04501914232969284, 0.004649697802960873, 0.009736861102283001, 0.01076664961874485, -0.00176068558357656, -0.040737658739089966, -0.016579197719693184, 0.006891830358654261, 0.056692738085985184, -0.020738990977406502, -0.06625322997570038, -0.0352805070579052, 0.002252780832350254, 0.08478245139122009, -0.04868782311677933, -0.019245384261012077, 0.014772598631680012, 0.01979561522603035, 0.004057392477989197, -0.016269678249955177, -0.005254732444882393, 0.0002525078016333282, -0.03494022786617279, -0.03458324447274208, -0.00006239928188733757, -0.06267400085926056, -0.002347423695027828, -0.07500068843364716, 0.02338007651269436, -0.06925108283758163, -0.055977873504161835, -0.03718492016196251, 0.08046405017375946, 0.015679774805903435, -0.030292371287941933, 0.024012336507439613, -0.008207956328988075, -0.09774784743785858, 0.025268590077757835, -0.011078606359660625, -0.0356004424393177, -0.03588174656033516, 0.0319480262696743, 0.034740298986434937, -0.02759612537920475, -0.05912930518388748, 0.03906477987766266, 0.012695973739027977, 0.023521898314356804, -0.01109848078340292, 0.04304685816168785, 0.0015749857993796468, -0.01905563846230507, 0.0011846694396808743, 0.07243391871452332, -0.01218029297888279, -0.03898262977600098, -0.014420018531382084, 0.034435074776411057, 0.012440135702490807, 0.019349783658981323, 0.012602286413311958, -0.006655014585703611, -0.002649986417964101, 0.005626068916171789, -0.04173040762543678, 0.03157797083258629, -0.022537659853696823, 0.007496371399611235, -0.01676795445382595, -0.04818050190806389, 0.016066424548625946, 0.03776978328824043, 0.05354806035757065, -0.008429547771811485, -0.039741795510053635, 0.005100585054606199, -0.048911016434431076, -0.03412986174225807, 0.003284706501290202, 0.008164583705365658, 0.03614652901887894, 0.012852564454078674, -0.020832115784287453, -0.034030988812446594, -0.0009671596926636994, -0.00797367375344038, -0.000039357073546852916, -0.04983832314610481, -0.03817429393529892, 0.0046811881475150585, -0.009730985388159752, 0.0070273070596158504, 0.022713586688041687, -0.02524959295988083, 0.041491925716400146, 0.017858028411865234, -0.05561690405011177, 0.004010036122053862, -0.01742291823029518, -0.06756318360567093, -0.029594777151942253, -0.002267134375870228, 0.015430299565196037, -0.04059149697422981, 0.03217795491218567, -0.00889165885746479, 0.02159344218671322, 0.043250273913145065, 0.010540795512497425, 0.047518178820610046, -0.01499264407902956, 0.039641402661800385, 0.011197194457054138, -0.007184067741036415, -0.06432440131902695, 0.005456881131976843, -0.044403303414583206, -0.04464329406619072, -0.03139359876513481, 0.028095196932554245, -0.020051270723342896, -0.02437153458595276, 0.002331990748643875, 0.006074176635593176, -0.045107126235961914, -0.02402399852871895, -0.034075893461704254, 0.013462898321449757, 0.05003463849425316, -0.021727977320551872, 0.02988533116877079, 0.0005297848838381469, 0.014858536422252655, 0.021224576979875565, 0.046846434473991394, -0.04161280021071434, -0.014855436980724335, -0.0023264235351234674, -0.001363555551506579, 0.014530143700540066, 0.022590981796383858, 0.04036417976021767, 0.01588292233645916, 0.01025608740746975, -0.02597206085920334, -0.00036145717604085803, 0.03399370610713959, 0.04425962641835213, -0.022110525518655777, -0.012131728231906891, 0.00782784167677164, -0.03362618014216423, -0.026368286460638046, -0.0259621050208807, -0.03521256148815155, -0.007885203696787357, 0.012101945467293262, -0.04168044030666351, -0.06414660066366196, 0.047761112451553345, 0.03939157724380493, 0.014656630344688892, 0.010189046151936054, -0.018628360703587532, -0.007694029249250889, -0.015015311539173126, 0.03844029828906059, 0.050990041345357895, -0.06269465386867523, 0.0019258084939792752, -0.016315123066306114, 0.007296712603420019, -0.001039902912452817, 0.004366591107100248, -0.033529989421367645, -0.02876531332731247, -0.029745711013674736, 0.015631722286343575, -0.04111512377858162, -0.019264228641986847, -0.019613174721598625, 0.009916631504893303, -0.03275526687502861, -0.005461959168314934, -0.015289311297237873, 0.004231545142829418, 0.001969862962141633, -0.005306150298565626, 0.0019329315982758999, -0.038329970091581345, 0.0005200897576287389, 0.029303565621376038, -0.01198644284158945, 0.011763806454837322, -0.021251928061246872, 0.03140784427523613, 0.019844900816679, -0.026299376040697098, -0.02752525359392166, -0.008273711428046227, -0.015822211280465126, 0.004521489609032869, 0.044378530234098434, 0.006424045190215111, -0.019603250548243523, -0.05110939219594002, -0.005588993895798922, -0.026965169236063957, 0.007034840062260628, -0.03258178383111954, -0.03690354526042938, 0.02013363316655159, 0.06864610314369202, 0.025994792580604553, 0.044676437973976135, -0.012870370410382748, -0.021718770265579224, 0.04425815865397453, -0.04622878506779671, -0.03333406522870064, -0.02584657073020935, -0.06615607440471649, 0.033177219331264496, 0.01493269857019186, 0.03470348194241524, -0.06469643861055374, 0.038265276700258255, 0.03542928397655487, 0.006395193748176098, 0.028814485296607018, -0.010480434633791447, 0.04257672652602196, -0.03870363533496857, -0.01587854139506817, -0.09440992027521133, -0.0041114892810583115, 0.029002800583839417, -0.020583121106028557, -0.03955468907952309, 0.002527349628508091, -0.02427385188639164, 0.04380235821008682, -0.048804689198732376, -0.03024396300315857, 0.050113942474126816, 0.008444245904684067, -0.0007281371508724988, 0.005716386716812849, -0.05871916934847832, 0.025551801547408104, 0.021993696689605713, -0.04764025658369064, -0.014954137615859509, -0.007388283498585224, 0.04168771952390671, -0.0070782857947051525, 0.05403616279363632, -0.03552893549203873, -0.03938576579093933, 0.0897684097290039, 0.008931757882237434, -0.01105401013046503, 0.02874518744647503, -0.0067460983991622925, 0.04082266613841057, 0.029297439381480217, 0.014051715843379498, 0.0007047508261166513, 0.021897362545132637, -0.022545287385582924, -0.03528450429439545, -0.007496092468500137, 0.019443994387984276, -0.01650402881205082, -0.034909699112176895, 0.0575283020734787, 0.032375674694776535, -0.025172606110572815, -0.06768482178449631, 0.015319008380174637, -0.054320719093084335, 0.02278180606663227, -0.05035921558737755, 0.007787172216922045, -0.06426110863685608, 0.04081500694155693, 0.00027004058938473463, 0.002826312091201544, 0.07675489783287048, 0.007191894575953484, -0.02469967119395733, -0.0031226705759763718, 0.07538703083992004, 0.06467058509588242, 0.06416372954845428, 0.02450464479625225, 0.04849538207054138, -0.030088938772678375, -0.027703670784831047, 0.008696980774402618, 0.018557677045464516, 0.009194904007017612, -0.03953433036804199, 0.006638200022280216, 0.05473167076706886, 0.013482729904353619, 0.07958879321813583, -0.0015142016345635056, -0.00390626722946763, -0.0146702965721488, 0.024981779977679253, 0.0266012754291296, 0.06293965131044388, -0.0019691912457346916, 0.0065039522014558315, 0.0077948491089046, -0.03602048382163048, 0.03216765820980072, -0.051543090492486954, -0.029040422290563583, 0.009517990984022617, -0.00041770891402848065, 0.025768600404262543, 0.014345683157444, 0.03623740375041962, 0.0850100889801979, -0.034927938133478165, 0.02903858572244644, -0.01006749551743269, 0.04900730773806572, -0.02418615110218525, 0.020910467952489853, -0.0310866329818964, -0.009609095752239227, -0.01842225342988968, -0.01859835535287857, -0.019338086247444153, -0.014090938493609428, -0.006998867262154818, 0.017329104244709015, -0.01885996013879776, -0.003593406407162547, 0.05222839489579201, -0.009210490621626377, -0.03511250019073486, -0.07200327515602112, -0.04830242693424225, -0.030540186911821365, -0.02417675219476223, -0.04529791325330734, 0.01771959662437439, 0.01762745901942253, -0.025821691378951073, -0.009242373518645763, -0.04924952611327171, -0.05344848707318306, 0.010760381817817688, -0.06337432563304901, -0.025961419567465782, 0.005335100460797548, 0.03598308935761452, 0.014343972317874432, 0.01643540896475315, 0.038083456456661224, -0.007834033109247684, -0.008060659281909466, -0.026059649884700775, -0.0008939778781495988, 0.017626188695430756, -0.00537821976467967, 0.029809577390551567, -0.06779234856367111, 0.048218950629234314, 0.018825272098183632, 0.017595261335372925, -0.06148034706711769, 0.0440312959253788, 0.011509127914905548, -0.020539164543151855, 0.07066541165113449, -0.028181612491607666, 0.04489011690020561, -0.024932099506258965, -0.002672671340405941, -0.030664224177598953, 0.004334352910518646, 0.04248347878456116, -0.009872324764728546, 0.0822746679186821, 0.00932795088738203, 0.026234595105051994, -0.05125300958752632, -0.00981910154223442, -0.006478974595665932, 0.009207730181515217, -0.002680697711184621, -0.030768616124987602, -0.0417027585208416, -0.07591727375984192, -0.020089754834771156, 0.004218272399157286, -0.03242809325456619, -0.03617597371339798, 0.03592532500624657, 0.004817716311663389, -0.03244346007704735, 0.04366414621472359, -0.06366614997386932, 0.009265057742595673, -0.026437178254127502, -0.010954487137496471, 0.007932127453386784, 0.009097551926970482, -0.006802964955568314, -0.00303969020023942, 0.028127683326601982, -0.03503045439720154, -0.010868591256439686, -0.006477683782577515, 0.04323963075876236, 0.05335208773612976, 0.012708508409559727, -0.0041107614524662495 ]
[ -0.09271717071533203, -0.019448691979050636, -0.014421910047531128, -0.058686766773462296, 0.027446739375591278, -0.05988754704594612, -0.01581484265625477, 0.0026432767044752836, -0.02337545156478882, -0.03185832500457764, 0.0038272333331406116, -0.036152079701423645, -0.0034976329188793898, -0.04330846294760704, 0.07715258747339249, 0.00493078725412488, -0.013017132878303528, -0.04817728325724602, -0.019902974367141724, 0.013418357819318771, 0.00927773304283619, -0.01795806549489498, -0.03712925314903259, -0.0537845678627491, -0.001030114246532321, 0.04031140357255936, 0.03318014740943909, -0.03046928159892559, 0.003177399979904294, -0.1876070350408554, 0.024526052176952362, 0.02097102627158165, 0.06562270224094391, -0.01722378097474575, 0.023063210770487785, 0.05536071956157684, 0.014766084030270576, 0.010663474909961224, -0.024327225983142853, 0.018502825871109962, 0.042511213570833206, 0.002531966660171747, -0.06089833378791809, -0.028742318972945213, 0.040038175880908966, -0.015405450016260147, -0.0056976210325956345, -0.06322319805622101, -0.007161312270909548, 0.02070028707385063, -0.0635756254196167, -0.017389940097928047, 0.0025240511167794466, -0.020652972161769867, -0.023546716198325157, -0.00313574424944818, 0.022267624735832214, 0.07395470887422562, 0.00680990144610405, 0.01232250314205885, -0.0022553368471562862, -0.018487676978111267, -0.12773333489894867, 0.09248878806829453, 0.052897125482559204, 0.05036652088165283, -0.01097607146948576, -0.0462157316505909, -0.017679955810308456, 0.08236671984195709, 0.008774008601903915, -0.032940782606601715, -0.03922088444232941, 0.07971565425395966, 0.010028043761849403, -0.02141732908785343, -0.006718204822391272, 0.01190258376300335, 0.021670768037438393, -0.06451499462127686, -0.02897798828780651, -0.00009192395373247564, -0.029461804777383804, -0.025525184348225594, -0.06531457602977753, 0.030938562005758286, -0.008898008614778519, 0.07172591984272003, 0.04222669452428818, 0.03526191785931587, 0.05257430300116539, -0.022626299411058426, 0.05025717616081238, -0.021717647090554237, -0.08066342771053314, -0.030611196532845497, 0.02588471956551075, 0.0178159661591053, -0.03542950376868248, 0.4301409423351288, -0.027365045621991158, -0.04102979227900505, 0.07581228017807007, -0.0019488697871565819, -0.001841599470935762, 0.011453610844910145, 0.014815842732787132, -0.024270471185445786, 0.005480838008224964, -0.04119505733251572, 0.012948267161846161, -0.00042070786003023386, 0.05914708599448204, -0.04820232465863228, 0.018434371799230576, -0.014275842346251011, 0.017622608691453934, 0.017552005127072334, 0.015726063400506973, -0.0028029221575707197, -0.009278724901378155, 0.007299432530999184, 0.022016465663909912, 0.01325860247015953, 0.008424967527389526, -0.037591613829135895, -0.0036831810139119625, 0.04396938532590866, 0.03958028554916382, 0.00841682031750679, 0.0647096037864685, -0.04335266351699829, -0.04003363847732544, 0.011613177135586739, -0.0016687439056113362, 0.006803747266530991, 0.014420979656279087, -0.04368000477552414, -0.005871142260730267, 0.005526565946638584, -0.00858941487967968, -0.007775635924190283, 0.04061787575483322, -0.002854873426258564, -0.031492527574300766, 0.0949779599905014, 0.0028920546174049377, -0.026344649493694305, -0.013866039924323559, -0.052754275500774384, 0.002083808183670044, 0.0223785899579525, 0.0012788008898496628, -0.05973472446203232, 0.04110701009631157, 0.020392537117004395, 0.11498259752988815, -0.02168663591146469, -0.08052603155374527, -0.00900202989578247, -0.01854749582707882, -0.03692731633782387, -0.07426673918962479, 0.058930251747369766, 0.05704250931739807, -0.07841555774211884, -0.011257209815084934, 0.017200684174895287, 0.0463935025036335, -0.04687579721212387, 0.02782363072037697, -0.0017342173960059881, -0.02645794302225113, -0.0022850846871733665, 0.03005281090736389, -0.06633079051971436, -0.03473127260804176, 0.052073102444410324, 0.06621112674474716, 0.01583690196275711, 0.042160581797361374, -0.0025670407339930534, -0.01841849647462368, 0.019392728805541992, -0.038365814834833145, -0.10482659935951233, -0.04191267490386963, 0.01754625514149666, -0.035790666937828064, 0.009868362918496132, -0.007385034579783678, -0.0031492391135543585, -0.06806334853172302, 0.050949063152074814, -0.027214352041482925, -0.010881327092647552, 0.022752538323402405, 0.008931928314268589, -0.02848445624113083, -0.0260199923068285, -0.01209855917841196, 0.03227587044239044, -0.028471514582633972, 0.024129319936037064, -0.06535229086875916, 0.018577517941594124, 0.0425899438560009, -0.03293652459979057, 0.09806513041257858, 0.05705218017101288, -0.043126631528139114, -0.00847787968814373, 0.033510398119688034, -0.00550244702026248, 0.010792622342705727, -0.02926844172179699, -0.009366237558424473, 0.021211670711636543, 0.030834292992949486, 0.029283152893185616, -0.023219309747219086, -0.008209934458136559, -0.027886806055903435, -0.3474757969379425, -0.03381993621587753, -0.02652539312839508, -0.004731445107609034, 0.031612735241651535, -0.06163010746240616, 0.02340616099536419, -0.016943316906690598, -0.033860258758068085, -0.0020037200301885605, 0.08682484179735184, -0.023345287889242172, 0.010888061486184597, -0.09898235648870468, -0.015341219492256641, 0.01762368343770504, -0.020395588129758835, -0.03892649710178375, -0.019266771152615547, 0.04072514921426773, 0.0024292280431836843, -0.004024158231914043, -0.025025203824043274, -0.04211059585213661, -0.010215160436928272, -0.02917798049747944, 0.07283537089824677, -0.013857445679605007, 0.14199770987033844, -0.048217758536338806, 0.05088098347187042, 0.012313924729824066, 0.027865123003721237, -0.1083788275718689, -0.012561076320707798, -0.00044698346755467355, 0.00280853477306664, -0.022072969004511833, 0.033526573330163956, -0.030966581776738167, -0.04338889941573143, -0.01794901303946972, -0.07090454548597336, -0.018279459327459335, -0.05979778617620468, 0.011691716499626637, -0.009139450266957283, -0.049570631235837936, -0.017959941178560257, 0.0721348449587822, 0.0068711512722074986, 0.010572075843811035, -0.002298563253134489, 0.007405204698443413, -0.005016341805458069, -0.01646309159696102, -0.077800452709198, 0.023980533704161644, 0.030514495447278023, -0.02993883192539215, 0.05833235755562782, 0.025596244260668755, 0.03203693404793739, -0.04793039709329605, -0.004895586986094713, 0.01749415695667267, -0.014658653177320957, 0.03323693573474884, 0.05771012231707573, -0.0611218586564064, -0.030313333496451378, 0.10560113191604614, -0.0064908177591860294, -0.006605691742151976, 0.020166130736470222, 0.018333790823817253, -0.02936132252216339, 0.03719893470406532, 0.007947311736643314, -0.026221761479973793, 0.039606254547834396, -0.01742793247103691, 0.05109241232275963, -0.02696436457335949, -0.0008119468693621457, 0.04422948881983757, 0.0006477744318544865, -0.043519631028175354, 0.05707961693406105, 0.01173829659819603, -0.007905823178589344, -0.006422024220228195, -0.000491002865601331, -0.06604710221290588, 0.0984160527586937, 0.007920376025140285, -0.2315988540649414, 0.022292757406830788, 0.053499456495046616, 0.0628654956817627, -0.014614093117415905, 0.020570527762174606, 0.03303667902946472, -0.06353040039539337, 0.019996164366602898, 0.0148698128759861, 0.018115464597940445, 0.012701267376542091, -0.013655495829880238, -0.022588327527046204, 0.04059150069952011, -0.016390837728977203, 0.06760158389806747, 0.010029290802776814, 0.007480247877538204, 0.006365871988236904, 0.013447423465549946, 0.006820425856858492, 0.1602676659822464, -0.0073202927596867085, 0.033674806356430054, 0.001215146854519844, 0.014969545416533947, 0.020334288477897644, 0.08088485896587372, 0.00880999956279993, 0.033332325518131256, 0.00823268573731184, 0.01690792851150036, 0.018276099115610123, 0.039437636733055115, -0.05232316628098488, -0.03129596635699272, 0.03904489055275917, 0.02190336026251316, 0.004085294436663389, 0.023301418870687485, 0.02032930962741375, -0.014358114451169968, 0.0097566032782197, 0.07164177298545837, 0.000774711777921766, 0.016341889277100563, -0.048781801015138626, -0.033798471093177795, -0.00031533435685560107, -0.033633820712566376, -0.016733579337596893, 0.005702941678464413, -0.009166553616523743, 0.013960632495582104, 0.07017789781093597, 0.022237984463572502, -0.030755162239074707, -0.016382016241550446, -0.0009747946169227362, -0.012049135752022266, -0.03995366394519806, 0.109600730240345, 0.05954810604453087, 0.033691905438899994 ]
[ -0.009613015688955784, 0.03637494146823883, -0.02115447260439396, 0.012850208207964897, -0.007094108499586582, -0.03885464742779732, -0.010115492157638073, 0.014120795764029026, 0.009862507693469524, 0.007279810030013323, 0.009993658401072025, 0.005595816764980555, 0.032429974526166916, -0.05757527053356171, 0.008639448322355747, -0.012674940750002861, -0.009103795513510704, -0.005109865218400955, 0.0058516873978078365, -0.020166462287306786, -0.046978093683719635, 0.04982756823301315, 0.01320350170135498, -0.000705141865182668, -0.022665034979581833, 0.02693777158856392, -0.00404198095202446, -0.00029735497082583606, 0.018407635390758514, -0.1153998002409935, -0.0154879717156291, -0.01739557273685932, 0.003067128360271454, 0.004071684554219246, 0.023600071668624878, 0.011329254135489464, 0.021816818043589592, -0.004941699560731649, -0.05202949419617653, -0.01256944052875042, 0.013009068556129932, -0.007734851911664009, -0.021321173757314682, -0.0043379501439630985, -0.01811099611222744, -0.0018798589007928967, -0.0028954297304153442, -0.041963815689086914, -0.016510996967554092, -0.018079321831464767, -0.04935045540332794, 0.012118053622543812, -0.03338174149394035, -0.003005165373906493, 0.017727747559547424, -0.03142673894762993, 0.013288329355418682, 0.00020640420552808791, 0.003014725400134921, -0.029497243463993073, -0.005791536532342434, -0.013143649324774742, -0.044421155005693436, -0.03484074026346207, -0.0045050266198813915, -0.016332490369677544, -0.022736478596925735, 0.022928060963749886, -0.018392041325569153, 0.014923973008990288, -0.05107172951102257, 0.013706473633646965, -0.046106334775686264, -0.0034368291962891817, -0.0010663497960194945, -0.007037276867777109, 0.024380382150411606, -0.018905960023403168, 0.010732424445450306, -0.011898382566869259, -0.0530974343419075, 0.024228133261203766, 0.0038801925256848335, -0.013807207345962524, -0.04717905819416046, 0.009795370511710644, 0.00455777533352375, 0.00693492591381073, 0.005266524851322174, 0.01606680639088154, 0.030745819211006165, 0.013474630191922188, 0.013922995887696743, 0.011236771941184998, -0.09349285811185837, 0.004192067310214043, -0.0049877832643687725, -0.004714929033070803, 0.005415014456957579, 0.8546629548072815, -0.02776762656867504, 0.020708173513412476, 0.006457400042563677, -0.008945565670728683, 0.0009333527414128184, -0.001526402309536934, 0.009605898521840572, 0.006549088284373283, -0.011110306717455387, -0.07584711909294128, 0.021803535521030426, -0.02701256237924099, 0.007065664045512676, 0.013029085472226143, 0.04898025840520859, 0.0017252680845558643, -0.004619693849235773, 0.026598770171403885, 0.01358566340059042, 0.010072709992527962, -0.0013343992177397013, 0.005038667004555464, -0.007060712203383446, 0.007124810479581356, -0.006533022969961166, -0.15656453371047974, 0.013227215968072414, -8.210208701907589e-33, 0.06419394910335541, -0.01768282614648342, -0.0007321436423808336, 0.011587497778236866, -0.008117024786770344, 0.025571417063474655, 0.03503888100385666, 0.025392914190888405, -0.011060093529522419, -0.01807541586458683, 0.016153093427419662, -0.03107581101357937, 0.0028612103778868914, -0.029274698346853256, 0.03699168935418129, -0.003853234462440014, -0.012932398356497288, 0.010051858611404896, -0.021597715094685555, 0.014139248989522457, 0.030541185289621353, 0.02361072041094303, 0.011015993542969227, -0.004419561009854078, 0.02538740262389183, -0.0051569631323218346, 0.005358769558370113, 0.008058673702180386, 0.01605684868991375, -0.034583814442157745, -0.04897218942642212, 0.03992728888988495, -0.0008577916887588799, -0.03391806408762932, -0.00250584096647799, -0.022820567712187767, -0.022662155330181122, 0.017368225380778313, 0.003877005074173212, -0.0212125014513731, -0.03681511804461479, -0.01127453614026308, -0.02176899090409279, -0.01075850147753954, -0.005560507532209158, 0.004022977780550718, 0.006356113590300083, 0.03521372750401497, 0.01940036192536354, 0.001851251465268433, 0.015522315166890621, 0.024451036006212234, 0.03366869315505028, 0.010734627954661846, 0.003406152594834566, 0.0155796455219388, -0.010962489061057568, -0.011689475737512112, -0.0035561099648475647, 0.0589669868350029, 0.01886218972504139, 0.01801702007651329, 0.0007984326803125441, 0.04377380758523941, 0.029114825651049614, -0.005264573264867067, 0.03574444353580475, 0.029340999200940132, -0.002118185395374894, 0.008929722011089325, -0.051685694605112076, 0.007220375817269087, -0.010763084515929222, -0.01602017693221569, 0.004940121900290251, -0.024420784786343575, 0.0007676489767618477, -0.01960565336048603, 0.012944529764354229, 0.047099191695451736, -0.004122293088585138, 0.004159026779234409, -0.025308985263109207, -0.06575801223516464, -0.013733015395700932, 0.011284052394330502, -0.004577185958623886, -0.01858699694275856, -0.018677957355976105, 0.018294962123036385, 0.020042281597852707, 0.006197944283485413, 0.0036481276620179415, 0.0029999748803675175, -0.03152526915073395, 7.957406886819748e-33, 0.02791857346892357, -0.020115654915571213, -0.019002657383680344, 0.014360358007252216, 0.015188699588179588, 0.027543004602193832, 0.02674921602010727, -0.006655495148152113, -0.06645926833152771, 0.013145491480827332, -0.003408264135941863, 0.014993660151958466, -0.014501185156404972, 0.009233704768121243, 0.04886611923575401, -0.0057776556350290775, 0.0048870304599404335, -0.021109087392687798, 0.01661614328622818, -0.013031335547566414, 0.00030067525221966207, -0.01033366471529007, 0.035892121493816376, -0.0050568669103085995, 0.04413662105798721, 0.026143448427319527, -0.021187033504247665, 0.016344964504241943, -0.005396668799221516, 0.01431120652705431, 0.012943156994879246, -0.016462039202451706, 0.004590505268424749, -0.0034278761595487595, -0.03719106689095497, 0.028028147295117378, -0.00038242648588493466, -0.02168053202331066, 0.01103163417428732, -0.01137310266494751, 0.017128780484199524, 0.027384065091609955, 0.010074821300804615, 0.0118750324472785, 0.002190125873312354, 0.043992869555950165, -0.004957151133567095, 0.0017148492624983191, -0.03195264935493469, 0.003343252232298255, -0.007238086313009262, 0.028453856706619263, 0.020579583942890167, -0.00042943883454427123, -0.001591661130078137, -0.0032972432672977448, -0.04116619750857353, 0.021463768556714058, -0.04305964335799217, 0.02148858830332756, -0.023887349292635918, -0.009274762123823166, -0.011289237067103386, 0.013251768425107002, -0.02252165600657463, -0.01088597159832716, 0.01730560138821602, 0.0060533941723406315, 0.014533773995935917, -0.014157447963953018, 0.022343868389725685, 0.003969049081206322, -0.006232116371393204, 0.004870079457759857, -0.0013217522064223886, -0.004215405788272619, -0.01147076953202486, 0.02485218644142151, -0.049889687448740005, 0.04128295183181763, 0.023739784955978394, 0.04139717295765877, 0.005899632815271616, 0.030043240636587143, -0.025255296379327774, 0.044737085700035095, -0.024116618558764458, 0.026603011414408684, 0.017640888690948486, 0.012421461753547192, -0.02839088626205921, -0.03449644893407822, 0.00878432858735323, 0.023453356698155403, 0.007967929355800152, -1.3412138066826174e-8, -0.02721763215959072, -0.006282913498580456, -0.008605358190834522, 0.00035495974589139223, 0.04174584522843361, 0.04455514997243881, -0.02215312421321869, 0.0017974297516047955, -0.04837973415851593, 0.013732774183154106, 0.03467465192079544, -0.053779251873493195, -0.016350502148270607, 0.03055906482040882, 0.018963944166898727, -0.023256368935108185, 0.037726014852523804, -0.012797634117305279, 0.02466166391968727, -0.002540737157687545, 0.03543690964579582, 0.03591252490878105, 0.01180977188050747, 0.03126046434044838, 0.0027242188807576895, -0.013328867964446545, -0.013731506653130054, -0.0786505937576294, -0.01879318431019783, 0.033198282122612, 0.03040889836847782, -0.06949435919523239, -0.012022778391838074, 0.02977854385972023, 0.012848231941461563, -0.06948039680719376, -0.008223321288824081, 0.013114448636770248, 0.0034224081318825483, 0.0012113542761653662, -0.0034566051326692104, 0.024580249562859535, -0.007604604586958885, -0.033830489963293076, -0.02215280570089817, -0.02106376364827156, -0.02922402136027813, -0.03249681740999222, -0.027334529906511307, -0.044801004230976105, 0.03377372771501541, -0.017905812710523605, 0.03290915861725807, 0.0637214183807373, 0.03747790679335594, 0.01573764905333519, 0.02496432512998581, -0.01747380942106247, -0.04964636266231537, 0.010003612376749516, 0.0071327099576592445, 0.023334212601184845, -0.02350471355021, -0.004150171298533678 ]
from-unconsciously-incompetent-to-consciously-incompetent
https://markhneedham.com/blog/2010/11/19/from-unconsciously-incompetent-to-consciously-incompetent
false
2010-11-26 03:53:33
Increasing team sizes: Parallelising work
[ "agile", "team-size" ]
[ "Agile" ]
One of the trickiest things to do when working in bigger teams is ensuring that it is possible to parallelise the work we have across the number of pairs that we have available. From my experience this problem happens much less frequently in smaller teams. Perhaps inevitably it's much easier to find 2 or 3 things that can be worked on in parallel than it is to find 6 or 7 or more. As a result we can sometimes end up with the situation where 2 stories are played in parallel with a slight dependency between them. It may be possible to start those two stories at the same time but one may rely on an implementation of the other in order for it to be considered complete. It's not an ideal situation but it still seems doable if we ensure that the two pairs work closely together both metaphorically and in terms of their physical proximity. I think a more useful strategy is to look at how many things can be worked on in parallel and then deciding the team size rather than choosing the team size and then trying to find a way to make the way the stories are written/played fit around this decision. This is rarely what happens since budgets/need to get to market quickly often take precedence so we end up working in a sub optimal way. While this is a trade off that the business may be happy to make I still think it's useful to identify the risk we're assuming by taking this approach as well as recognising that *the amount of work we can flow through the system is limited by how much we can process in parallel*.
null
null
[ 0.01929914951324463, -0.0004895091988146305, -0.017236709594726562, 0.02326367422938347, 0.08641678094863892, 0.03197020664811134, 0.022767916321754456, 0.03903023898601532, 0.00923638604581356, -0.030004719272255898, 0.0004892022698186338, -0.0002912766649387777, -0.06078095734119415, 0.030659610405564308, -0.04852965101599693, 0.08348609507083893, 0.05576092004776001, 0.01173559669405222, 0.006174764595925808, -0.024093028157949448, 0.03897553309798241, 0.07507748156785965, 0.03597890958189964, 0.06359528005123138, 0.04593152925372124, -0.0113845719024539, 0.029584897682070732, 0.012588693760335445, -0.011740856803953648, -0.014216701500117779, 0.048120371997356415, 0.00004834959690924734, 0.0030256768222898245, -0.004972117021679878, 0.03164117783308029, -0.04345422610640526, -0.010144068859517574, 0.026292987167835236, 0.006684617139399052, -0.040725454688072205, -0.05904550105333328, 0.05249566584825516, -0.031148001551628113, -0.011439371854066849, -0.04398118332028389, 0.016407886520028114, -0.024168554693460464, 0.014128427952528, -0.010297471657395363, 0.0026191426441073418, -0.07715248316526413, 0.012969055213034153, 0.01319004688411951, 0.0007471608696505427, -0.017328839749097824, 0.03510579839348793, 0.00009976055298466235, -0.0389103889465332, 0.006241834722459316, -0.042117320001125336, -0.009097229689359665, -0.02001965045928955, 0.002882779808714986, 0.04240259528160095, 0.026845743879675865, -0.04506688565015793, 0.02823789045214653, 0.044062141329050064, -0.033053506165742874, 0.005405510310083628, -0.04907876253128052, -0.0033193237613886595, -0.022185156121850014, -0.011900745332241058, -0.008941389620304108, -0.0631789118051529, 0.026894807815551758, 0.04207169637084007, 0.04223572835326195, 0.05981365218758583, -0.00017745644436217844, 0.026279639452695847, 0.004750699736177921, 0.02709011361002922, 0.006930734030902386, -0.04125319793820381, 0.008179902099072933, -0.019898200407624245, -0.06931846588850021, 0.07187261432409286, -0.0028961750213056803, -0.06545687466859818, -0.01664736121892929, 0.026588933542370796, -0.02193145826458931, 0.0020442400127649307, 0.01903103105723858, 0.017599353566765785, 0.016939213499426842, -0.009353416971862316, -0.031361810863018036, -0.03152203932404518, -0.020580187439918518, 0.010671117343008518, -0.07694467902183533, -0.00042854767525568604, 0.014419514685869217, 0.0023343211505562067, -0.012846746481955051, 0.011807456612586975, -0.022451704367995262, -0.00609893724322319, -0.009079967625439167, 0.027991848066449165, -0.07252756506204605, 0.06526831537485123, 0.017178155481815338, -0.013816352933645248, -0.013551580719649792, -0.016826733946800232, 0.046227697283029556, 0.02977069839835167, -0.0072982534766197205, 0.08082493394613266, -0.03257477656006813, -0.011130674742162228, -0.039482224732637405, 0.04829671233892441, -0.020764296874403954, -0.05927598848938942, -0.0022636696230620146, 0.07696254551410675, -0.042212631553411484, -0.01934998296201229, 0.0003352630010340363, -0.0368531234562397, 0.006695589050650597, 0.019620409235358238, 0.02068730816245079, 0.029730431735515594, -0.010136538185179234, -0.027606699615716934, 0.019177215173840523, 0.025363117456436157, 0.031127367168664932, -0.00947422906756401, -0.00045345103717409074, -0.023440198972821236, -0.02946961484849453, -0.02905360423028469, 0.012303424999117851, 0.022390281781554222, 0.030238283798098564, -0.03702358528971672, 0.03486007824540138, 0.09862369298934937, 0.06079239398241043, 0.00011586462642299011, -0.0181120578199625, 0.041322916746139526, 0.03456363081932068, 0.027550259605050087, 0.012634261511266232, 0.013618328608572483, -0.0004999192315153778, -0.0005174649995751679, 0.00976990070194006, 0.04603175073862076, -0.0064843036234378815, 0.010591400787234306, -0.07816170901060104, -0.027931097894906998, 0.04549951106309891, -0.04284592345356941, -0.00824618898332119, 0.052160460501909256, 0.07937687635421753, 0.043950967490673065, 0.02783762291073799, 0.01470993459224701, -0.07339859753847122, 0.04650169238448143, 0.013843249529600143, 0.025758668780326843, 0.04710778594017029, -0.0116959847509861, 0.054281070828437805, 0.03376491367816925, -0.02330007776618004, 0.029913395643234253, -0.06363606452941895, -0.09280771017074585, -0.007935944013297558, -0.012887007556855679, 0.03301501274108887, -0.03895716369152069, 0.0044227950274944305, 0.06679243594408035, 0.01766785979270935, 0.031145965680480003, 0.02236327901482582, 0.01525617204606533, 0.02182079292833805, -0.038876503705978394, -0.04398325830698013, 0.06127798557281494, 0.016579216346144676, -0.012205172330141068, -0.05519978702068329, 0.020174460485577583, -0.02186252921819687, -0.00003286187711637467, 0.040061287581920624, -0.010069209150969982, 0.058730822056531906, -0.014038345776498318, 0.05407954379916191, -0.02420627884566784, 0.04171152412891388, -0.04289430007338524, 0.03822745382785797, 0.003998607862740755, -0.021168729290366173, 0.031500235199928284, -0.0028081305790692568, 0.11090176552534103, 0.04175550490617752, -0.05557718500494957, -0.05639297887682915, 0.04486222192645073, 0.015392865985631943, -0.02292722277343273, 0.000472523010103032, 0.002239789115265012, 0.009315035305917263, 0.015665117651224136, -0.08621986955404282, -0.022826584056019783, 0.025501402094960213, -0.05560314655303955, -0.018937693908810616, 0.03986705467104912, -0.02831266261637211, 0.09494300931692123, 0.01181790977716446, -0.012291423976421356, -0.007890433073043823, -0.007025441620498896, -0.05644312873482704, -0.00020232144743204117, -0.007383010350167751, -0.025138888508081436, 0.04039236158132553, -0.01417541690170765, -0.03146998584270477, -0.04908018931746483, -0.00550044234842062, 0.01999567821621895, 0.059250473976135254, 0.046490270644426346, -0.016971927136182785, 0.054963119328022, -0.0059716906398534775, 0.013064831495285034, -0.008261585608124733, -0.04931560158729553, -0.05134261026978493, -0.007709488272666931, 0.0016351415542885661, 0.005620477721095085, 0.012335351668298244, -0.012048382312059402, 0.011598745360970497, 0.014614670537412167, -0.010073427110910416, -0.010910346172749996, 0.035088345408439636, 0.0070180995389819145, -0.0025034931022673845, -0.04841814190149307, -0.010213528759777546, 0.06833260506391525, -0.015117987059056759, -0.024951210245490074, 0.009351121261715889, -0.07203570008277893, 0.03337430581450462, -0.06900645792484283, -0.03743443638086319, -0.025286709889769554, 0.011195152997970581, 0.057816341519355774, 0.020103374496102333, -0.004146937280893326, 0.0476841926574707, 0.0380118191242218, 0.004447410348802805, 0.023479986935853958, 0.014774994924664497, 0.038829825818538666, 0.004213566426187754, -0.004013855010271072, 0.04450669139623642, -0.030139604583382607, -0.016481665894389153, -0.0704914778470993, 0.05363794416189194, -0.051110584288835526, -0.29021066427230835, 0.0051673599518835545, 0.017355524003505707, -0.03273626044392586, 0.03678785637021065, -0.04355597868561745, -0.002204961609095335, -0.04240909218788147, -0.03128678724169731, 0.009407347068190575, -0.03612295910716057, -0.04224194586277008, -0.039114855229854584, 0.034430522471666336, 0.01165254320949316, 0.04899440333247185, 0.025178199633955956, -0.03103165701031685, 0.0010074892779812217, 0.048691924661397934, -0.01341310702264309, -0.06171754002571106, -0.01778031326830387, 0.02910131961107254, 0.04340913146734238, 0.058361493051052094, -0.07408148795366287, 0.033614035695791245, -0.0742659643292427, -0.00017191169899888337, 0.007894627749919891, -0.016552696004509926, 0.013262543827295303, -0.05025021731853485, 0.003915008157491684, -0.06193995103240013, 0.04321179538965225, -0.015488107688724995, 0.0003434091922827065, -0.0002812364837154746, -0.021183844655752182, -0.03953392058610916, -0.012990737333893776, 0.02356167510151863, 0.0359940268099308, 0.010422970168292522, -0.056560300290584564, -0.001151482341811061, -0.03275468200445175, 0.08672723919153214, -0.022376112639904022, -0.007607723120599985, -0.01494323555380106, -0.001149997697211802, -0.017633505165576935, -0.02556915022432804, -0.027958931401371956, -0.022855956107378006, -0.022371087223291397, 0.0007231449126265943, -0.02493942528963089, -0.04314088448882103, -0.006923624314367771, -0.03457276523113251, -0.0005588384228758514, -0.047110822051763535, -0.06130301579833031, -0.014612791128456593, 0.05212792754173279, -0.017638234421610832, -0.018111413344740868, -0.0058928485959768295, 0.0058710589073598385, -0.09439463168382645, -0.014041841961443424, -0.0020356951281428337, -0.015497643500566483, 0.01904740370810032, 0.009339223615825176, 0.0368712954223156, -0.013857689686119556, -0.0582851804792881, 0.007814378477633, 0.0011899941600859165, 0.050240408629179, -0.00040490945684723556, 0.03514738008379936, 0.033632613718509674, -0.026388050988316536, 0.020085522904992104, 0.06205802783370018, 0.011520177125930786, -0.016607606783509254, -0.004748155362904072, 0.033303484320640564, -0.018281154334545135, -0.004221048206090927, -0.012837599962949753, 0.0038579939864575863, 0.020067844539880753, 0.014612307772040367, -0.057370614260435104, -0.002939957194030285, -0.0040530129335820675, -0.011267990805208683, -0.0022256907541304827, -0.042018599808216095, 0.028984367847442627, 0.044762320816516876, 0.02164495550096035, 0.025090908631682396, -0.01727188192307949, 0.02335374243557453, -0.039279479533433914, -0.01475872378796339, -0.04390564188361168, 0.006722374819219112, 0.058616381138563156, -0.020079446956515312, 0.005800007376819849, -0.06364795565605164, 0.03266018256545067, 0.004538296721875668, -0.005300282966345549, -0.06374124437570572, -0.014414705336093903, -0.009064060635864735, -0.04243973642587662, -0.004478846676647663, 0.006774865556508303, -0.026503819972276688, 0.007172158919274807, 0.04916856065392494, -0.05157124623656273, 0.0058110496029257774, -0.03819368779659271, -0.08916310220956802, -0.02180802822113037, -0.006673155818134546, 0.0007917292532511055, 0.0021725445985794067, 0.03932863473892212, 0.0064815329387784, 0.007182070054113865, 0.031221557408571243, 0.005304127000272274, 0.007688549812883139, -0.023708341643214226, 0.017169879749417305, 0.017335498705506325, 0.015694821253418922, -0.06287629902362823, 0.027226250618696213, -0.032113224267959595, -0.008466488681733608, -0.01432174351066351, 0.02331114001572132, -0.01570162922143936, -0.026047825813293457, -0.0323653407394886, 0.022541625425219536, -0.051028989255428314, -0.04366059601306915, -0.018740613013505936, 0.03918924182653427, 0.05766976997256279, -0.024802371859550476, -0.010061146691441536, -0.014178747311234474, 0.0028615803457796574, 0.01602296344935894, -0.010121324099600315, -0.059433117508888245, -0.011194647289812565, 0.004881009925156832, 0.03590818867087364, 0.016911806538701057, -0.008079864084720612, 0.03969808295369148, 0.00799060333520174, 0.008801780641078949, -0.014545418322086334, 0.011183551512658596, 0.0075417011976242065, 0.029285047203302383, 0.03349929302930832, -0.01391604170203209, -0.003981316462159157, -0.016511166468262672, -0.02537139505147934, -0.04172345623373985, -0.0022628516890108585, 0.007802992127835751, -0.0034419384319335222, -0.03108934871852398, -0.061793241649866104, 0.05274217575788498, 0.013700425624847412, 0.017435861751437187, 0.007150580640882254, -0.005836377386003733, 0.03455861285328865, -0.034732550382614136, -0.001656989217735827, 0.06616336852312088, -0.06379219889640808, 0.005236761644482613, -0.0015520767774432898, -0.012094985693693161, 0.026867475360631943, -0.011784854345023632, -0.0032407669350504875, -0.028091803193092346, -0.0010097726481035352, 0.03677447885274887, -0.08110791444778442, -0.015670986846089363, -0.03628000244498253, 0.032937463372945786, 0.00256155151873827, 0.016943013295531273, -0.047487854957580566, -0.01161697506904602, -0.025939619168639183, -0.046301890164613724, 0.02138095535337925, -0.019685901701450348, -0.01451809797435999, 0.02405187115073204, -0.02705666422843933, -0.01856384240090847, -0.05383343994617462, 0.013176669366657734, 0.01469623763114214, -0.01985313557088375, 0.012965814210474491, -0.019013697281479836, 0.0029725166969001293, 0.02760804072022438, 0.026363372802734375, -0.018129583448171616, -0.024860752746462822, -0.02861258201301098, -0.004960544407367706, -0.03608178719878197, 0.004242004361003637, -0.017787549644708633, -0.021090107038617134, 0.0020953454077243805, 0.06618082523345947, 0.0010398325975984335, 0.016892820596694946, 0.00855883676558733, -0.019405877217650414, 0.05076254531741142, -0.029712475836277008, -0.038774460554122925, -0.04096044600009918, -0.058521490544080734, 0.005181017331779003, 0.010307598859071732, 0.000864444300532341, -0.05811092257499695, 0.012530868873000145, 0.04037630185484886, 0.05238018557429314, 0.03448165953159332, -0.001954536186531186, 0.03475107625126839, -0.06693556159734726, -0.00024767988361418247, -0.08596604317426682, -0.004419925156980753, 0.019147532060742378, 0.023532407358288765, 0.013350307010114193, 0.01725904271006584, -0.047952182590961456, 0.04252401739358902, -0.0700749009847641, -0.014141936786472797, 0.036189135164022446, 0.00887308269739151, 0.009762507863342762, 0.03597417101264, -0.06638883799314499, -0.0028332252986729145, 0.010539215058088303, -0.03784653916954994, -0.011904857121407986, -0.016757821664214134, 0.04609088599681854, 0.010317541658878326, 0.019010046496987343, -0.04323345422744751, -0.02287783846259117, 0.09182894974946976, 0.014978758990764618, 0.0012745821150019765, 0.07578453421592712, -0.004313827492296696, 0.04905007407069206, 0.03180568665266037, 0.006941141095012426, -0.001751729636453092, 0.014720448292791843, -0.02552076429128647, -0.047784529626369476, 0.037504907697439194, -0.0026031052693724632, -0.008027015253901482, -0.04453198239207268, 0.05909563601016998, 0.010809092782437801, -0.03037378005683422, -0.05275337025523186, -0.002408144064247608, -0.0544617585837841, -0.0012701014056801796, -0.014554924331605434, -0.02085181139409542, -0.028992032632231712, 0.056358590722084045, -0.026057301089167595, 0.018630657345056534, 0.0658973976969719, 0.00878552719950676, -0.019683411344885826, -0.022227732464671135, 0.08837366104125977, 0.06685695797204971, 0.07451557368040085, 0.0006658437196165323, 0.08137910813093185, 0.0057913693599402905, -0.052207618951797485, 0.022469334304332733, -0.015999717637896538, -0.008078607730567455, -0.000019795603293459862, 0.038870617747306824, 0.04034373164176941, -0.017923982813954353, 0.07168033719062805, 0.024358192458748817, -0.025699816644191742, 0.025615211576223373, 0.04246147349476814, 0.02684137038886547, 0.07683277875185013, 0.009436912834644318, 0.02004249021410942, -0.02254338189959526, -0.037453390657901764, 0.03382901847362518, -0.013834641315042973, 0.005870746448636055, 0.0367768295109272, 0.0029844949021935463, 0.033975958824157715, 0.022517593577504158, 0.026865558698773384, 0.07544705271720886, -0.026756007224321365, -0.003952024970203638, -0.018272504210472107, 0.023235810920596123, -0.035388682037591934, -0.004262659233063459, 0.005527028813958168, -0.02735332027077675, -0.010889456607401371, -0.03394657000899315, -0.029917007312178612, -0.01882871426641941, 0.004041054751724005, 0.020346397534012794, -0.021300632506608963, 0.03233981132507324, 0.004958100151270628, -0.00006289961311267689, -0.038781557232141495, -0.04701118543744087, -0.03514690324664116, -0.059345077723264694, -0.02659757435321808, 0.006506566423922777, 0.026459822431206703, -0.002527326112613082, -0.0276454146951437, -0.017084162682294846, -0.01534731313586235, -0.03636453300714493, 0.031186191365122795, -0.06559858471155167, -0.04322052001953125, 0.000233171769650653, 0.0324154794216156, 0.037401679903268814, 0.021655894815921783, 0.04737148806452751, -0.026954742148518562, -0.011041276156902313, 0.010719720274209976, 0.028538944199681282, 0.008063698187470436, 0.02033800631761551, -0.0011490320321172476, -0.08852272480726242, 0.0025376894045621157, 0.03265809640288353, -0.030642490833997726, -0.07299063354730606, 0.019215578213334084, 0.017181118950247765, -0.017132660374045372, 0.03837485983967781, -0.03213683143258095, 0.02640420012176037, -0.054786309599876404, -0.0008795135072432458, -0.01502698753029108, 0.013861453160643578, 0.038520172238349915, -0.04041535407304764, 0.07219851016998291, 0.019794456660747528, -0.000699289608746767, -0.036657754331827164, 0.025296451523900032, 0.00478131789714098, 0.0140262795612216, -0.014337047003209591, -0.03750832751393318, -0.020025432109832764, -0.10718861222267151, -0.032075434923172, 0.011399760842323303, -0.021367760375142097, -0.030076544731855392, 0.052682314068078995, 0.014193614013493061, -0.04661819338798523, 0.021405009552836418, -0.04532059654593468, 0.025387298315763474, -0.020420875400304794, -0.006573835387825966, 0.007556308526545763, 0.030384331941604614, 0.007113961968570948, -0.016406645998358727, 0.014856947585940361, -0.043272681534290314, 0.008088153786957264, -0.005449073389172554, 0.01523369550704956, 0.029252342879772186, 0.01322171650826931, -0.0004333637189120054 ]
[ -0.07602174580097198, -0.017912013456225395, -0.03608841821551323, -0.012963655404746532, 0.03199879080057144, -0.02243742160499096, -0.027068931609392166, 0.009357985109090805, 0.034747689962387085, -0.01890326850116253, 0.000699361611623317, -0.03992515802383423, -0.004548206925392151, -0.013114100322127342, 0.07882007956504822, -0.020686430856585503, -0.01653006114065647, -0.07878970354795456, 0.011556088924407959, 0.02769034169614315, 0.01653219945728779, -0.04914014786481857, -0.04396338388323784, -0.013648240827023983, 0.03152195364236832, 0.010188345797359943, 0.036684803664684296, -0.0473116934299469, -0.00889552291482687, -0.21082894504070282, 0.018531836569309235, 0.020115580409765244, 0.019074484705924988, -0.014510685577988625, 0.025422677397727966, 0.049031488597393036, 0.0012645984534174204, 0.02785402350127697, 0.03166375309228897, 0.036133795976638794, 0.013023726642131805, 0.02954997308552265, -0.04845884069800377, -0.0480690561234951, 0.0047245388850569725, 0.035726968199014664, -0.029252460226416588, 0.0005950815975666046, -0.023983128368854523, 0.035477351397275925, -0.0448041670024395, -0.026756908744573593, -0.0355052575469017, -0.006855972111225128, -0.01652640476822853, 0.0558847039937973, 0.028612198308110237, 0.05243847146630287, 0.013786733150482178, 0.024679021909832954, 0.030033251270651817, -0.0198209285736084, -0.13778120279312134, 0.06809088587760925, 0.029078559949994087, 0.040212247520685196, -0.05507500097155571, 0.010453867726027966, -0.03803195059299469, 0.11542591452598572, -0.01171750295907259, -0.02854996919631958, 0.005804918240755796, 0.031504515558481216, 0.022691626101732254, 0.013809949159622192, -0.02674746885895729, 0.02903052605688572, 0.008304859511554241, -0.026807069778442383, -0.04199119284749031, -0.004480191506445408, -0.026522502303123474, -0.006079386919736862, -0.07160773873329163, 0.025363825261592865, -0.01234543975442648, 0.05702216550707817, 0.017443375661969185, 0.0005813155439682305, 0.07771605998277664, 0.025410829111933708, 0.017647260800004005, 0.00040990562411025167, -0.08905167132616043, -0.025506585836410522, -0.009797165170311928, 0.030370593070983887, -0.0298176147043705, 0.45640918612480164, 0.01284744217991829, -0.02795564942061901, 0.09259596467018127, 0.037056710571050644, -0.02004554308950901, 0.010615008883178234, -0.011029738001525402, -0.03923746570944786, 0.017350029200315475, -0.0034004126209765673, 0.028674082830548286, 0.011918747797608376, 0.042314957827329636, -0.04052933678030968, 0.03583783656358719, 0.06446082890033722, -0.0008382587693631649, 0.006644395645707846, -0.022257715463638306, -0.007047030609101057, -0.001945287105627358, 0.021693816408514977, -0.0011504782596603036, 0.037864912301301956, -0.03889264166355133, -0.041100166738033295, 0.0312914177775383, 0.05010772496461868, 0.045731257647275925, -0.03347793221473694, 0.03932829946279526, -0.04225372150540352, -0.04684555158019066, 0.007935373112559319, -0.003040509996935725, -0.0065046497620642185, 0.03857990354299545, -0.03389572352170944, 0.020061563700437546, 0.0344630591571331, 0.01789003238081932, -0.03295663371682167, 0.004344776272773743, -0.029627082869410515, -0.019347280263900757, 0.1432022750377655, 0.03947373107075691, -0.03446716442704201, -0.021759450435638428, -0.046506475657224655, -0.026185639202594757, 0.019643153995275497, -0.0011437453795224428, -0.07070360332727432, 0.018227247521281242, -0.0005356761976145208, 0.09600954502820969, -0.007064796518534422, -0.0566742941737175, 0.00434168241918087, -0.025158679112792015, 0.010557168163359165, -0.07211510092020035, 0.039220113307237625, 0.06770704686641693, -0.10121255367994308, -0.005828414112329483, -0.01029606070369482, 0.004545398522168398, -0.08040844649076462, -0.03502023592591286, 0.004647632595151663, -0.017267223447561264, 0.014617648907005787, 0.05161455273628235, -0.02547077089548111, -0.07310347259044647, -0.00480280676856637, 0.043274909257888794, 0.015715856105089188, 0.018347281962633133, 0.03222956135869026, -0.030552206560969353, 0.0013449507532641292, -0.02575915865600109, -0.09137699007987976, -0.034214720129966736, -0.010188265703618526, -0.044829726219177246, -0.003974062390625477, -0.01322775986045599, -0.0003873539681080729, -0.07818178832530975, 0.10725971311330795, -0.02771034836769104, -0.030545609071850777, 0.019428569823503494, -0.01367197372019291, -0.03886430710554123, -0.006845036521553993, -0.07544306665658951, 0.014479522593319416, -0.03878210484981537, 0.017535893246531487, -0.0635628029704094, 0.056341271847486496, 0.041751861572265625, -0.030072534456849098, 0.08090053498744965, 0.030953669920563698, -0.018063481897115707, -0.05218186601996422, -0.006005490198731422, 0.022790823131799698, -0.008912828750908375, 0.020704016089439392, 0.01483200490474701, 0.04829201474785805, 0.030100123956799507, 0.018471764400601387, 0.005129828583449125, 0.01742495223879814, 0.012277978472411633, -0.34464654326438904, -0.035847701132297516, -0.022483061999082565, -0.012565371580421925, 0.021279562264680862, -0.01936790905892849, 0.0033760906662791967, -0.01142383273690939, -0.045179735869169235, 0.021453430876135826, 0.07702090591192245, -0.031148163601756096, -0.018349183723330498, -0.07757525891065598, -0.002980906283482909, 0.02183375135064125, -0.08747782558202744, 0.02123054675757885, -0.022070474922657013, 0.02895583212375641, 0.05219769477844238, 0.020158778876066208, -0.04254787787795067, -0.03596528619527817, 0.00814870372414589, -0.022789904847741127, 0.1191088929772377, -0.013509800657629967, 0.05722523853182793, -0.036165960133075714, 0.0449245423078537, 0.0067338584922254086, 0.0054271407425403595, -0.056057099252939224, -0.01098810974508524, -0.0024122525937855244, 0.009884320199489594, -0.0362108051776886, -0.01069613453000784, -0.032753054052591324, -0.0579662099480629, 0.0258753914386034, -0.084476538002491, -0.01649904064834118, -0.07810104638338089, 0.03041611611843109, -0.02866794727742672, -0.016137298196554184, -0.015178977511823177, 0.08100784569978714, 0.00446443073451519, 0.009301736950874329, 0.03181666135787964, -0.006146523170173168, 0.00468573858961463, -0.029077641665935516, -0.09861993789672852, 0.04166850820183754, -0.009232296608388424, -0.02258927747607231, 0.035654254257678986, 0.06047964468598366, 0.042518019676208496, -0.011681430973112583, 0.009185004979372025, 0.017988136038184166, -0.003201472107321024, 0.01652047410607338, 0.02078402228653431, 0.004737000446766615, -0.017189709469676018, 0.06354740262031555, 0.0019794784020632505, -0.006329706870019436, 0.01208482962101698, 0.04501651972532272, -0.0007114618783816695, 0.0288925189524889, 0.006698692683130503, 0.0065498361364007, 0.03925503045320511, -0.07208695262670517, -0.0027577541768550873, -0.003257347736507654, 0.013881577178835869, 0.030182570219039917, 0.00019288872135803103, -0.022109119221568108, 0.05975420027971268, 0.00779232382774353, -0.00768409576267004, 0.010465435683727264, -0.041209038347005844, -0.001929336809553206, 0.03732938691973686, -0.01494002528488636, -0.2544412910938263, 0.020047646015882492, 0.04111305624246597, 0.03936393931508064, -0.013208605349063873, 0.01989026553928852, -0.017725350335240364, -0.019062522798776627, 0.003589062485843897, 0.02594648487865925, 0.03506045415997505, 0.017299650236964226, -0.030693789944052696, 0.002724600723013282, 0.015765879303216934, 0.006873135454952717, 0.05718564987182617, -0.0034552563447505236, 0.036081936210393906, -0.011977165937423706, 0.028128867968916893, -0.013797526247799397, 0.1656094640493393, 0.0013505428796634078, 0.0434766449034214, 0.022063830867409706, -0.0061277225613594055, 0.009655466303229332, 0.023579426109790802, -0.0028427718207240105, 0.0012229997664690018, -0.012246387079358101, 0.014593688771128654, -0.016866018995642662, 0.025530213490128517, -0.03642154484987259, -0.01807873696088791, 0.05149219557642937, 0.04068327695131302, 0.0332837738096714, 0.012201718054711819, 0.009022682905197144, -0.01847919449210167, 0.013367829844355583, 0.05513183772563934, 0.029887063428759575, -0.01690039411187172, -0.04143087565898895, -0.07524855434894562, -0.012192219495773315, -0.05023746192455292, -0.029468383640050888, 0.03028135560452938, -0.0025016088038682938, 0.0014114601071923971, 0.05628986656665802, 0.042773786932229996, -0.0317264199256897, 0.011096931993961334, -0.011943514458835125, -0.015732718631625175, -0.02709989808499813, 0.05021500587463379, 0.019806325435638428, 0.018271565437316895 ]
[ -0.0031935707665979862, -0.0033058240078389645, -0.0002700305776670575, 0.01982733979821205, -0.02239658497273922, 0.020345313474535942, -0.0414707250893116, -0.013644195161759853, 0.02421368472278118, 0.02066340483725071, -0.05308329313993454, 0.03275323659181595, -0.027519449591636658, 0.01017853058874607, 0.03821203112602234, -0.05349444970488548, -0.04240814596414566, -0.011579953134059906, 0.03888179361820221, -0.018564995378255844, 0.00838469062000513, -0.01904241368174553, -0.030420441180467606, -0.003153580706566572, 0.010623481124639511, -0.030049236491322517, -0.011694069020450115, -0.0008344745729118586, 0.01023275125771761, -0.14613334834575653, -0.04653752222657204, -0.03458631411194801, -0.014045021496713161, 0.020055662840604782, 0.021532785147428513, -0.0254581980407238, 0.009896652773022652, 0.03034900315105915, 0.02088332735002041, 0.0177783016115427, -0.011116442270576954, -0.029975347220897675, 0.013340502977371216, -0.004421527497470379, -0.03550167754292488, 0.02684149332344532, -0.02509184740483761, -0.010017541237175465, 0.0011737977620214224, 0.0042433408088982105, -0.04799605906009674, -0.0037501309998333454, -0.01399458572268486, -0.0035659614950418472, 0.060510165989398956, 0.003183710156008601, -0.004435381386429071, -0.05008929595351219, 0.010646334849298, -0.0012702445965260267, 0.0013867224333807826, -0.009617242030799389, -0.07861889153718948, -0.010278298519551754, -0.02728399820625782, -0.04346035420894623, -0.014810205437242985, 0.04421134665608406, -0.05125650390982628, -0.00395587831735611, 0.020195653662085533, -0.0017549408366903663, -0.0025063499342650175, -0.02537807635962963, 0.01758774369955063, 0.0337802991271019, 0.008258605375885963, -0.03073750250041485, 0.015971863642334938, -0.05604516342282295, -0.030225345864892006, 0.00004760696174344048, -0.005128137767314911, 0.024680713191628456, -0.012822316959500313, -0.0335099920630455, -0.01112921629101038, -0.008001869544386864, 0.01254036370664835, -0.014944626949727535, -0.027927376329898834, 0.013873917050659657, 0.01263357698917389, 0.03444898873567581, -0.08615123480558395, 0.023386098444461823, -0.05585899576544762, 0.014493931084871292, -0.02068461664021015, 0.8119428753852844, 0.009112447500228882, 0.015100394375622272, 0.06909086555242538, 0.010263501666486263, 0.041650447994470596, -0.008981299586594105, 0.015793252736330032, 0.01110134832561016, -0.00032643298618495464, -0.04681812599301338, 0.02400233969092369, 0.06702879071235657, 0.024303199723362923, 0.03765382990241051, 0.02564696967601776, 0.003927413374185562, 0.01718779280781746, 0.01597251184284687, -0.004377610515803099, 0.003609027713537216, 0.04210028424859047, 0.01214197650551796, 0.027104897424578667, -0.0018746928544715047, 0.052622806280851364, -0.1559218317270279, 0.02565055713057518, -7.664339247428458e-33, 0.01795155555009842, 0.02457655966281891, 0.023938121274113655, 0.012574962340295315, 0.007550141774117947, -0.001001097378320992, -0.0003379595873411745, 0.01437330711632967, -0.06029940024018288, -0.019936691969633102, -0.03940396010875702, -0.0009924288606271148, 0.03386605530977249, -0.014461413025856018, 0.0022811025846749544, -0.046478498727083206, -0.012916789390146732, 0.038006491959095, -0.020814744755625725, 0.027988845482468605, 0.04871990904211998, 0.009168092161417007, -0.006247540470212698, 0.026605598628520966, -0.008742550387978554, 0.01778840646147728, -0.017975328490138054, -0.04409131780266762, -0.0022500846534967422, -0.03122846595942974, -0.016732828691601753, 0.03998563811182976, -0.004678329918533564, 0.023806637153029442, -0.017998112365603447, -0.030344974249601364, -0.03201667591929436, -0.0030447165481746197, 0.0020359696354717016, -0.013637802563607693, -0.03181500360369682, -0.011525928974151611, -0.0327456034719944, -0.007726449053734541, 0.019013337790966034, 0.007185979280620813, 0.008378792554140091, 0.01970740407705307, -0.010592692531645298, -0.030723214149475098, 0.03713396564126015, -0.0041191112250089645, -0.023326721042394638, 0.026035573333501816, 0.052017491310834885, 0.02633124403655529, 0.031186562031507492, 0.021290231496095657, 0.05374077335000038, 0.03493672236800194, 0.019221030175685883, 0.012589247897267342, -0.028128746896982193, 0.01684940978884697, -0.017870565876364708, 0.024475546553730965, 0.03797750920057297, 0.017710760235786438, 0.040878698229789734, -0.017925214022397995, -0.04361111670732498, -0.03622134402394295, 0.028865749016404152, 0.018480338156223297, -0.0020058797672390938, 0.008903871290385723, -0.020577041432261467, 0.01874495856463909, -0.03144344687461853, 0.026019958779215813, -0.04182654619216919, 0.0076822456903755665, -0.020686831325292587, -0.03974035009741783, -0.027312932536005974, 0.02510850876569748, -0.0005907404702156782, -0.01829380914568901, -0.03837769478559494, 0.026626158505678177, 0.013082812540233135, -0.016259029507637024, -0.0013003380736336112, -0.001207970199175179, 0.0014668211806565523, 7.916174218412748e-33, -0.024967242032289505, -0.00861050933599472, -0.005645144265145063, 0.001328929211013019, 0.0722879096865654, -0.056980106979608536, 0.033762313425540924, -0.03500979021191597, -0.04543273523449898, 0.021494107320904732, -0.01009352132678032, -0.007177375257015228, -0.001735360361635685, 0.010466196574270725, 0.029494082555174828, -0.005984177812933922, 0.07150354981422424, 0.006644103210419416, 0.05872870609164238, 0.00526600144803524, 0.019444437697529793, -0.014347895979881287, 0.01568961888551712, 0.02740158885717392, 0.06565147638320923, 0.052132498472929, -0.004382614511996508, -0.04270769655704498, 0.007025041151791811, -0.0006329991738311946, 0.00008876999345375225, -0.029034411534667015, 0.00722693745046854, 0.0111318901181221, 0.021397829055786133, 0.009170383214950562, -0.05405241623520851, -0.0009317378862760961, 0.018411898985505104, -0.006023198366165161, 0.0038437398616224527, -0.00541312899440527, -0.01808720827102661, 0.01593966968357563, 0.031706515699625015, 0.016517041251063347, 0.0052110617980360985, -0.032123927026987076, -0.00781112490221858, 0.004396569915115833, 0.00681147538125515, 0.018357859924435616, -0.022138889878988266, 0.012216928415000439, -0.028286751359701157, -0.04575961455702782, -0.005233485251665115, -0.004975832998752594, 0.03916269913315773, 0.02721298858523369, 0.0349101759493351, -0.0052958023734390736, -0.037521570920944214, 0.0027461869176477194, -0.0190751850605011, 0.038965143263339996, -0.0013578979996964335, 0.0024531581439077854, -0.019840523600578308, 0.0036126861814409494, -0.03920857235789299, 0.011508428491652012, 0.01755218394100666, 0.055918559432029724, 0.0030322433449327946, -0.012962969951331615, -0.04352211952209473, -0.001548806088976562, -0.022866852581501007, 0.049174077808856964, 0.0007766081835143268, 0.01625029928982258, -0.0029774862341582775, 0.03000440075993538, -0.009618723765015602, 0.043186407536268234, 0.01750275492668152, 0.0648699477314949, -0.0009534389246255159, -0.014449888840317726, -0.005487179849296808, -0.018319038674235344, 0.03399920091032982, 0.0013804391492158175, 0.007587614469230175, -1.3144563659750474e-8, -0.007307586260139942, -0.025029998272657394, -0.018764017149806023, -0.0007715862593613565, 0.0048332856968045235, -0.0033049406483769417, -0.04724403843283653, 0.014908351935446262, -0.004936595913022757, 0.025043930858373642, 0.011294650845229626, -0.054925259202718735, 0.026958061382174492, 0.04351806640625, 0.020367594435811043, -0.029666626825928688, 0.005712159909307957, -0.03530830889940262, 0.022309398278594017, 0.016925472766160965, 0.050169818103313446, 0.044044606387615204, -0.026158882305026054, 0.04191208258271217, -0.00006467924686148763, -0.006197960115969181, -0.05298672616481781, -0.09162920713424683, -0.016559137031435966, -0.026279611513018608, 0.014775972813367844, -0.029172882437705994, -0.05412895604968071, 0.058953698724508286, -0.0025506382808089256, -0.011814801022410393, 0.023266863077878952, 0.016484716907143593, 0.02636704035103321, 0.003038656897842884, -0.040898699313402176, -0.0062381792813539505, 0.01503564603626728, -0.01706949807703495, 0.016848227009177208, 0.011335872113704681, -0.05307925119996071, -0.01957692764699459, -0.020332222804427147, -0.04113464802503586, -0.009921309538185596, 0.01661008410155773, 0.05325176939368248, 0.01759999990463257, 0.001568842213600874, -0.006734097376465797, -0.04956912621855736, -0.01770605705678463, 0.0027812644839286804, -0.005737236700952053, 0.00478003453463316, -0.004967947956174612, -0.022161150351166725, -0.036358971148729324 ]
increasing-team-sizes-parallelising-work
https://markhneedham.com/blog/2010/11/26/increasing-team-sizes-parallelising-work
false
2010-11-26 03:50:20
Interviewing: Communication
[ "interviewing" ]
[ "Hiring" ]
I've been in India for around 4 months and in that time I think I've probably interviewed more people than I have in the last 4 years. Over this time I've come to realise that the two main things I'm looking for in candidates are passion and ability to communicate effectively. It's relatively easy to pick up on whether someone is passionate about what they do in a conversation or while pairing with them but I find the communication aspect a bit more tricky. I'm typically trying to see whether the candidate can explain things at various levels of abstraction, moving up and down the levels as appropriate to get their point across. With some people it's really easy for me because they're able to do this flawlessly without much feedback from me about whether I understand what they're talking about and if they need to reframe. However, in the majority of interviews I end up in the situation where the candidate perhaps isn't explaining something in a way that I can understand. Either they're giving way too much irrelevant technical detail or end up beating around the bush at a high level and not really answering the question. If this situation happened on a team I was working on then I would certainly consider it my job to try and guide the conversation so that we could both get what we want out of it. After all communication is very much a two way thing. In the interview context I do the same thing but I would expect the candidate to pick up the hints that I'm not understanding them easily and adjust the way that they reply to future questions to take that into account. If they don't seem to take that feedback on board then it's quite likely that I'll make the judgement that they're not able to communicate very clearly and we won't proceed with the candidate. I'd be intrigued to hear the approaches others take because it does feel a little bit like I'm doing it wrong in this respect.
null
null
[ 0.009378258138895035, -0.002984403632581234, -0.0038098846562206745, 0.0406467504799366, 0.07428687065839767, 0.034533534198999405, 0.0011183491442352533, 0.05000331252813339, 0.03891691938042641, -0.026470625773072243, -0.033935077488422394, 0.02044801227748394, -0.04378150776028633, 0.0075493971817195415, 0.014655282720923424, 0.06858181208372116, 0.04552594572305679, 0.02343742363154888, 0.004018143750727177, -0.02606899105012417, 0.05021103844046593, 0.06355590373277664, 0.041583411395549774, 0.05119162052869797, 0.059582460671663284, -0.003005014732480049, 0.03019593469798565, -0.00034550632699392736, -0.05530281364917755, 0.011129667982459068, 0.024827318266034126, -0.01831122487783432, -0.010566090233623981, 0.011677657254040241, 0.020864957943558693, -0.052828703075647354, -0.0032276390120387077, 0.048816580325365067, 0.014834834262728691, -0.009758460335433483, -0.06251749396324158, 0.030473265796899796, -0.012652133591473103, -0.012077093124389648, -0.0313696414232254, 0.011925645172595978, -0.030635284259915352, 0.004014181904494762, 0.005639320705085993, 0.005923690274357796, -0.05395406857132912, 0.02976166270673275, 0.003845908911898732, 0.006175654474645853, -0.002612372627481818, 0.042209722101688385, 0.00797724723815918, -0.048031728714704514, -0.0011582766892388463, -0.05509941652417183, 0.0006485339836217463, -0.02502978779375553, -0.002528463490307331, 0.03166411072015762, 0.06234331056475639, 0.002953954739496112, 0.03304826095700264, 0.011981901712715626, -0.023532968014478683, 0.027524547651410103, -0.04634762182831764, -0.005465812515467405, 0.00267237750813365, 0.010938659310340881, -0.014416800811886787, -0.030633127316832542, -0.011601508595049381, 0.060425303876399994, -0.006250073201954365, 0.04191504791378975, -0.04261421412229538, 0.006898965686559677, 0.0032734577544033527, 0.030480382964015007, -0.00828607939183712, -0.061139702796936035, 0.015159736387431622, -0.016592616215348244, -0.06069033592939377, 0.041160427033901215, 0.02080947533249855, -0.060864415019750595, 0.01904693990945816, 0.0490533784031868, -0.011280737817287445, -0.009477268904447556, 0.030191704630851746, -0.037794698029756546, -0.029028192162513733, -0.022295400500297546, -0.002404293045401573, -0.005963848438113928, 0.01264368649572134, 0.012309559620916843, -0.08693849295377731, 0.006300063803792, -0.010515510104596615, 0.014266276732087135, -0.04279832914471626, 0.033828821033239365, -0.03200701251626015, 0.013709706254303455, 0.0020001805387437344, 0.02602793276309967, -0.0797836184501648, 0.05557163804769516, 0.03257032111287117, -0.015692533925175667, -0.002988200169056654, -0.02104783058166504, 0.03459695354104042, 0.043997280299663544, -0.0005870899185538292, 0.06091678515076637, -0.02435000240802765, 0.007579568773508072, -0.03949142247438431, 0.05324343591928482, -0.0004862134519498795, -0.049831803888082504, -0.0436062216758728, 0.06165550276637077, -0.03403135761618614, 0.008754040114581585, -0.013764671981334686, -0.05072696879506111, 0.022160885855555534, -0.02425251714885235, 0.0346805639564991, 0.030097175389528275, -0.020930850878357887, -0.024165118113160133, 0.02372293919324875, 0.02242986299097538, 0.016528187319636345, -0.006986231543123722, -0.020100831985473633, -0.044165462255477905, -0.026010384783148766, -0.027828890830278397, 0.02626119926571846, 0.004702721256762743, 0.03692181780934334, -0.038901034742593765, -0.004259644541889429, 0.08320042490959167, 0.01704341359436512, -0.004510727245360613, -0.0033261855132877827, 0.014121830463409424, 0.05025419965386391, 0.0038150085601955652, 0.02122626267373562, 0.013287180103361607, -0.007001546211540699, -0.000585047819186002, -0.0048456937074661255, 0.03664856776595116, -0.02047216333448887, 0.03575095906853676, -0.059780530631542206, -0.018032053485512733, 0.026171306148171425, -0.014279702678322792, -0.06449012458324432, 0.05190487205982208, 0.04779650643467903, 0.05238085240125656, 0.024100659415125847, -0.00577061902731657, -0.06267668306827545, 0.04445035755634308, -0.001823526807129383, 0.03524751588702202, 0.05418649688363075, -0.015816258266568184, 0.04262194037437439, 0.04622782766819, -0.04234496131539345, 0.02094038389623165, -0.06829015165567398, -0.05541364476084709, -0.034958161413669586, -0.0033222869969904423, 0.03157724440097809, -0.02643558196723461, 0.021464386954903603, 0.09243778884410858, 0.035405296832323074, 0.03990042954683304, 0.044124945998191833, 0.002778120106086135, 0.018030419945716858, -0.028748085722327232, -0.044101107865571976, 0.08121992647647858, 0.033912304788827896, 0.01851409673690796, 0.004359058104455471, 0.033419445157051086, -0.010051330551505089, -0.007868004031479359, 0.030404113233089447, -0.01995551586151123, 0.0510542169213295, -0.0003060777089558542, 0.06369548290967941, -0.03458121418952942, 0.05785679817199707, -0.01903502643108368, 0.06039911136031151, -0.00814842339605093, -0.016792386770248413, 0.01806824840605259, -0.01854288950562477, 0.10676990449428558, 0.06908715516328812, -0.03831455484032631, -0.06845372915267944, 0.018233034759759903, 0.045025281608104706, -0.0561562106013298, 0.02837808057665825, -0.0017298914026468992, 0.003789653070271015, -0.004306926392018795, -0.07820642739534378, -0.020739473402500153, 0.020788509398698807, -0.0553516186773777, -0.015780629590153694, 0.058545250445604324, -0.016178235411643982, 0.0460931770503521, -0.03895578160881996, 0.0008377949707210064, 0.019444169476628304, -0.018034517765045166, -0.0153281781822443, 0.017785033211112022, 0.01897103525698185, -0.018972231075167656, 0.021327471360564232, 0.006090904586017132, -0.019326720386743546, -0.03093247301876545, -0.014661119319498539, 0.021181359887123108, 0.06152185797691345, 0.0682193711400032, 0.012796450406312943, 0.05892470106482506, -0.0021401960402727127, 0.041816722601652145, -0.03153747320175171, -0.02807692252099514, -0.011158023960888386, -0.02688063122332096, -0.018055656924843788, 0.023530704900622368, -0.0056249359622597694, -0.010662181302905083, 0.026170283555984497, 0.02719835378229618, -0.02000707946717739, -0.0003602242504712194, 0.01862735114991665, 0.014984083361923695, -0.01451636478304863, -0.023108649998903275, 0.005481249187141657, 0.04456379637122154, -0.05162719637155533, -0.024689815938472748, 0.031041596084833145, -0.0858730897307396, -0.006827868986874819, -0.05363135412335396, -0.042723603546619415, -0.0134107805788517, 0.0038705107290297747, 0.028509365394711494, 0.038662321865558624, -0.0012475413968786597, 0.04430494084954262, -0.021784652024507523, 0.05500191077589989, 0.014686129055917263, 0.026352185755968094, 0.016418911516666412, 0.006578060798346996, 0.006388071458786726, 0.017979854717850685, -0.017295224592089653, -0.005282623693346977, -0.05294301360845566, 0.05338763818144798, -0.05974791944026947, -0.287575364112854, 0.04247453063726425, 0.04123381897807121, -0.031864795833826065, 0.02823125571012497, -0.06624599546194077, 0.003838383825495839, -0.05151345208287239, -0.028017429634928703, 0.031566545367240906, -0.031999241560697556, -0.022518567740917206, -0.04724762588739395, 0.053523313254117966, 0.004588542506098747, 0.024299757555127144, 0.034937795251607895, -0.021328872069716454, 0.018816834315657616, 0.05909319967031479, -0.04251326993107796, -0.048967793583869934, 0.006951575167477131, 0.034695688635110855, 0.04773101210594177, 0.037943094968795776, -0.07693147659301758, 0.018728377297520638, -0.04655563086271286, -0.016390861943364143, -0.018601475283503532, 0.00770363537594676, 0.050291288644075394, 0.010684658773243427, -0.018435832113027573, -0.03387109190225601, 0.06617429852485657, 0.0018508776556700468, 0.017071153968572617, 0.000315198878524825, -0.038306575268507004, -0.04088481888175011, -0.012774832546710968, 0.016611771658062935, 0.05100233852863312, -0.021747685968875885, -0.07394616305828094, -0.01878700591623783, 0.00818530935794115, 0.07884663343429565, -0.06210019439458847, -0.021157659590244293, -0.0434933565557003, 0.039927829056978226, -0.025167716667056084, 0.009262648411095142, 0.0030157207511365414, -0.005766064859926701, -0.06423663347959518, -0.05277835950255394, -0.0170432161539793, -0.03489060327410698, -0.01884499564766884, -0.05726046487689018, -0.009754364378750324, -0.04767104983329773, -0.06294016540050507, -0.025487255305051804, 0.060479093343019485, -0.02293250523507595, -0.031638819724321365, 0.013706295751035213, 0.028680061921477318, -0.09030918776988983, -0.019344981759786606, -0.02943800389766693, -0.044015172868967056, -0.0009828474139794707, -0.002489289501681924, 0.04058385640382767, -0.039783455431461334, -0.027579495683312416, 0.040405090898275375, 0.0005832279566675425, 0.0319206677377224, -0.009848184883594513, 0.05946160480380058, 0.022895317524671555, -0.03351302817463875, -0.004703291226178408, 0.06962564587593079, -0.00985663291066885, -0.03423820436000824, 0.00037324338336475194, 0.042197685688734055, 0.013105636462569237, -0.012938497588038445, -0.02904319018125534, 0.0015076561830937862, -0.015724878758192062, -0.0209940318018198, -0.049162477254867554, 0.00014443566033151, 0.01445447001606226, 0.009293756447732449, -0.017834000289440155, -0.06525453925132751, 0.015121595934033394, 0.03218358755111694, 0.004390515852719545, 0.020250162109732628, -0.00475293630734086, -0.0018900914583355188, -0.033352337777614594, -0.0365472137928009, -0.021890509873628616, 0.004480498842895031, 0.062218181788921356, -0.0061149029061198235, 0.016444800421595573, -0.04252894967794418, -0.01525637786835432, 0.00023549898469354957, 0.022724909707903862, -0.07100220769643784, -0.02802698314189911, -0.03355924040079117, -0.02581511251628399, -0.0341416671872139, 0.031764112412929535, -0.018448999151587486, 0.008701794780790806, 0.05169292539358139, -0.04789863899350166, 0.0251869298517704, -0.016531622037291527, -0.053983792662620544, -0.025387730449438095, 0.002538952510803938, 0.013937915675342083, -0.024892227724194527, 0.04922660067677498, -0.01120393443852663, 0.013923940248787403, 0.04277648776769638, -0.004460453521460295, -0.0006565606454387307, -0.03655991703271866, 0.015142632648348808, 0.02858242578804493, -0.01798282563686371, -0.05386698618531227, -0.0154424998909235, -0.03228345140814781, -0.03653942793607712, -0.03033807873725891, 0.03217948600649834, -0.008471312001347542, -0.03058864362537861, -0.02126305364072323, 0.0026327045634388924, -0.0730687603354454, -0.037556242197752, -0.013007232919335365, 0.0678563341498375, 0.05080682039260864, -0.015772879123687744, 0.015637192875146866, 0.009155291132628918, 0.014552444219589233, -0.0033286944963037968, -0.0018814447103068233, -0.04399404674768448, -0.02928944118320942, -0.004518818575888872, 0.0011369598796591163, -0.005282316356897354, 0.002404102822765708, 0.029737131670117378, 0.0008149645291268826, -0.00002113124901370611, -0.048191867768764496, -0.0018446400063112378, 0.019983313977718353, 0.06053395941853523, 0.012745456770062447, 0.013068054802715778, -0.017772629857063293, -0.024192722514271736, -0.030127229169011116, -0.041517097502946854, -0.01872844807803631, -0.02248258888721466, 0.013520151376724243, -0.04752060025930405, -0.06211939454078674, 0.05424320697784424, 0.008183049969375134, -0.017305292189121246, 0.011556299403309822, 0.006946878973394632, -0.02337028831243515, -0.018338197842240334, 0.03829221427440643, 0.037965383380651474, -0.057970765978097916, -0.03336413577198982, -0.011437647044658661, -0.0077548255212605, -0.01057317666709423, -0.02694034017622471, -0.013769571669399738, -0.0022218269295990467, -0.017597554251551628, 0.026811672374606133, -0.06884811073541641, -0.04399586841464043, -0.038836024701595306, 0.031661417335271835, 0.021627278998494148, -0.023314343765378, -0.02281908690929413, -0.0256855059415102, -0.022106729447841644, -0.008712836541235447, 0.02075066976249218, -0.05619329959154129, 0.010042396374046803, 0.005137463565915823, -0.030588801950216293, -0.03281775489449501, -0.03750034421682358, 0.02586687169969082, 0.031786318868398666, -0.025632482022047043, -0.017224576324224472, -0.03132786229252815, -0.016060136258602142, 0.023477455601096153, 0.03788219764828682, -0.010126017965376377, -0.056840311735868454, -0.037952177226543427, -0.018609922379255295, -0.043273355811834335, 0.028756076470017433, -0.028076983988285065, -0.021148230880498886, 0.004017796833068132, 0.06431309133768082, 0.0318949930369854, 0.04218709468841553, -0.016614047810435295, -0.015317256562411785, 0.04255877807736397, -0.02606574445962906, -0.01657596230506897, -0.016410578042268753, -0.06822333484888077, 0.018320232629776, 0.008204813115298748, -0.011519216932356358, -0.027610745280981064, 0.03674524277448654, 0.01868916116654873, 0.013102952390909195, 0.034553807228803635, 0.01851671189069748, 0.051121775060892105, -0.06072859466075897, -0.006660679820924997, -0.06515800952911377, 0.00800290983170271, -0.004435988608747721, 0.019484618678689003, 0.006922435015439987, -0.02155393175780773, -0.015559352934360504, 0.05091717094182968, -0.05978189781308174, 0.001923135481774807, 0.025018351152539253, 0.00736784003674984, -0.02716657891869545, 0.015758315101265907, -0.08148378133773804, 0.028116535395383835, 0.029792020097374916, -0.04497876018285751, -0.016057483851909637, -0.003268502652645111, 0.06535003334283829, 0.006602277047932148, 0.026102598756551743, -0.03193139657378197, 0.005941828712821007, 0.062106452882289886, 0.05711172893643379, -0.016059333458542824, 0.041868388652801514, -0.007855253294110298, 0.0295864325016737, 0.015643874183297157, 0.0011648198124021292, -0.014214688912034035, 0.05867116525769234, -0.022457700222730637, -0.05867203697562218, 0.044360533356666565, -0.027075793594121933, -0.017387429252266884, -0.021023055538535118, 0.03412338346242905, 0.0034412769600749016, -0.03479939326643944, -0.0511917807161808, 0.0033785190898925066, -0.05785228684544563, -0.005447364877909422, -0.03873594477772713, 0.007759198546409607, -0.03919600322842598, 0.04742063581943512, 0.027167677879333496, 0.025147298350930214, 0.09710807353258133, -0.009764136746525764, -0.023975897580385208, -0.024331960827112198, 0.09550328552722931, 0.058210570365190506, 0.06771497428417206, 0.0021899775601923466, 0.059456102550029755, -0.0060336776077747345, -0.02928186021745205, 0.024572599679231644, -0.005368920974433422, 0.009223563596606255, -0.0033126233611255884, 0.01512264646589756, 0.058915264904499054, -0.010517328977584839, 0.06784340739250183, -0.01971966214478016, -0.010091882199048996, 0.02870563417673111, 0.051603175699710846, 0.006804971024394035, 0.09610654413700104, -0.0033327066339552402, 0.008493764325976372, -0.013053870759904385, -0.040602438151836395, 0.014064336195588112, -0.0348493829369545, -0.04578905180096626, 0.02542245015501976, -0.006624565459787846, 0.037447646260261536, 0.010012543760240078, 0.01573423109948635, 0.05937636271119118, -0.018874043598771095, 0.03288629651069641, -0.040313009172677994, 0.03722082078456879, -0.028391214087605476, 0.032054997980594635, -0.014858364127576351, -0.008433678187429905, -0.01952204667031765, -0.047212883830070496, -0.06340441107749939, -0.008114125579595566, -0.00710021099075675, 0.0017163610318675637, -0.036111507564783096, 0.03860832750797272, 0.021511152386665344, -0.014834540896117687, -0.033674225211143494, -0.05660906806588173, -0.050764527171850204, -0.016612211242318153, -0.0355532243847847, -0.037183232605457306, 0.04619407653808594, 0.01623460277915001, -0.031007962301373482, 0.01886184886097908, -0.012828666716814041, -0.03606073558330536, 0.0591178797185421, -0.053240567445755005, -0.015893135219812393, 0.012069459073245525, 0.004315068479627371, 0.05346144363284111, -0.007569713052362204, 0.05108984187245369, 0.001302687800489366, 0.018165521323680878, -0.01660989411175251, 0.015569414012134075, 0.027448488399386406, -0.003561429912224412, 0.003914468921720982, -0.0939473956823349, -0.027991516515612602, 0.026535095646977425, -0.0158433485776186, -0.057585153728723526, 0.010594948194921017, 0.006254586391150951, 0.019474515691399574, 0.04865507036447525, 0.003087688237428665, 0.014634879305958748, -0.01989022083580494, 0.007301029283553362, -0.02485409751534462, 0.01060444675385952, 0.042860258370637894, -0.01301659271121025, 0.08085073530673981, 0.014252985827624798, 0.03721141442656517, -0.031372010707855225, 0.007314334157854319, 0.014984969981014729, 0.01764160394668579, -0.024483535438776016, -0.018246561288833618, -0.024031680077314377, -0.054585035890340805, -0.03609428554773331, 0.01190380658954382, -0.024959273636341095, -0.0360715426504612, 0.026982219889760017, 0.009021550416946411, 0.0002818451903294772, 0.0014551359927281737, -0.05693919211626053, 0.046575531363487244, -0.009715355932712555, 0.008249891921877861, 0.02799239568412304, 0.01511556189507246, -0.015419872477650642, -0.04128884896636009, 0.036703284829854965, -0.03654050454497337, 0.006261971313506365, -0.013866549357771873, 0.011845491826534271, 0.0445559099316597, 0.004220068454742432, -0.004073016811162233 ]
[ -0.06100276857614517, 0.048215653747320175, -0.037123024463653564, -0.03976555913686752, 0.010036296211183071, -0.023201465606689453, 0.06318975985050201, -0.017099156975746155, -0.01434463169425726, -0.02450733445584774, -0.00499159749597311, -0.038253046572208405, 0.013131959363818169, -0.02512865513563156, 0.0787309855222702, 0.013673662208020687, 0.038871318101882935, -0.10613729804754257, -0.013697104528546333, 0.06653882563114166, -0.013075457885861397, -0.0022598060313612223, -0.04128484055399895, -0.007486643735319376, 0.029138728976249695, -0.016459235921502113, 0.07330555468797684, -0.021460093557834625, -0.0036082316655665636, -0.14427581429481506, 0.04353362321853638, 0.02436060458421707, 0.05248521640896797, 0.008378311060369015, -0.010873418301343918, 0.06606779247522354, -0.014525830745697021, 0.03532740846276283, -0.011928281746804714, 0.02320500649511814, 0.009223048575222492, -0.003063146024942398, -0.01844066195189953, -0.02958451583981514, 0.030029254034161568, -0.0026344400830566883, -0.02809319831430912, -0.037659019231796265, -0.06149942800402641, -0.019907357171177864, -0.059329185634851456, -0.0352880135178566, -0.026686418801546097, -0.027555573731660843, -0.01615225151181221, 0.008811071515083313, 0.07279237359762192, 0.03449494391679764, -0.008794981986284256, 0.04009131342172623, 0.01875685155391693, 0.002586203394457698, -0.1512393057346344, 0.10681185126304626, 0.03489181399345398, 0.03851234167814255, -0.02958119660615921, 0.008840333670377731, -0.027509216219186783, 0.07313511520624161, 0.022494740784168243, -0.02563297376036644, -0.004324153531342745, -0.00004807706136489287, 0.0332491360604763, 0.00019650791364256293, -0.009198391810059547, 0.03553224354982376, 0.03192305937409401, -0.014348571188747883, -0.001064581098034978, 0.01985827274620533, -0.021129963919520378, -0.019311582669615746, -0.004641875624656677, 0.005129829049110413, 0.007187434937804937, 0.04000195860862732, 0.014333697967231274, 0.030745992437005043, 0.05029628425836563, 0.0020596624817699194, -0.03442508354783058, 0.000984499347396195, -0.08308207243680954, -0.06836811453104019, -0.0039615207351744175, 0.04084157198667526, -0.08601835370063782, 0.42705288529396057, -0.0240070391446352, -0.01462838426232338, 0.08956087380647659, 0.03679313883185387, -0.0404851995408535, 0.000668683263938874, -0.006770746316760778, -0.05657489225268364, 0.010428260080516338, -0.006680438295006752, 0.03885062411427498, 0.02119928039610386, 0.014632579870522022, -0.03266266733407974, 0.01568804681301117, 0.04420974478125572, 0.054724931716918945, 0.0011043248232454062, -0.033753059804439545, -0.04912479966878891, -0.030720138922333717, 0.014348551630973816, -0.005667924415320158, -0.015460819005966187, -0.037008028477430344, -0.08545753359794617, 0.03701101616024971, 0.04308192431926727, 0.023545535281300545, -0.026388244703412056, 0.0688939318060875, -0.0675315260887146, -0.09450165927410126, -0.004205598030239344, 0.00010339792061131448, -0.012981840409338474, 0.02086140401661396, 0.013716562651097775, -0.005448424257338047, 0.06286800652742386, 0.031343501061201096, -0.05941122770309448, 0.01328963041305542, -0.007141266483813524, -0.027888508513569832, 0.13073356449604034, -0.018976658582687378, -0.034312933683395386, -0.024530185386538506, -0.01024695299565792, -0.003298055613413453, 0.04168470576405525, -0.008561277762055397, -0.04505946487188339, 0.061055660247802734, 0.004679819568991661, 0.07953210175037384, -0.017752882093191147, -0.06189094856381416, -0.015849940478801727, 0.01542761642485857, -0.0455116406083107, -0.03716028109192848, 0.028254913166165352, 0.09564005583524704, -0.08440396934747696, -0.032811444252729416, -0.010604199953377247, 0.026854416355490685, -0.056724172085523605, 0.03290020301938057, 0.010552143678069115, -0.0222536139190197, -0.000978988828137517, 0.024831196293234825, -0.05375688523054123, -0.029274776577949524, 0.051116373389959335, 0.02735113725066185, 0.008515355177223682, 0.06097842752933502, 0.0006151791312731802, 0.002737193601205945, 0.03389400988817215, -0.028246073052287102, -0.0738067701458931, -0.039409153163433075, -0.0315476730465889, -0.0337337926030159, -0.027173686772584915, -0.04754103347659111, 0.0036873200442641973, -0.1039399653673172, 0.08702216297388077, -0.03258145973086357, -0.031351782381534576, 0.049753643572330475, -0.037692841142416, -0.029205728322267532, -0.0043630339205265045, -0.07507721334695816, 0.02858717180788517, -0.05728944391012192, 0.05314970016479492, -0.0346798449754715, 0.047734446823596954, 0.07863043248653412, -0.035030797123909, 0.09843915700912476, 0.0679941400885582, -0.0007575448835268617, -0.0419250912964344, 0.0478954017162323, 0.03853291645646095, -0.004263146314769983, -0.061038076877593994, 0.04054558277130127, 0.0385952927172184, 0.035878319293260574, 0.03653111308813095, -0.01401112973690033, 0.023203425109386444, 0.0263496283441782, -0.3268525302410126, -0.02488173358142376, -0.030076608061790466, 0.016472922638058662, 0.04357609152793884, -0.03079926408827305, 0.03916328400373459, -0.016010088846087456, 0.012617520987987518, 0.04214633256196976, 0.029733384028077126, 0.010532092303037643, 0.03899739682674408, -0.027161648496985435, 0.0360482856631279, -0.00919285137206316, -0.04577627405524254, 0.035654082894325256, 0.009641347452998161, 0.00395550113171339, 0.018200673162937164, 0.02541464939713478, -0.029791640117764473, -0.02995321713387966, 0.02395474538207054, -0.03295815736055374, 0.09124038368463516, 0.018672272562980652, -0.002870321273803711, -0.03237804397940636, 0.018275409936904907, 0.014878887683153152, 0.018220670521259308, -0.15115565061569214, 0.038705676794052124, -0.023410938680171967, -0.011549212969839573, -0.038514528423547745, 0.006715018302202225, -0.01972907781600952, -0.0017374036833643913, 0.00713247200474143, -0.053083665668964386, 0.009219524450600147, -0.09757459908723831, 0.021968694403767586, -0.03130590543150902, -0.03588534891605377, -0.05056408792734146, 0.06510120630264282, 0.002206110395491123, -0.014393252320587635, 0.0247552078217268, 0.01345853041857481, 0.0018338313093408942, -0.03683929145336151, -0.12600640952587128, -0.003230490256100893, -0.012264245189726353, 0.013946156948804855, -0.017517372965812683, 0.07843964546918869, 0.03986360877752304, -0.04379827529191971, -0.04212372377514839, 0.027628373354673386, -0.0023006282281130552, 0.037368882447481155, -0.014091565273702145, 0.009428669698536396, -0.019541356712579727, 0.0793749988079071, -0.014088347554206848, -0.028146523982286453, 0.022553250193595886, 0.018092120066285133, -0.02105589397251606, 0.024425547569990158, 0.029244132339954376, -0.0130985202267766, 0.04736514762043953, -0.02667911909520626, 0.022707704454660416, -0.02291470393538475, -0.00009039670112542808, 0.05534317344427109, -0.006024020258337259, -0.038151517510414124, 0.07446803897619247, 0.07082094252109528, -0.04299217462539673, 0.02310154400765896, -0.009460740722715855, -0.022201748564839363, 0.03155076876282692, -0.04056040942668915, -0.23688679933547974, 0.010220098309218884, 0.032118361443281174, 0.02760099433362484, -0.024422867223620415, -0.000319867511279881, -0.002339687431231141, -0.03806274011731148, -0.05872481316328049, 0.049842480570077896, 0.021746568381786346, 0.0035796049050986767, 0.0022875836584717035, -0.016922203823924065, 0.047391377389431, 0.01654082164168358, 0.025817882269620895, 0.02437436208128929, 0.015887470915913582, -0.003524166066199541, -0.004335649777203798, -0.041697949171066284, 0.11991212517023087, 0.0074616605415940285, 0.0688997134566307, -0.0012076273560523987, -0.01146937720477581, -0.014242990873754025, 0.031829651445150375, -0.04723329097032547, 0.049076564610004425, -0.04532111436128616, 0.038452330976724625, 0.004492653533816338, 0.008737302385270596, -0.06995869427919388, -0.011517742648720741, 0.03909148648381233, 0.0375189334154129, 0.0012926037888973951, 0.05002212151885033, 0.00823479238897562, -0.01074833795428276, 0.01830323040485382, 0.06207065284252167, 0.0028762794099748135, -0.0023082515690475702, -0.010075654834508896, -0.04160315915942192, -0.015111571177840233, -0.04514734074473381, -0.034269481897354126, 0.01848163828253746, 0.003134310944005847, 0.014551262371242046, 0.059341318905353546, -0.019334865733981133, -0.07137884199619293, 0.0015908997738733888, 0.01067313365638256, -0.01240761298686266, 0.004915323574095964, 0.0808139517903328, -0.00010748680506367236, 0.01545131579041481 ]
[ -0.0021034395322203636, -0.007682255934923887, 0.020137200132012367, 0.005336241330951452, -0.018466662615537643, 0.002866205060854554, -0.022253286093473434, -0.017885714769363403, 0.020382048562169075, -0.011907469481229782, -0.02643456682562828, -0.004880212713032961, 0.0013282159343361855, 0.005489928647875786, 0.040576059371232986, 0.0016569924773648381, 0.01523434929549694, -0.005533786490559578, 0.04899080470204353, 0.002395839663222432, -0.021448222920298576, -0.0005384903633967042, 0.007110879756510258, -0.026479465886950493, -0.0004932134761475027, 0.0013982494128867984, 0.0063627054914832115, -0.021112918853759766, 0.022721072658896446, -0.12118297815322876, -0.005097300745546818, -0.009712944738566875, -0.01627468504011631, 0.039719440042972565, -0.007370877079665661, -0.004877651575952768, -0.010041741654276848, 0.05653643608093262, 0.03775978460907936, -0.032551202923059464, 0.004855854902416468, -0.0007609520689584315, 0.020212238654494286, 0.009569138288497925, 0.018326535820961, -0.01742098107933998, -0.01683991588652134, -0.007729116827249527, -0.008528978563845158, -0.05216805636882782, -0.060080636292696, -0.004992426373064518, -0.03299460560083389, 0.019568264484405518, 0.005111701786518097, -0.024405723437666893, 0.009844673797488213, 0.018373535946011543, 0.011403560638427734, 0.01434146985411644, -0.00039874768117442727, -0.014063346199691296, -0.050718165934085846, -0.023059656843543053, 0.002967923879623413, 0.004928328562527895, -0.020473316311836243, 0.015551102347671986, -0.013065585866570473, 0.012106399983167648, -0.020714666694402695, 0.00898908544331789, -0.034149594604969025, -0.03668569028377533, -0.01683003082871437, -0.004358246456831694, -0.022822784259915352, 0.015121842734515667, 0.013535479083657265, -0.012035130523145199, -0.025736616924405098, 0.000587739166803658, 0.02987605333328247, -0.01228164229542017, 0.00484478659927845, -0.012685012072324753, 0.00980447232723236, -0.03704400733113289, -0.006810812279582024, -0.011916953139007092, -0.02126961015164852, 0.03339306637644768, -0.016811665147542953, 0.023419585078954697, -0.07521923631429672, -0.023242129012942314, -0.034362927079200745, -0.012222550809383392, -0.010965155437588692, 0.8721246123313904, -0.008226661942899227, 0.0019339214777573943, -0.0018206823151558638, -0.026228798553347588, -0.025242572650313377, -0.032508499920368195, -0.005760848522186279, -0.009576624259352684, 0.002467349637299776, -0.011882997117936611, -0.033833544701337814, 0.024222655221819878, 0.03650788962841034, 0.04037832096219063, 0.022888030856847763, 0.01250001322478056, 0.018671579658985138, 0.013618524186313152, -0.01686335913836956, -0.003949808422476053, -0.0008792905719019473, 0.01843811571598053, -0.0063374824821949005, 0.0012620837660506368, -0.011410671286284924, -0.18276289105415344, 0.02442033216357231, -9.032552958332183e-33, 0.05319792777299881, 0.02629833109676838, 0.007674986030906439, 0.013864082284271717, -0.030230339616537094, -0.0035527851432561874, 0.027775557711720467, -0.003079719375818968, -0.014970854856073856, -0.017296206206083298, -0.0019274901133030653, -0.025303032249212265, 0.022383132949471474, -0.008164256811141968, 0.01849932223558426, -0.020238107070326805, -0.017684001475572586, 0.01619573123753071, -0.007459189742803574, 0.008330323733389378, 0.027253732085227966, 0.03787563741207123, 0.007935232482850552, 0.02230720780789852, 0.03254762664437294, -0.013226700015366077, 0.02371351234614849, 0.007898368872702122, -0.013573477044701576, -0.041629351675510406, -0.03416653722524643, 0.026237303391098976, -0.03657950088381767, -0.016515282914042473, -0.004000460729002953, -0.02828570269048214, -0.007011345122009516, -0.0014748304383829236, 0.0025342153385281563, -0.01475241407752037, -0.022942842915654182, -0.0018551310058683157, -0.018996987491846085, 0.007811871822923422, -0.0223931185901165, 0.020417382940649986, 0.008834084495902061, 0.01471630111336708, 0.010636989027261734, -0.015134945511817932, -0.026951748877763748, 0.007947606034576893, -0.021828727796673775, 0.022682053968310356, 0.0018204639200121164, 0.011618366464972496, 0.011532493866980076, 0.0055417283438146114, -0.003241277066990733, 0.03295472264289856, 0.012351292185485363, -0.011107293888926506, -0.05963020399212837, 0.004527251236140728, -0.004047407768666744, 0.003209829330444336, -0.025667352601885796, -0.0064773838967084885, 0.033845048397779465, -0.02880224958062172, -0.03368951752781868, 0.01406133733689785, 0.0031324008014053106, 0.005093627143651247, -0.01054228376597166, 0.029751140624284744, 0.0000801428104750812, 0.014155066572129726, 0.01123883854597807, 0.0353323258459568, -0.01814950630068779, 0.030415786430239677, 0.03667376562952995, -0.047245465219020844, 0.02394448220729828, -0.008042795583605766, -0.0012507467763498425, -0.022494325414299965, 0.009208795614540577, 0.03414294496178627, 0.024742523208260536, 0.025821980088949203, 0.0015689252177253366, -0.0009674304164946079, -0.019322417676448822, 8.341893456558456e-33, 0.012554848566651344, -0.014794653281569481, -0.03750426322221756, 0.0015052936505526304, 0.03851978853344917, 0.017854636535048485, 0.01880667731165886, 0.012458207085728645, -0.04239022359251976, 0.023981865495443344, -0.02447289228439331, -0.011475187726318836, 0.03555765748023987, 0.033341582864522934, 0.004365505650639534, -0.012077637016773224, 0.015585132874548435, -0.023931974545121193, 0.015409067273139954, -0.006372958421707153, 0.014753416180610657, 0.015347390435636044, 0.016286447644233704, 0.010382318869233131, 0.007702569477260113, 0.038966525346040726, 0.016585994511842728, 0.006937654223293066, 0.011709189042448997, -0.01739245466887951, -0.004424105864018202, -0.007236987352371216, 0.003252978902310133, -0.012884416617453098, 0.0032879107166081667, 0.030089547857642174, -0.006949925795197487, -0.04793525114655495, -0.006578432861715555, 0.02898935042321682, -0.02076791785657406, 0.030490728095173836, -0.0022635541390627623, 0.0026500204112380743, 0.013740191236138344, -0.041549019515514374, -0.012912101112306118, -0.020179765298962593, -0.012949833646416664, -0.006534837186336517, 0.0036717536859214306, 0.011061664670705795, 0.034975118935108185, -0.01144199725240469, -0.010925354436039925, -0.025663703680038452, -0.02859434112906456, 0.0024008455220609903, 0.010425442829728127, 0.01472433190792799, -0.012262292206287384, 0.0004968470893800259, 0.0034463873598724604, -0.03494109958410263, -0.026521986350417137, 0.01719042658805847, 0.005587680730968714, 0.005366466473788023, 0.02623639442026615, -0.0027749664150178432, -0.0036541095469146967, -0.04644152894616127, 0.002458325121551752, 0.03520211949944496, 0.03423883393406868, -0.028471652418375015, -0.04781559109687805, 0.015532351098954678, -0.000032519801607122645, 0.009122490882873535, 0.013531566597521305, 0.03454618155956268, 0.002189975930377841, -0.0030548968352377415, 0.021993789821863174, 0.05150948837399483, -0.01784534938633442, 0.028427133336663246, 0.015856748446822166, -0.009435754269361496, 0.016719141975045204, -0.031034158542752266, 0.010690341703593731, 0.018287094309926033, 0.009840627200901508, -1.4333796372056895e-8, -0.005522382911294699, 0.003457153681665659, -0.0016732296207919717, -0.016689643263816833, 0.006785581819713116, -0.01601882092654705, -0.005000942386686802, -0.0076525346376001835, 0.009719960391521454, -0.00517930556088686, 0.03021133877336979, -0.02463972382247448, -0.004585240036249161, 0.01719542220234871, 0.012883253395557404, -0.034474823623895645, -0.013946590013802052, -0.023884601891040802, 0.04764382541179657, 0.010154422372579575, 0.03212161734700203, 0.049828361719846725, -0.029190076515078545, 0.035225171595811844, 0.018677398562431335, 0.011625902727246284, -0.029067030176520348, -0.06601007282733917, -0.007626531179994345, 0.01897372305393219, -0.017410939559340477, -0.02216188609600067, -0.020944366231560707, -0.006725544575601816, -0.03185952827334404, -0.019917085766792297, 0.0063635981641709805, -0.020345397293567657, 0.021585820242762566, 0.017349157482385635, 0.00035632235812954605, 0.01301127765327692, -0.0009307244326919317, -0.02585364133119583, 0.0043834601528942585, 0.029276497662067413, -0.033593762665987015, -0.03191260248422623, -0.019483957439661026, -0.04825890436768532, -0.016971221193671227, -0.0026037527713924646, 0.008862488903105259, 0.044346828013658524, 0.026651175692677498, 0.011505193077027798, -0.026567984372377396, 0.0010430767433717847, -0.038066692650318146, -0.013209875673055649, 0.028528805822134018, 0.05419306457042694, -0.0357501395046711, -0.0361863449215889 ]
interviewing-communication
https://markhneedham.com/blog/2010/11/26/interviewing-communication
false
2010-11-21 17:02:14
The Adventures of Johnny Bunko - The Last Career Guide You'll Ever Need: Book Review
[ "books", "book-review", "career" ]
[ "Books" ]
I read Dan Pink's http://www.amazon.com/Whole-New-Mind-Right-Brainers-Future/dp/1594481717/ref=sr_1_2?ie=UTF8&qid=1290326644&sr=8-2[A Whole New Mind] earlier in the year but I hadn't heard of http://www.amazon.com/Adventures-Johnny-Bunko-Career-Guide/dp/1594482918/ref=sr_1_4?ie=UTF8&qid=1290326609&sr=8-4[The Adventures of Johnny Bunko] until my colleague http://www.learninggeneralist.com/[Sumeet Moghe] mentioned it in a conversation during ThoughtWorks India's XConf, an internal conference run here. The book is written in the http://en.wikipedia.org/wiki/Manga[Manga] format so it's incredibly quick to read and it gives 6 ideas around building a career. I'm generally not a fan of the idea of 'building a career' - generally when I hear that phrase it involves having a 'five year' plan and other such concepts which I consider to be pointless. I much prefer to just focus on what I'm most interested in at the moment and then have the flexibility to be able to focus on something else if that interests me more. Luckily this book is not at all like that and these are the ideas Dan Pink suggests: == There is no plan The most interesting part of this piece of advice is Pink's suggestion that when we make career decisions we make them for two different types of reasons: * *Instrumental reasons* - we do something because we think it's going to lead to something else regardless of whether we enjoy it or think it's worthwhile. * *Fundamental reasons* - we so something because it's inherently valuable regardless of what it may or may not lead to. I think this pretty much makes sense - it's very difficult to predict what's going to happen so you might as well make sure you're doing what you want at any given time. == Think strengths not weaknesses Marcus Buckingham has several books on this subject but the general idea is that we should look to focus on things that we're good at or are really motivated to become good at. By inference this means that *we want to avoid spending time on things that we're not good at and/or not interested in becoming good at*. I recently came across a blog post written by Robbie Maciver where he suggests that we can http://robbiemaciver.com/robbies-blog/71-in-hindsight[use a retrospective to help us identify team member's strengths and work out how best to utilise them]. I think there's sometimes a reluctance for people to volunteer their strengths so we end up with people working on tasks that they hate that other people in the same team would enjoy. == It's not about you Pink then goes on to point out that even if we do work out how to play to our strengths we still need to ensure that we're focusing on our customer/client. Pink calls this *focusing outward not inward*. In terms of working in technology consulting that would therefore be along the lines of ensuring that we're focused on solving our clients' problems in the best way for them rather than the most interesting way for us. == Persistence trumps talent This idea has been covered in several books including http://www.amazon.com/Outliers-Story-Success-Malcolm-Gladwell/dp/0316017922/ref=sr_1_1?s=books&ie=UTF8&qid=1290344251&sr=1-1[Outliers], http://www.amazon.com/Talent-Overrated-Separates-World-Class-Performers/dp/B0040RMEGM/ref=sr_1_1?s=books&ie=UTF8&qid=1290344269&sr=1-1[Talent is Overrated] and http://www.amazon.com/Talent-Code-Greatness-Born-Grown/dp/055380684X/ref=sr_1_1?ie=UTF8&qid=1290344219&sr=8-1[The Talent Code]. The underlying idea is that people aren't born brilliant at any skill, it only comes through practice and if we're intrinsically motivated to do something then we're much more likely to put in the time it requires to become really good. To add to that I think intrinsic motivation is highest when we're focusing on our strengths so this piece of advice is linked with the earlier one. == Make excellent mistakes Pink talks about making excellent mistakes which he describes as 'mistakes that come from having high aspirations, from trying to do something nobody else has done'. I think this is somewhat linked to the idea of failing fast although it seems to be perhaps one level beyond that. Sumeet gave a talk at XConf where he described http://www.learninggeneralist.com/2010/08/thoughtworks-university-story-of-our.html[the new approach to ThoughtWorks University] and pointed out that one of the most important goals was to allow attendees to make 'excellent mistakes' One observation I have here is that smaller companies seems more willing to make excellent mistakes. As organisations grow the aversion to risk because of worries about loss of reputation increases which makes excellent mistakes less likely. I find http://www.startuplessonslearned.com/[Eric Ries' lean startup] ideas particularly interesting with respect to failing fast and my former colleague http://www.the-arm.com/[Antonio Terreno] recently linked to http://bbc.in/ckCqFj[a video where the General Manager of Forward 3D explains how they do this]. == Leave an imprint Pink talks about the importance of doing work which actually has some meaning or leaves the world in a better place than it was before. This is probably the one that I can relate to least. I'm writing software which is what I'm passionate about but I wouldn't say the problems I work on are having much impact on the world. This one therefore leaves me with the most to think about.
null
null
[ -0.004498883616179228, -0.017007602378726006, 0.000006494400622614194, 0.03817654028534889, 0.07351448386907578, 0.011716467328369617, 0.009616231545805931, 0.042458727955818176, 0.025281023234128952, -0.02348896861076355, -0.019205598160624504, 0.011263749562203884, -0.03156629577279091, 0.009311011992394924, -0.026967760175466537, 0.07587867230176926, 0.06402763724327087, 0.021085359156131744, -0.005105952732264996, -0.002708790125325322, 0.034070275723934174, 0.08521027117967606, 0.050015389919281006, 0.0424053817987442, 0.03927704691886902, -0.0335722379386425, 0.02452068217098713, 0.003394484054297209, -0.041149646043777466, -0.015424692071974277, 0.022187983617186546, 0.012077996507287025, 0.0031341370195150375, 0.019751833751797676, 0.03281606733798981, -0.039498213678598404, -0.021631332114338875, 0.009358500130474567, 0.03253192827105522, 0.014013306237757206, -0.08577221632003784, 0.0428893156349659, -0.01272304356098175, 0.0014222998870536685, -0.039051078259944916, -0.003257140051573515, -0.0244928989559412, -0.0009352767374366522, 0.015520144253969193, -0.014523407444357872, -0.021815819665789604, 0.050471194088459015, 0.004614518489688635, -0.005353964865207672, -0.01357151847332716, 0.05098092183470726, 0.021911656484007835, -0.039521053433418274, 0.013765531592071056, -0.054716482758522034, 0.010694481432437897, -0.016862042248249054, -0.011292469687759876, 0.04413117840886116, 0.03545646741986275, -0.03455754369497299, -0.003057581139728427, 0.04051327332854271, -0.04170722886919975, -0.0027406697627156973, -0.04286578297615051, 0.004810279700905085, -0.0029225614853203297, 0.018864434212446213, 0.0024121939204633236, -0.05623564124107361, 0.0035389780532568693, 0.07342652976512909, 0.0013849094975739717, 0.031193336471915245, -0.02525150589644909, 0.03032289631664753, -0.002117081545293331, 0.012738363817334175, -0.03855699673295021, -0.04326372221112251, 0.021417085081338882, -0.03044993057847023, -0.07384362816810608, 0.06190209463238716, 0.010568872094154358, -0.0440136156976223, 0.00765998987480998, 0.043863240629434586, 0.012988081201910973, 0.002679578959941864, 0.04155125096440315, -0.026465747505426407, -0.027313068509101868, -0.02633974701166153, -0.019322823733091354, -0.02398197166621685, -0.006798855494707823, 0.005786036141216755, -0.08816719055175781, -0.005046823062002659, 0.0016152618918567896, -0.015729883685708046, -0.007757086306810379, 0.013835437595844269, -0.050490692257881165, 0.04343881085515022, -0.005990813486278057, 0.008584430441260338, -0.06414318829774857, 0.05536176264286041, 0.0020771988201886415, -0.049422118812799454, -0.014258861541748047, 0.00992173794656992, 0.026952633634209633, 0.028830131515860558, -0.0008221492171287537, 0.07398828119039536, 0.005504837725311518, -0.0029625343158841133, -0.042301032692193985, 0.0337149016559124, 0.004954119212925434, -0.05459972098469734, 0.004506496712565422, 0.04199286550283432, -0.03321389853954315, -0.023228704929351807, -0.008492090739309788, -0.028328808024525642, 0.004828107543289661, -0.00011394704051781446, 0.038064971566200256, 0.04890673980116844, -0.010774370282888412, -0.026754630729556084, 0.013224052265286446, 0.0075649721547961235, 0.0365765355527401, -0.005205923225730658, 0.0041637178510427475, -0.02027382142841816, -0.05712411552667618, -0.035659775137901306, 0.0209030844271183, 0.017844868823885918, 0.012743877246975899, -0.034491728991270065, 0.008978486992418766, 0.07032827287912369, 0.04719611257314682, 0.03392293304204941, -0.005354408640414476, 0.02674887143075466, 0.061219725757837296, 0.016974782571196556, 0.017978085204958916, 0.017251361161470413, -0.013092787936329842, -0.006244535092264414, 0.004871352110058069, 0.04673074930906296, -0.035681866109371185, 0.008384068496525288, -0.04473795369267464, -0.04825325310230255, 0.03477325290441513, -0.042234234511852264, -0.007946768775582314, 0.03477795422077179, 0.06865645200014114, 0.04931507259607315, 0.02597970701754093, -0.00446179136633873, -0.0762782171368599, 0.04187421500682831, 0.03416706994175911, 0.017078852280974388, 0.011294986121356487, -0.02215689979493618, 0.044238585978746414, 0.057780709117650986, 0.00865950807929039, 0.07444781064987183, -0.06368325650691986, -0.0858515277504921, -0.012298159301280975, -0.01714366488158703, 0.061009012162685394, -0.03008958324790001, 0.024487653747200966, 0.09403659403324127, -0.0035117613151669502, 0.0460234172642231, 0.020188650116324425, 0.0007593641057610512, 0.0022462946362793446, -0.019654404371976852, -0.03301292285323143, 0.07665979862213135, 0.010105864144861698, 0.0182753037661314, -0.012355634942650795, 0.013065211474895477, 0.0028915409930050373, -0.025012874975800514, 0.03242534026503563, -0.01100725494325161, 0.03697216510772705, -0.012741532176733017, 0.07695604115724564, -0.017438670620322227, 0.050255242735147476, -0.012870443053543568, 0.027043158188462257, -0.003628597827628255, -0.013158174231648445, -0.00270606717094779, 0.024182604625821114, 0.11381829530000687, 0.04660949483513832, -0.04374721273779869, -0.042545005679130554, 0.03492360562086105, 0.016597677022218704, -0.04841483756899834, 0.002389154862612486, 0.02503083273768425, 0.018390610814094543, 0.0022928081452846527, -0.051348473876714706, -0.022884581238031387, 0.024322066456079483, -0.04076997563242912, -0.014531643129885197, 0.038805585354566574, -0.006456675473600626, 0.07138346880674362, -0.014914345927536488, 0.008768094703555107, -0.023991838097572327, -0.009565827436745167, -0.05460792034864426, -0.009195775724947453, -0.011905001476407051, -0.01981721632182598, 0.022250480949878693, -0.000029998956961208023, -0.026634516194462776, -0.03238518536090851, -0.04508126154541969, 0.026123257353901863, 0.07871932536363602, 0.05078485608100891, -0.030824746936559677, 0.052878040820360184, -0.013205859810113907, 0.039858799427747726, -0.02826397679746151, -0.041479989886283875, -0.018609654158353806, -0.02667701244354248, 0.013692321255803108, 0.022968081757426262, 0.0095600550994277, 0.0238274484872818, 0.007305925711989403, 0.03129015490412712, -0.014231868088245392, -0.01890210062265396, 0.054875697940588, 0.011156386695802212, 0.0003383859875611961, -0.030811091884970665, -0.01856481283903122, 0.05195171758532524, -0.03280801326036453, -0.013129391707479954, 0.016304833814501762, -0.07583129405975342, 0.02523796819150448, -0.048511505126953125, -0.03809499368071556, -0.013133269734680653, 0.009726482443511486, 0.035393375903367996, 0.046623677015304565, 0.03784196823835373, 0.06200653687119484, 0.021258044987916946, 0.015424809418618679, 0.0010605226270854473, -0.010127642191946507, 0.042964328080415726, 0.009614795446395874, -0.01891355589032173, 0.06279103457927704, -0.0025203621480613947, 0.026514790952205658, -0.01828811876475811, 0.044181425124406815, -0.029679981991648674, -0.270142525434494, 0.04804278537631035, 0.0075409603305161, -0.03180154785513878, 0.025852426886558533, -0.022457217797636986, 0.009916090406477451, -0.0593811459839344, -0.03182068467140198, 0.015263935551047325, -0.05413716286420822, -0.043917179107666016, -0.04534072056412697, 0.046692825853824615, -0.010749847628176212, -0.003409654600545764, 0.0045694918371737, -0.043081555515527725, -0.017032308503985405, 0.046873342245817184, -0.025448637083172798, -0.06269770860671997, -0.021197451278567314, 0.06797703355550766, 0.049380868673324585, 0.0844159871339798, -0.07558216154575348, 0.02796758897602558, -0.054206203669309616, 0.007593796122819185, -0.007089739665389061, -0.013764381408691406, 0.024118149653077126, -0.01601158268749714, 0.002520570997148752, -0.043316833674907684, 0.03965786471962929, -0.004291580989956856, -0.012538420967757702, 0.012464032508432865, -0.03198695927858353, -0.03088308870792389, -0.02191576175391674, 0.03168288618326187, 0.06634858250617981, 0.004953362047672272, -0.07319898903369904, -0.014895793981850147, -0.027789177373051643, 0.07374098896980286, -0.04405814781785011, -0.044074635952711105, -0.03840983659029007, 0.02908288687467575, 0.013962185010313988, 0.005346554331481457, -0.007740195374935865, -0.03187037631869316, -0.04021391645073891, -0.059649672359228134, -0.015344088897109032, -0.004340235609561205, -0.022754410281777382, -0.0498310849070549, -0.02568727917969227, -0.06893488764762878, -0.047787778079509735, -0.029689721763134003, 0.08284740895032883, 0.013379006646573544, -0.058187440037727356, 0.00333004049025476, -0.007701738737523556, -0.1018759235739708, -0.0318395234644413, -0.0001489730493631214, -0.037233490496873856, 0.02576698362827301, -0.007475092075765133, 0.05002997815608978, -0.0523206852376461, -0.030237732455134392, 0.02113190107047558, 0.019722864031791687, 0.03413325548171997, -0.012341011315584183, 0.0402875654399395, 0.013994405046105385, -0.02309517189860344, 0.008115467615425587, 0.05727547034621239, 0.015010473318397999, -0.023851832374930382, -0.03133610263466835, 0.04248267784714699, 0.007851675152778625, 0.0077094389125704765, -0.011120349168777466, -0.0007557961507700384, 0.00550567964091897, 0.024147160351276398, -0.05841079726815224, 0.0051045543514192104, -0.0030239003244787455, -0.027600277215242386, -0.0295425895601511, -0.0447952002286911, 0.014470490626990795, 0.025564484298229218, 0.004896021913737059, 0.012558824382722378, -0.014192420057952404, 0.011444834060966969, -0.023640288040041924, -0.02276596985757351, -0.018671993166208267, 0.011418376117944717, 0.0647902563214302, -0.020710613578557968, 0.021454287692904472, -0.058436520397663116, 0.00816567987203598, -0.03214266523718834, -0.05396629497408867, -0.06023520603775978, -0.013009905815124512, -0.014608914963901043, -0.026575027033686638, -0.003731695469468832, 0.017546141520142555, -0.0315292589366436, 0.01529700867831707, 0.012998717837035656, -0.030895588919520378, 0.00807439535856247, -0.05292311683297157, -0.07217987626791, -0.04324837028980255, 0.002622948493808508, 0.016707561910152435, -0.019056055694818497, 0.0273592472076416, -0.0074499365873634815, 0.010747789405286312, 0.03155706822872162, 0.01923004724085331, 0.0023912228643894196, -0.006047326605767012, 0.01954488828778267, 0.01864292472600937, 0.006015246268361807, -0.057678405195474625, 0.02272922545671463, -0.037056997418403625, -0.023879999294877052, 0.00044214038643985987, 0.020121021196246147, -0.018191851675510406, -0.03460473194718361, -0.014527165330946445, 0.014443033374845982, -0.06424801796674728, -0.02242414653301239, -0.050441924482584, 0.040520355105400085, 0.06354419887065887, -0.02183346264064312, 0.016567736864089966, -0.022153213620185852, -0.0037498311139643192, 0.02147757261991501, -0.012340500950813293, -0.050491657108068466, -0.00830320455133915, -0.005644053686410189, 0.009319388307631016, 0.0007069859420880675, -0.00012588058598339558, 0.06293939054012299, 0.001142660970799625, 0.0021102242171764374, -0.046073537319898605, 0.008267476223409176, 0.01082330010831356, 0.04244130477309227, 0.012744755484163761, -0.0030649856198579073, -0.013652636669576168, -0.042994461953639984, -0.03695675730705261, -0.04001513868570328, -0.0035608322359621525, -0.005356387700885534, 0.009439699351787567, -0.04103197157382965, -0.054956719279289246, 0.05216250568628311, 0.029341839253902435, 0.018002402037382126, 0.04373282194137573, -0.022100990638136864, -0.011589867062866688, -0.03249453380703926, 0.028287049382925034, 0.07153967767953873, -0.0654926523566246, -0.004720122553408146, -0.0026178848929703236, -0.0021055990364402533, 0.010351252742111683, -0.02286173775792122, -0.028467949479818344, -0.017088674008846283, -0.05022896081209183, 0.03244565427303314, -0.06130698695778847, -0.015482820570468903, -0.043489500880241394, 0.026669710874557495, 0.0029880350921303034, 0.015267372131347656, -0.038957610726356506, -0.017146674916148186, -0.033379871398210526, -0.02158162370324135, 0.008476987481117249, -0.025428205728530884, 0.01024551596492529, 0.010461241938173771, -0.0730128213763237, -0.007563211489468813, -0.02691379003226757, 0.001670444500632584, 0.01629558578133583, -0.02598743885755539, -0.00031030847458168864, -0.022920725867152214, -0.0083468584343791, 0.01766427606344223, 0.0586511492729187, 0.016541993245482445, -0.031252674758434296, -0.04859580099582672, -0.0009247019770555198, -0.05708722397685051, 0.03143711015582085, -0.0008470147731713951, 0.00213244860060513, 0.03431699797511101, 0.05940629914402962, 0.03517591580748558, -0.00973297469317913, -0.03152131289243698, -0.020870383828878403, 0.040065038949251175, -0.04305291920900345, -0.035088781267404556, -0.01642768271267414, -0.05930706858634949, 0.019689183682203293, 0.021313171833753586, 0.02415451966226101, -0.034406375139951706, 0.05011213943362236, 0.03174120932817459, 0.027839481830596924, 0.01868513785302639, 0.01381148025393486, 0.025396816432476044, -0.05919906497001648, -0.0017890754388645291, -0.09279265254735947, 0.001571756787598133, 0.008378343656659126, 0.010461430065333843, -0.00855338852852583, -0.001953624887391925, -0.048010628670454025, 0.027272606268525124, -0.09868794679641724, -0.014276326633989811, 0.051466215401887894, -0.00032060331432148814, -0.021430764347314835, 0.015079217962920666, -0.09021725505590439, 0.015993427485227585, 0.0014429998118430376, -0.031481217592954636, -0.02127678506076336, -0.022927213460206985, 0.05102800205349922, 0.00826092716306448, 0.008122226223349571, -0.024537017568945885, 0.01628795638680458, 0.08532106876373291, 0.0129941301420331, -0.0063909911550581455, 0.05103667825460434, -0.008334632962942123, 0.04388395696878433, 0.044327475130558014, 0.0509057454764843, 0.006601264234632254, 0.003373878076672554, -0.03271389752626419, -0.06308935582637787, 0.04255149886012077, -0.0008201522286981344, -0.02165030874311924, -0.027279378846287727, 0.036922115832567215, 0.00409300671890378, -0.03262831270694733, -0.061533067375421524, -0.013260306790471077, -0.04240087419748306, -0.013034983538091183, -0.010496657341718674, -0.007362547796219587, -0.03152436763048172, 0.028340548276901245, -0.011497062630951405, 0.024869875982403755, 0.06411340087652206, -0.02227839268743992, -0.028371401131153107, -0.014570198953151703, 0.11556896567344666, 0.0662354975938797, 0.06691958010196686, 0.008502224460244179, 0.07780685275793076, -0.0005228535155765712, -0.05124868080019951, 0.01590752974152565, 0.0070013925433158875, -0.001662190305069089, -0.04120687395334244, 0.02851896919310093, 0.05174386128783226, -0.022933080792427063, 0.061083048582077026, -0.0032298786100000143, -0.019502347335219383, -0.009699485264718533, 0.05465678498148918, 0.008638618513941765, 0.061358172446489334, 0.026390274986624718, 0.012945149093866348, -0.033643338829278946, -0.0695895180106163, 0.028868164867162704, -0.014189072884619236, -0.018548468127846718, 0.009024202823638916, -0.01627068594098091, 0.027317671105265617, 0.008153248578310013, 0.05251380056142807, 0.06672361493110657, -0.022492635995149612, 0.03758307918906212, 0.014693553559482098, 0.020574890077114105, 0.008072901517152786, 0.016863247379660606, -0.016015151515603065, -0.0111868716776371, 0.005402049049735069, -0.019704705104231834, -0.03751398250460625, -0.010741989128291607, 0.005210931412875652, 0.014138949103653431, -0.049485187977552414, 0.01639699935913086, 0.032533638179302216, -0.00095649145077914, -0.03556905686855316, -0.06431961804628372, -0.032118793576955795, -0.012196472845971584, -0.04247209057211876, -0.010525308549404144, 0.01728389970958233, -0.01303122565150261, -0.03550421819090843, -0.0059606656432151794, 0.004265323746949434, -0.03771870210766792, 0.057317424565553665, -0.06849882006645203, -0.024273144081234932, 0.013592836447060108, 0.029738428071141243, 0.03302536532282829, 0.004288295283913612, 0.041624341160058975, -0.016308829188346863, -0.015250960364937782, 0.03221646696329117, -0.0001056080000125803, 0.019278977066278458, 0.008653654716908932, 0.016346197575330734, -0.0915353000164032, 0.030144862830638885, 0.02638060599565506, -0.016285067424178123, -0.06525936722755432, 0.024879345670342445, 0.032792046666145325, 0.004654719959944487, 0.04828433692455292, 0.010460086166858673, 0.03652399033308029, -0.03694356977939606, -0.000009632086403144058, 0.0064933449029922485, -0.015484001487493515, 0.04701216146349907, -0.029646966606378555, 0.07984355092048645, 0.013320699334144592, -0.0008418040815740824, -0.0372072272002697, -0.027736898511648178, 0.014902863651514053, 0.004632208496332169, -0.03695741668343544, -0.006979567930102348, -0.01552255917340517, -0.07426238805055618, -0.007178719155490398, 0.01620270498096943, -0.041019245982170105, -0.03539768233895302, 0.024821117520332336, 0.0019761212170124054, -0.013237264938652515, 0.02499353513121605, -0.03384126350283623, 0.024944763630628586, -0.012257276102900505, 0.0032438146881759167, -0.0010208614403381944, 0.038458555936813354, 0.017794562503695488, -0.019545255228877068, 0.02383698895573616, -0.043385978788137436, -0.006612543947994709, -0.014595183543860912, 0.017153354361653328, 0.0546959713101387, 0.0015295431949198246, -0.033239781856536865 ]
[ -0.08291465789079666, 0.017393499612808228, -0.006937623023986816, -0.01864044927060604, 0.01164870522916317, 0.0048945192247629166, -0.002112032612785697, -0.004112620837986469, -0.026804395020008087, -0.019809281453490257, 0.02198743261396885, -0.010798560455441475, 0.010414272546768188, 0.014978400431573391, 0.0841788575053215, -0.0014448004076257348, -0.04861220717430115, -0.08029258251190186, -0.026159169152379036, 0.022753121331334114, 0.013626864179968834, -0.018495911732316017, -0.0213916078209877, -0.012271208688616753, 0.07126468420028687, -0.009679798036813736, 0.048706673085689545, -0.011158215813338757, -0.00412172032520175, -0.12434086203575134, 0.0011347174877300858, 0.02224764972925186, 0.029153069481253624, -0.01337402779608965, -0.027194583788514137, 0.08415241539478302, 0.026855921372771263, 0.012899890542030334, 0.020241491496562958, 0.04349985718727112, -0.0008091675117611885, 0.015372934751212597, -0.04049021005630493, -0.030593562871217728, 0.05066371709108353, 0.026625219732522964, 0.005162232555449009, -0.026443036273121834, 0.007784562651067972, 0.005088441073894501, -0.10163834691047668, -0.046214863657951355, -0.030929964035749435, 0.004084445536136627, 0.001226963591761887, 0.0192464180290699, 0.041463710367679596, 0.027584796771407127, 0.003633338725194335, 0.04242491349577904, 0.014893392100930214, -0.004055135417729616, -0.15001167356967926, 0.08537866920232773, 0.022610316053032875, 0.03418092802166939, -0.04669049009680748, 0.0032471257727593184, -0.01178835704922676, 0.05863339081406593, 0.007012225221842527, -0.027207009494304657, -0.020398922264575958, 0.04527454078197479, 0.019338972866535187, 0.0034306978341192007, -0.004516246262937784, 0.022547099739313126, 0.026197299361228943, -0.026146505028009415, -0.007183221634477377, 0.03745885193347931, -0.03262767195701599, -0.01573980785906315, -0.04310311749577522, 0.058854177594184875, -0.015109491534531116, 0.018795259296894073, -0.005145366303622723, 0.04802284762263298, 0.047401756048202515, 0.0016128834104165435, 0.028064165264368057, 0.009451879188418388, -0.10025004297494888, -0.04786672443151474, -0.016111530363559723, 0.034461863338947296, -0.07336387038230896, 0.42322272062301636, 0.014633072540163994, -0.01161283254623413, 0.09728952497243881, 0.04434829205274582, -0.010933522135019302, 0.013495231978595257, 0.03506109118461609, -0.06175954267382622, 0.029372334480285645, -0.004317798651754856, 0.008163565769791603, 0.015209243632853031, 0.023624440655112267, -0.07243365794420242, 0.021562717854976654, 0.05826166272163391, 0.04490431025624275, 0.006042173597961664, -0.01234594639390707, 0.006490712519735098, -0.015719199553132057, 0.026416385546326637, 0.0018691153964027762, 0.008231726475059986, -0.07004556804895401, -0.08955133706331253, 0.021458445116877556, 0.03875822201371193, 0.047352135181427, -0.020445700734853745, 0.04046918824315071, -0.05108025297522545, -0.058126889169216156, 0.016914375126361847, -0.01904885843396187, 0.013781513087451458, 0.03783369064331055, -0.017960291355848312, 0.022528747096657753, 0.037644222378730774, 0.019235385581851006, -0.002507290570065379, -0.009935222566127777, -0.044846080243587494, -0.05600978434085846, 0.08456716686487198, 0.05841866508126259, -0.03562847897410393, 0.008387958630919456, 0.0312601774930954, -0.01364103052765131, 0.013429021462798119, 0.016525475308299065, -0.05871893838047981, 0.01902708038687706, -0.015098846517503262, 0.07964245975017548, -0.013136789202690125, -0.08016921579837799, -0.013182302936911583, -0.03362288698554039, -0.026886023581027985, -0.06504878401756287, 0.009591466747224331, 0.07001073658466339, -0.08439689874649048, -0.037240345031023026, 0.03036663495004177, 0.0021410409826785326, -0.0708247497677803, -0.014093741774559021, 0.024504952132701874, -0.06025192141532898, 0.024780776351690292, 0.10924889892339706, 0.002072826260700822, -0.024388208985328674, -0.00047227213508449495, 0.0008935286314226687, 0.026259131729602814, 0.012742836028337479, -0.02870728261768818, -0.010323693044483662, -0.007320305332541466, -0.049370139837265015, -0.06763095408678055, -0.028801849111914635, -0.02674734778702259, -0.0018298047361895442, -0.029016457498073578, -0.0029882786329835653, -0.014512457884848118, -0.07431676983833313, 0.1009141355752945, -0.027520351111888885, -0.02995731495320797, 0.001198092009872198, -0.004930710885673761, -0.009572839364409447, -0.02379743568599224, -0.08928981423377991, -0.003089936450123787, -0.048296064138412476, -0.005292227026075125, -0.056989636272192, 0.043971333652734756, 0.062271226197481155, -0.023355621844530106, 0.11166519671678543, 0.056309979408979416, -0.061050910502672195, -0.01999683491885662, 0.00026741839246824384, 0.0491337813436985, 0.011865515261888504, 0.002690818626433611, 0.02009214647114277, 0.018679969012737274, 0.011560126207768917, 0.0012788252206519246, 0.011310874484479427, -0.03143114596605301, -0.01650690659880638, -0.33733752369880676, -0.012661896646022797, -0.04145045205950737, -0.01770024001598358, 0.01055444311350584, -0.030990833416581154, -0.009633459150791168, -0.006336632184684277, 0.02948773466050625, 0.024752166122198105, 0.04731767624616623, -0.025478744879364967, 0.02386557124555111, -0.08546248078346252, -0.013934201560914516, 0.009581049904227257, -0.040239494293928146, -0.030993664637207985, -0.016700047999620438, -0.010429872199892998, 0.040660541504621506, 0.022950755432248116, -0.049917083233594894, -0.06905186921358109, 0.0025395865086466074, -0.03500967100262642, 0.09373956173658371, 0.0466482974588871, 0.06625707447528839, -0.04943336546421051, 0.05293736606836319, 0.011878766119480133, 0.04171701520681381, -0.10074562579393387, -0.006432450842112303, -0.04650314524769783, 0.01345448475331068, -0.06041644513607025, -0.0037926784716546535, -0.04872356727719307, -0.04779280349612236, 0.04078839346766472, -0.06425341218709946, -0.03631477430462837, -0.13005372881889343, 0.01124074961990118, -0.029807522892951965, -0.004515734501183033, 0.001968479948118329, 0.06650032103061676, 0.016133982688188553, 0.004565614741295576, -0.001848476706072688, -0.013941473327577114, -0.014415422454476357, -0.006212942767888308, -0.10513990372419357, 0.009118447080254555, 0.0014430019073188305, 0.018097465857863426, 0.019720561802387238, 0.08956699818372726, 0.03986334800720215, -0.03883393853902817, -0.02018880657851696, 0.002767495345324278, 0.013221469707787037, 0.03674054890871048, 0.01571372151374817, -0.009003616869449615, -0.009203343652188778, 0.059000879526138306, -0.012852208688855171, 0.005080867558717728, 0.045288167893886566, 0.014368447475135326, -0.018428359180688858, 0.012835348024964333, 0.012682034634053707, 0.0267013031989336, -0.020418046042323112, -0.04067966341972351, 0.008956820704042912, 0.0032040877267718315, -0.037225741893053055, 0.03024085983633995, 0.004331645555794239, -0.08658819645643234, 0.06378137320280075, 0.04467160627245903, -0.04575251787900925, 0.026423387229442596, -0.051981084048748016, -0.042991381138563156, 0.05958675593137741, -0.0029175509698688984, -0.23057527840137482, 0.018624138087034225, 0.024775465950369835, 0.05897001177072525, -0.0030298219062387943, 0.0004925121902488172, 0.03608168289065361, -0.03176426514983177, 0.006812612526118755, 0.06174410507082939, 0.0686083436012268, 0.03359830752015114, -0.011832830496132374, 0.00009062419849215075, 0.024067413061857224, -0.007780265528708696, 0.03255413472652435, 0.02878369577229023, 0.036420997232198715, 0.020625784993171692, 0.0092932665720582, -0.0032927566207945347, 0.14219413697719574, 0.04558055102825165, 0.012255162000656128, 0.0011873289477080107, -0.00018393388018012047, -0.0056409770622849464, 0.04503187909722328, -0.02012040466070175, 0.005805478431284428, 0.04605347290635109, 0.011793571524322033, 0.021434329450130463, 0.03324170783162117, -0.07497907429933548, -0.050967708230018616, 0.04918237030506134, 0.01430931780487299, -0.020886003971099854, -0.016911035403609276, 0.03546078875660896, -0.025548305362462997, 0.07621388137340546, 0.10178148001432419, -0.024334317073225975, -0.01858295127749443, -0.03174237161874771, -0.07178323715925217, -0.046355150640010834, -0.03295321390032768, 0.010092462413012981, 0.011001907289028168, 0.006017903331667185, 0.018391210585832596, 0.08398138731718063, 0.03716161102056503, -0.03101692907512188, 0.01808912865817547, -0.02687881514430046, -0.021187014877796173, 0.0015596970915794373, 0.07393930852413177, 0.04997333511710167, 0.02493859827518463 ]
[ -0.029661795124411583, -0.005139382556080818, 0.019118130207061768, -0.01168119627982378, 0.025128507986664772, 0.023128382861614227, -0.006876207888126373, 0.02106604352593422, -0.006866128649562597, 0.015278827399015427, -0.02545449137687683, 0.026642845943570137, 0.0011671854881569743, -0.01648612879216671, 0.016040444374084473, -0.01498531736433506, -0.01871727965772152, -0.036270622164011, 0.006457321345806122, 0.012339144013822079, 0.0030945944599807262, 0.0086903041228652, -0.009378594346344471, -0.01864776760339737, -0.01637733355164528, -0.006401971913874149, 0.01328220870345831, -0.018510419875383377, 0.006846270058304071, -0.13222460448741913, -0.01829724758863449, 0.034957803785800934, -0.029236452654004097, -0.013676791451871395, -0.0004530473961494863, 0.016995906829833984, -0.0029614304658025503, 0.040424589067697525, 0.017259659245610237, -0.026272807270288467, -0.012849959544837475, 0.0007217029924504459, 0.004733615089207888, -0.00499254884198308, 0.01493066269904375, -0.008618257939815521, 0.027588972821831703, -0.048687100410461426, -0.01639542728662491, -0.0361781008541584, -0.04222358390688896, -0.003202735213562846, -0.002096094423905015, -0.006717530079185963, 0.0032684425823390484, 0.03407833352684975, 0.015298660844564438, -0.014435026794672012, -0.01729174517095089, -0.025445623323321342, -0.02671751379966736, -0.02178524062037468, -0.057976461946964264, -0.02704310603439808, 0.007750305812805891, -0.011781171895563602, -0.046731192618608475, 0.02749296836555004, -0.04116018861532211, 0.008463073521852493, -0.008193849585950375, -0.006426622159779072, -0.020596792921423912, -0.0438355877995491, 0.0166311077773571, -0.0048880972899496555, 0.0019059993792325258, -0.018693707883358, 0.030223913490772247, -0.013886857777833939, -0.06265166401863098, 0.027395784854888916, 0.04048987105488777, -0.02163541130721569, -0.01581382565200329, 0.011769747361540794, -0.007192161865532398, -0.009068075567483902, 0.0066212378442287445, 0.01599712111055851, 0.005694545339792967, 0.016066191717982292, -0.01558778341859579, 0.017179202288389206, -0.11608840525150299, -0.0016713675577193499, -0.038807544857263565, -0.0049184774979949, 0.002147818449884653, 0.8442018032073975, 0.01604788564145565, 0.006222756579518318, 0.05660447105765343, -0.001371054328046739, -0.0016721332212910056, -0.006684080231934786, 0.03897320106625557, 0.0024358662776649, -0.005008223466575146, -0.028866680338978767, 0.01729889214038849, 0.004287516698241234, 0.01879013702273369, -0.0010544132674112916, 0.007546982262283564, 0.05911969020962715, 0.015949860215187073, 0.03361902013421059, -0.003018043702468276, 0.025524450466036797, 0.023442452773451805, 0.045790500938892365, 0.005706158932298422, 0.019478099420666695, -0.02482391707599163, -0.21109981834888458, -0.024715332314372063, -7.499031680924228e-33, 0.02622060663998127, 0.0031391202937811613, 0.01230711955577135, -0.0009565186337567866, -0.011682631447911263, -0.014034775085747242, 0.01052781566977501, 0.022332988679409027, 0.019506910815835, 0.0026504406705498695, -0.006096139550209045, -0.000598330341745168, -0.025802409276366234, -0.045824844390153885, 0.021141143515706062, -0.000368073204299435, -0.024000952020287514, 0.03803153336048126, -0.015118081122636795, 0.020368043333292007, 0.03986587002873421, 0.03891513869166374, -0.000285621325019747, -0.01838010922074318, 0.041547056287527084, 0.0363650880753994, 0.013817925937473774, -0.03092077374458313, -0.03036053478717804, -0.03396084904670715, -0.03328459709882736, 0.042377129197120667, -0.00805758312344551, -0.06300471723079681, 0.007034759037196636, -0.020403582602739334, -0.0219326950609684, 0.025473717600107193, -0.013613861985504627, -0.003739346982911229, -0.049581438302993774, -0.012879189103841782, -0.03542238101363182, 0.027142668142914772, -0.0046506235376000404, 0.007409097161144018, 0.04685031995177269, 0.021913323551416397, 0.017124682664871216, 0.031220829114317894, -0.019869890064001083, -0.0429174043238163, 0.009989318437874317, -0.013634876348078251, 0.0024781490210443735, 0.015516893938183784, -0.005638367496430874, 0.015584850683808327, 0.02786029875278473, 0.011795558035373688, 0.04075445979833603, 0.0028063945937901735, -0.02522687427699566, 0.025586051866412163, -0.013332773000001907, 0.012722570449113846, 0.018417328596115112, 0.006374839693307877, 0.028747176751494408, -0.024997025728225708, -0.05824292078614235, -0.007397292647510767, 0.025148577988147736, -0.016246529296040535, 0.0028956730384379625, -0.0052729081362485886, 0.0004132194153498858, 0.033911604434251785, -0.00398015882819891, 0.049114059656858444, 0.026976866647601128, -0.004320030566304922, -0.024751078337430954, -0.025882769376039505, 0.0001832455600379035, 0.04511032998561859, 0.045069631189107895, -0.02912321127951145, 0.006952797528356314, 0.007810393813997507, 0.046027421951293945, -0.014623019844293594, -0.021345453336834908, -0.020981187000870705, -0.0065277642570436, 6.941488098173493e-33, 0.02277088537812233, -0.021263446658849716, 0.005392586812376976, -0.021517930552363396, 0.0620320588350296, -0.010062845423817635, 0.015905113890767097, -0.009588204324245453, -0.059509579092264175, 0.009757098741829395, -0.05260219797492027, -0.004110004752874374, -0.018940532580018044, 0.009828444570302963, 0.006633623503148556, -0.026777027174830437, 0.02284112200140953, -0.002614892553538084, 0.02885962650179863, 0.029971320182085037, -0.007085340563207865, 0.006732414476573467, -0.013027029111981392, -0.0022554388269782066, 0.022800393402576447, 0.053698886185884476, -0.021673399955034256, 0.016444580629467964, 0.014798303134739399, 0.017025060951709747, -0.014975793659687042, 0.01253923773765564, -0.010433702729642391, -0.01459355279803276, -0.02187538892030716, 0.005242350045591593, -0.0072019062936306, 0.015611638315021992, -0.025786472484469414, 0.020836513489484787, -0.005290785804390907, -0.014983872883021832, 0.02564520761370659, 0.02148565463721752, 0.0025719250552356243, -0.008833659812808037, -0.026971640065312386, 0.00639430433511734, -0.020414229482412338, -0.004122049082070589, 0.004995282273739576, 0.010555973276495934, -0.0009456813568249345, -0.03257489204406738, 0.010085905902087688, -0.035727813839912415, -0.02662077359855175, 0.0027177438605576754, 0.005343826487660408, 0.0222109854221344, -0.015258464962244034, 0.00034447674988768995, -0.004218357149511576, 0.011136360466480255, -0.003949370235204697, 0.007101486437022686, 0.019728107377886772, 0.015422796830534935, -0.009251422248780727, 0.0032354684080928564, -0.02762800082564354, -0.0013755036052316427, 0.02168465591967106, 0.03457053005695343, -0.0016565046971663833, -0.010491752065718174, -0.026285767555236816, -0.007744429633021355, -0.02083321288228035, 0.044868409633636475, -0.010784314014017582, 0.011130577884614468, -0.029658909887075424, 0.003009297652170062, -0.005259029101580381, 0.03549722209572792, -0.00040450430242344737, 0.032427553087472916, 0.01348079927265644, -0.03461264818906784, 0.008766521699726582, -0.01833147183060646, 0.0010039847111329436, 0.012240741401910782, -0.04306739941239357, -1.3110471819288705e-8, -0.0018128453521057963, -0.013294517993927002, -0.013430023565888405, -0.01420186460018158, 0.024241318926215172, 0.0019499363843351603, -0.018087366595864296, -0.007553536910563707, 0.010519670322537422, 0.03778631612658501, 0.03668460622429848, -0.015069793909788132, 0.00991768203675747, 0.008770703338086605, 0.01535364706069231, -0.036910999566316605, 0.005864682141691446, 0.009656942449510098, 0.02279570885002613, 0.021939342841506004, 0.04533601179718971, 0.06156926602125168, -0.007067095022648573, -0.027732843533158302, 0.033415794372558594, 0.0009000360150821507, -0.03228536993265152, -0.07521356642246246, -0.005175224505364895, -0.006141506601125002, 0.040606800466775894, 0.005505099426954985, -0.018658563494682312, 0.01781751774251461, -0.021941278129816055, -0.05205743387341499, 0.025034835562109947, 0.005180228501558304, -0.020371925085783005, -0.013298938982188702, -0.019125331193208694, 0.002740412252023816, 0.01832684315741062, -0.017571883276104927, -0.026256177574396133, -0.013263524509966373, -0.016281886026263237, -0.016752267256379128, 0.0218065045773983, -0.03873124346137047, -0.01164244581013918, 0.009725036099553108, 0.0352933369576931, 0.005045617930591106, 0.01960361748933792, -0.004893794655799866, 0.0071060918271541595, 0.01795506477355957, -0.052751459181308746, -0.021843964233994484, 0.01780344359576702, -0.009174082428216934, -0.028117399662733078, -0.02633204311132431 ]
the-adventures-of-johnny-bunko-the-last-career-guide-youll-ever-need-book-review
https://markhneedham.com/blog/2010/11/21/the-adventures-of-johnny-bunko-the-last-career-guide-youll-ever-need-book-review
false
2010-11-09 18:37:10
Active Record: Nested attributes
[ "ruby", "active-record" ]
[ "Ruby" ]
I recently learnt about quite a neat feature of Active Record called http://api.rubyonrails.org/classes/ActiveRecord/NestedAttributes/ClassMethods.html[nested attributes] which allows you to save attributes on associated records of a parent model. It's been quite useful for us as we have a few pages in our application where the user is able to update models like this. We would typically end up with parameters coming into the controller like this: [source,ruby] ---- class FoosController < ApplicationController def update # params = { :id => "1", :foo => { :baz => "new_baz", :bar_attributes => { :value => "something" } } } Foo.update_instance(params[:id], params[:foo]) ... end end ---- Our original implementation of 'update_instance' looked like this: [source,ruby] ---- class Foo < ActiveRecord::Base has_one :bar class << self def update_instance(id, attributes_to_update) instance = Foo.find(id) instance.attributes = attributes_to_update instance end end end ---- Unfortunately when we execute that code the 'bar' association gets completely removed because we didn't specify the id of 'bar' when we were updating the attributes. We need to change the code slightly to make sure it doesn't do that: [source,ruby] ---- class Foo < ActiveRecord::Base has_one :bar class << self def update_instance(id, attributes_to_update) instance = Foo.find(id) attributes_to_update[:bar_attributes][:id] = instance.bar.id instance.attributes = attributes_to_update instance end end end ---- It now works as we'd expect. There's other cool stuff that you can do with nested attributes described on the documentation page if you have 'has_many' associations but for now we're just using the simpler 'has_one'.
null
null
[ 0.01393295917659998, 0.020959271118044853, -0.01996844820678234, 0.044738125056028366, 0.060619622468948364, -0.004627002403140068, 0.030253099277615547, -0.007111594080924988, 0.016462106257677078, -0.030202072113752365, -0.03770320862531662, -0.014350468292832375, -0.08174707740545273, 0.03907313570380211, 0.013848358765244484, 0.06504101306200027, 0.055328529328107834, 0.009781123138964176, 0.012462382204830647, -0.00640055863186717, 0.01701992377638817, 0.08122119307518005, -0.00536710349842906, 0.02597794495522976, 0.03606598451733589, 0.012214327231049538, 0.011465846560895443, -0.006284302566200495, -0.06595451384782791, -0.005900965537875891, -0.009502758271992207, -0.015168112702667713, 0.006336029153317213, 0.032841093838214874, 0.040111690759658813, -0.006266798358410597, -0.005628645420074463, -0.025025928393006325, -0.011271929368376732, 0.0064004757441580296, -0.059057172387838364, 0.04595967009663582, -0.012188918888568878, 0.004365789704024792, -0.03037995845079422, 0.003015683963894844, -0.06057422235608101, 0.0307668074965477, 0.02889421582221985, -0.010995863005518913, -0.07065516710281372, 0.02678215317428112, -0.012674892321228981, -0.014374502003192902, 0.02218269743025303, 0.0470539927482605, -0.007759954780340195, -0.07516796141862869, 0.05219390615820885, -0.027021687477827072, -0.002389715053141117, 0.03495330363512039, 0.006075452547520399, 0.012709778733551502, 0.04273609444499016, -0.014577874913811684, -0.018559521064162254, 0.0472085066139698, -0.04168131202459335, -0.001777640893124044, -0.026821820065379143, -0.040897440165281296, -0.004101017955690622, -0.02210143581032753, 0.01393767911940813, -0.016924023628234863, -0.013786793686449528, 0.04387913644313812, 0.013948025181889534, 0.050749294459819794, -0.0000715863352525048, -0.017213672399520874, -0.006135760806500912, 0.016748204827308655, 0.015221618115901947, -0.03414330631494522, -0.052108488976955414, 0.005240918602794409, -0.06113540381193161, 0.05409737303853035, 0.007341648451983929, -0.045669738203287125, 0.0477132573723793, 0.019173134118318558, -0.03966633975505829, -0.019770711660385132, -0.036264944821596146, -0.002150443382561207, 0.0047716908156871796, -0.013430765829980373, -0.039135001599788666, -0.020665602758526802, 0.01117624994367361, -0.026617921888828278, -0.08377557247877121, 0.007517732679843903, -0.05101269111037254, -0.02254222333431244, 0.010143138468265533, -0.021480614319443703, -0.04062001407146454, 0.018827497959136963, -0.03332279622554779, 0.0037131363060325384, -0.07238084077835083, 0.05201715603470802, 0.002760204253718257, -0.027569888159632683, -0.02935555949807167, 0.0020950455218553543, 0.05655670166015625, 0.01702759973704815, 0.02699391171336174, 0.060559071600437164, 0.003841706784442067, -0.020481416955590248, -0.03755569830536842, 0.054998982697725296, -0.026126354932785034, -0.06894592195749283, -0.02830233797430992, 0.058083582669496536, 0.01743147522211075, 0.03852236270904541, -0.0005056901136413217, -0.012365543283522129, -0.017429111525416374, 0.0035158111713826656, 0.05282973498106003, 0.03717482462525368, -0.021830929443240166, -0.023030446842312813, -0.006225732620805502, 0.019609056413173676, 0.018778560683131218, 0.00646651815623045, 0.0018118805019184947, -0.03811294957995415, -0.006561418995261192, 0.012184740975499153, 0.036543089896440506, 0.044514674693346024, 0.045594315975904465, -0.041411031037569046, -0.00023316005535889417, 0.06849253922700882, 0.01509939320385456, 0.004829219542443752, -0.010179811157286167, -0.0004428165266290307, 0.036715999245643616, 0.0520625077188015, 0.03708314523100853, 0.049178093671798706, 0.04134497418999672, -0.021915752440690994, 0.011094874702394009, 0.051588382571935654, 0.029645362868905067, -0.03985856845974922, -0.0662873163819313, -0.05560487136244774, 0.07498882710933685, -0.033672019839286804, -0.012156078591942787, 0.05718417465686798, 0.07637189328670502, 0.017038268968462944, 0.054738953709602356, -0.003396342508494854, -0.0819355696439743, 0.022896897047758102, -0.006291571538895369, 0.018086984753608704, 0.02936493419110775, -0.013289816677570343, 0.07439157366752625, 0.010115877725183964, 0.031763382256031036, 0.02459263615310192, -0.051060933619737625, -0.04834066703915596, -0.0016655876534059644, -0.04672306030988693, 0.0758981853723526, -0.028953976929187775, 0.0026414962485432625, 0.047225650399923325, 0.04497916251420975, 0.054480742663145065, 0.027031101286411285, -0.0077934954315423965, -0.031788382679224014, -0.03974134102463722, -0.017854461446404457, 0.023692065849900246, 0.054880134761333466, -0.032931022346019745, -0.05187305435538292, 0.004004179034382105, -0.0501483790576458, -0.024094706401228905, 0.045521821826696396, 0.004628020338714123, 0.02323426678776741, 0.028010716661810875, 0.02545175328850746, -0.023745624348521233, 0.04626946151256561, -0.05270955339074135, -0.003975404426455498, 0.03890545666217804, -0.03059818223118782, -0.03703298047184944, -0.01022022683173418, 0.11738695204257965, 0.030559489503502846, 0.014290916733443737, -0.04800079017877579, 0.0015685881953686476, 0.059563104063272476, -0.021564314141869545, 0.015201606787741184, -0.014677053317427635, 0.022205473855137825, 0.011841448955237865, -0.030666375532746315, -0.022178635001182556, 0.03633485734462738, -0.03104894980788231, -0.019963357597589493, 0.06684957444667816, -0.00736308004707098, 0.031196676194667816, 0.02291373908519745, -0.013251510448753834, 0.03035641647875309, -0.02146178111433983, -0.06213415786623955, 0.02906787395477295, 0.027951378375291824, -0.027756324037909508, 0.04902797192335129, -0.02118772268295288, -0.016897987574338913, -0.022398291155695915, -0.049455396831035614, 0.025949053466320038, 0.01714067906141281, 0.047400232404470444, 0.005004493985325098, 0.04560716822743416, -0.042213715612888336, -0.010913711972534657, -0.015665553510189056, -0.04405383765697479, -0.00498858792707324, 0.007043680641800165, 0.019713636487722397, 0.020811835303902626, 0.018661171197891235, 0.009503013454377651, 0.02917967550456524, 0.007236149627715349, 0.028134718537330627, 0.055787526071071625, 0.040487904101610184, -0.004371021408587694, -0.002143597463145852, -0.017184697091579437, -0.07515093684196472, 0.041168298572301865, -0.023504048585891724, -0.056096144020557404, 0.01140030100941658, -0.10440874844789505, 0.033485058695077896, -0.07360740005970001, -0.04444340243935585, -0.01084304228425026, 0.004648115020245314, 0.01585317961871624, 0.0020223762840032578, 0.008692599833011627, 0.06677283346652985, 0.03043978475034237, 0.03377600386738777, 0.01932564564049244, 0.019410064443945885, 0.03359238803386688, -0.014766795560717583, -0.028435081243515015, 0.03920760750770569, -0.011859863996505737, 0.03034687042236328, -0.01246082317084074, -0.010297480039298534, 0.012041150592267513, -0.2544490396976471, 0.02685633860528469, -0.048657309263944626, -0.06736457347869873, 0.02233467623591423, -0.019461072981357574, 0.010111025534570217, -0.02697615511715412, -0.029706615954637527, 0.021165134385228157, -0.024539412930607796, -0.04260553419589996, -0.00010461355850566179, 0.045623816549777985, -0.01209739875048399, 0.018626034259796143, -0.011170567944645882, -0.03306598961353302, -0.0342741459608078, 0.018940646201372147, 0.01305450964719057, -0.06004267558455467, -0.0016242299461737275, 0.07758764177560806, 0.018027037382125854, 0.030403761193156242, -0.07987953722476959, 0.013915657065808773, -0.04012652486562729, -0.031644098460674286, 0.05747020244598389, -0.03684831038117409, -0.02457011677324772, -0.03891961649060249, -0.03339895233511925, -0.025457758456468582, 0.03516148775815964, 0.02726760134100914, 0.026462538167834282, -0.01124967448413372, -0.020757537335157394, -0.023077188059687614, -0.012996814213693142, 0.026136241853237152, 0.08243414759635925, -0.02879376895725727, -0.07292104512453079, -0.021721994504332542, -0.030426418408751488, 0.0531204529106617, -0.02001088671386242, -0.046522073447704315, 0.0320536270737648, 0.040189869701862335, -0.00007609232852701098, -0.025124551728367805, 0.025301119312644005, -0.011732906103134155, -0.05305897444486618, -0.03345193713903427, -0.024065637961030006, -0.05581926181912422, 0.010817470960319042, -0.03516204282641411, 0.0028107515536248684, -0.028668934479355812, -0.05437234416604042, -0.010072492063045502, 0.045240938663482666, 0.05081455409526825, -0.04860365018248558, -0.0017023810651153326, -0.046095799654722214, -0.10196267068386078, 0.003940693102777004, -0.0342700369656086, 0.009482307359576225, -0.02696054056286812, -0.025114985182881355, 0.046861641108989716, -0.013010491617023945, -0.020308971405029297, 0.023589124903082848, 0.01903310790657997, 0.029731493443250656, 0.012334862723946571, 0.05032915994524956, -0.012340626679360867, 0.0057316976599395275, -0.020064741373062134, 0.08661918342113495, -0.008194606751203537, 0.006591639947146177, -0.0156785286962986, -0.0023191829677671194, 0.03974411264061928, 0.02092057839035988, -0.01918674260377884, 0.038353331387043, 0.014893611893057823, 0.028280463069677353, -0.03500306233763695, 0.024669099599123, 0.0032847230322659016, -0.03379250317811966, -0.005306736566126347, -0.053267378360033035, 0.0006744660204276443, 0.00797007605433464, -0.009698950685560703, -0.04231150075793266, -0.04195413738489151, 0.013375098817050457, -0.07214310765266418, -0.027878548949956894, -0.0290683563798666, 0.003175114979967475, 0.016092894598841667, 0.018700841814279556, 0.024607006460428238, -0.07213526219129562, 0.02018127590417862, -0.005284453742206097, 0.018331345170736313, -0.08543086051940918, -0.06230195611715317, 0.019399063661694527, -0.005221636965870857, -0.010026345029473305, 0.00371771352365613, 0.03964177891612053, 0.00238404655829072, 0.009462183341383934, -0.03450055792927742, 0.024737684056162834, 0.011287031695246696, -0.026647381484508514, -0.0391717329621315, -0.0048350184224545956, -0.04506491497159004, -0.007898696698248386, -0.018917487934231758, 0.012297703884541988, 0.016616683453321457, 0.03350332751870155, 0.022614043205976486, 0.0557352639734745, 0.022568242624402046, 0.021336188539862633, -0.01800401136279106, 0.004092726856470108, -0.04053012654185295, -0.00451948307454586, -0.01835046522319317, -0.013657056726515293, -0.02626802958548069, 0.043790705502033234, -0.03004431538283825, -0.03127686679363251, -0.00305360509082675, -0.00812315009534359, -0.04732711613178253, -0.02268887870013714, -0.006419594865292311, 0.007375194691121578, 0.08031255006790161, -0.041101280599832535, 0.004079298581928015, 0.017049960792064667, 0.009472533129155636, -0.009519062004983425, 0.0031568678095936775, -0.022374173626303673, 0.0037947322707623243, -0.010737297125160694, -0.02792654186487198, 0.008939423598349094, 0.025905834510922432, 0.03639205917716026, -0.006684753578156233, -0.003671185579150915, -0.005339419469237328, 0.03156648948788643, 0.039330605417490005, 0.01416862290352583, 0.026387527585029602, -0.04220231994986534, 0.0030278214253485203, -0.0005110452184453607, -0.026518313214182854, -0.025558164343237877, -0.01953449472784996, -0.029275279492139816, 0.008751841261982918, -0.009774530306458473, -0.07475194334983826, 0.011180787347257137, -0.014721465297043324, -0.0033316132612526417, -0.013773031532764435, 0.0026760122273117304, 0.011031534522771835, -0.025210587307810783, 0.013048107735812664, 0.05279375612735748, -0.03498021140694618, 0.00014565099263563752, 0.014317646622657776, -0.01694808155298233, 0.038075342774391174, 0.02303609624505043, -0.04532180353999138, -0.014761905185878277, 0.010914605110883713, 0.015532990917563438, -0.02212776429951191, -0.012186690233647823, 0.00469603156670928, -0.04687834903597832, -0.009674343280494213, 0.02020260877907276, -0.015703575685620308, 0.02479509823024273, -0.023004189133644104, -0.05552466958761215, -0.009689392521977425, 0.008726661093533039, 0.006887333933264017, -0.011208511888980865, -0.011133380234241486, 0.025105807930231094, -0.0024972395040094852, 0.02568904496729374, 0.022324983030557632, -0.02772045135498047, -0.021504445001482964, -0.05919022858142853, 0.023540275171399117, 0.005367387551814318, 0.019520454108715057, 0.008165844716131687, -0.006535539869219065, -0.026862584054470062, -0.01978107914328575, -0.014054663479328156, -0.031136998906731606, -0.014853176660835743, -0.024986542761325836, 0.03290332853794098, 0.01907089725136757, 0.012357709929347038, 0.03612438216805458, -0.016030900180339813, -0.007025022059679031, 0.031458303332328796, -0.06727436184883118, -0.026635704562067986, 0.0013990127481520176, -0.057666707783937454, 0.05306078493595123, 0.00602345447987318, 0.034822966903448105, -0.04103823006153107, 0.04878915846347809, 0.030119329690933228, 0.024897906929254532, 0.04450785741209984, -0.025567688047885895, 0.036223649978637695, -0.05142839998006821, 0.01727094128727913, -0.058516014367341995, 0.03401438519358635, 0.03713086247444153, 0.01250937394797802, -0.018663741648197174, -0.04132647439837456, -0.04965485259890556, 0.037354856729507446, -0.053632449358701706, -0.024841196835041046, 0.035327229648828506, 0.013794532045722008, -0.015458364970982075, 0.017137670889496803, -0.06715773791074753, 0.04654202237725258, 0.04334571212530136, -0.039637625217437744, 0.005314517300575972, -0.0030689588747918606, 0.03037826344370842, 0.02010122314095497, 0.014392461627721786, -0.022007280960679054, 0.00852200761437416, 0.07367978245019913, 0.04502443969249725, 0.055565688759088516, 0.049967311322689056, -0.03291504830121994, 0.04121677204966545, -0.021212538704276085, 0.026004161685705185, -0.01206828560680151, 0.029020285233855247, -0.006442180369049311, -0.06546827405691147, 0.03653806820511818, 0.01003833394497633, -0.03543799743056297, -0.043442897498607635, 0.05834820494055748, 0.026624837890267372, 0.011056749150156975, -0.043162088841199875, 0.021352356299757957, -0.04832051321864128, -0.03583258390426636, -0.03885636851191521, 0.023773500695824623, -0.052773769944906235, 0.07109420746564865, -0.005222216248512268, 0.004102263133972883, 0.05066148564219475, 0.015392405912280083, -0.024457724764943123, -0.04289909079670906, 0.10240363329648972, 0.10424424707889557, 0.06551575660705566, 0.015033039264380932, 0.07966367900371552, -0.007049149367958307, -0.045391544699668884, 0.019853051751852036, 0.005031564272940159, 0.03990647941827774, -0.009655408561229706, 0.0038993069902062416, 0.04951958730816841, -0.013108774088323116, 0.04366324096918106, -0.028450485318899155, -0.004209259524941444, 0.008427305147051811, 0.007447339128702879, 0.03637753799557686, 0.028477327898144722, 0.007101488299667835, 0.02868826873600483, -0.011172020807862282, -0.07499939203262329, 0.0054945810697972775, -0.002765471348538995, -0.01318498607724905, 0.02976168692111969, -0.029537243768572807, 0.018755681812763214, -0.008078793063759804, 0.049580805003643036, 0.0750230997800827, -0.05315452814102173, -0.02779165655374527, -0.006154072005301714, 0.021398182958364487, -0.038933753967285156, 0.007354271598160267, 0.015494652092456818, -0.05747183412313461, 0.00517352856695652, -0.05277324467897415, -0.030979974195361137, -0.0167616605758667, -0.01748237945139408, 0.03817857429385185, 0.01128603145480156, 0.005171256605535746, 0.059592824429273605, 0.02488429844379425, -0.03046567365527153, -0.028693752363324165, -0.08361271023750305, -0.009668649174273014, -0.05122765526175499, 0.012714141979813576, 0.02295372635126114, 0.0015669075073674321, -0.05496545135974884, -0.033333390951156616, -0.01926206424832344, 0.04686621576547623, 0.0499756820499897, -0.044270846992731094, -0.03457900881767273, -0.022535771131515503, 0.009405432268977165, 0.060671430081129074, 0.03933819755911827, 0.0277534369379282, 0.008633673191070557, -0.0010784618789330125, -0.01601124368607998, -0.033459410071372986, 0.04141959920525551, -0.012873388826847076, -0.006961929611861706, -0.07325174659490585, 0.012834187597036362, 0.060267455875873566, -0.03251947462558746, -0.0588940791785717, 0.010889267548918724, 0.02079012058675289, 0.023328818380832672, 0.06822340190410614, -0.03512758016586304, -0.02065572515130043, -0.031003441661596298, -0.0019296297105029225, 0.007795203477144241, 0.03635723143815994, 0.014112437143921852, -0.008566191419959068, 0.09698066115379333, 0.033296048641204834, 0.0005818870849907398, -0.005518370307981968, 0.004014382138848305, 0.005698520224541426, -0.016938986256718636, -0.029727362096309662, -0.016324790194630623, -0.037740059196949005, -0.05672174692153931, -0.05944878235459328, 0.02323291264474392, -0.01891504041850567, -0.031389541923999786, -0.004361997824162245, 0.03377820551395416, 0.0027826675213873386, 0.028802745044231415, -0.05776294320821762, 0.05549812316894531, -0.06902609765529633, -0.03193880617618561, -0.030891939997673035, -0.00940331257879734, -0.01020078081637621, -0.017492011189460754, 0.007469957694411278, -0.019350962713360786, 0.01373338233679533, -0.0605592206120491, 0.03953667730093002, 0.0027730572037398815, -0.02460695430636406, -0.005158315412700176 ]
[ -0.05229232460260391, -0.020819667726755142, -0.01448344998061657, -0.018550986424088478, 0.007593284361064434, -0.028536204248666763, 0.02746526710689068, -0.0045175496488809586, 0.026605019345879555, -0.03020525351166725, -0.02546406164765358, -0.06647196412086487, 0.006276475731283426, -0.02583821676671505, 0.030435392633080482, -0.022255849093198776, -0.017722973600029945, 0.0031850175000727177, -0.04749535396695137, 0.033091455698013306, -0.03903494030237198, -0.04633437842130661, -0.0025401837192475796, 0.01820971630513668, 0.01745607703924179, 0.05650917440652847, 0.02458694577217102, -0.01686558499932289, -0.049995142966508865, -0.23442091047763824, 0.025742972269654274, -0.00808989629149437, 0.046721767634153366, -0.010594283230602741, -0.012236524373292923, 0.020629027858376503, 0.05162105709314346, 0.054456550627946854, 0.05848482996225357, 0.09106625616550446, 0.021822793409228325, 0.04760388284921646, -0.061973027884960175, -0.034647271037101746, 0.008668971247971058, 0.08819039911031723, -0.011932208202779293, -0.01968253403902054, -0.005148789845407009, 0.01880878210067749, -0.012929045595228672, 0.022697214037179947, -0.02454274706542492, -0.00881882756948471, 0.027834026142954826, 0.042084548622369766, 0.03851690888404846, 0.02872019074857235, 0.010964822955429554, 0.054099369794130325, 0.030231578275561333, 0.02443401701748371, -0.12325636297464371, 0.06575679033994675, 0.00848363060504198, 0.06546036154031754, -0.02877514250576496, -0.04891836643218994, -0.024050990119576454, 0.09392885118722916, 0.007563537452369928, 0.01139153353869915, -0.024755937978625298, 0.04909968376159668, -0.0038784421049058437, -0.03618865832686424, 0.007845581509172916, 0.06126777082681656, 0.06012628600001335, -0.02749401144683361, -0.06935694068670273, -0.024574894458055496, -0.0018907412886619568, -0.03882349655032158, -0.011709677055478096, -0.0011387753766030073, 0.018900403752923012, -0.041706062853336334, 0.04459907487034798, 0.027422431856393814, -0.020394593477249146, -0.010169900953769684, 0.004600532818585634, 0.01521347090601921, -0.05933384597301483, -0.030771147459745407, -0.03724408894777298, 0.0011134801898151636, -0.06942496448755264, 0.3807425796985626, -0.023963812738656998, -0.019508734345436096, 0.023637693375349045, 0.025070391595363617, -0.07771023362874985, 0.002872633747756481, -0.009915824048221111, -0.05917734652757645, -0.032418087124824524, -0.01628432795405388, -0.012696527875959873, 0.007529672235250473, 0.007292838301509619, -0.06139591336250305, 0.013917573727667332, 0.005945422220975161, 0.02814936451613903, 0.010316349565982819, -0.015546366572380066, 0.005614403169602156, -0.013844734989106655, 0.01878082938492298, 0.04497490078210831, 0.038438502699136734, -0.026853350922465324, 0.005651150830090046, 0.07389523088932037, 0.09642994403839111, 0.0017781456699594855, 0.06356190145015717, 0.011928761377930641, -0.01582179218530655, -0.11667297780513763, -0.04248890280723572, -0.04146317020058632, 0.027903025969862938, 0.011547575704753399, 0.001541293691843748, 0.023403063416481018, 0.00633668527007103, -0.03914188966155052, -0.04246106743812561, 0.04649181291460991, 0.010076439008116722, -0.0575062558054924, 0.10971228778362274, -0.03292063623666763, -0.006360065191984177, -0.02410830929875374, -0.017043476924300194, -0.06545393168926239, 0.07492835819721222, 0.02170347422361374, -0.02910790778696537, -0.02416963316500187, 0.015506167896091938, 0.021146481856703758, -0.017772436141967773, -0.019577672705054283, -0.02641977183520794, -0.031681809574365616, -0.05235112085938454, 0.00787397287786007, 0.02663177251815796, 0.016710607334971428, -0.14911985397338867, -0.017698725685477257, -0.01979096047580242, 0.046209946274757385, -0.06421303749084473, 0.029787994921207428, 0.05113815888762474, -0.03869420289993286, -0.00863849651068449, 0.06925243884325027, -0.016553305089473724, -0.03189505636692047, -0.04212961345911026, 0.03146551921963692, -0.0029758214950561523, 0.036814067512750626, -0.029308965429663658, -0.016841281205415726, -0.00013769410725217313, -0.04290604218840599, -0.05883720517158508, -0.06207996979355812, -0.07036195695400238, -0.0011908039450645447, -0.021384162828326225, -0.040520668029785156, -0.0005109604098834097, -0.043640878051519394, 0.00416643638163805, -0.03668805584311485, 0.0021747637074440718, 0.03699575737118721, -0.012508456595242023, 0.006643390748649836, -0.0185550469905138, -0.03755172714591026, 0.040482692420482635, 0.0013328592758625746, -0.015646139159798622, -0.05955024063587189, -0.0113030094653368, 0.031527645885944366, -0.006491396110504866, 0.017581986263394356, -0.01567835919559002, -0.04551881551742554, -0.005347008816897869, -0.043367695063352585, 0.03141501918435097, -0.015917403623461723, 0.00157265888992697, -0.04400309920310974, -0.026979077607393265, 0.0011900687823072076, 0.05647680163383484, -0.03267846256494522, -0.002992067253217101, 0.0656156837940216, -0.34617310762405396, 0.004404691979289055, 0.021512124687433243, -0.02944643795490265, 0.018971476703882217, -0.06892885267734528, 0.031081032007932663, 0.02395527809858322, -0.03353925421833992, 0.006671468261629343, 0.03156556934118271, -0.02125861495733261, -0.017717713490128517, -0.039901308715343475, -0.022551121190190315, 0.07325083017349243, -0.029668593779206276, -0.0459371954202652, -0.01563633605837822, 0.040963053703308105, -0.012292229570448399, -0.0036218727473169565, 0.05355863273143768, -0.024504292756319046, 0.006886081770062447, -0.016825126484036446, 0.09644883126020432, -0.015729829668998718, 0.007263237610459328, -0.0045377942733466625, -0.01769561506807804, 0.04818708077073097, -0.013109134510159492, -0.042716242372989655, 0.007990866899490356, -0.014700395055115223, -0.028405562043190002, 0.06024773418903351, 0.03625800460577011, -0.004455896094441414, 0.008555707521736622, 0.06317508965730667, -0.009216481819748878, -0.0892132893204689, -0.023259926587343216, 0.012722368352115154, 0.0107891745865345, -0.03461575508117676, -0.01175665482878685, 0.0034484961070120335, 0.04052084684371948, 0.0744093507528305, 0.08007992058992386, 0.008653126657009125, 0.0074978978373110294, -0.06854795664548874, -0.058528438210487366, 0.011601460166275501, -0.020614389330148697, 0.03393977880477905, 0.040985967963933945, 0.049441657960414886, 0.043826330453157425, -0.0991431325674057, 0.031892091035842896, -0.06303830444812775, -0.043814871460199356, -0.012646226212382317, -0.014513645321130753, -0.021794231608510017, 0.007844654843211174, 0.0969737246632576, 0.0216545257717371, -0.036194514483213425, 0.018784018233418465, 0.02101539820432663, -0.01800733432173729, -0.000687330961227417, 0.012579928152263165, 0.03379408270120621, -0.031308285892009735, -0.05405546352267265, 0.06801705807447433, 0.04120370000600815, 0.025441240519285202, 0.054183971136808395, 0.022860372439026833, 0.01745024509727955, 0.047196660190820694, 0.013127759099006653, -0.041474416851997375, -0.04156804829835892, -0.01753859408199787, 0.021104810759425163, 0.04711668938398361, -0.04109317809343338, -0.2318086326122284, 0.01101289689540863, 0.07570476084947586, 0.03674311935901642, 0.014445167966187, 0.05814870074391365, 0.029507951810956, -0.016817323863506317, 0.024391403421759605, -0.015229874290525913, 0.017510386183857918, 0.021271968260407448, 0.048984941095113754, 0.00047671867650933564, -0.022128574550151825, 0.016949810087680817, 0.052844028919935226, -0.07166872918605804, 0.03107347898185253, -0.013441953808069229, 0.07933525741100311, 0.021006498485803604, 0.13342249393463135, 0.06448230147361755, 0.06364869326353073, -0.02276475727558136, -0.0540856271982193, 0.006690009031444788, 0.042819391936063766, 0.04183428734540939, 0.013664956204593182, 0.0029706668574362993, 0.09695807099342346, 0.08477157354354858, 0.05624234303832054, -0.03561236336827278, -0.01144588552415371, 0.005966906435787678, -0.0013574822805821896, -0.03738465905189514, -0.03300324082374573, 0.02554101124405861, -0.08040700852870941, 0.03778237849473953, 0.045649267733097076, -0.02173692174255848, -0.03885132446885109, -0.0023346191737800837, -0.05348037928342819, -0.014123682864010334, 0.020859144628047943, -0.06922835856676102, -0.03528735786676407, -0.017588382586836815, 0.004064079839736223, 0.06367038190364838, -0.006163278128951788, -0.002357552060857415, -0.022819146513938904, 0.03418266773223877, 0.03520185872912407, 0.07518711686134338, 0.09165453165769577, 0.03169459104537964, 0.013924065977334976 ]
[ -0.0366450771689415, -0.01033583004027605, -0.042655687779188156, 0.07579510658979416, 0.00905228778719902, 0.02133532427251339, 0.002561915200203657, 0.016204852610826492, -0.04083041846752167, 0.0027786691207438707, 0.004280447959899902, 0.03432977944612503, 0.009746700525283813, -0.007895753718912601, 0.019661948084831238, 0.07529847323894501, -0.0014919115928933024, -0.01918201707303524, 0.00772657198831439, 0.00413398677483201, -0.009013917297124863, 0.07569056749343872, 0.02329881116747856, 0.014322844333946705, -0.03452317789196968, -0.04125618934631348, -0.014655446633696556, 0.00856104213744402, 0.02484993077814579, -0.13300304114818573, -0.02151673287153244, -0.05478472262620926, 0.0012443879386410117, 0.020026104524731636, -0.020518800243735313, -0.023820271715521812, 0.053865477442741394, 0.009365981444716454, 0.005928609054535627, 0.00495568010956049, 0.02072141319513321, 0.02027742750942707, -0.027070891112089157, -0.018544981256127357, 0.007235649507492781, 0.0037187128327786922, -0.009454147890210152, 0.0013552935561165214, -0.009631052613258362, -0.028084807097911835, -0.03505023196339607, -0.014837381429970264, 0.02616211399435997, -0.005771478172391653, 0.01179012842476368, -0.03648609295487404, 0.006819130387157202, -0.03913697227835655, -0.01393809448927641, 0.018978796899318695, -0.012576663866639137, 0.030361592769622803, -0.02746768109500408, -0.03739054501056671, -0.013377909548580647, -0.02522173523902893, -0.03419554978609085, 0.011837484315037727, 0.022410454228520393, -0.00449424609541893, 0.036274056881666183, -0.009000095538794994, -0.04487451910972595, -0.029061460867524147, -0.004913436248898506, -0.022022945806384087, 0.030441125854849815, -0.002651696791872382, -0.020424310117959976, -0.009875671938061714, -0.04833584278821945, -0.014366606250405312, -0.043138355016708374, 0.002664833562448621, 0.01948462799191475, -0.024521145969629288, -0.022512570023536682, -0.013434120453894138, -0.0003959197783842683, 0.025383450090885162, -0.020098639652132988, -0.026303773745894432, 0.026783088222146034, 0.022100908681750298, -0.09550707042217255, -0.002248786622658372, 0.024410812184214592, -0.01731790602207184, -0.01373305357992649, 0.7886332273483276, -0.005734288599342108, 0.040016401559114456, 0.013737521134316921, 0.009663539007306099, 0.009158692322671413, 0.004165771417319775, 0.035675521939992905, 0.018392587080597878, 0.024896549060940742, -0.0021459204144775867, 0.03601782023906708, 0.0023381938226521015, 0.027871496975421906, 0.013636711053550243, 0.008989605121314526, 0.030673081055283546, 0.006290221121162176, -0.00934542529284954, 0.0031341982539743185, 0.008563480339944363, 0.04774921014904976, 0.02606068179011345, 0.04492274671792984, 0.02048303373157978, 0.01193114835768938, -0.19521678984165192, -0.018104735761880875, -7.115736768583666e-33, 0.05397310107946396, 0.013724940828979015, -0.039652638137340546, 0.03320620581507683, -0.0197844710201025, 0.019916346296668053, -0.027126502245664597, 0.008410334587097168, 0.026056300848722458, -0.02672192081809044, -0.017195062711834908, 0.0035208910703659058, -0.015309524722397327, -0.023732157424092293, 0.021435480564832687, -0.0325440838932991, -0.0333365760743618, 0.04584558308124542, 0.019101813435554504, 0.03890397027134895, -0.004238644149154425, 0.014247311279177666, -0.014514893293380737, 0.012961146421730518, 0.009582738392055035, 0.027102261781692505, 0.022254565730690956, 0.01621452160179615, -0.03676766902208328, -0.03287142515182495, 0.011322349309921265, 0.03440159931778908, -0.0031738707330077887, -0.05221409350633621, 0.008435512892901897, -0.02431349642574787, -0.0036807572469115257, 0.007584070786833763, -0.002597653307020664, -0.06520690768957138, 0.000942903570830822, -0.0032896508928388357, -0.026804858818650246, 0.007777162361890078, -0.03447018191218376, 0.02392532117664814, 0.02692398801445961, 0.024546053260564804, -0.003568665124475956, 0.03484892100095749, 0.00015356286894530058, -0.0016931924037635326, 0.05110597983002663, 0.005471707787364721, -0.030283480882644653, -0.02208004705607891, -0.023678738623857498, 0.015585904940962791, 0.031011806800961494, -0.041339777410030365, 0.03240584209561348, -0.03712935000658035, -0.03098299540579319, 0.023999981582164764, -0.03400316834449768, -0.022100023925304413, 0.045474328100681305, 0.0005117800901643932, 0.04971976578235626, 0.004657563753426075, -0.05204613506793976, 0.03659190237522125, -0.027471279725432396, -0.025371497496962547, -0.014975531958043575, -0.0798686221241951, 0.010330228134989738, -0.002344536129385233, -0.0005928552127443254, 0.06759237498044968, 0.01907873898744583, -0.0016180082457140088, -0.05356912687420845, 0.023532357066869736, -0.005301458295434713, -0.00491347024217248, 0.07576042413711548, 0.03086749091744423, -0.03465241938829422, -0.016749432310461998, 0.03692499175667763, 0.0372605100274086, -0.009999165311455727, -0.03523659333586693, 0.0369274728000164, 6.860512700449162e-33, 0.012288465164601803, -0.045663077384233475, -0.006543788127601147, 0.016686389222741127, 0.009059309959411621, -0.052166398614645004, 0.03385946527123451, 0.03162485361099243, -0.0395607128739357, 0.011378467082977295, -0.017230579629540443, -0.007293634582310915, -0.017081458121538162, -0.0011750333942472935, 0.08983592689037323, -0.028969435021281242, -0.024248257279396057, -0.019811922684311867, 0.051667533814907074, 0.014981433749198914, -0.03298574313521385, 0.024301331490278244, 0.027120336890220642, 0.019096262753009796, 0.018767550587654114, 0.030214650556445122, -0.05933430790901184, 0.024049682542681694, -0.0016762741142883897, -0.042489923536777496, 0.00763025414198637, -0.002751267282292247, 0.03149302303791046, -0.02192048355937004, -0.10019515454769135, 0.05265915021300316, 0.007032179273664951, -0.022355815395712852, -0.004917377606034279, -0.026586130261421204, 0.06570781767368317, -0.01581849344074726, -0.0256902314722538, 0.006478253751993179, 0.008381804451346397, 0.03302618861198425, 0.019875049591064453, -0.01903086155653, -0.01989814266562462, 0.00032872596057131886, 0.04225361719727516, -0.002925155684351921, -0.013694527558982372, 0.00014067465963307768, 0.050739046186208725, -0.03756812587380409, -0.015081813558936119, 0.01894184947013855, -0.032712265849113464, 0.023735225200653076, 0.0011969594052061439, 0.05232100188732147, -0.01939697377383709, 0.018702488392591476, -0.04699504002928734, -0.020327920094132423, 0.008909969590604305, -0.03313019499182701, -0.014787917025387287, -0.004274606704711914, -0.01838766038417816, 0.03259647265076637, 0.005099037662148476, 0.01968294195830822, -0.0023793603759258986, -0.012045418843626976, -0.03947291150689125, 0.005359594710171223, -0.03503892198204994, -0.00032154464861378074, -0.01123678870499134, -0.03925155848264694, 0.02420666255056858, 0.026777617633342743, 0.0035149885807186365, 0.01936047337949276, -0.0054574753157794476, 0.02191600203514099, -0.004902637097984552, -0.0007082392694428563, -0.0221419595181942, -0.019356613978743553, 0.004229671787470579, -0.008967403322458267, -0.08728017657995224, -1.2788103909144866e-8, -0.032686714082956314, 0.05903742462396622, -0.0034450062084943056, 0.03201863542199135, -0.008068117313086987, 0.009581235237419605, -0.01894601248204708, -0.019088057801127434, -0.005280799698084593, 0.009899989701807499, 0.017850879579782486, 0.030486373230814934, -0.0043783774599432945, 0.01859334297478199, 0.022409921512007713, -0.05923449620604515, -0.05618240311741829, -0.011568576097488403, 0.029820134863257408, 0.052338290959596634, 0.011507896706461906, 0.046340905129909515, -0.045463886111974716, -0.008523874916136265, 0.0003292967448942363, -0.011055953800678253, 0.01914260908961296, -0.07915263622999191, 0.05255669727921486, -0.05131005123257637, 0.03737508878111839, -0.012283194810152054, -0.002633763710036874, 0.026288291439414024, -0.01285235583782196, -0.028123434633016586, -0.0071421158500015736, 0.0010437179589644074, 0.020976724103093147, 0.00953266117721796, 0.01580069772899151, -0.014927814714610577, -0.030526643618941307, -0.030928414314985275, -0.022432273253798485, 0.002625910798087716, -0.020284367725253105, -0.008422409184277058, 0.044594209641218185, 0.00231368956156075, -0.004066729452461004, -0.032408684492111206, 0.01437223982065916, -0.0037105244118720293, -0.011386827565729618, 0.007676145993173122, 0.00992090255022049, -0.029590556398034096, -0.006801642011851072, -0.016371019184589386, 0.06782864779233932, -0.012954906560480595, -0.05217700079083443, -0.0010101977968588471 ]
active-record-nested-attributes
https://markhneedham.com/blog/2010/11/09/active-record-nested-attributes
false
2010-11-30 19:25:16
Consulting is like inception
[ "software-development" ]
[ "Software Development" ]
My colleague Jason Yip http://twitter.com/jchyip/status/4701457760649217[recently tweeted the following]... ____ Sometimes consulting reminds me of the movie Inception ____ ...which reminded me of a conversation I was having with a colleague here who's been working on consulting engagements here for the last few months. I was describing some of the things that I wanted to change on my team and she pointed out that I always described each change as something that I wanted to change rather than something which I wanted to see change. I think this is subconsciously the result of wanting to believe that we've influenced something and are actually adding some sort of value to the team we're working on. In reality though it's rare that we can suggest a change and others will just agree with it straight away - I've failed with this approach a significant number of times. In Inception the conspirators want to plant a thought into the victim's mind but they don't want him to know that they've done it - it should seem like it was his own thought. My colleague pointed out that the same is true when we're trying to influence change. Suggesting a change is unlikely to work but dropping ideas to different people and then letting them run with them might eventually result in change happening even though it may be a slow process. The problem is that it's quite difficult to take your own ego out of the equation and let a positive change happen without the credit necessarily being given to you. I'm still struggling to get past that stage but hopefully soon I shall get there...
null
null
[ 0.05184624716639519, -0.007153574377298355, -0.005202019587159157, 0.017186129465699196, 0.06692878901958466, 0.021567588672041893, 0.03660566359758377, 0.04897058755159378, 0.024893539026379585, -0.03612572327256203, -0.020408937707543373, 0.003935568034648895, -0.0690588653087616, 0.0371129997074604, -0.039106275886297226, 0.07706304639577866, 0.056912411004304886, 0.016153857111930847, -0.007769218645989895, 0.003843644168227911, 0.04300086572766304, 0.07384897023439407, 0.02788683958351612, 0.021075449883937836, 0.026543298736214638, 0.002486694138497114, 0.0006628838600590825, -0.01475571934133768, -0.045528970658779144, -0.014283099211752415, 0.0367584228515625, 0.0023748890962451696, 0.015208074823021889, 0.006547003053128719, 0.020276470109820366, 0.0004598628147505224, -0.01411519292742014, 0.018223481252789497, 0.010802592150866985, -0.005690587684512138, -0.05223941057920456, 0.045566804707050323, -0.03073948062956333, 0.013070196844637394, -0.045208368450403214, -0.00908046867698431, -0.02555696852505207, 0.016247212886810303, 0.011037671007215977, -0.0044576446525752544, -0.061097219586372375, 0.03165672346949577, 0.001537898788228631, 0.004938037134706974, -0.010819349437952042, 0.04851175844669342, 0.0059390622191131115, -0.07203231006860733, 0.004860301967710257, -0.041224975138902664, -0.013775845989584923, -0.00898248702287674, -0.009128781966865063, 0.025580240413546562, 0.028133926913142204, -0.023942112922668457, 0.025026816874742508, 0.04072287306189537, -0.04852650314569473, 0.029064184054732323, -0.02591395378112793, 0.008893974125385284, 0.004915785975754261, -0.012820237316191196, -0.0043119206093251705, -0.04607453569769859, 0.009145072661340237, 0.08938399702310562, 0.02572428248822689, 0.028482424095273018, -0.02787308394908905, 0.016499295830726624, 0.004790205974131823, 0.02965332567691803, -0.02966563031077385, -0.032087698578834534, 0.0339343436062336, -0.02339748851954937, -0.06885989755392075, 0.05607366934418678, -0.0011740823974832892, -0.043034281581640244, 0.03325523063540459, 0.03297042474150658, -0.0023145803716033697, -0.0032993608620017767, 0.03461930528283119, -0.001983949448913336, -0.016962116584181786, -0.03654361143708229, -0.029642939567565918, -0.021105650812387466, -0.03755713254213333, 0.00460752984508872, -0.07795431464910507, -0.009803295135498047, -0.0003613248991314322, 0.004159729462116957, -0.029751110821962357, 0.0017497397493571043, -0.06003139168024063, 0.03766371309757233, -0.010312878526747227, 0.020160479471087456, -0.05643420293927193, 0.04731185361742973, 0.022592289373278618, -0.029712073504924774, -0.027855653315782547, 0.01134801097214222, 0.043564584106206894, 0.014679351821541786, -0.010070969350636005, 0.07204120606184006, 0.01833810657262802, 0.015066921710968018, -0.04818291589617729, 0.06256093084812164, -0.02326161600649357, -0.05716521665453911, 0.009393172338604927, 0.04879087209701538, -0.05042479932308197, -0.021513840183615685, -0.007146445568650961, -0.05857668071985245, 0.015618621371686459, 0.007263733074069023, 0.03256015479564667, 0.047384414821863174, -0.009295920841395855, -0.04535316675901413, -0.00028955002198927104, 0.028300855308771133, 0.019080499187111855, 0.013505300506949425, 0.010289373807609081, -0.010822459124028683, -0.056810542941093445, -0.02367759868502617, 0.0005749237607233226, 0.006389140617102385, 0.003122437745332718, -0.0436413548886776, 0.034394290298223495, 0.08117488771677017, 0.05101361125707626, -0.014823277480900288, -0.020468009635806084, 0.042509403079748154, 0.050738897174596786, 0.03334089368581772, 0.027667008340358734, 0.028517570346593857, 0.03515725955367088, -0.015398876741528511, 0.00748743349686265, 0.0253592599183321, -0.013501876033842564, 0.015524349175393581, -0.04176972433924675, -0.05546202510595322, 0.0416693352162838, -0.029322994872927666, -0.007268155459314585, 0.05952414870262146, 0.05603451654314995, 0.0201299749314785, 0.03709204122424126, 0.007636993657797575, -0.08595478534698486, 0.05586805194616318, 0.008411936461925507, 0.02597527578473091, 0.03230951726436615, -0.023648450151085854, 0.04356728494167328, 0.027226442471146584, 0.007125397212803364, 0.05391659587621689, -0.061611104756593704, -0.09793423861265182, -0.012028120458126068, 0.004902417305856943, 0.04522136598825455, -0.027853837236762047, 0.013459725305438042, 0.060942355543375015, 0.0036434766370803118, 0.03895898908376694, 0.013473879545927048, -0.03683123737573624, 0.010605374351143837, -0.037913728505373, -0.04899720847606659, 0.08084413409233093, 0.03505686670541763, 0.014875851571559906, -0.0404813326895237, 0.02015712670981884, -0.0289935152977705, -0.020549366250634193, 0.02874262072145939, -0.034329887479543686, 0.03918563574552536, 0.006068996619433165, 0.029349951073527336, -0.034675631672143936, 0.022428100928664207, -0.010218732990324497, -0.003036256181076169, 0.015757786110043526, -0.008355769328773022, 0.02003907598555088, 0.016244933009147644, 0.1130308285355568, 0.06259802728891373, -0.053484417498111725, -0.07098573446273804, 0.018154412508010864, 0.03282836824655533, -0.041461240500211716, 0.00110178894829005, 0.0014191648224368691, 0.006218449678272009, 0.012574695982038975, -0.0662519559264183, -0.02771121822297573, 0.02461557276546955, -0.05497869476675987, 0.0016043739160522819, 0.04311414435505867, -0.029112501069903374, 0.06776315718889236, -0.032975662499666214, 0.013342555612325668, -0.02968035638332367, -0.025981519371271133, -0.043886613100767136, 0.029694199562072754, -0.0065096053294837475, -0.011348838917911053, 0.03712428733706474, -0.0043532829731702805, 0.0008952183998189867, -0.04656880348920822, -0.027854327112436295, 0.017500868067145348, 0.05146839842200279, 0.055440496653318405, -0.015256345272064209, 0.07143175601959229, -0.017645591869950294, 0.03352726995944977, -0.0011971304193139076, -0.02847737818956375, -0.04756602644920349, -0.028233138844370842, 0.004481511656194925, 0.008752289228141308, 0.027583938091993332, -0.004044962581247091, 0.005405033007264137, 0.010702216066420078, -0.00016005279030650854, 0.0007778860745020211, -0.00811204593628645, 0.013192017562687397, 0.016016611829400063, -0.028752190992236137, -0.003460812382400036, 0.06153302267193794, -0.03500199690461159, -0.015433569438755512, 0.0006940813618712127, -0.0996868833899498, 0.020887436345219612, -0.03259475901722908, -0.02189140021800995, -0.01951337419450283, -0.00032848637783899903, 0.0503186360001564, 0.02242366038262844, 0.031281791627407074, 0.04134950414299965, 0.01234815176576376, 0.021031547337770462, 0.012702716514468193, -0.0055170683190226555, 0.051525890827178955, 0.028857849538326263, -0.013224811293184757, 0.046748436987400055, -0.008449395187199116, -0.004096815828233957, -0.040887873619794846, 0.05329205095767975, -0.04144056886434555, -0.2885008454322815, 0.03784855455160141, 0.03591916337609291, -0.013517707586288452, 0.03035351261496544, -0.05436837673187256, 0.024090740829706192, -0.05065862089395523, -0.023165594786405563, 0.025762686505913734, -0.04064027965068817, -0.05105677992105484, -0.019060036167502403, 0.050493475049734116, -0.011228560470044613, -0.0007886161911301315, 0.025394083932042122, -0.031172282993793488, 0.00372552708722651, 0.0513048954308033, -0.024830030277371407, -0.051033005118370056, -0.020874569192528725, 0.04842524603009224, 0.04388503357768059, 0.06907422095537186, -0.0713704451918602, 0.057083070278167725, -0.07217467576265335, 0.011383074335753918, -0.017590142786502838, -0.013125654309988022, 0.0016630232566967607, 0.011183804832398891, 0.007531977724283934, -0.01611020788550377, 0.04406774416565895, 0.0077790687792003155, -0.026202378794550896, -0.009653775952756405, -0.036743853241205215, -0.04441860690712929, -0.01772216707468033, 0.012686275877058506, 0.07125422358512878, 0.03955861181020737, -0.061484143137931824, -0.02252531796693802, -0.026712236925959587, 0.06552575528621674, -0.026737619191408157, -0.018053073436021805, -0.015183735638856888, 0.0014167741173878312, 0.0030252602882683277, 0.0073320819064974785, -0.021820513531565666, -0.021905677393078804, -0.04705263674259186, -0.025253254920244217, -0.0033754445612430573, -0.0074531035497784615, -0.011941215954720974, -0.020378531888127327, -0.009044500067830086, -0.056444816291332245, -0.0708109587430954, -0.02658696100115776, 0.06440500915050507, -0.025692930445075035, -0.03585017845034599, 0.02758721075952053, -0.012957895174622536, -0.10150910913944244, 0.004426481667906046, -0.005106167867779732, -0.023419611155986786, 0.0008723541395738721, 0.029048584401607513, 0.03604642301797867, -0.034041520208120346, -0.04106917232275009, 0.014501226134598255, 0.01577601581811905, 0.042025718837976456, 0.013146303594112396, 0.05420566350221634, 0.04647323116660118, -0.037484049797058105, 0.02142547070980072, 0.06348645687103271, 0.01485025230795145, -0.030376682057976723, 0.012436931021511555, 0.026749368757009506, 0.019027501344680786, 0.02454216592013836, -0.01642935536801815, 0.00015855308447498828, 0.011057981289923191, -0.007236504461616278, -0.06726379692554474, 0.003603049088269472, -0.029154492542147636, -0.012051131576299667, -0.019366437569260597, -0.04783182963728905, 0.009178964421153069, 0.014614776708185673, 0.025651894509792328, 0.02905156835913658, -0.023180725052952766, 0.014001365751028061, -0.026316257193684578, -0.01139831356704235, -0.0036287670955061913, -0.013492886908352375, 0.05671120434999466, -0.010510336607694626, -0.000666564388666302, -0.03624783083796501, 0.020628055557608604, -0.016975747421383858, 0.0065203565172851086, -0.06861773878335953, -0.004893699195235968, -0.019142048433423042, -0.016948137432336807, 0.021146519109606743, 0.024237770587205887, -0.011935497634112835, 0.010813736356794834, 0.04023756459355354, -0.010985229164361954, 0.023608218878507614, -0.04979650676250458, -0.0638376846909523, -0.036679066717624664, -0.010250715538859367, -0.01039784587919712, 0.004326261579990387, 0.020876318216323853, 0.002910098759457469, -0.007324771024286747, 0.04012234881520271, 0.02386840619146824, 0.011866656132042408, -0.03473813459277153, 0.03624562546610832, 0.019193444401025772, 0.028251318261027336, -0.06692535430192947, -0.0022762783337384462, -0.04429367557168007, -0.022400200366973877, -0.01597878895699978, 0.028381047770380974, -0.019843537360429764, -0.0015465703327208757, -0.0007940963841974735, 0.00280006299726665, -0.0419963002204895, -0.044392719864845276, -0.019622884690761566, 0.02205529436469078, 0.0454835444688797, -0.03797853738069534, 0.011675350368022919, -0.01363192405551672, 0.005279353819787502, 0.015570709481835365, 0.020752307027578354, -0.06399990618228912, 0.002956857904791832, 0.0012901134323328733, 0.027688538655638695, 0.012666611932218075, -0.012628980912268162, 0.05249549821019173, 0.0010391974356025457, 0.004216664005070925, -0.03509002551436424, -0.009241928346455097, -0.00229450105689466, 0.05199003964662552, 0.029025033116340637, 0.003947149496525526, -0.010328567586839199, -0.02639460749924183, -0.013165676966309547, -0.058716412633657455, -0.01834484376013279, -0.003647448029369116, 0.02202143706381321, -0.039244115352630615, -0.06847713887691498, 0.07195297628641129, -0.004873238503932953, 0.017360512167215347, 0.04422808066010475, -0.01611589454114437, 0.008889691904187202, -0.026281369850039482, 0.01949545368552208, 0.05490037798881531, -0.07220935076475143, -0.014055470004677773, -0.0019238741369917989, -0.027212020009756088, 0.03145073726773262, 0.012449601665139198, -0.02503926493227482, -0.03506235033273697, -0.05493929982185364, 0.015129378996789455, -0.09341157972812653, 0.0024801420513540506, -0.04259490594267845, 0.019768215715885162, -0.005335598718374968, 0.015934458002448082, -0.040606431663036346, -0.00034867977956309915, -0.013210241682827473, -0.033533837646245956, 0.025869198143482208, -0.028396140784025192, 0.018047142773866653, 0.014387624338269234, -0.04010089859366417, -0.00453271996229887, -0.0282451044768095, 0.008120640181005001, 0.03484151139855385, -0.019952505826950073, 0.00046975078294053674, -0.017001938074827194, 0.015089798718690872, -0.021988850086927414, 0.02881135232746601, -0.03799599036574364, -0.03544165566563606, -0.04913734272122383, -0.034046873450279236, -0.04044173285365105, 0.02128749154508114, -0.03523232415318489, 0.013085704296827316, 0.03564555570483208, 0.05092032626271248, 0.04577063396573067, 0.016952205449342728, -0.023829013109207153, -0.021462613716721535, 0.04222683981060982, -0.06569010019302368, -0.03262554109096527, -0.03570234775543213, -0.027997704222798347, -0.005347452592104673, 0.007722834590822458, -0.004109065514057875, -0.03605737164616585, 0.016028128564357758, 0.019474124535918236, 0.03271722048521042, 0.055527832359075546, 0.027645587921142578, 0.007103040814399719, -0.05529341846704483, -0.009878081269562244, -0.07742959260940552, -0.020521078258752823, 0.01721019484102726, -0.01978139951825142, 0.006068603601306677, -0.0014295127475634217, -0.04994312673807144, 0.049649760127067566, -0.09471935778856277, -0.031193217262625694, 0.04426722228527069, -0.015180948190391064, 0.010387185961008072, 0.023938264697790146, -0.08576241880655289, 0.019697966054081917, 0.001475300407037139, -0.04334456846117973, -0.020377574488520622, -0.022955916821956635, 0.053171344101428986, 0.0013592804316431284, 0.022761162370443344, -0.03722396865487099, -0.010449934750795364, 0.0813121423125267, 0.016473427414894104, -0.00904112495481968, 0.05463908985257149, -0.004509244579821825, 0.04110908880829811, 0.030381755903363228, 0.026996027678251266, -0.027800969779491425, 0.027678512036800385, -0.022158948704600334, -0.07860540598630905, 0.02820035070180893, -0.01579333283007145, -0.02371172606945038, -0.042014602571725845, 0.05496014654636383, 0.018125711008906364, -0.0159915741533041, -0.02770410105586052, 0.0016552169108763337, -0.03345882147550583, -0.01603716053068638, -0.006503423675894737, -0.017561420798301697, -0.04536278545856476, 0.019318602979183197, -0.0014388725394383073, 0.027111519128084183, 0.05521254241466522, 0.004853906109929085, 0.007992076687514782, -0.02091018296778202, 0.09370259195566177, 0.06464589387178421, 0.05985161289572716, 0.022990891709923744, 0.06566297262907028, 0.012484376318752766, -0.04183318093419075, 0.03069152869284153, 0.009541060775518417, -0.027126319706439972, -0.006332126911729574, 0.03047158569097519, 0.08087868243455887, -0.021121039986610413, 0.08301176875829697, 0.003944600932300091, -0.036754924803972244, -0.01805110089480877, 0.018129412084817886, -0.00985533557832241, 0.06662290543317795, 0.006861827336251736, 0.011820382438600063, -0.0396164171397686, -0.07332861423492432, 0.039048921316862106, -0.021514911204576492, 0.002086882945150137, 0.05700979009270668, -0.016097869724035263, 0.028163878247141838, 0.014724058099091053, 0.016866536810994148, 0.08160452544689178, -0.04799884185194969, 0.021620461717247963, -0.007227398455142975, 0.010284550487995148, -0.007672810461372137, 0.019420228898525238, -0.012294616550207138, -0.006039118859916925, 0.014271100051701069, -0.047487419098615646, -0.0152963288128376, 0.0029410626739263535, -0.012550107203423977, 0.048052359372377396, -0.028401026502251625, -0.006141600664705038, 0.0341666005551815, 0.0015411288477480412, -0.02812887728214264, -0.05153505131602287, -0.027149198576807976, -0.05114911496639252, -0.053806424140930176, -0.027735048905014992, 0.031837429851293564, -0.0026595036033540964, -0.025099894031882286, 0.007894979789853096, -0.02027888223528862, -0.03327390179038048, 0.06319360435009003, -0.03157992288470268, -0.023317135870456696, 0.0024038893170654774, 0.025463229045271873, 0.0032299610320478678, -0.000237647196627222, 0.0592762753367424, 0.004475539084523916, -0.0020057179499417543, -0.003561456687748432, 0.04528834670782089, 0.015617068856954575, -0.00816949363797903, -0.02399970218539238, -0.0927596315741539, -0.002841762499883771, 0.022386889904737473, -0.040958501398563385, -0.06831000745296478, 0.029477404430508614, 0.02515381947159767, 0.011319802142679691, 0.04953157901763916, 0.017689796164631844, -0.0007819885504432023, -0.040030233561992645, -0.006243839394301176, -0.014794426038861275, -0.0017543911235406995, 0.05916651710867882, -0.014202753081917763, 0.0704914927482605, 0.018510689958930016, -0.02551121823489666, -0.034193847328424454, -0.022498905658721924, 0.012642769142985344, -0.014565028250217438, -0.02167007140815258, -0.03905268386006355, -0.006460231728851795, -0.10012228041887283, -0.011293509975075722, 0.03173990920186043, -0.02241634577512741, -0.037777431309223175, 0.024934202432632446, 0.006279694847762585, 0.0075707342475652695, 0.017847321927547455, -0.03548925742506981, 0.03575406223535538, -0.00015656212053727359, -0.015591380186378956, -0.0009614838054403663, 0.015238413587212563, 0.018321653828024864, -0.016347602009773254, 0.031000930815935135, -0.05425788462162018, 0.005258087534457445, -0.006801591720432043, 0.005043451674282551, 0.032693471759557724, 0.0019282102584838867, -0.021146871149539948 ]
[ -0.0703187882900238, 0.008244602009654045, -0.021341713145375252, -0.007521486841142178, 0.013065770268440247, -0.023152923211455345, 0.05602468177676201, 0.015281235799193382, -0.0008120922720991075, -0.028898319229483604, 0.032781172543764114, -0.022095613181591034, 0.0004431708948686719, -0.009032092988491058, 0.0781361311674118, 0.035135090351104736, 0.003516196506097913, -0.10238330811262131, -0.011332601308822632, 0.010730581358075142, -0.01725432276725769, -0.03815942630171776, -0.016474543139338493, 0.032200511544942856, 0.006485214456915855, -0.014202897436916828, 0.030478380620479584, -0.024570506066083908, -0.017222389578819275, -0.14800375699996948, 0.01642136089503765, 0.010195416398346424, 0.029699254781007767, 0.006294666323810816, 0.031010571867227554, 0.10557425022125244, -0.002041839063167572, 0.035799603909254074, -0.0033333629835397005, 0.027318308129906654, 0.016788506880402565, 0.019810350611805916, -0.04266507551074028, -0.039781052619218826, -0.0018805223517119884, -0.007949212566018105, 0.039781928062438965, -0.008403662592172623, -0.04410241171717644, 0.013245057314634323, -0.03957993909716606, -0.048880476504564285, -0.014914126135408878, -0.017564810812473297, -0.032579027116298676, 0.05341574549674988, 0.05333571881055832, 0.06733830273151398, 0.035955119878053665, 0.013392026536166668, 0.04171392694115639, -0.002264210255816579, -0.15329763293266296, 0.0796344056725502, 0.050788454711437225, 0.04368826746940613, -0.057459913194179535, -0.018712172284722328, -0.014704549685120583, 0.08258934319019318, 0.019253870472311974, -0.009182984940707684, -0.027903730049729347, 0.008511564694344997, 0.034294575452804565, 0.007095111068338156, -0.0008702675113454461, 0.06762222200632095, 0.01587229035794735, -0.038149215281009674, -0.007693650666624308, 0.037621866911649704, -0.059387627989053726, -0.016716187819838524, -0.04235374182462692, 0.032197095453739166, -0.004105062689632177, 0.06024662405252457, 0.06465255469083786, 0.022903557866811752, 0.04067164286971092, 0.0022736666724085808, 0.01348942518234253, -0.041061390191316605, -0.0781671553850174, -0.04402536526322365, 0.0004532512102741748, 0.0062134843319654465, -0.08460157364606857, 0.4350488781929016, -0.028950748965144157, -0.0245672557502985, 0.08141184598207474, 0.03085814043879509, -0.028091181069612503, -0.002384523395448923, -0.012835455127060413, -0.05840597674250603, 0.04104182496666908, 0.020797796547412872, 0.013195847161114216, 0.03010176122188568, 0.06223354488611221, -0.04560929536819458, 0.02096257545053959, 0.06202474609017372, 0.02557206340134144, 0.027235543355345726, -0.04346240311861038, -0.021176043897867203, -0.02974695898592472, 0.04276612773537636, 0.02487039379775524, 0.0074524832889437675, -0.06252485513687134, -0.0657796785235405, 0.02050165645778179, 0.0661930963397026, 0.033249735832214355, -0.025619931519031525, 0.03910887986421585, -0.016209283843636513, -0.06732738018035889, 0.014892525039613247, 0.0024255088064819574, 0.021552514284849167, 0.016950279474258423, -0.018694132566452026, -0.008941245265305042, 0.0657917782664299, 0.021006722003221512, 0.0010557820787653327, -0.018288230523467064, -0.013356457464396954, -0.016633689403533936, 0.1425267904996872, 0.0009338372037746012, -0.039509162306785583, 0.0050499653443694115, -0.022264115512371063, -0.003952712286263704, 0.025845011696219444, -0.03058765083551407, -0.038614191114902496, 0.052712783217430115, -0.019837016239762306, 0.08073654770851135, 0.006149954628199339, -0.045533686876297, 0.04341172054409981, 0.008414853364229202, -0.007351097650825977, -0.0578174963593483, 0.032058168202638626, 0.07434104382991791, -0.08628606796264648, -0.013576765544712543, -0.03326026722788811, 0.048114679753780365, -0.06197268143296242, -0.0281953364610672, 0.02092411182820797, 0.00021380200632847846, -0.014565263874828815, 0.057863034307956696, -0.021838661283254623, -0.048808127641677856, 0.008181431330740452, 0.04740695655345917, 0.02609800361096859, 0.026892945170402527, 0.015539872460067272, -0.03507096692919731, 0.018819527700543404, -0.0295216366648674, -0.09291817992925644, -0.006527705583721399, -0.01768878847360611, -0.027750518172979355, 0.019874069839715958, -0.03313305974006653, 0.01018479187041521, -0.08461634814739227, 0.10987270623445511, -0.02442925237119198, -0.013467962853610516, 0.011723954230546951, -0.023068860173225403, -0.060298625379800797, 0.006368621718138456, -0.08811590075492859, 0.021102014929056168, -0.05718172714114189, 0.017600543797016144, -0.07847894728183746, 0.08068753778934479, 0.045861173421144485, -0.03590093180537224, 0.10008583217859268, 0.03644618019461632, -0.03764684498310089, -0.034660302102565765, 0.005210849456489086, 0.046086717396974564, -0.0030763796530663967, 0.02198083885014057, -0.0013317280681803823, 0.016546759754419327, -0.0058464910835027695, 0.0020386751275509596, 0.0026935585774481297, 0.02291789837181568, -0.004800211638212204, -0.3376995623111725, -0.05261329188942909, -0.046411316841840744, -0.022150186821818352, 0.026742182672023773, -0.02468327432870865, 0.010290233418345451, -0.014951840043067932, -0.025744199752807617, 0.006913738790899515, 0.03771442174911499, -0.01867598667740822, 0.004017859231680632, -0.06101866438984871, 0.022131135687232018, -0.016856826841831207, -0.050884462893009186, 0.003893480636179447, -0.02246399037539959, 0.002631396520882845, -0.009388863109052181, 0.006523102521896362, -0.04294677451252937, -0.052175719290971756, -0.012986239045858383, -0.012507866136729717, 0.09431528300046921, 0.032627034932374954, 0.027783356606960297, -0.00031834657420404255, 0.028810327872633934, -0.001914693508297205, 0.02470260113477707, -0.1376810371875763, 0.027596618980169296, -0.03304978087544441, 0.012069414369761944, -0.02933165244758129, -0.013407318852841854, -0.032237883657217026, -0.048193320631980896, -0.0009182022768072784, -0.06687355041503906, -0.04175771772861481, -0.07529701292514801, 0.020106535404920578, -0.04928739741444588, -0.008010763674974442, -0.03343195468187332, 0.06859889626502991, -0.0023922461550682783, 0.005557358730584383, 0.020398003980517387, -0.008469521068036556, 0.007832574658095837, -0.037796758115291595, -0.08537925779819489, 0.05092531442642212, 0.01994125172495842, -0.015347790904343128, -0.002927701221778989, 0.09304472804069519, 0.028167488053441048, -0.023876458406448364, 0.019058983772993088, -0.0068557653576135635, -0.006442113779485226, 0.004913163371384144, 0.017335666343569756, 0.016063997521996498, 0.0003125574148725718, 0.09407692402601242, -0.0025418614968657494, -0.03912147134542465, 0.04479338973760605, 0.006490686442703009, -0.02451767586171627, 0.01435813121497631, -0.027772169560194016, -0.017741696909070015, 0.02441379614174366, -0.0240800678730011, 0.0002826393174473196, -0.02568662539124489, -0.025895358994603157, 0.006653926335275173, -0.023244036361575127, -0.06771639734506607, 0.08492158353328705, 0.01865602284669876, -0.011845851317048073, 0.003494781209155917, -0.019804000854492188, -0.05428995564579964, 0.10074245929718018, -0.01147918775677681, -0.22437885403633118, 0.024901961907744408, 0.037960343062877655, 0.04236490651965141, -0.04099974408745766, 0.050355978310108185, 0.006833809427917004, -0.013635365292429924, -0.004771573003381491, 0.011972415260970592, 0.012788869440555573, -0.027697568759322166, 0.016410311684012413, 0.010552076622843742, 0.031102199107408524, -0.011546464636921883, 0.03961781784892082, -0.014156096614897251, 0.015813607722520828, -0.0028490836266428232, 0.0031412681564688683, -0.008571051061153412, 0.1537991762161255, 0.008342185989022255, 0.04298187792301178, -0.005443689879029989, -0.008613976649940014, 0.011737058870494366, 0.04949509724974632, -0.017557526007294655, 0.020815806463360786, 0.0022080340422689915, 0.006180321332067251, -0.015503261238336563, 0.026362942531704903, -0.09654942154884338, -0.027965880930423737, 0.025629417970776558, 0.02632397785782814, 0.005107008386403322, 0.017428187653422356, 0.004374176729470491, -0.005385873839259148, 0.017138445749878883, 0.08458094298839569, 0.019726574420928955, -0.00916956178843975, -0.011625555343925953, -0.07426874339580536, -0.014206232503056526, -0.04751276969909668, -0.011919105425477028, 0.01214126031845808, 0.010547522455453873, 0.010732509195804596, 0.06039110943675041, 0.02481302246451378, -0.048688340932130814, -0.00739927776157856, 0.010233485139906406, -0.03895726427435875, 0.004940250422805548, 0.08594914525747299, 0.008945728652179241, 0.04496762156486511 ]
[ -0.010340743698179722, 0.01867079548537731, -0.0040768287144601345, 0.02094513177871704, -0.005207765381783247, 0.0029555957298725843, -0.005257921293377876, -0.0017340992344543338, 0.046787604689598083, 0.006347414571791887, -0.004098283592611551, 0.03381703421473503, 0.015187892131507397, 0.0037538688629865646, 0.015914054587483406, -0.0018831896595656872, 0.006124161649495363, -0.0024316071067005396, 0.037008270621299744, -0.012421904131770134, -0.035481005907058716, 0.0006908082868903875, -0.0017147987382486463, -0.01844826713204384, 0.005812153685837984, 0.025331031531095505, -0.003425598843023181, -0.008586311712861061, 0.019966913387179375, -0.1061863973736763, -0.05342353135347366, 0.005680288653820753, -0.014799298718571663, 0.0029812047723680735, 0.011277513578534126, 0.027304744347929955, -0.006126474589109421, 0.0746023878455162, 0.032066553831100464, -0.006545232608914375, 0.021796084940433502, -0.02720661088824272, 0.013490116223692894, -0.006450976710766554, -0.0001684565795585513, 0.010827452875673771, 0.009103198535740376, 0.008202255703508854, -0.02226998656988144, -0.031023310497403145, -0.06988491863012314, -0.029374513775110245, -0.019382284954190254, -0.006172866560518742, 0.0021407450549304485, -0.0008014366612769663, 0.01949242502450943, 0.028397278860211372, -0.0075342427007853985, 0.009237140417098999, 0.01129972655326128, -0.029872102662920952, -0.03028501197695732, -0.027796665206551552, -0.01691100187599659, -0.013396743685007095, 0.004668733105063438, 0.02003750018775463, -0.04869390279054642, -0.0007413438870571554, 0.005479468964040279, 0.012193159200251102, -0.050970856100320816, -0.06424945592880249, 0.002878249157220125, 0.008054177276790142, 0.005251260474324226, -0.0009844832820817828, 0.04838810861110687, -0.021937092766165733, 0.0035227451007813215, 0.035992901772260666, 0.030435670167207718, 0.004049507901072502, 0.0035968623124063015, -0.0047864546068012714, -0.005550439469516277, -0.003627403639256954, 0.023791944608092308, 0.031290821731090546, -0.009172964841127396, 0.03904977813363075, -0.03051670826971531, 0.010015565901994705, -0.09507515281438828, -0.001843719044700265, -0.029746025800704956, -0.021759826689958572, -0.024162031710147858, 0.8635184168815613, 0.0015194866573438048, 0.00009802504791878164, 0.03458655998110771, -0.0019120610086247325, -0.0007695877575315535, 0.008850593119859695, 0.03295139595866203, -0.00013867553207091987, -0.004729020409286022, 0.0009517259313724935, -0.008218941278755665, 0.009483052417635918, 0.0013694028602913022, -0.012662585824728012, 0.04686049371957779, -0.0018659583292901516, 0.02211693301796913, 0.03553898259997368, -0.03886159881949425, 0.004994986578822136, 0.03191575035452843, 0.03613382577896118, 0.009208310395479202, 0.021779553964734077, -0.0032961457036435604, -0.161895751953125, -0.036536771804094315, -8.560271654266435e-33, 0.05061723291873932, 0.030155008658766747, 0.03005707636475563, -0.0004030258278362453, -0.014818580821156502, 0.0015040243742987514, 0.026464363560080528, 0.03513237088918686, -0.023828420788049698, -0.018388843163847923, 0.0028953664004802704, -0.042599502950906754, 0.037726838141679764, -0.001909039681777358, 0.0023540544789284468, -0.028733914718031883, -0.013719357550144196, 0.03115548938512802, -0.026454562321305275, -0.013098269701004028, 0.006703575607389212, 0.008781669661402702, -0.018702415749430656, 0.02460785210132599, 0.022188181057572365, -0.016383888199925423, -0.01753452979028225, 0.04904674366116524, -0.0005586387123912573, -0.05182113125920296, -0.02640845999121666, 0.07079984247684479, -0.03842838481068611, -0.021240701898932457, -0.006420183926820755, -0.025386430323123932, -0.04069596156477928, -0.0021885542664676905, 0.006308231968432665, -0.024941477924585342, -0.022885160520672798, 0.02466643787920475, -0.02482643723487854, -0.014432013966143131, -0.017291083931922913, 0.015040269121527672, 0.011715756729245186, 0.005397085566073656, 0.0014867415884509683, -0.01262150052934885, -0.011175364255905151, 0.018836310133337975, -0.019868360832333565, 0.023495061323046684, -0.009428261779248714, 0.023019535467028618, 0.004623800050467253, 0.025260932743549347, 0.006723742000758648, -0.0031560228671878576, 0.02869516611099243, 0.004990294575691223, -0.04877808317542076, 0.03467334061861038, -0.006889240350574255, 0.0014193744864314795, -0.020281121134757996, -0.004753741901367903, 0.02820020169019699, -0.00757574662566185, -0.03432392701506615, 0.02339077554643154, -0.007104769349098206, 0.01589285209774971, -0.011011634953320026, -0.02886456996202469, -0.03764929622411728, 0.049045976251363754, 0.003991792444139719, 0.029608523473143578, -0.02941553294658661, 0.016503505408763885, 0.021816721186041832, -0.025705251842737198, -0.006386995781213045, 0.013429238460958004, 0.01300765760242939, -0.0051527079194784164, 0.0007214125944301486, 0.011203805916011333, 0.0030928868800401688, 0.017422031611204147, -0.0020636669360101223, 0.004712954629212618, -0.027010556310415268, 8.223406564731446e-33, -0.0024632816202938557, 0.002330323215574026, -0.01807076670229435, -0.0029269112274050713, 0.03783964738249779, 0.007140807341784239, 0.008057072758674622, -0.006343967281281948, -0.04935099184513092, 0.005537993274629116, 0.006608322262763977, -0.028361862525343895, -0.004298029001802206, 0.0169315654784441, 0.015940651297569275, -0.03210189938545227, 0.004086888395249844, -0.03293602541089058, 0.03878568485379219, 0.001010162173770368, 0.026711953803896904, -0.00283722928725183, 0.021528450772166252, -0.0013236179947853088, 0.010350637137889862, 0.025550229474902153, 0.012327023781836033, 0.024663085117936134, 0.006947464309632778, -0.0035897642374038696, -0.025711925700306892, -0.018554842099547386, -0.013828469440340996, -0.020058905705809593, -0.003890309715643525, 0.01912667043507099, -0.038053859025239944, -0.042040251195430756, -0.033306919038295746, 0.007846583612263203, 0.002376131946220994, -0.005054609850049019, 0.012952839955687523, 0.03923526778817177, -0.01440986804664135, -0.010139044374227524, 0.012618192471563816, -0.013621089980006218, -0.009264884516596794, -0.022763650864362717, -0.001769044785760343, 0.025958741083741188, -0.006657135207206011, 0.016467390581965446, -0.01838054321706295, -0.013867225497961044, -0.007440741639584303, 0.010878761298954487, 0.007103960029780865, 0.0009283737163059413, -0.031881220638751984, 0.006243063602596521, -0.03822198137640953, 0.0079456502571702, -0.026022382080554962, -0.0020874275360256433, 0.007035270798951387, 0.01997741498053074, 0.010895770974457264, -0.028267446905374527, -0.014736136421561241, -0.015462128445506096, 0.0015849602641537786, 0.02770049497485161, 0.0256063062697649, -0.04674648120999336, -0.03125877305865288, -0.019734665751457214, -0.006155806127935648, 0.008192810229957104, 0.024924201890826225, -0.005736920051276684, 0.00175569299608469, 0.01731896586716175, -0.01095239445567131, 0.044766124337911606, -0.004607219714671373, 0.02972651645541191, -0.0011404857505112886, 0.010338529013097286, -0.00864625908434391, -0.03536092862486839, 0.022458527237176895, 0.03270869329571724, 0.004935648757964373, -1.3943132870508634e-8, -0.012858119793236256, 0.020599601790308952, 0.015135693363845348, -0.007057948037981987, -0.004436776507645845, 0.0011963557917624712, -0.0074013168923556805, -0.005220900755375624, -0.009973994456231594, 0.0337911881506443, 0.023908451199531555, -0.021323952823877335, -0.00492184329777956, 0.027767490595579147, -0.0057942247949540615, -0.05485235154628754, -0.014885487034916878, -0.021571801975369453, 0.04065493866801262, 0.001929985941387713, -0.00934546161442995, 0.05662648007273674, -0.026383033022284508, -0.022563409060239792, 0.03363867476582527, -0.01591941900551319, -0.03773102909326553, -0.08739395439624786, -0.00656121363863349, 0.021833179518580437, -0.019057653844356537, -0.019989551976323128, 0.0012641808716580272, 0.02782510593533516, -0.022145602852106094, -0.04605691879987717, -0.012240888550877571, -0.026108771562576294, 0.02862490527331829, 0.020929483696818352, 0.0011032895417883992, 0.023269914090633392, -0.0009708739235065877, -0.03134573996067047, -0.035450633615255356, -0.010123594664037228, -0.016182446852326393, -0.03172120451927185, -0.0026838090270757675, -0.028108900412917137, 0.0310797281563282, 0.0215974822640419, 0.01880660466849804, 0.027200788259506226, 0.04538187384605408, 0.019217107445001602, 0.014642493799328804, -0.003445759881287813, -0.04171176627278328, -0.0004943666863255203, -0.005949156824499369, 0.019397495314478874, -0.022949853911995888, -0.042528171092271805 ]
consulting-is-like-inception
https://markhneedham.com/blog/2010/11/30/consulting-is-like-inception
false
2010-11-30 20:35:56
Noone wants your stupid process - Jeff Patton
[ "software-development" ]
[ "Software Development" ]
My former colleague http://blog.m.artins.net/[Alexandre Martins] recently pointed me to a presentation given by http://www.agileproductdesign.com/[Jeff Patton] at Agile Roots titled 'http://confreaks.net/videos/44-agileroots2010-keynote-no-one-wants-your-stupid-process[Noone wants your stupid process]' and it's one of the most interesting talks I've watched recently. In the talk Jeff cites http://www.globo.com/[globo.com] as a case study of a company which is using an agile approach to development of their website but are starting to doubt whether it's the best way to go about things. In this part of the talk Jeff describes a conversation with the CEO of globo.com where the CEO pointed out that before they started 'doing agile' *developers used to care a lot about the product that they were building but now they seem to only care about acceptance criteria*. I've started to come to a similar conclusion recently and I actually find it way more fun to work on writing scripts that others in my team will use because there are no acceptance criteria and I can concentrate on making it easy for others to use. An interesting idea which I've never heard before is that of *pulling out features if they're not being used*. Presumably the thinking behind this is to simplify the product and make it easier for the user to use. Patton goes on to quote a model which http://www.uie.com/[Jared Spool] came up with for describing process: [source,text] ---- Tricks -> Techniques -> Process -> Methodology -> Dogma ---- Spool's research suggests that if a process is written down and must be followed by people in an organisation i.e. a methodology then it's very likely that the organisation will be failing. On the other hand successful organisations used a lot of tricks and techniques and worked out what to do in the moment. Patton also talks about *owning the process rather than allowing it to own us* i.e. we don't want to become a slave to what the process says we should do. My former colleague Toni Terreno has been talking about http://www.the-arm.com/2010/10/wanna-go-fast-reduce-your-feedback-loops/[the stripped down XP/Agile process that he and his colleagues at Forward have been using] which seems a pretty good example of owning the process to me. Another idea that I quite liked is that of spending more time doing discovery rather than delivery i.e. learning about the world, imagining our solution, evaluating working solutions in the world. Dan North talks about a similar topic in his 'http://www.infoq.com/presentations/Simplicity-Architect[Simplicity - The Way of the Unusual Architect]' talk about half way through. He also talks about the importance of learning about our users's in context i.e. we should go to where the users are and see the problems they have and how they are/could use our product. The last take away for me is that we need to try and find a way to *measure the outcome of the product we're building rather than the output*. Right now we probably measure the velocity in which we're completing stories but we don't have a good way of measuring whether or not what we built was valuable to our users. I really liked this talk, I'd recommend watching it.
null
null
[ 0.01816970482468605, 0.014733768999576569, -0.004182646982371807, 0.029896924272179604, 0.0969211757183075, 0.014265731908380985, 0.013953055255115032, 0.04276060685515404, 0.026728415861725807, -0.022752447053790092, -0.020285218954086304, -0.001700819586403668, -0.04741428792476654, 0.024637937545776367, -0.04353417828679085, 0.05542873963713646, 0.050860412418842316, 0.01054795179516077, 0.02553715743124485, 0.007073478307574987, 0.033185090869665146, 0.0782281681895256, 0.021673250943422318, 0.02529013343155384, 0.0408535897731781, 0.029845528304576874, 0.010232203640043736, -0.02453245222568512, -0.06726215779781342, -0.012665698304772377, 0.05267612636089325, -0.005499238148331642, 0.010188350453972816, -0.010685744695365429, 0.024398233741521835, -0.022686617448925972, -0.006150063127279282, 0.03335505351424217, -0.002514796331524849, -0.01827024668455124, -0.06249357759952545, 0.06295948475599289, -0.021159598603844643, 0.015968849882483482, -0.03509975224733353, 0.0057459259405732155, -0.03144698217511177, 0.009170298464596272, -0.0020255576819181442, -0.003972871694713831, -0.0822044163942337, 0.028362873941659927, -0.006884179078042507, -0.011383745819330215, -0.008717742748558521, 0.04095989838242531, 0.016144203022122383, -0.058746278285980225, -0.00945377629250288, -0.03267011418938637, -0.03168322890996933, -0.0232629906386137, -0.00742504745721817, 0.04179001972079277, 0.04712121933698654, -0.03943074122071266, -0.004118700511753559, 0.037798985838890076, -0.041247013956308365, -0.0024916543625295162, -0.006712060887366533, -0.00015001963765826076, -0.0028706840239465237, -0.006913704331964254, 0.010717587545514107, -0.06726747006177902, 0.0005717038875445724, 0.0721200630068779, 0.021871069446206093, 0.04819375276565552, -0.02240661531686783, 0.012067408300936222, 0.0032670453656464815, 0.03293818607926369, -0.03272192180156708, -0.02608189359307289, 0.008375025354325771, -0.019437413662672043, -0.06763064116239548, 0.05037424713373184, 0.005042173434048891, -0.0732072964310646, 0.019801700487732887, 0.04426344856619835, -0.0018064164323732257, 0.010124734602868557, 0.03455033898353577, 0.016249367967247963, -0.014873542822897434, -0.007178244646638632, -0.04392322897911072, -0.013705258257687092, -0.019699929282069206, 0.001433483324944973, -0.07161504030227661, -0.01611262373626232, -0.03694910556077957, -0.015044051222503185, -0.012912333942949772, -0.008255192078649998, -0.02848546765744686, 0.04293094575405121, -0.03479692339897156, 0.009036035276949406, -0.06812898069620132, 0.07896239310503006, 0.009727207012474537, -0.03588517755270004, 0.0015408179024234414, -0.0002382503735134378, 0.04613460972905159, 0.018711406737565994, -0.008736941032111645, 0.08111480623483658, 0.014478273689746857, 0.010056893341243267, -0.027172204107046127, 0.07240558415651321, -0.00799869280308485, -0.07005558907985687, -0.00929232593625784, 0.05193086713552475, -0.019221333786845207, -0.015412363223731518, -0.008521754294633865, -0.02710842154920101, 0.019322428852319717, -0.00211503473110497, 0.03594735264778137, 0.04039953649044037, 0.0021251605357974768, -0.014057223685085773, 0.009518451988697052, 0.01861376129090786, 0.03625447675585747, -0.017009403556585312, 0.0036149118095636368, -0.0315910279750824, -0.05224213749170303, -0.00923463236540556, 0.013556468300521374, 0.0041282568126916885, 0.027054866775870323, -0.03398647531867027, 0.028414292261004448, 0.09686563163995743, 0.03549325466156006, -0.003514558309689164, -0.008155034855008125, 0.016939552500844002, 0.04092498868703842, 0.012375801801681519, 0.009803094901144505, 0.0263126939535141, 0.01825498230755329, 0.003590439446270466, -0.009836702607572079, 0.03288635239005089, 0.0011858028592541814, 0.0029121858533471823, -0.058839987963438034, -0.043660856783390045, 0.04373466968536377, -0.040814947336912155, -0.018116872757673264, 0.04174328222870827, 0.06672851741313934, 0.04669589176774025, 0.03912300243973732, 0.015000177547335625, -0.07620963454246521, 0.030564380809664726, -0.0011540420819073915, 0.018975887447595596, 0.0260268934071064, -0.022891882807016373, 0.06752029061317444, 0.024622872471809387, 0.004107926040887833, 0.0607227124273777, -0.07574217021465302, -0.10150772333145142, -0.028778957203030586, -0.018828080967068672, 0.04784104973077774, -0.040805134922266006, 0.016828665509819984, 0.07016599178314209, 0.007905307225883007, 0.048920974135398865, 0.034669533371925354, -0.0014727002708241343, -0.008464843034744263, -0.036213260143995285, -0.03569486737251282, 0.06193413957953453, 0.05469847097992897, -0.005981596652418375, -0.04827776923775673, 0.019654570147395134, 0.004547412507236004, -0.001020954456180334, 0.0460667721927166, -0.02202431485056877, 0.03872537612915039, 0.013608895242214203, 0.06235868111252785, -0.037160519510507584, 0.04034285619854927, -0.036713216453790665, 0.0009343643905594945, -0.00013558070349972695, -0.014234274625778198, 0.02541469968855381, 0.0019644408021122217, 0.10378758609294891, 0.05679851770401001, -0.045512571930885315, -0.043031055480241776, 0.02643602341413498, 0.03158072009682655, -0.029440870508551598, 0.009325120598077774, -0.016112832352519035, 0.012809975072741508, 0.015356829389929771, -0.041150856763124466, -0.020753661170601845, 0.028972603380680084, -0.05580064654350281, 0.014356573112308979, 0.04562490060925484, -0.017436543479561806, 0.05890551954507828, -0.012594540603458881, -0.009091433137655258, -0.008290305733680725, 0.004898142069578171, -0.04004514589905739, 0.028624340891838074, 0.02270808443427086, -0.011103956028819084, 0.038558509200811386, -0.014412258751690388, -0.03895852714776993, -0.04684154689311981, -0.03305817022919655, 0.02214500494301319, 0.05305635929107666, 0.07019999623298645, -0.024750296026468277, 0.04757564514875412, -0.006240222603082657, 0.04266981780529022, 0.023562608286738396, -0.039190538227558136, -0.04456765949726105, -0.03824620693922043, -0.001002030330710113, 0.03934641182422638, 0.006618021987378597, 0.011724939569830894, 0.008470031432807446, 0.0011545228771865368, -0.010810207575559616, -0.006646393798291683, 0.009161197580397129, -0.004230756312608719, -0.000005098502697364893, -0.03233538568019867, -0.03032611310482025, 0.047000981867313385, -0.04008771851658821, -0.01035127229988575, 0.001742160296998918, -0.07861895859241486, 0.02562173828482628, -0.07011955976486206, -0.0403098426759243, 0.00126665981952101, 0.01449881587177515, 0.06735114008188248, 0.009033296257257462, 0.025054043158888817, 0.03918227553367615, 0.011561681516468525, 0.006746541243046522, 0.007481488864868879, -0.004792791325598955, 0.026190467178821564, 0.012992200441658497, -0.020738493651151657, 0.05969945713877678, 0.005066019482910633, 0.017954107373952866, -0.06073183938860893, 0.07477837800979614, -0.06266149133443832, -0.27825191617012024, 0.03327438235282898, 0.014717556536197662, -0.03550245240330696, 0.01518017053604126, -0.010823376476764679, 0.007322872523218393, -0.05412742868065834, -0.020927835255861282, 0.006700833793729544, -0.06091887131333351, -0.017058560624718666, -0.013984913006424904, 0.031896091997623444, 0.0020360732451081276, 0.043316800147295, 0.03909006342291832, -0.027540411800146103, 0.005235436372458935, 0.043765440583229065, -0.02297298237681389, -0.06706894934177399, 0.005645380821079016, 0.024239525198936462, 0.04728705435991287, 0.0520959198474884, -0.08166006207466125, 0.05396635830402374, -0.043950412422418594, -0.004112893715500832, 0.018733326345682144, -0.002360327634960413, -0.007255420554429293, -0.021214207634329796, -0.006036275532096624, -0.010735390707850456, 0.039247650653123856, -0.006022783927619457, -0.010696607641875744, -0.010988057591021061, 0.006696607451885939, -0.042537376284599304, 0.017478613182902336, 0.01312266569584608, 0.06376492232084274, 0.015880689024925232, -0.07893849909305573, -0.03080749697983265, -0.023593608289957047, 0.07453132420778275, -0.040487390011548996, -0.0218645129352808, -0.0037106650415807962, 0.04466533660888672, -0.00457929540425539, -0.013176970183849335, 0.0010021331254392862, -0.013300289399921894, -0.03661074861884117, -0.013407602906227112, -0.013070867396891117, -0.03361360356211662, -0.0032340562902390957, -0.061626359820365906, 0.005276704207062721, -0.06336436420679092, -0.07733342796564102, -0.005875340662896633, 0.06154894828796387, -0.010559380054473877, -0.01728261262178421, 0.018106207251548767, 0.004040681291371584, -0.10889189690351486, 0.008503828197717667, -0.0075066108256578445, -0.01772506907582283, 0.009282968007028103, 0.01946183852851391, 0.04622608423233032, -0.023770278319716454, -0.0727957934141159, 0.01858736202120781, -0.0007191866170614958, 0.027960343286395073, -0.011121461167931557, 0.06496361643075943, 0.02743919938802719, -0.046886347234249115, 0.017190882936120033, 0.059812333434820175, 0.02411569468677044, -0.028940385207533836, -0.02216973342001438, 0.029070066288113594, 0.00428070267662406, 0.021386412903666496, -0.013726308941841125, 0.013778630644083023, 0.025386225432157516, -0.0013022851198911667, -0.052003778517246246, 0.029055790975689888, -0.013868839479982853, -0.002192179672420025, -0.006605479866266251, -0.05861256271600723, -0.0026584435254335403, 0.05225319415330887, 0.021636364981532097, 0.004707408137619495, -0.016639437526464462, 0.0001568092848174274, -0.05824001878499985, -0.0434173122048378, 0.00194113131146878, -0.006073143798857927, 0.049504950642585754, -0.01262947078794241, -0.02626282349228859, -0.05544397979974747, 0.001807526801712811, -0.03100321814417839, -0.006964269559830427, -0.07522636651992798, -0.011676305904984474, -0.0011054313508793712, -0.008231354877352715, 0.024524232372641563, 0.022083979099988937, -0.021156203001737595, 0.02213301509618759, 0.02102050371468067, -0.03729841485619545, 0.016759075224399567, -0.034895673394203186, -0.07286551594734192, -0.03465678542852402, -0.002407379914075136, -0.01897280290722847, -0.013005191460251808, 0.02982037514448166, 0.012766778469085693, 0.016707630828022957, 0.04193832352757454, 0.025470947846770287, 0.016922177746891975, -0.005510094575583935, 0.037542104721069336, 0.02993273362517357, 0.010229352861642838, -0.06607653200626373, -0.0012181479251012206, -0.043124306946992874, -0.025335906073451042, -0.03364337235689163, 0.03127588331699371, -0.007075933273881674, -0.019837256520986557, -0.009559552185237408, -0.0068963561207056046, -0.03304009512066841, -0.031278908252716064, -0.04026572406291962, 0.02586856298148632, 0.0607108399271965, -0.028591180220246315, 0.029531212523579597, -0.023835036903619766, -0.00027353313635103405, 0.018895786255598068, 0.0007182235131040215, -0.03601953759789467, 0.009372399188578129, 0.016929831355810165, 0.0027575595304369926, -0.0010917945764958858, 0.020775634795427322, 0.03559143468737602, 0.005169244948774576, 0.010627868585288525, -0.04430089145898819, -0.0029029969591647387, 0.012241574004292488, 0.0341680534183979, 0.012538601644337177, -0.006857669912278652, 0.006106194108724594, -0.007935297675430775, -0.019373973831534386, -0.052705373615026474, 0.005691173020750284, 0.006243444979190826, 0.004460370633751154, -0.03980018198490143, -0.08566857129335403, 0.06333494931459427, 0.010427896864712238, 0.01091727614402771, 0.012856838293373585, -0.010777503252029419, -0.013088172301650047, -0.023383282124996185, 0.02440844662487507, 0.054619789123535156, -0.06139238923788071, -0.006596233695745468, -0.01381969079375267, -0.0005114953964948654, 0.02307373285293579, -0.002972735557705164, -0.03712210804224014, -0.014242236502468586, -0.01362003106623888, 0.01079174131155014, -0.06728105992078781, -0.011325810104608536, -0.027586577460169792, 0.005752140190452337, 0.013903799466788769, 0.004037307109683752, -0.031138673424720764, -0.023445356637239456, 0.003386495867744088, -0.028487714007496834, 0.018323387950658798, -0.03988247737288475, -0.011033737100660801, 0.014385174959897995, -0.03910563141107559, -0.005310575012117624, -0.03769378364086151, 0.0018373258644714952, 0.013926444575190544, -0.04082198813557625, 0.00037336593959480524, -0.03956925868988037, -0.0017078561941161752, 0.020972147583961487, 0.039348285645246506, -0.020293306559324265, -0.014981023967266083, -0.043530985713005066, -0.012848072685301304, -0.046445515006780624, 0.0012375405058264732, -0.052181340754032135, -0.0033707404509186745, 0.02479182928800583, 0.07426455616950989, 0.028054196387529373, 0.05342015624046326, -0.016343047842383385, -0.021165309473872185, 0.03544793277978897, -0.07607394456863403, -0.03122095763683319, -0.03800085186958313, -0.06710242480039597, 0.009287486784160137, 0.028396476060152054, 0.010478641837835312, -0.035779234021902084, 0.045384325087070465, 0.02405915968120098, 0.03252725675702095, 0.02942500077188015, 0.02025473490357399, 0.019298477098345757, -0.03378908336162567, 0.0037479784805327654, -0.06935273855924606, -0.03067832998931408, 0.022813022136688232, 0.011081952601671219, -0.007864016108214855, -0.0008166740881279111, -0.036212287843227386, 0.03574527055025101, -0.06408259272575378, -0.026415755972266197, 0.05325189232826233, -0.002071540802717209, -0.02052154950797558, 0.02220134250819683, -0.06764568388462067, 0.027066586539149284, 0.009660428389906883, -0.055450908839702606, -0.010911410674452782, -0.012589303776621819, 0.053053759038448334, 0.006916016340255737, 0.03330530226230621, -0.052569493651390076, -0.018522845581173897, 0.08689217269420624, 0.008568205870687962, -0.02375965565443039, 0.05584528669714928, 0.01865212991833687, 0.04529912769794464, 0.04071412980556488, 0.010270641185343266, -0.03534410893917084, 0.010633979924023151, -0.012584725394845009, -0.06019316613674164, 0.032974619418382645, 0.022148815914988518, -0.024937141686677933, -0.023408666253089905, 0.06280715018510818, 0.013069742359220982, -0.03296712040901184, -0.04794379696249962, -0.00025027181254699826, -0.05583363398909569, 0.010753338225185871, -0.015365964733064175, 0.013109930790960789, -0.0813874825835228, 0.040230415761470795, -0.021889755502343178, 0.03420627862215042, 0.06753885000944138, -0.007709899917244911, -0.002348431618884206, -0.006555764004588127, 0.07136555016040802, 0.07467251271009445, 0.06519053876399994, 0.024028634652495384, 0.06279511749744415, -0.015346389263868332, -0.03332216665148735, 0.01976858265697956, 0.012693946249783039, -0.013926605693995953, -0.017339138314127922, 0.014855294488370419, 0.052533503621816635, -0.03414308279752731, 0.0738762766122818, -0.011473984457552433, -0.04722964018583298, -0.008508141152560711, 0.04011797159910202, 0.006795394700020552, 0.06420646607875824, 0.00796657893806696, 0.004280758090317249, -0.03031475841999054, -0.04244811087846756, 0.011200618930161, -0.04602527618408203, -0.028968557715415955, 0.053357820957899094, -0.0012652515433728695, 0.046728428453207016, 0.007259744685143232, 0.030552567914128304, 0.08491872996091843, -0.04701779782772064, 0.021156128495931625, -0.0006479799631051719, 0.018908757716417313, -0.013745923526585102, 0.007438217289745808, -0.011918401345610619, -0.021837014704942703, 0.002655650721862912, -0.026367442682385445, -0.013100412674248219, -0.023995215073227882, -0.02137533389031887, 0.05039931461215019, -0.01754707470536232, 0.009915630333125591, 0.030789999291300774, -0.0030064890161156654, -0.05575606971979141, -0.05713868513703346, -0.02394547499716282, -0.03956858068704605, -0.03935842588543892, -0.012285906821489334, 0.033149611204862595, -0.01289159432053566, -0.04149507358670235, -0.002745540114119649, -0.013399881310760975, -0.030851347371935844, 0.04402882978320122, -0.05515702813863754, -0.017338411882519722, 0.0014351928839460015, 0.011116140522062778, 0.013127495534718037, 0.005702804774045944, 0.034379489719867706, -0.0018274125177413225, -0.003524300642311573, -0.017236335203051567, 0.02885342389345169, 0.010414968244731426, 0.00722264451906085, 0.003952494822442532, -0.08482501655817032, 0.014651156030595303, 0.02550705336034298, -0.021521935239434242, -0.06440824270248413, 0.0412437841296196, 0.010662537068128586, 0.005628474056720734, 0.053996145725250244, -0.004131176974624395, 0.013872581534087658, -0.05563179776072502, -0.011144175194203854, -0.028362302109599113, 0.0007291344227269292, 0.05029170960187912, -0.02655814029276371, 0.08997689932584763, 0.03627471253275871, -0.004022018983960152, -0.0639885663986206, -0.012026042677462101, -0.007500311825424433, 0.025270842015743256, -0.000823703536298126, -0.023180333897471428, -0.03282094746828079, -0.07432541251182556, -0.03438517078757286, 0.024428799748420715, -0.023147428408265114, -0.025600168853998184, 0.04037436470389366, 0.027073722332715988, -0.016446631401777267, 0.012035631574690342, -0.061158087104558945, 0.038943398743867874, -0.02972942218184471, -0.02687993273139, -0.015910541638731956, 0.013814393430948257, -0.01165915746241808, -0.012866273522377014, 0.017384611070156097, -0.05304873362183571, 0.0048791225999593735, 0.02128640003502369, 0.027464736253023148, 0.03168569505214691, 0.014854512177407742, -0.0012291264720261097 ]
[ -0.09181373566389084, -0.0013505660463124514, -0.031444307416677475, -0.03749711066484451, 0.04037235304713249, -0.04322607442736626, 0.008088809438049793, 0.021997198462486267, -0.013349826447665691, -0.023469189181923866, 0.013593388721346855, -0.005195997655391693, 0.0002532346697989851, -0.04925176873803139, 0.06367375701665878, -0.00064614147413522, 0.0014789692359045148, -0.058115243911743164, 0.011109338141977787, 0.024057447910308838, 0.0011384976096451283, -0.04356037825345993, -0.05080380663275719, 0.0008400182705372572, 0.017430871725082397, 0.027470676228404045, 0.006612349301576614, -0.027417603880167007, 0.005001907702535391, -0.1563575565814972, 0.020654352381825447, 0.019198650494217873, 0.059418268501758575, -0.012421879917383194, 0.012757539749145508, 0.08149465918540955, 0.02724325843155384, 0.015395678579807281, -0.008575288578867912, 0.030561137944459915, 0.022300658747553825, 0.012014615349471569, -0.05175470933318138, -0.02055555023252964, 0.026102393865585327, 0.0014256102731451392, 0.015377068892121315, -0.06063005328178406, -0.038991980254650116, 0.008311347104609013, -0.04657856002449989, -0.048738669604063034, -0.031638287007808685, -0.031662385910749435, -0.028311138972640038, 0.03902726247906685, 0.02564011514186859, 0.04899030178785324, 0.0007831671391613781, 0.016156241297721863, 0.005747833754867315, -0.040092308074235916, -0.14930681884288788, 0.06896162033081055, 0.038022588938474655, 0.0557376854121685, -0.06727884709835052, -0.00898326002061367, -0.02514149621129036, 0.09898911416530609, 0.0343373566865921, -0.04362432658672333, -0.020635155960917473, 0.026381878182291985, 0.015733564272522926, 0.010541706345975399, 0.0009440855355933309, 0.013840251602232456, 0.017242755740880966, -0.031514935195446014, -0.025832798331975937, 0.003249161411076784, -0.03487575426697731, -0.00818871334195137, -0.06069524213671684, 0.016146816313266754, -0.003483027685433626, 0.05484381690621376, 0.05905544012784958, 0.03543347492814064, 0.05487227812409401, -0.0025024244096130133, 0.04549138620495796, -0.013296760618686676, -0.054292093962430954, -0.026699505746364594, 0.0013318074634298682, 0.008462740108370781, -0.0749734565615654, 0.4444662630558014, -0.02557850070297718, -0.01573830470442772, 0.10302766412496567, 0.03370864689350128, 0.0020093692000955343, 0.004806140437722206, 0.01739228330552578, -0.04513358697295189, 0.06284233927726746, 0.0031319321133196354, 0.04043374955654144, 0.024722512811422348, 0.054283734411001205, -0.05611700937151909, 0.010968228802084923, 0.033615682274103165, -0.015844061970710754, 0.014633948914706707, -0.012104340828955173, -0.0016589068109169602, -0.02753334864974022, 0.00620149914175272, 0.04494701325893402, 0.003296462120488286, -0.035531602799892426, -0.03620055690407753, 0.02736947499215603, 0.06454691290855408, 0.036150675266981125, -0.027902495115995407, 0.05941970646381378, -0.04777718335390091, -0.0630095899105072, 0.010536781512200832, 0.0027230652049183846, 0.009505978785455227, 0.030497094616293907, -0.01196922268718481, -0.025892339646816254, 0.04617517441511154, 0.02731003612279892, 0.00748563464730978, 0.04059166833758354, -0.030298030003905296, -0.018969550728797913, 0.11483725905418396, 0.026731405407190323, -0.03317170590162277, -0.027800891548395157, -0.031989872455596924, -0.005363269243389368, 0.014111865311861038, 0.019351987168192863, -0.04225292429327965, 0.041701823472976685, -0.010912264697253704, 0.10057629644870758, 0.009187315590679646, -0.07613886147737503, 0.00753586133942008, -0.012806854210793972, -0.01894976943731308, -0.06379689276218414, 0.05086876451969147, 0.08849713951349258, -0.12225358188152313, -0.02748141437768936, -0.0006282477988861501, 0.04235988110303879, -0.04855262488126755, 0.0074693444184958935, 0.008526179008185863, -0.015522131696343422, -0.025170648470520973, 0.06330253183841705, -0.028269773349165916, -0.02454143762588501, 0.004636799450963736, 0.04994325339794159, 0.027529295533895493, 0.04188317805528641, 0.02316686138510704, -0.01222164649516344, -0.01780477911233902, -0.03870711103081703, -0.07316246628761292, -0.02592354081571102, -0.012039671652019024, -0.03923259302973747, 0.010695205070078373, -0.03810076788067818, -0.0005085009033791721, -0.07292082160711288, 0.09756775945425034, -0.017959987744688988, -0.02370704710483551, 0.012708442285656929, -0.004509870894253254, -0.04557505622506142, -0.014777048490941525, -0.08687993884086609, 0.03294191509485245, -0.04313100501894951, 0.02117498219013214, -0.05060543119907379, 0.05705150216817856, 0.02950884960591793, -0.029491961002349854, 0.0907471552491188, 0.052684105932712555, -0.02682090364396572, -0.04638981819152832, 0.018714480102062225, 0.03792192414402962, 0.00997029710561037, 0.004702915903180838, -0.015920264646410942, 0.025728005915880203, -0.006414902862161398, 0.016199471428990364, -0.02734009549021721, 0.03467506915330887, -0.016486989334225655, -0.3445751965045929, -0.036332838237285614, -0.02627221867442131, 0.005636274348944426, 0.013845373876392841, -0.029726790264248848, 0.026938987895846367, -0.040626369416713715, -0.020389428362250328, -0.012519779615104198, 0.07325316220521927, -0.03569673001766205, 0.007775662932544947, -0.08537304401397705, 0.005426065064966679, 0.014324489049613476, -0.03416811302304268, -0.03235985338687897, -0.028374947607517242, -0.013772333040833473, 0.008085698820650578, -0.01194580178707838, -0.019607730209827423, -0.0433807298541069, -0.026073580607771873, -0.041069742292165756, 0.08582986891269684, 0.017513729631900787, 0.08231449872255325, -0.026403186842799187, 0.030500292778015137, -0.0036626262590289116, 0.026151761412620544, -0.11067193001508713, 0.020183129236102104, -0.002013345016166568, 0.028902217745780945, -0.05058009549975395, 0.03506626933813095, -0.048826463520526886, -0.059954386204481125, 0.009052342735230923, -0.05626291036605835, -0.044291019439697266, -0.05381283164024353, -0.0023647774942219257, -0.03417575731873512, -0.012511280365288258, -0.040220871567726135, 0.07406877726316452, 0.007679109461605549, 0.017342403531074524, 0.03467567265033722, 0.02342686988413334, -0.0010235282825306058, -0.02438482455909252, -0.07499460130929947, 0.04461871460080147, -0.0023589336778968573, 0.008168689906597137, 0.015494751743972301, 0.056251879781484604, 0.026455381885170937, -0.03755144402384758, 0.019658995792269707, -0.010488254949450493, 0.02415812946856022, 0.006055253092199564, 0.042622193694114685, -0.01863866113126278, 0.006621868349611759, 0.10680396109819412, 0.007931031286716461, -0.03043409250676632, 0.020541023463010788, 0.016796760261058807, -0.023067031055688858, -0.012128621339797974, -0.012283234857022762, -0.020536193624138832, 0.009102175943553448, -0.02143111452460289, 0.02410004287958145, -0.02562735788524151, 0.001721216831356287, 0.02171298861503601, -0.009783254005014896, -0.06496574729681015, 0.040918730199337006, 0.008315438404679298, -0.02129513956606388, -0.00882614403963089, -0.04208362102508545, -0.03684348240494728, 0.0899852067232132, 0.0064989859238266945, -0.23989450931549072, 0.01090968307107687, 0.05616931989789009, 0.05310914292931557, -0.0030817040242254734, 0.04963807016611099, 0.024134017527103424, -0.043908197432756424, 0.02267940156161785, 0.04051074758172035, 0.01702546887099743, 0.001334154512733221, 0.011997388675808907, -0.020359430462121964, 0.04759572073817253, 0.004103390034288168, 0.04366331174969673, -0.014836924150586128, 0.024197474122047424, -0.015958944335579872, 0.020473439246416092, 0.010302267968654633, 0.13225042819976807, -0.005584373138844967, 0.017231307923793793, 0.023511193692684174, -0.004316709004342556, -0.00013656518422067165, 0.07351776957511902, 0.0032494443003088236, 0.021892858669161797, -0.00031154832686297596, 0.04193292185664177, 0.0010971614392474294, 0.018115995451807976, -0.09546394646167755, -0.03399229049682617, 0.008085952140390873, 0.02310005947947502, 0.003714148886501789, 0.012217042967677116, -0.03030865639448166, 0.008204389363527298, 0.016301754862070084, 0.07103581726551056, -0.012924499809741974, -0.018480585888028145, -0.06277506053447723, -0.05602903291583061, -0.004513511434197426, -0.04607542231678963, -0.04518566280603409, 0.0034325849264860153, -0.003570843953639269, 0.00506451353430748, 0.0862504094839096, 0.04659465700387955, -0.01363823190331459, 0.0017766604432836175, -0.006686056964099407, -0.01922593265771866, -0.02782469242811203, 0.10121642053127289, 0.04966012015938759, 0.054711420089006424 ]
[ -0.02628704160451889, -0.004262386821210384, -0.020791776478290558, -0.014047544449567795, -0.01317757647484541, 0.0053848461247980595, -0.00040806460310705006, 0.01639593206346035, 0.0016717133112251759, -0.002024701563641429, 0.004117309115827084, 0.046492185443639755, 0.019734274595975876, -0.013976654969155788, 0.02243313193321228, -0.0007046110695227981, 0.02251524105668068, -0.0169456098228693, 0.00866516213864088, -0.011723644100129604, -0.001141241635195911, 0.024758651852607727, -0.010276476852595806, 0.00024938053684309125, -0.032409798353910446, 0.0025051820557564497, -0.030645133927464485, -0.02319696918129921, 0.034967090934515, -0.12872353196144104, -0.0009727744036354125, -0.028534306213259697, 0.006230978760868311, 0.011047539301216602, 0.03932445868849754, 0.011867241933941841, 0.010210331529378891, 0.0047882674261927605, -0.00014992411888670176, -0.012164561077952385, 0.02526627667248249, -0.03626842051744461, -0.012622129172086716, 0.010535351932048798, 0.006959258113056421, 0.011955208145081997, -0.019786793738603592, -0.031967028975486755, -0.02714560553431511, -0.02465810626745224, -0.0425015427172184, -0.027090609073638916, -0.04009246453642845, 0.0034004906192421913, -0.0024642148055136204, -0.003447753842920065, 0.01590888388454914, -0.0063043562695384026, 0.03002895601093769, -0.00582406809553504, 0.013837705366313457, -0.012466361746191978, -0.04833543300628662, -0.004444252233952284, 0.0032750980462878942, -0.0038407063111662865, 0.00858351495116949, 0.005756729748100042, -0.062395185232162476, 0.014078870415687561, 0.013484419323503971, 0.0014064625138416886, -0.04564458504319191, -0.017537090927362442, -0.0004294204991310835, 0.008443241007626057, 0.005898794159293175, 0.011671705171465874, 0.024302776902914047, -0.002124596619978547, -0.03537743166089058, 0.03423374518752098, 0.01003164704889059, 0.007930445484817028, -0.03622802719473839, 0.006435101386159658, 0.01125554833561182, 0.005599812138825655, 0.046445753425359726, 0.0033249163534492254, -0.00933543499559164, 0.01029472891241312, 0.0010388647206127644, 0.005190094467252493, -0.08488034456968307, -0.016429033130407333, -0.002513257320970297, -0.02503635361790657, -0.01855255290865898, 0.8639619946479797, -0.013830501586198807, 0.005864767357707024, 0.05354227498173714, -0.0061124349012970924, -0.0045109158381819725, 0.004335636738687754, -0.0012731465976685286, 0.03231855109333992, 0.04062797501683235, -0.016445470973849297, -0.02354937605559826, 0.042493123561143875, 0.016602076590061188, 0.0156848207116127, 0.012855869717895985, -0.0009111311519518495, 0.006476918701082468, -0.03649725019931793, -0.003026288002729416, 0.02254478447139263, 0.03809535130858421, 0.024565596133470535, 0.03711948171257973, 0.01212282944470644, -0.01078073587268591, -0.1761120855808258, -0.015090410597622395, -8.482446581402307e-33, 0.04539800435304642, -0.01095188595354557, -0.0019862826447933912, -0.019877124577760696, 0.0006278944201767445, 0.0058538224548101425, 0.030235959216952324, -0.01104730274528265, -0.01530481968075037, -0.018151918426156044, -0.010086783207952976, -0.018237227573990822, 0.0031865667551755905, -0.0009488149080425501, 0.02302524819970131, -0.004671112634241581, -0.007081824354827404, 0.02888672612607479, 0.004404775332659483, 0.019919559359550476, 0.04257015883922577, 0.022916963323950768, -0.02598581090569496, 0.01066711824387312, 0.003260605502873659, 0.017877940088510513, -0.01735527068376541, 0.018509184941649437, -0.0181527528911829, -0.03523644059896469, -0.005425422918051481, 0.009852911345660686, -0.02631295844912529, -0.006961665581911802, -0.007480624131858349, -0.053947437554597855, -0.052518442273139954, -0.0065075792372226715, -0.00546663161367178, -0.019491370767354965, -0.026553897187113762, -0.0158648993819952, -0.05177110433578491, 0.0036762775853276253, 0.013857676647603512, 0.006266539916396141, 0.021233752369880676, -0.011034468188881874, 0.018477635458111763, -0.00667165732011199, 0.023829996585845947, 0.014994176104664803, 0.02965075895190239, 0.025069139897823334, -0.020714227110147476, 0.014146842062473297, -0.004442562814801931, -0.014455309137701988, 0.00851904135197401, -0.004551100544631481, 0.01707608252763748, 0.010337079875171185, -0.015302443876862526, -0.0011828537099063396, -0.024164954200387, -0.03314976766705513, 0.008423326537013054, 0.02267114818096161, 0.011979776434600353, -0.008964846841990948, -0.04736316576600075, -0.011187892407178879, -0.013763427734375, -0.000763988820835948, 0.00161431182641536, -0.02334427461028099, 0.01862342469394207, 0.04670384153723717, -0.01665005274116993, 0.027079418301582336, 0.011138674803078175, 0.016770265996456146, -0.004047591704875231, -0.007621721364557743, -0.012751900590956211, 0.012538528069853783, -0.0011890390887856483, -0.015623347833752632, -0.039981402456760406, -0.00024586496874690056, 0.03637724742293358, 0.009205194190144539, -0.002976604038849473, -0.008862406015396118, 0.003676850348711014, 8.0679856404016e-33, 0.009240545332431793, -0.006703757680952549, -0.012743902392685413, 0.019919712096452713, 0.04014330357313156, -0.03132624179124832, 0.006254368461668491, 0.004937413614243269, -0.06634361296892166, 0.005431553348898888, -0.009100697003304958, -0.012544007040560246, -0.04450070112943649, 0.03917519003152847, 0.03647972270846367, -0.017782490700483322, 0.022883085533976555, -0.049618832767009735, 0.0319918729364872, 0.019139261916279793, 0.033660486340522766, 0.004259978886693716, 0.0015921088634058833, -0.0092634791508317, 0.022685758769512177, 0.04926898330450058, -0.027456222102046013, 0.03144928440451622, 0.030714506283402443, -0.013366618193686008, 0.014655567705631256, 0.0029688505455851555, 0.005711677484214306, -0.0174824520945549, -0.011983979493379593, 0.01124124601483345, -0.04366185888648033, -0.007715987507253885, 0.02406523935496807, -0.033079952001571655, 0.031112797558307648, 0.007926413789391518, 0.02338508516550064, 0.024551715701818466, 0.017804866656661034, 0.04376039281487465, 0.020139098167419434, -0.05769709497690201, -0.022180987522006035, 0.025509590283036232, 0.0038136225193738937, 0.03514377027750015, 0.01282916683703661, 0.005344031378626823, -0.00894741527736187, -0.028336238116025925, -0.001915302244015038, -0.025050492957234383, -0.04362569749355316, 0.01131686381995678, -0.013512562960386276, 0.02119436301290989, -0.0022687935270369053, -0.0037787561304867268, -0.03473535180091858, 0.0031703223939985037, 0.012754830531775951, 0.010713702999055386, -0.045600324869155884, 0.00778571330010891, -0.018023887649178505, 0.0038649188354611397, -0.01202524732798338, 0.009171606041491032, 0.01774090714752674, -0.023468349128961563, -0.03421555832028389, 0.007107136305421591, -0.029252171516418457, 0.006155418232083321, 0.014313273131847382, 0.025906961411237717, 0.024379638954997063, 0.0016291653737425804, -0.011092320084571838, 0.009558121673762798, -0.035940997302532196, 0.018685877323150635, -0.003966146614402533, 0.0001504837127868086, -0.030278969556093216, -0.0414317287504673, 0.0075720432214438915, 0.024652529507875443, 0.0027248680125921965, -1.3895454564760712e-8, -0.02044680155813694, 0.04210832715034485, -0.0042433408088982105, -0.000046801185817457736, 0.025302201509475708, 0.01207698229700327, -0.028939861804246902, 0.012337304651737213, -0.028689846396446228, 0.011186578311026096, 0.04388398677110672, -0.03774341568350792, -0.029171494767069817, 0.04382829740643501, 0.009454702958464622, -0.03376999497413635, -0.024478452280163765, -0.02632030099630356, 0.03630887717008591, -0.005418302491307259, 0.03586919605731964, 0.055573321878910065, -0.0015911199152469635, 0.005412891041487455, 0.010061281733214855, -0.011354176327586174, -0.0006144643411971629, -0.07668168842792511, 0.009471070021390915, 0.01813810132443905, 0.0009600864141248167, -0.014345765113830566, -0.02041073702275753, 0.03701324760913849, -0.011512275785207748, -0.04518640786409378, 0.01226877048611641, 0.006783805787563324, 0.0013131096493452787, -0.028819145634770393, -0.0015810182085260749, 0.03210191801190376, 0.020999448373913765, -0.026723572984337807, -0.004159596282988787, 0.007160441484302282, -0.014317124150693417, -0.026261204853653908, 0.0095234839245677, -0.03971577063202858, 0.012670876458287239, -0.009096076712012291, 0.006689341273158789, 0.054746296256780624, 0.03592507913708687, -0.01056654378771782, 0.009421667084097862, -0.019804013893008232, -0.022972118109464645, -0.014070254750549793, -0.0029223631136119366, 0.014235684648156166, -0.0027734169270843267, -0.02352110855281353 ]
noone-wants-your-stupid-process-jeff-patton
https://markhneedham.com/blog/2010/11/30/noone-wants-your-stupid-process-jeff-patton
false
2010-11-08 13:56:21
Distributed Agile: Communication - Reliance on one person
[ "distributed-agile-2" ]
[ "Distributed Agile" ]
Continuing with http://www.markhneedham.com/blog/category/distributed-agile/[my series of observations on what it's like working in a distributed agile team], another thing that I've noticed is that it's useful to try and ensure that there is communication between as many people as possible in the two cities. This means that we want to ensure that we don't have an over reliance on one person to handle any communication. We have a call once a day between developers in Pune and Chicago and the Chicago guys have been able to achieve this by rotating the person attending the call. In Pune we've typically had half the developers attending the call but perhaps only one or two actually speaking. I originally didn't think of this as being a problem because those two guys were really good at communicating and in other teams I've worked on we'd typically have the tech lead and maybe one other communicating with other teams. In this case we are communicating with people in the same team and by chance a few weeks ago both of the main communicators from Pune were away at the same time so we had to have the Chicago call without them. Perhaps unsurprisingly others were able to fill the gap that had been left and as an added benefit the guys in Chicago had now had the opportunity to interact directly with more people from Pune. A interesting and positive side effect I've noticed is that the people who had now started communicating directly with team members in Chicago seemed to become more involved in the project as a whole and are now also more likely to communicate via email than they may have been previously. Our challenge now that both the original guys are back is to ensure that the whole team still remains involved in communication with Chicago and don't delegate back to those two every time.
null
null
[ 0.0335363894701004, -0.007813544943928719, -0.01631847955286503, 0.040288399904966354, 0.07934712618589401, 0.007686165161430836, 0.030718060210347176, 0.05180419236421585, 0.019204450771212578, -0.04185975342988968, -0.022888075560331345, -0.0161504615098238, -0.0705532357096672, 0.02865891344845295, -0.02372400090098381, 0.08327386528253555, 0.06170281767845154, 0.004986582323908806, 0.004225871525704861, -0.009727624244987965, 0.03653213009238243, 0.06294502317905426, 0.03501866012811661, 0.04803474619984627, 0.03579204902052879, 0.014214437454938889, 0.020211858674883842, -0.022043440490961075, -0.052468884736299515, -0.011637992225587368, 0.04239913076162338, 0.005634755827486515, 0.0027760707307606936, 0.007025286089628935, 0.018818560987710953, -0.023349236696958542, -0.008843526244163513, 0.021343404427170753, -0.0026470301672816277, -0.014252967201173306, -0.06215570122003555, 0.03892321139574051, -0.011995041742920876, 0.012528659775853157, -0.03547728434205055, 0.020968122407794, -0.04893604665994644, 0.011653334833681583, 0.0049939826130867004, -0.004384410101920366, -0.06682112067937851, -0.001104173599742353, 0.0008675141725689173, 0.004302159417420626, -0.02790716290473938, 0.03692164272069931, -0.00797512847930193, -0.06022988632321358, 0.00317001948133111, -0.052584875375032425, -0.019068146124482155, -0.014071171171963215, 0.008405430242419243, 0.03962838277220726, 0.025564484298229218, -0.022128017619252205, 0.024568062275648117, 0.02850022353231907, -0.02088848315179348, 0.0058286492712795734, -0.027737054973840714, 0.014182948507368565, -0.02008954994380474, -0.012071004137396812, -0.014017008244991302, -0.05431101471185684, -0.005923938937485218, 0.05611683428287506, 0.014999733306467533, 0.05981622636318207, -0.03198646381497383, 0.005551471840590239, 0.002536941785365343, 0.02283320389688015, -0.016113126650452614, -0.057551994919776917, -0.010163444094359875, -0.024754244834184647, -0.06477005779743195, 0.05712021514773369, 0.005323655437678099, -0.0644768550992012, 0.01802751235663891, 0.03735022991895676, 0.006949103903025389, 0.004316198639571667, 0.03293375298380852, 0.002050247276201844, -0.006056628655642271, -0.024883931502699852, -0.02630656585097313, -0.01449539978057146, -0.011899732053279877, 0.016369594261050224, -0.08399991691112518, -0.011804978363215923, -0.018698889762163162, -0.013438927009701729, -0.01219861302524805, -0.0001536200725240633, -0.01956856995820999, 0.015445459634065628, -0.0032116605434566736, 0.0019697474781423807, -0.05876333266496658, 0.0809355154633522, 0.019424088299274445, -0.030401887372136116, -0.021649090573191643, -0.022211812436580658, 0.037644848227500916, 0.03425813838839531, -0.014453199692070484, 0.08613243699073792, 0.0012793113710358739, 0.021306676790118217, -0.038672178983688354, 0.060072679072618484, -0.015034320764243603, -0.058296941220760345, -0.031385503709316254, 0.07142561674118042, -0.016178471967577934, -0.015980971977114677, -0.00013703071454074234, -0.05115864798426628, 0.005804138258099556, -0.005568828899413347, 0.01308644749224186, 0.01887364499270916, -0.011952915228903294, -0.003729234915226698, 0.009917148388922215, 0.04972393438220024, 0.02532399445772171, 0.005145120434463024, -0.006812808103859425, -0.039801839739084244, -0.0420919694006443, -0.009883386082947254, 0.00944481324404478, 0.008875474333763123, 0.01597406156361103, -0.028784949332475662, 0.03261812776327133, 0.08082468062639236, 0.04843095317482948, 0.0057248398661613464, -0.012523346580564976, 0.029204469174146652, 0.02974320575594902, 0.026488307863473892, 0.03184724599123001, 0.022863002493977547, -0.004703456070274115, 0.0008042805711738765, -0.006635026540607214, 0.01557997614145279, 0.020155904814600945, 0.016441093757748604, -0.05840816721320152, -0.04916258156299591, 0.03927984461188316, -0.03084159456193447, -0.02610095590353012, 0.03755222260951996, 0.07381865382194519, 0.04740353673696518, 0.014400799758732319, 0.0007203026325441897, -0.08545636385679245, 0.028089221566915512, 0.01886392943561077, 0.028287498280405998, 0.043386708945035934, -0.016021210700273514, 0.05157315731048584, 0.026776494458317757, -0.00350064761005342, 0.036460552364587784, -0.07427240163087845, -0.08809777349233627, -0.018909713253378868, -0.011069468222558498, 0.05646586790680885, -0.046793218702077866, 0.02035490982234478, 0.04592248424887657, 0.027825310826301575, 0.05145305395126343, 0.020488545298576355, 0.012876804918050766, 0.016382642090320587, -0.030290257185697556, -0.048871852457523346, 0.07383561134338379, 0.03126782923936844, 0.009235106408596039, -0.06447717547416687, 0.03568786010146141, -0.014856908470392227, -0.0059860991314053535, 0.043945878744125366, -0.028209784999489784, 0.05449264124035835, -0.018427615985274315, 0.05265849083662033, -0.028414657339453697, 0.05701330676674843, -0.04523143917322159, 0.026838593184947968, -0.01096101850271225, -0.014867948368191719, 0.052811142057180405, -0.006169295869767666, 0.09506826102733612, 0.06474475562572479, -0.05129196122288704, -0.043982792645692825, 0.031414639204740524, 0.029020849615335464, -0.03197137638926506, -0.006653656717389822, -0.013058654963970184, 0.015059622935950756, -0.008197898045182228, -0.052140336483716965, -0.05339324101805687, 0.013067273423075676, -0.05767035856842995, 0.016115043312311172, 0.05850241333246231, -0.0050324625335633755, 0.08461198210716248, -0.01573270559310913, -0.01679803431034088, 0.004113135393708944, -0.0263079721480608, -0.028049103915691376, 0.00932662095874548, 0.022563323378562927, -0.02551853470504284, 0.043046772480010986, -0.018056601285934448, -0.012379673309624195, -0.038931768387556076, 0.005195356905460358, 0.014033002778887749, 0.06675204634666443, 0.05657978355884552, -0.01133039966225624, 0.05431737005710602, -0.020163575187325478, 0.01671646162867546, -0.009732108563184738, -0.04102502018213272, -0.03621608018875122, -0.023030413314700127, -0.001716031925752759, 0.023589881137013435, 0.019750967621803284, 0.002162026474252343, 0.026948140934109688, 0.008765430189669132, -0.001764656393788755, -0.008353292010724545, 0.0023860728833824396, -0.0033855801448225975, -0.007769901771098375, -0.008487356826663017, -0.0203058123588562, 0.04118483141064644, -0.033533863723278046, -0.03509778529405594, 0.015600932762026787, -0.08644088357686996, 0.03489796817302704, -0.0774712935090065, -0.03254717215895653, -0.013831465505063534, 0.019477935507893562, 0.03660687804222107, 0.014493106864392757, 0.005876803305000067, 0.038413919508457184, -0.006682914216071367, 0.020185336470603943, 0.016002902761101723, -0.01946271024644375, 0.012705565430223942, 0.004001767374575138, -0.0251829344779253, 0.028960630297660828, -0.020892390981316566, 0.0005882444093003869, -0.07819060236215591, 0.05417332053184509, -0.04595467448234558, -0.29142680764198303, 0.022589663043618202, 0.010939663276076317, -0.023700689896941185, 0.0073098074644804, -0.020645294338464737, 0.011998187750577927, -0.05176248773932457, -0.018305491656064987, 0.012157316319644451, -0.05284785106778145, -0.032977551221847534, -0.00984254665672779, 0.016795458272099495, 0.019384322687983513, 0.017725471407175064, 0.03676404431462288, -0.03466438502073288, 0.019438838586211205, 0.04094294086098671, -0.004861532710492611, -0.06399663537740707, 0.009462081827223301, 0.030379056930541992, 0.05236717313528061, 0.04975259676575661, -0.08072119206190109, 0.03310896456241608, -0.04814596101641655, -0.010765403509140015, 0.02825668454170227, 0.0005192865501157939, 0.015596486628055573, -0.011012759059667587, -0.004071339499205351, -0.004760529845952988, 0.058801230043172836, 0.01252616848796606, -0.011059424839913845, -0.02343829721212387, 0.01454776432365179, -0.03323236107826233, -0.0019315710524097085, 0.0026590204797685146, 0.07022181153297424, 0.015720687806606293, -0.08077280223369598, 0.000367778236977756, -0.01878376677632332, 0.09243480861186981, -0.018630200996994972, -0.02111698128283024, -0.010350585915148258, 0.04144388437271118, -0.014545515179634094, -0.03523893281817436, -0.018499746918678284, -0.026466242969036102, -0.028883304446935654, -0.01118736807256937, -0.0071626100689172745, -0.0393923744559288, -0.026617567986249924, -0.058378666639328, 0.011997951194643974, -0.057556286454200745, -0.07440519332885742, -0.02355712093412876, 0.04638119414448738, -0.027545267716050148, -0.04134771227836609, 0.009907949715852737, 0.008225878700613976, -0.10017485916614532, -0.014220353215932846, -0.007041061297059059, -0.0376950167119503, -0.004416424315422773, 0.014977535232901573, 0.05293100327253342, -0.03038460947573185, -0.06014672666788101, 0.00573857594281435, 0.009974606335163116, 0.019810402765870094, 0.005620728712528944, 0.044895805418491364, 0.03166012838482857, -0.04704877361655235, -0.0015529367374256253, 0.05258818715810776, -0.007139059714972973, -0.02880958281457424, -0.007221810519695282, 0.03653629496693611, 0.00006901592860231176, 0.0010837703011929989, -0.017046336084604263, 0.0007334979600273073, 0.03714045509696007, -0.017247958108782768, -0.05878954380750656, 0.01088904868811369, -0.021152976900339127, 0.01096489280462265, -0.0008747468236833811, -0.04937075823545456, 0.007927666418254375, 0.05229979380965233, 0.020825564861297607, 0.019282575696706772, -0.03760267794132233, 0.01769113726913929, -0.068900927901268, -0.037427838891744614, -0.016083387657999992, 0.004312782548367977, 0.05049287527799606, -0.00044994527706876397, -0.00921583827584982, -0.05578811466693878, 0.02154223434627056, -0.020432453602552414, 0.013135704211890697, -0.06157555803656578, -0.003868326311931014, -0.035247426480054855, -0.013586828485131264, 0.015558753162622452, 0.018292587250471115, -0.04153752326965332, 0.023257873952388763, 0.0410563163459301, -0.02774680219590664, 0.019088899716734886, -0.007451157085597515, -0.07072530686855316, -0.028500080108642578, -0.0024801024701446295, 0.00016386488277930766, -0.006487472914159298, 0.0526268444955349, -0.008562018163502216, 0.01681811548769474, 0.04288081079721451, 0.009300682693719864, -0.007719258312135935, -0.03140784427523613, 0.030265245586633682, 0.007884504273533821, 0.005439955275505781, -0.07634013146162033, 0.018881237134337425, -0.026204517111182213, -0.0215984508395195, -0.02650914527475834, 0.04145205765962601, -0.013995956629514694, -0.029360977932810783, -0.0014662679750472307, -0.0037454564590007067, -0.06499040126800537, -0.02273370698094368, -0.012108702212572098, 0.03970450535416603, 0.05320102721452713, -0.01808156445622444, -0.009310413151979446, -0.01572343520820141, -0.017406361177563667, 0.014958473853766918, 0.002635954413563013, -0.04280150309205055, 0.013196085579693317, 0.0050413841381669044, 0.016606969758868217, -0.000924132124055177, 0.012640203349292278, 0.05805462971329689, 0.013959088362753391, 0.0035860042553395033, -0.023220939561724663, -0.00920950248837471, 0.037344060838222504, 0.04559139534831047, 0.030174540355801582, -0.004547157324850559, -0.009546015411615372, 0.0016629222081974149, -0.02173118107020855, -0.038137443363666534, 0.015716873109340668, -0.01003656443208456, 0.01862296648323536, -0.025460723787546158, -0.08591031283140182, 0.06137759983539581, 0.006148185580968857, 0.003326539881527424, 0.014831552281975746, -0.011316036805510521, 0.0005695846630260348, -0.015331213362514973, 0.0314670167863369, 0.047295406460762024, -0.06601021438837051, 0.013514549471437931, 0.0004174804489593953, -0.005317581817507744, -0.017993468791246414, -0.0202625822275877, -0.017069697380065918, -0.02652556635439396, -0.006618918385356665, 0.02563110552728176, -0.07038106769323349, -0.013339458964765072, -0.018814103677868843, 0.012048999778926373, -0.0030934030655771494, -0.010415557771921158, -0.021832406520843506, -0.017141718417406082, -0.027239559218287468, -0.041125088930130005, 0.040321364998817444, -0.04154512658715248, 0.0026921769604086876, 0.0035930857993662357, -0.021337458863854408, -0.008971216157078743, -0.02861514687538147, 0.00909275934100151, 0.021579347550868988, -0.018141930922865868, 0.01150403544306755, -0.03686536103487015, -0.019128432497382164, -0.014912491664290428, 0.04959774389863014, -0.02329622395336628, -0.028169548138976097, -0.03432879596948624, -0.01870902068912983, -0.04380752891302109, 0.014305171556770802, -0.046299710869789124, 0.003617668291553855, 0.013951918110251427, 0.054741889238357544, 0.0366743728518486, 0.03381405770778656, -0.00857418030500412, -0.011399921961128712, 0.047207385301589966, -0.05418795719742775, -0.042903684079647064, -0.024687904864549637, -0.05914994329214096, -0.007654442451894283, 0.005797417834401131, -0.0005846441490575671, -0.041844986379146576, 0.044342443346977234, 0.01501577440649271, 0.026996109634637833, 0.026888733729720116, -0.013315016403794289, 0.019659748300909996, -0.04998745769262314, 0.00929046981036663, -0.07335041463375092, 0.004981325473636389, -0.0017078497912734747, 0.005413668695837259, -0.0037486827932298183, 0.022908395156264305, -0.032959241420030594, 0.034296341240406036, -0.07807421684265137, -0.00785478949546814, 0.04496864974498749, 0.004122429061681032, -0.01892307959496975, 0.02250825986266136, -0.07504602521657944, 0.01579272374510765, 0.021911626681685448, -0.05858053267002106, -0.007306230254471302, -0.00768278120085597, 0.04299558326601982, 0.011432362720370293, 0.04349721595644951, -0.04211731255054474, -0.008863525465130806, 0.08609985560178757, 0.02824104018509388, -0.0074146464467048645, 0.06817090511322021, -0.0005361514631658792, 0.04803863540291786, 0.023310214281082153, -0.00700675742700696, -0.030544327571988106, 0.0355086624622345, -0.004696924705058336, -0.06102791801095009, 0.027266228571534157, 0.008144954219460487, -0.015595059841871262, -0.04221215471625328, 0.06991535425186157, 0.024174079298973083, -0.04169259965419769, -0.03178858384490013, 0.008396371267735958, -0.06312946230173111, 0.010660660453140736, -0.02385674975812435, -0.005119978915899992, -0.048663344234228134, 0.04701860994100571, -0.006577713880687952, 0.02866213396191597, 0.0797666534781456, 0.0176948644220829, -0.011698350310325623, -0.01392355840653181, 0.09386996924877167, 0.07633373141288757, 0.05923515185713768, 0.0038635507225990295, 0.058258116245269775, -0.008302473463118076, -0.03663640469312668, 0.010261314921081066, 0.003720575012266636, -0.040219392627477646, -0.019869698211550713, 0.01752590388059616, 0.07777973264455795, -0.013346749357879162, 0.07403873652219772, -0.018783802166581154, -0.03298936039209366, 0.028103573247790337, 0.04893068969249725, 0.022899579256772995, 0.07230126112699509, -0.0066626304760575294, 0.01660584844648838, -0.007494723424315453, -0.023251015692949295, 0.028584353625774384, -0.044244926422834396, -0.03148024529218674, 0.030154339969158173, 0.006281862035393715, 0.044889435172080994, 0.016631469130516052, 0.011106269434094429, 0.08279199153184891, -0.053870536386966705, 0.017920712009072304, -0.023818105459213257, 0.03186774626374245, -0.02834608033299446, 0.012253407388925552, -0.0079325120896101, -0.01755191944539547, -0.0006147675449028611, -0.023038625717163086, -0.03762620687484741, -0.010085396468639374, -0.003896367037668824, 0.04186416417360306, -0.025480743497610092, 0.018824633210897446, 0.03374592587351799, 0.006533597130328417, -0.04005640745162964, -0.05938994884490967, -0.02980036288499832, -0.03198389708995819, -0.04105335846543312, -0.0179874449968338, 0.03433340787887573, -0.021463066339492798, -0.031445953994989395, 0.006708080880343914, -0.03614135831594467, -0.04323173314332962, 0.03780912235379219, -0.03061659075319767, -0.005901088006794453, 0.006952014751732349, 0.036208536475896835, 0.02729230932891369, 0.011636233888566494, 0.052073389291763306, -0.022791028022766113, 0.016845274716615677, -0.03218700364232063, 0.04054436832666397, 0.021121017634868622, 0.0089070750400424, 0.007090798579156399, -0.08367008715867996, 0.0120821138843894, 0.021561119705438614, -0.00912048202008009, -0.06928656250238419, 0.04639996215701103, 0.020040027797222137, 0.009671667590737343, 0.05517337843775749, -0.001076039276085794, -0.006135022267699242, -0.04939086735248566, 0.005021831952035427, -0.012620547786355019, 0.006917980499565601, 0.054570093750953674, -0.02355050854384899, 0.08215378224849701, 0.04102376848459244, -0.009821562096476555, -0.033743396401405334, 0.008254827931523323, 0.017176615074276924, 0.0017384960083290935, -0.014736169949173927, -0.03833763673901558, -0.026240644976496696, -0.08746617287397385, -0.03402208909392357, 0.011913605034351349, -0.01249067485332489, -0.03586779534816742, 0.03521345928311348, 0.013614202849566936, -0.024913977831602097, 0.02593822591006756, -0.06086872145533562, 0.04770490527153015, -0.032731793820858, -0.02601012960076332, -0.022593937814235687, 0.02050267904996872, -0.0026544162537902594, -0.00302462512627244, 0.03662790358066559, -0.055815696716308594, 0.03465397283434868, 0.010531115345656872, 0.017384525388479233, 0.033093102276325226, 0.03647186979651451, 0.0016897671157494187 ]
[ -0.07882008701562881, -0.026994187384843826, -0.026840655133128166, -0.044337544590234756, 0.029442034661769867, -0.0383976548910141, -0.006289598532021046, 0.019551075994968414, -0.013727652840316296, -0.04477241262793541, 0.02623424306511879, -0.004011868499219418, 0.002445777179673314, -0.037588562816381454, 0.07916517555713654, 0.018061451613903046, -0.022568373009562492, -0.08085695654153824, 0.01831335388123989, 0.022014956921339035, -0.02874184027314186, -0.06994495540857315, -0.027876513078808784, 0.002415377413854003, 0.025543436408042908, 0.03176441416144371, 0.015191887505352497, -0.05692591890692711, -0.00582524761557579, -0.1835019290447235, 0.022893713787198067, 0.02746111899614334, 0.05620243772864342, -0.013985650613904, 0.02169802598655224, 0.07084525376558304, 0.020541962236166, 0.012823883444070816, -0.015109453350305557, 0.04811214283108711, 0.009333528578281403, 0.027040600776672363, -0.027246613055467606, -0.04840483143925667, 0.0028212619945406914, -0.021993480622768402, 0.0024544051848351955, -0.03708113357424736, -0.04088903218507767, -0.002927642548456788, -0.01285835262387991, -0.02661489136517048, -0.012683704495429993, -0.0002528672048356384, -0.028147708624601364, 0.06200604885816574, 0.02893601916730404, 0.06428561359643936, 0.0008190490189008415, 0.03192904591560364, 0.03075639344751835, -0.024641457945108414, -0.14704810082912445, 0.08279631286859512, 0.041825082153081894, 0.03870947286486626, -0.04857759177684784, -0.0009778364328667521, -0.017038676887750626, 0.07124676555395126, 0.044327691197395325, -0.020575709640979767, -0.00935399904847145, 0.029083754867315292, 0.039348699152469635, 0.020609799772500992, -0.013264045119285583, 0.03948945179581642, 0.023762671276926994, -0.045431122183799744, -0.04500366374850273, -0.03258461505174637, -0.022789057344198227, -0.011401157826185226, -0.05827856436371803, 0.010895494371652603, 0.016158489510416985, 0.05214766412973404, 0.006498516071587801, 0.019713327288627625, 0.06392008811235428, 0.039945948868989944, 0.04448593035340309, -0.022152338176965714, -0.09591909497976303, -0.022399531677365303, -0.0069047859869897366, 0.014850515872240067, -0.049831341952085495, 0.4616333544254303, -0.01224617287516594, -0.021946284919977188, 0.06615597754716873, 0.03786676749587059, -0.017427796497941017, 0.00021316124184522778, 0.0016532050212845206, -0.046880703419446945, 0.017191557213664055, 0.039278216660022736, 0.021657079458236694, 0.026645837351679802, 0.05049488693475723, -0.04588969796895981, 0.029066240414977074, 0.04945164546370506, 0.031055450439453125, 0.0454740971326828, -0.02098752371966839, 0.003641813062131405, -0.003865644568577409, 0.02331666462123394, 0.023195262998342514, 0.021055640652775764, -0.020440230146050453, -0.03312055766582489, 0.020083488896489143, 0.05111384764313698, 0.04182449355721474, -0.005755897611379623, 0.05142732337117195, -0.031872667372226715, -0.05496220290660858, -0.005404248833656311, 0.006908989045768976, 0.006078709382563829, 0.015001471154391766, -0.04458647221326828, -0.025583308190107346, 0.06335019320249557, 0.03817583620548248, -0.030425695702433586, 0.03909464180469513, -0.04499337822198868, -0.021076876670122147, 0.1259385198354721, 0.014703579246997833, -0.046692389994859695, -0.00917361956089735, -0.04897245764732361, -0.021149365231394768, -0.0005535670788958669, 0.025983495637774467, -0.03444208577275276, 0.042663320899009705, -0.01814671792089939, 0.09207776933908463, 0.001411107019521296, -0.06320510059595108, 0.021866654977202415, 0.013985441997647285, -0.02076975256204605, -0.030004391446709633, 0.08722018450498581, 0.07513177394866943, -0.1252679079771042, -0.022547077387571335, -0.002928920555859804, 0.046236902475357056, -0.07024211436510086, -0.025106210261583328, 0.021982723847031593, 0.022999761626124382, -0.00022656071814708412, 0.03429912403225899, -0.045914217829704285, -0.06575094908475876, 0.009558851830661297, 0.02762814797461033, 0.0183721836656332, 0.021692153066396713, 0.044418323785066605, 0.008024857379496098, -0.0054978919215500355, -0.04583115130662918, -0.09300056099891663, -0.038977764546871185, -0.01591658405959606, -0.044484943151474, -0.013421570882201195, -0.04573868215084076, -0.028135865926742554, -0.045435186475515366, 0.10210183262825012, -0.028511296957731247, -0.02207101508975029, 0.025602765381336212, -0.04087841510772705, -0.019966410472989082, 0.0037027744110673666, -0.07648589462041855, 0.021561605855822563, -0.0550784170627594, 0.00851238053292036, -0.05989537388086319, 0.05549091473221779, 0.03954309597611427, -0.030458368360996246, 0.06943453848361969, 0.0398319773375988, -0.019391588866710663, -0.03551336005330086, 0.03732674941420555, 0.030288396403193474, 0.009188865311443806, 0.002867168514057994, 0.013951338827610016, 0.03438946604728699, 0.022856585681438446, 0.03622222691774368, -0.028942983597517014, 0.0807928517460823, -0.014271881431341171, -0.3108212351799011, -0.05464297905564308, -0.018631763756275177, -0.0106599610298872, 0.000056188673625001684, -0.027658652514219284, 0.04249320179224014, -0.017150109633803368, 0.0018178473692387342, -0.005169076845049858, 0.09233539551496506, -0.020385436713695526, -0.017737718299031258, -0.05798574909567833, 0.010074596852064133, 0.021262183785438538, -0.050337690860033035, 0.02739058807492256, -0.0002458198869135231, -0.008139457553625107, 0.032044172286987305, 0.008483274839818478, -0.03043188340961933, -0.027870066463947296, 0.011523558758199215, -0.03281758353114128, 0.09114431589841843, 0.009344921447336674, 0.058766935020685196, -0.03385666012763977, 0.02128794975578785, 0.006869062781333923, 0.028412507846951485, -0.10453471541404724, 0.019401472061872482, -0.02014205977320671, 0.02908954955637455, -0.045762330293655396, 0.026951277628540993, -0.020549781620502472, -0.05900575965642929, 0.010268566198647022, -0.07549016177654266, -0.05015810206532478, -0.05783747136592865, -0.002412904519587755, -0.037170249968767166, -0.02222779206931591, -0.027748972177505493, 0.04020988941192627, -0.009292150847613811, -0.018401889130473137, 0.02321077510714531, -0.0006987802917137742, 0.023361120373010635, -0.0370556078851223, -0.0753341019153595, 0.031805697828531265, 0.021417204290628433, -0.006549518089741468, 0.006254703737795353, 0.07467537373304367, 0.011330139823257923, -0.02993614599108696, 0.03915748372673988, 0.029891615733504295, -0.007442625239491463, 0.022538820281624794, 0.03361571580171585, -0.012498593889176846, -0.004678551573306322, 0.0568435974419117, -0.0033780871890485287, -0.014451594091951847, 0.012224191799759865, -0.000634256168268621, -0.005403424613177776, -0.0022065795492380857, -0.0002700151817407459, -0.010975322686135769, 0.029166987165808678, -0.05887562409043312, 0.04965963214635849, -0.024091366678476334, -0.00022811042435932904, 0.04920988902449608, 0.010686599649488926, -0.020774561911821365, 0.05523999407887459, 0.019474510103464127, -0.0025335808750241995, 0.016845781356096268, -0.027148360386490822, -0.039353273808956146, 0.07356417924165726, -0.022440221160650253, -0.24765421450138092, 0.006877539213746786, 0.061093199998140335, 0.007326766848564148, -0.03358941525220871, 0.06067203730344772, 0.026365337893366814, -0.03427549824118614, -0.029068922623991966, 0.02038000524044037, 0.038054633885622025, 0.029066264629364014, 0.005253664683550596, -0.01911136507987976, 0.05216391384601593, 0.02750590071082115, 0.030873315408825874, -0.007768822833895683, 0.0027822209522128105, -0.03882455825805664, -0.0029413027223199606, -0.011373735032975674, 0.16448520123958588, -0.0033035713713616133, 0.04892768710851669, 0.0344834066927433, -0.013432785868644714, 0.01614011824131012, 0.022419678047299385, -0.01623186469078064, -0.01256735622882843, -0.021409014239907265, 0.023799395188689232, -0.015146387740969658, -0.009995512664318085, -0.070592500269413, -0.015167704783380032, 0.038551002740859985, 0.0013938507763668895, 0.006060867570340633, 0.005856266710907221, -0.002256490755826235, 0.017605727538466454, 0.02534737065434456, 0.05332331731915474, 0.011475949548184872, -0.041932206600904465, -0.04121527820825577, -0.0638248473405838, 0.001552005298435688, -0.04517654329538345, -0.08439323306083679, 0.015024936757981777, -0.015871617943048477, -0.0030165778007358313, 0.06858038902282715, 0.01844344288110733, -0.05087205022573471, -0.014218502677977085, -0.012535372748970985, -0.016072208061814308, -0.022638123482465744, 0.08522946387529373, -0.01951591670513153, 0.045456286519765854 ]
[ 0.004443361423909664, -0.01563478447496891, 0.009462337009608746, -0.0442451536655426, -0.012528249993920326, 0.006404791492968798, -0.017244067043066025, 0.010046957060694695, 0.003148481482639909, -0.0018327515572309494, -0.005930609069764614, 0.010469428263604641, -0.045922406017780304, -0.023887649178504944, 0.034318938851356506, -0.0009246595436707139, 0.0056399633176624775, -0.017202574759721756, 0.03787717968225479, -0.0031369426287710667, -0.01307003479450941, -0.00281425379216671, -0.013732806779444218, -0.02868448570370674, 0.0032416675239801407, 0.012531287036836147, -0.009449566714465618, -0.009656084701418877, 0.030115367844700813, -0.12022247165441513, 0.030042089521884918, -0.0064832414500415325, 0.013549440540373325, 0.04843549802899361, -0.01524723693728447, -0.025480352342128754, 0.013028336688876152, 0.03602255508303642, 0.025678182020783424, -0.00029088702285662293, 0.029256630688905716, -0.015830406919121742, 0.0103755546733737, 0.00931033119559288, -0.022501621395349503, -0.010127909481525421, -0.0386849120259285, -0.008947351947426796, -0.007208091672509909, -0.002081860089674592, -0.023640556260943413, -0.02063995972275734, -0.02355598658323288, 0.033766210079193115, 0.018408792093396187, 0.02128015086054802, 0.045277684926986694, 0.0351998470723629, -0.0023339278995990753, 0.02199110947549343, 0.016711214557290077, 0.00708897365257144, -0.06819837540388107, -0.02555411495268345, -0.026673367246985435, 0.006203764583915472, 0.017383970320224762, 0.009959026239812374, -0.012261522933840752, 0.034700796008110046, 0.0040377662517130375, 0.03377097472548485, -0.014175722375512123, -0.0228012353181839, 0.005812695249915123, 0.007046255748718977, -0.0023270028177648783, 0.012891649268567562, 0.020181016996502876, 0.002580949803814292, -0.023457732051610947, 0.01551735308021307, -0.0029511675238609314, -0.004841399844735861, -0.03684761002659798, -0.003082398558035493, 0.015876272693276405, -0.015305256471037865, 0.029671834781765938, 0.0038535844068974257, -0.021414851769804955, 0.044650062918663025, -0.02276068553328514, -0.00869046337902546, -0.11896985024213791, 0.0031665991991758347, -0.04358554631471634, -0.04592043161392212, 0.0006873751990497112, 0.8504548668861389, -0.0451725572347641, 0.011667057871818542, 0.037674956023693085, -0.02617030218243599, -0.041549962013959885, -0.002057163044810295, 0.0008007680880837142, -0.040033064782619476, -0.01659107580780983, -0.004284416325390339, 0.024708572775125504, 0.023729786276817322, 0.03599841147661209, 0.029604284092783928, 0.005514641758054495, -0.023820901289582253, 0.04542224109172821, 0.024975521489977837, 0.004305681679397821, -0.012670265510678291, 0.00766223669052124, 0.03148046135902405, 0.030358655378222466, 0.03087570331990719, -0.015217329375445843, -0.15455496311187744, 0.0529497005045414, -8.95171861992995e-33, 0.02340538240969181, 0.02058572880923748, -0.011977262794971466, -0.00036027529858984053, -0.023488029837608337, -0.027293751016259193, 0.02613193169236183, 0.007634188048541546, -0.02633541449904442, -0.050288889557123184, 0.004990270361304283, -0.024609673768281937, 0.03058750182390213, -0.02749062329530716, 0.02071020007133484, -0.04018570855259895, 0.019244519993662834, 0.014080703258514404, 0.004713622387498617, 0.002797389170154929, 0.00041340242023579776, 0.029008572921156883, -0.013220665045082569, 0.00907814595848322, 0.035143353044986725, 0.003965679556131363, 0.017660493031144142, -0.01425612810999155, 0.02446659654378891, -0.059833917766809464, -0.014850086532533169, 0.04111041501164436, -0.013679894618690014, 0.032089632004499435, 0.023729637265205383, -0.011216809041798115, -0.024840107187628746, 0.000877015118021518, -0.028622735291719437, -0.047495439648628235, -0.018811732530593872, 0.014169568195939064, -0.03883415088057518, 0.0005499497638083994, 0.003108977572992444, -0.013778652995824814, -0.013816000893712044, -0.0217166505753994, 0.015463479794561863, -0.023140523582696915, 0.01874028891324997, -0.016861675307154655, -0.011352987959980965, 0.05141756683588028, -0.009117026813328266, -0.015574510209262371, -0.0051661464385688305, 0.0017227425705641508, 0.016359617933630943, 0.029941486194729805, 0.011714386753737926, -0.03366817161440849, -0.025759583339095116, 0.016605861485004425, 0.008270545862615108, -0.01843499392271042, -0.006476604379713535, 0.010067684575915337, 0.024444062262773514, -0.013990423642098904, -0.044148676097393036, -0.01778470352292061, 0.005133497528731823, 0.004606129601597786, -0.016419216990470886, 0.044817693531513214, -0.020901866257190704, 0.042506687343120575, -0.008681527338922024, 0.032342493534088135, -0.0018114877166226506, 0.01985706388950348, -0.02730478160083294, -0.0304960198700428, 0.018688397482037544, 0.0009942277101799846, -0.01854509487748146, -0.0073664840310812, -0.038719356060028076, 0.04274227097630501, 0.007307690102607012, 0.02866518869996071, 0.018350807949900627, 0.024889327585697174, -0.02108261175453663, 8.260457411985395e-33, -0.046804092824459076, -0.01982816681265831, -0.04521059989929199, 0.009608035907149315, 0.017400657758116722, 0.007304510101675987, 0.03160561993718147, 0.01321700681000948, -0.06026610732078552, 0.0226923618465662, -0.04254107177257538, -0.019184742122888565, -0.005232518073171377, 0.025698618963360786, 0.059560101479291916, -0.03483238071203232, 0.02904760092496872, -0.011672275140881538, -0.00937329139560461, 0.009982746094465256, 0.04530816897749901, 0.005668663419783115, 0.018956607207655907, 0.041748933494091034, 0.03493321314454079, 0.034187834709882736, 0.005080672446638346, 0.025513261556625366, 0.016092034056782722, -0.023958943784236908, 0.045118365436792374, -0.0182483047246933, 0.012776689603924751, 0.008156605996191502, -0.0009783314308151603, 0.04634476825594902, -0.00005140397843206301, -0.0014675699640065432, 0.008785746991634369, 0.012279342859983444, 0.013694054447114468, 0.017797457054257393, 0.0027618021704256535, 0.0172420684248209, -0.0009537453297525644, 0.0100950226187706, 0.0026367635000497103, -0.020470350980758667, -0.04855867847800255, 0.006704379338771105, -0.019409438595175743, 0.013921471312642097, -0.0045254044234752655, -0.004960109945386648, -0.009323637932538986, -0.01658756099641323, -0.002025234280154109, -0.026926930993795395, -0.0024816831573843956, -0.00029386187088675797, -0.012187406420707703, -0.020471520721912384, -0.02609957568347454, 0.0074310144409537315, -0.007133270148187876, 0.0032539269886910915, 0.04610119014978409, -0.020918933674693108, -0.012989680282771587, -0.0016838125884532928, 0.00013186564319767058, 0.011562341824173927, -0.0058131348341703415, 0.02713288739323616, 0.024793529883027077, -0.028242558240890503, -0.020217064768075943, 0.0075789629481732845, -0.04015561565756798, 0.0333496518433094, 0.009224080480635166, 0.032629989087581635, -0.007874724455177784, 0.012909743934869766, 0.0012750813039019704, 0.02356468141078949, -0.018651194870471954, 0.017043324187397957, -0.0035160949919372797, -0.0013436886947602034, 0.024011820554733276, -0.01700756512582302, -0.019337985664606094, 0.04537249729037285, 0.013944627717137337, -1.377535863156254e-8, 0.01084032841026783, 0.011551734991371632, -0.00828738696873188, -0.01070473063737154, 0.0015799207612872124, -0.023623881861567497, -0.0016031776322051883, -0.008283392526209354, -0.01748957857489586, 0.012354758568108082, -0.0048184930346906185, -0.030291395261883736, -0.01807752624154091, 0.062372125685214996, 0.0229487307369709, -0.03592653200030327, -0.01275235041975975, -0.051590606570243835, 0.026341568678617477, -0.004536790773272514, 0.026096435263752937, 0.011577601544559002, -0.022867806255817413, 0.025271037593483925, -0.004411730449646711, 0.011120677925646305, -0.04230233281850815, -0.06774315983057022, -0.006414960604161024, -0.01244447659701109, 0.01811038888990879, 0.002355869859457016, -0.040890470147132874, 0.02113972045481205, -0.029379891231656075, -0.035240303725004196, 0.06477008759975433, -0.03573712706565857, 0.03150507062673569, 0.01710541360080242, -0.01432870514690876, 0.013611260801553726, 0.0029168683104217052, -0.02238064631819725, 0.007715994957834482, 0.020273802801966667, 0.012121780775487423, -0.02599792554974556, 0.0028367701452225447, -0.04569187015295029, -0.0112932613119483, 0.0005712584243156016, -0.0025208524893969297, 0.04295579716563225, -0.028323940932750702, -0.031687501817941666, -0.04668218642473221, 0.011883709579706192, -0.0006406414904631674, -0.015616556629538536, 0.024083921685814857, 0.03969317674636841, -0.032684728503227234, -0.00715031148865819 ]
distributed-agile-communication-reliance-on-one-person
https://markhneedham.com/blog/2010/11/08/distributed-agile-communication-reliance-on-one-person
false
2010-11-06 17:17:16
Retrospectives: General observations
[ "retrospectives" ]
[ "Agile" ]
Following on from http://www.markhneedham.com/blog/2010/11/06/retrospectives-actions/[my blog post about some observations about the actions that we create in retrospectives] I've also noticed some general ways that retrospectives might not end up being as useful as we'd hope. == Having a manager facilitating While having the manager of the team facilitating the retrospective isn't a problem in itself I think it's useful to remember that in this context they aren't in that role anymore. I've noticed that there can be a tendency for people to direct any comments they make during the retrospective towards the manager, thereby excluding others from the conversation. Having the facilitator call out their role at the beginning of the retrospective and encourage participants to address any comments to the group can help to counter this situation. == Facilitator participating Another closely related pattern is that of the facilitator participating in the retrospective and it's easy to see why it happens since if the facilitator is part of the team then they probably have some opinions that they want to share as well. Unfortunately what I've noticed happen is that they end up giving their opinion on the points made by others and if they have an opposing opinion to someone then it can easily discourage that person from participating any more. One way to get around this problem is to have an external facilitator and the other is for the facilitator to realise that their role in this meeting is to facilitate and keep their opinion to themself! == Collecting/Analysing information Another common problem I've seen is the attempt to try and combine the collecting and analysing of data for the iteration. I find that the problem with doing this is that we can easily end up belittling people's observations if they get analysed and dismissed without being written up on the whiteboard. Collecting all the data as one activity and then working through it after everyone's had a chance to make their contribution is a much more effective way to do it. == Focusing on things out of the team's control While it's useful to identify things that are going wrong which are out of our control it can quickly get very boring for everyone if those things get brought up repeatedly. Quite often we don't have the ability to address some things straight away but once we've gained a bit more trust we might get the chance to in future. We've sometimes had retrospectives where you were only allowed to bring up things which could be addressed by the people in the room and this worked reasonably well. It is still useful to remember which things we want to try and chance but can't at the moment so that we can try again in a couple of months time.
null
null
[ 0.019391698762774467, -0.007614359259605408, -0.0003971353580709547, 0.005121197085827589, 0.056275587528944016, -0.014167653396725655, 0.01782109960913658, 0.03163803368806839, 0.016998834908008575, -0.02145744301378727, -0.005270872265100479, 0.016580063849687576, -0.04827772080898285, 0.032951828092336655, -0.039082255214452744, 0.07698512822389603, 0.05745406448841095, 0.0030333257745951414, 0.010769072920084, 0.016902543604373932, 0.04727758839726448, 0.05957682058215141, 0.02845863066613674, 0.036895837634801865, 0.050980694591999054, 0.005484142806380987, 0.04323328286409378, -0.029031742364168167, -0.03685632348060608, -0.0007463842048309743, 0.013182035647332668, 0.0012564559001475573, 0.008488989435136318, 0.014956774190068245, 0.021765487268567085, -0.014648115262389183, -0.004035083577036858, 0.029605869203805923, 0.023717684671282768, 0.002076291013509035, -0.07247652113437653, 0.02931208349764347, -0.03878682479262352, -0.01094380859285593, -0.04876134917140007, 0.024672187864780426, -0.024863602593541145, 0.015024022199213505, 0.019990868866443634, -0.008096043020486832, -0.072511225938797, 0.037188224494457245, 0.03387778252363205, 0.016318246722221375, -0.012254576198756695, 0.030951565131545067, -0.005487913731485605, -0.057872042059898376, -0.0007616080692969263, -0.041163429617881775, -0.020873047411441803, 0.0030292219016700983, 0.01024683564901352, 0.01577124558389187, 0.012413548305630684, -0.028459547087550163, 0.02214689366519451, 0.04107503220438957, -0.026068205013871193, 0.022695554420351982, -0.035562966018915176, -0.0027767459396272898, -0.02691771648824215, -0.006315543781965971, -0.00515502505004406, -0.0460515059530735, 0.029473328962922096, 0.05342203378677368, 0.036577120423316956, 0.03469601273536682, -0.012568490579724312, -0.0076206703670322895, 0.0005946774617768824, 0.02191563881933689, 0.0010937941260635853, -0.04675663635134697, -0.000389148888643831, -0.0213348176330328, -0.07490093261003494, 0.05204765126109123, -0.01828867197036743, -0.05749985948204994, 0.010648990981280804, 0.029072631150484085, -0.009784577414393425, 0.005687402561306953, 0.041245125234127045, -0.010999223217368126, 0.001359610236249864, -0.045164983719587326, -0.020050030201673508, -0.020865220576524734, -0.00865881610661745, 0.03226686269044876, -0.09680847078561783, -0.012347985059022903, 0.0011911639012396336, 0.005740082822740078, -0.022219251841306686, -0.002598435850813985, -0.028822746127843857, 0.029062731191515923, -0.03239179030060768, 0.018566740676760674, -0.07096840441226959, 0.044932372868061066, 0.024938983842730522, -0.043870314955711365, 0.00009308369044447318, -0.0006240584189072251, 0.05494734272360802, 0.01983478106558323, 0.007286142557859421, 0.07340765744447708, -0.024322891607880592, 0.011345728300511837, -0.018485860899090767, 0.06780843436717987, -0.028124352917075157, -0.06175842881202698, -0.011455842293798923, 0.059247978031635284, -0.04384097084403038, -0.007331472355872393, -0.0010274042142555118, -0.041348882019519806, 0.0073385522700846195, -0.007248592097312212, 0.018709322437644005, 0.052862074226140976, 0.013988282531499863, -0.028764823451638222, 0.009290450252592564, 0.029955241829156876, 0.016955697908997536, -0.0030502821318805218, -0.01757192052900791, -0.028080923482775688, -0.047815777361392975, -0.03433631733059883, 0.024767808616161346, 0.013609704561531544, 0.037857722491025925, -0.06178145110607147, 0.017809536308050156, 0.07546322792768478, 0.054950468242168427, -0.0001127039358834736, -0.021672572940587997, 0.0478898324072361, 0.042571477591991425, 0.023774107918143272, 0.014051243662834167, 0.03285964950919151, 0.037037692964076996, -0.030949724838137627, 0.00206154678016901, 0.03296086937189102, 0.006279702764004469, 0.013433719053864479, -0.041365280747413635, -0.048251230269670486, 0.021198643371462822, -0.04716357961297035, -0.015658659860491753, 0.09077872335910797, 0.048101965337991714, 0.05456903576850891, 0.034204334020614624, 0.004413105081766844, -0.08143813908100128, 0.031942225992679596, 0.006351458374410868, 0.016482094302773476, 0.05801990628242493, -0.024936722591519356, 0.049590934067964554, 0.029579369351267815, -0.0005134129314683378, 0.054030146449804306, -0.06276015192270279, -0.0674261674284935, -0.00795465987175703, -0.01925709657371044, 0.03531597927212715, -0.04124041274189949, 0.02800634689629078, 0.0691082626581192, 0.013252606615424156, 0.060465071350336075, 0.019721942022442818, -0.006776737980544567, 0.015435600653290749, -0.02918456494808197, -0.03736387565732002, 0.06836234033107758, 0.03659984469413757, -0.004592352081090212, -0.04067948833107948, 0.039139244705438614, -0.04337044432759285, 0.00377928395755589, 0.040543217211961746, -0.011257748119533062, 0.02988002635538578, 0.0038434630259871483, 0.04256470128893852, -0.0117246238514781, 0.035131461918354034, -0.03963695093989372, 0.0061665927059948444, 0.003598121926188469, -0.024208663031458855, 0.029373494908213615, -0.022253958508372307, 0.10377489030361176, 0.06685152649879456, -0.03918273001909256, -0.0299026258289814, 0.012713911943137646, 0.03738992661237717, -0.0247120913118124, -0.010041317902505398, 0.01027913112193346, 0.02381393499672413, 0.011982335709035397, -0.06398006528615952, -0.026571087539196014, 0.028152696788311005, -0.04767611622810364, -0.014075386337935925, 0.047263115644454956, -0.015483635477721691, 0.07874186336994171, -0.01128118671476841, 0.015612315386533737, -0.016360990703105927, 0.020594364032149315, -0.05729582905769348, 0.0071321227587759495, -0.0018342509865760803, -0.024424895644187927, 0.06622578203678131, -0.016827048733830452, -0.022646846249699593, -0.0230039581656456, -0.03359491005539894, 0.021320991218090057, 0.0622694231569767, 0.06415723264217377, 0.0015757849905639887, 0.06349654495716095, -0.027550585567951202, 0.01846023090183735, 0.007570785004645586, -0.04111724719405174, -0.03520244359970093, -0.008997348137199879, -0.0137169873341918, 0.005304277408868074, 0.009895716793835163, -0.02619480900466442, 0.024262433871626854, 0.022550787776708603, -0.020767996087670326, 0.01010833214968443, 0.019396482035517693, 0.015393213368952274, 0.009816640987992287, -0.019208086654543877, -0.023265333846211433, 0.04337722063064575, -0.0035804470535367727, -0.01626426726579666, 0.01942203752696514, -0.08943577110767365, 0.0314285047352314, -0.0475253202021122, -0.06044309586286545, -0.0018379600951448083, 0.01564176380634308, 0.019812919199466705, 0.034854065626859665, 0.0007822613697499037, 0.06427988409996033, 0.03397525101900101, 0.008497841656208038, 0.010452941991388798, -0.012889677658677101, 0.04966527968645096, -0.018800219520926476, -0.04138128459453583, 0.06719731539487839, -0.020394913852214813, -0.010732969269156456, -0.06249518692493439, 0.030805978924036026, -0.031612496823072433, -0.29607725143432617, 0.02950146421790123, 0.008121994324028492, -0.03929835185408592, 0.024149740114808083, -0.047515515238046646, 0.036478254944086075, -0.055310193449258804, -0.046148136258125305, 0.02927514538168907, -0.027203116565942764, -0.03205220773816109, -0.0036409012973308563, 0.05800880119204521, -0.0017457156209275126, 0.037387482821941376, 0.028224080801010132, -0.018355198204517365, 0.013300367631018162, 0.05552519112825394, -0.006308369804173708, -0.05799335241317749, -0.04500952735543251, 0.046147674322128296, 0.022959915921092033, 0.06065010651946068, -0.05338233336806297, 0.0261254720389843, -0.07294240593910217, -0.004554629325866699, 0.0033958691637963057, 0.011284759268164635, 0.01054716669023037, -0.02404560148715973, -0.003796689212322235, -0.03587137535214424, 0.04904022067785263, 0.016780130565166473, -0.01049057487398386, -0.021638648584485054, -0.015184199437499046, -0.038017019629478455, 0.00664527527987957, 0.032433975487947464, 0.06863237172365189, 0.04126952588558197, -0.07078519463539124, -0.005337579641491175, -0.04031437635421753, 0.07330016791820526, -0.03023272007703781, -0.03238639235496521, -0.014512349851429462, 0.009485919959843159, -0.026091523468494415, -0.02714317850768566, -0.00592983840033412, -0.03535383939743042, -0.040362294763326645, -0.04121819883584976, -0.033217985183000565, -0.023417776450514793, 0.005343894939869642, -0.03293319791555405, -0.043075282126665115, -0.06248757615685463, -0.06263434886932373, -0.020871976390480995, 0.05683811753988266, -0.015450467355549335, -0.02921999618411064, 0.017924625426530838, -0.026173362508416176, -0.08738423138856888, -0.004578304477035999, 0.009233692660927773, -0.03033239208161831, -0.009792253375053406, 0.027307668700814247, 0.06209782883524895, -0.020525231957435608, -0.05323002114892006, 0.02862183190882206, -0.005233085714280605, 0.033715829253196716, 0.003185926005244255, 0.06411324441432953, 0.04069885239005089, -0.0330599807202816, -0.004383178893476725, 0.06373857706785202, 0.031957611441612244, -0.04766139015555382, 0.006743617821484804, 0.017428463324904442, 0.022020438686013222, 0.00790276750922203, -0.01978016458451748, 0.026074403896927834, 0.006594136357307434, 0.028664113953709602, -0.04458623006939888, 0.010617977939546108, -0.030582843348383904, -0.019406665116548538, 0.0032296371646225452, -0.06665503233671188, 0.02727535553276539, 0.04064035043120384, 0.009871548041701317, 0.03094727173447609, -0.010051006451249123, 0.03917552903294563, -0.022814130410552025, 0.002977681579068303, -0.030134107917547226, -0.0012456588447093964, 0.0625036433339119, 0.02930150367319584, -0.00915377028286457, -0.06239786371588707, 0.009204070083796978, -0.03020496293902397, 0.004059119150042534, -0.06085101142525673, -0.024157322943210602, -0.012166861444711685, -0.01536463014781475, -0.009960548020899296, 0.040909525007009506, -0.010401196777820587, 0.003357368754222989, 0.055552996695041656, -0.02531632035970688, 0.04253822937607765, -0.03577522933483124, -0.06751842051744461, -0.02716434933245182, -0.016054896637797356, -0.007592061068862677, -0.005390032194554806, 0.0120535958558321, -0.013212882913649082, 0.030280305072665215, 0.05187422037124634, 0.01537744328379631, 0.008613781072199345, -0.02362622134387493, 0.0334317646920681, 0.00695743877440691, 0.0388960987329483, -0.041074544191360474, -0.005601781886070967, -0.022429615259170532, 0.00001284201516682515, 0.007644654251635075, 0.02489921636879444, -0.03725545108318329, -0.006457244046032429, -0.02003089152276516, -0.01700945757329464, -0.04488590732216835, -0.046409692615270615, -0.04507521167397499, 0.04610057920217514, 0.04020225256681442, -0.028100300580263138, -0.01189077366143465, 0.02681565098464489, 0.0021572206169366837, 0.011415990069508553, 0.0000644968167762272, -0.049890343099832535, -0.00469865882769227, 0.01085029635578394, -0.0020324140787124634, -0.0023466891143471003, 0.008621095679700375, 0.03811536356806755, -0.02294933795928955, -0.007573501672595739, -0.029265498742461205, 0.005692682694643736, 0.0014585796743631363, 0.042948804795742035, 0.029841767624020576, -0.004914441611617804, -0.014538662508130074, -0.030104467645287514, -0.027048353105783463, -0.04192940145730972, -0.025364309549331665, -0.006701226346194744, 0.015537525527179241, -0.030183978378772736, -0.0717819407582283, 0.0461951419711113, -0.008878570050001144, -0.00017924784333445132, 0.006585794035345316, 0.0030839447863399982, 0.008938798680901527, -0.031634628772735596, 0.00864251796156168, 0.045277513563632965, -0.06598588079214096, 0.007270500063896179, -0.007759308908134699, -0.038131315261125565, 0.01567249931395054, -0.023351706564426422, -0.029338659718632698, -0.021828817203640938, -0.023657167330384254, -0.002579041989520192, -0.10810758173465729, -0.012922429479658604, -0.05047905817627907, 0.03852056711912155, 0.01653255708515644, 0.020214950665831566, -0.045138053596019745, -0.0340857058763504, -0.0032662705052644014, -0.0362229198217392, 0.02688189595937729, -0.02629658207297325, 0.000534121529199183, 0.009599169716238976, -0.03645801916718483, -0.0018040250288322568, -0.023265106603503227, 0.028731098398566246, 0.0346459224820137, -0.04584737867116928, -0.009297131560742855, -0.028344115242362022, 0.012614688836038113, -0.00013024227519053966, 0.05522727966308594, -0.030996162444353104, -0.02614954486489296, -0.043727897107601166, -0.014880942180752754, -0.03685096278786659, -0.009979243390262127, -0.02179098315536976, -0.00017451126768719405, 0.0065343985334038734, 0.07050394266843796, 0.029849635437130928, 0.017438562586903572, -0.023845603689551353, -0.028100617229938507, 0.05443865433335304, -0.044921938329935074, -0.025801677256822586, -0.03627709299325943, -0.027582719922065735, 0.016689658164978027, 0.0035839355550706387, -0.006675424054265022, -0.0321267731487751, 0.01751139760017395, 0.018358418717980385, 0.036062806844711304, 0.03655457869172096, 0.032065387815237045, 0.02979561686515808, -0.050634413957595825, -0.0041174390353262424, -0.07790649682283401, -0.0023570966441184282, 0.035679351538419724, 0.02241867408156395, -0.008768095634877682, -0.0001458420738345012, -0.035239722579717636, 0.06541987508535385, -0.08435676246881485, -0.014896872453391552, 0.008181720040738583, -0.025026530027389526, -0.003084509400650859, 0.04150496423244476, -0.08794064074754715, 0.014697043225169182, 0.022800777107477188, -0.05806541070342064, -0.009989134967327118, -0.044604070484638214, 0.05667378753423691, -0.014378579333424568, 0.006918929051607847, -0.03709810599684715, -0.013753891922533512, 0.06495455652475357, 0.032125622034072876, -0.00972669292241335, 0.07902795076370239, -0.016581621021032333, 0.030158089473843575, 0.016085440292954445, 0.011852383613586426, -0.008150245994329453, 0.022458000108599663, -0.008840386755764484, -0.05204024538397789, 0.03400662541389465, 0.009938198141753674, -0.0280135590583086, -0.03943366929888725, 0.05689134821295738, 0.015499625355005264, -0.02921268343925476, -0.0515136681497097, 0.0009566599619574845, -0.05624793842434883, -0.009257206693291664, -0.01505329180508852, 0.004966363310813904, -0.03913307189941406, 0.053641024976968765, -0.0008691086550243199, 0.0213267020881176, 0.05153738707304001, -0.011693376116454601, -0.006614078767597675, -0.01362323947250843, 0.09117434173822403, 0.07345636188983917, 0.08338917046785355, 0.02120778150856495, 0.07442677766084671, 0.002757398411631584, -0.0341791994869709, 0.02912171743810177, -0.014183846302330494, -0.015473222360014915, -0.02353203482925892, 0.02503279037773609, 0.055788103491067886, -0.013758329674601555, 0.05495613068342209, -0.006964154541492462, -0.028382401913404465, 0.0022689884062856436, 0.05130970850586891, 0.027994439005851746, 0.029994236305356026, -0.003574568312615156, 0.003072554711252451, -0.009862847626209259, -0.07092738151550293, 0.04240889102220535, -0.009678786620497704, 0.005645818542689085, 0.03871997445821762, -0.03079248033463955, 0.03770970553159714, 0.038662735372781754, 0.014141620136797428, 0.05975670740008354, -0.031208008527755737, 0.0157542135566473, -0.020351285114884377, 0.010957506485283375, -0.0016919163754209876, 0.0076201073825359344, 0.003948905970901251, -0.010539008304476738, 0.006175266578793526, -0.046839866787195206, -0.02070336602628231, 0.009792618453502655, -0.028357308357954025, 0.03528982400894165, -0.02859952487051487, 0.019925126805901527, 0.023836717009544373, 0.003758791135624051, -0.027076929807662964, -0.04189617186784744, -0.03575616702437401, -0.04375791549682617, -0.047014858573675156, 0.007774923462420702, 0.01500407699495554, -0.006558423861861229, -0.03432299196720123, -0.01877029612660408, -0.025609111413359642, -0.03564073517918587, 0.02226313389837742, -0.05422666296362877, -0.021559467539191246, 0.008600469678640366, 0.027224143967032433, 0.04828489199280739, -0.000707266794051975, 0.02153797820210457, 0.02882973663508892, -0.003660003188997507, -0.012136909179389477, 0.03999423235654831, 0.054680582135915756, -0.01061130128800869, -0.017465146258473396, -0.09943771362304688, 0.008911201730370522, 0.043625522404909134, -0.043680738657712936, -0.0734533965587616, 0.016955319792032242, 0.00486592436209321, 0.005714205093681812, 0.04095383360981941, 0.00004807897857972421, -0.022252969443798065, -0.05211222916841507, 0.02058449760079384, -0.003926007077097893, 0.03016919642686844, 0.05342947319149971, -0.03266441822052002, 0.07417269796133041, 0.04199425131082535, -0.01554815098643303, -0.03284357488155365, -0.012584608979523182, 0.012552806176245213, -0.027592403814196587, -0.030040839686989784, -0.04113728925585747, -0.02590436488389969, -0.07696005702018738, -0.026497863233089447, 0.03627289831638336, -0.00626697251573205, -0.026066580787301064, 0.018344832584261894, -0.009868917986750603, -0.0013106761034578085, 0.006507083773612976, -0.06256710737943649, 0.04181717708706856, -0.0063690668903291225, -0.009390274062752724, 0.004305425100028515, 0.029339581727981567, 0.0018088474171236157, -0.003344496712088585, 0.011339630000293255, -0.03940051048994064, 0.013561347499489784, -0.02229391783475876, 0.011079196818172932, 0.024930061772465706, -0.009345493279397488, -0.012755537405610085 ]
[ -0.06603430956602097, 0.03732255846261978, 0.012688534334301949, -0.02338874340057373, 0.04597949609160423, -0.014917158521711826, 0.05463775619864464, 0.018358435481786728, -0.015803659334778786, -0.016339370980858803, 0.006747339852154255, 0.0010664031142368913, -0.001297597773373127, 0.0010519524803385139, 0.03770993649959564, 0.013020328246057034, -0.021773647516965866, -0.05156073719263077, 0.016295000910758972, 0.024167463183403015, -0.04068033769726753, -0.02637344039976597, -0.022638272494077682, 0.03399147093296051, -0.0025181567762047052, 0.02519960142672062, 0.010276933200657368, -0.053723327815532684, -0.008134712465107441, -0.17652706801891327, 0.0020061705727130175, 0.010004928335547447, 0.026019204407930374, -0.005240189842879772, -0.020285051316022873, 0.06934178620576859, 0.030661609023809433, 0.0349976010620594, -0.0019159334478899837, 0.05275455117225647, 0.01553133875131607, 0.034754782915115356, -0.05028508976101875, -0.04730745404958725, 0.02073284424841404, 0.00005653085099766031, 0.017950978130102158, -0.06219039857387543, -0.048138003796339035, 0.02554919570684433, -0.03573702275753021, 0.00024741137167438865, -0.02937084436416626, 0.00546534126624465, -0.025062352418899536, 0.049374960362911224, 0.05152546986937523, 0.019428184255957603, 0.0012329561868682504, 0.01740873046219349, 0.04440666362643242, -0.0044007315300405025, -0.14422529935836792, 0.06684193760156631, -0.010089610703289509, 0.043652813881635666, -0.035646628588438034, 0.01874089054763317, -0.022496329620480537, 0.07364954054355621, -0.02116912230849266, -0.04757663235068321, 0.004099526442587376, -0.01849067397415638, 0.02870568260550499, -0.00230122241191566, -0.00004156312206760049, 0.047933097928762436, 0.03139456361532211, -0.04542652145028114, -0.007290469016879797, 0.02408091351389885, 0.0055940961465239525, -0.041777558624744415, -0.01748081110417843, -0.0054183462634682655, 0.009888657368719578, 0.022426437586545944, 0.004988416563719511, 0.023016005754470825, 0.054406795650720596, 0.0384669303894043, 0.04383445158600807, 0.0012903177412226796, -0.06885044276714325, -0.0324469655752182, -0.010047152638435364, 0.04131156951189041, -0.04782695695757866, 0.4512341320514679, -0.018976185470819473, 0.031600259244441986, 0.07629900425672531, 0.04793702811002731, -0.027626575902104378, -0.01573067344725132, 0.003498892765492201, -0.04287030175328255, 0.007833371870219707, 0.01429471094161272, 0.015728192403912544, 0.019208526238799095, 0.05153808370232582, -0.03372893109917641, 0.051686275750398636, 0.05631277710199356, 0.028861481696367264, 0.03784782811999321, -0.01589685119688511, -0.047209206968545914, 0.015401089563965797, -0.006359672173857689, 0.04708772152662277, 0.03146302327513695, -0.04168644919991493, -0.04719879850745201, 0.01747402362525463, 0.05788354575634003, 0.0662846788764, -0.041233692318201065, 0.035352159291505814, -0.0482412725687027, -0.08460994064807892, 0.005510199349373579, -0.0188142117112875, -0.02542353980243206, 0.041567690670490265, -0.05592883750796318, 0.026758817955851555, 0.028370030224323273, 0.03590374067425728, -0.026127617806196213, 0.008102178573608398, -0.010596546344459057, -0.07805563509464264, 0.15404333174228668, 0.01515622902661562, -0.040153030306100845, -0.03441590815782547, -0.019485456869006157, -0.00023935690114740282, 0.024365698918700218, 0.01074847299605608, -0.041515037417411804, 0.030656930059194565, 0.014294586144387722, 0.08736307919025421, -0.0262503232806921, -0.058022938668727875, 0.0027265637181699276, -0.02651038207113743, -0.042156852781772614, -0.038770198822021484, 0.06204378604888916, 0.06784890592098236, -0.09251570701599121, -0.01100408099591732, -0.03114168904721737, 0.012398469261825085, -0.06639033555984497, -0.01842629350721836, -0.006740155629813671, -0.015512542799115181, 0.010050109587609768, 0.04238462448120117, -0.012599409557878971, -0.027769137173891068, -0.003972678445279598, 0.03199244663119316, -0.0005536235403269529, 0.041791822761297226, 0.01626681163907051, -0.036033276468515396, 0.0160145815461874, -0.01984684355556965, -0.07762546092271805, -0.04150538891553879, -0.018655667081475258, -0.015874743461608887, 0.03197082132101059, -0.021723339334130287, -0.01265397947281599, -0.05147609859704971, 0.09483445435762405, -0.04767982289195061, -0.003671530168503523, 0.0009479477303102612, -0.019676607102155685, -0.061761628836393356, -0.03345632925629616, -0.0975390076637268, 0.0049196407198905945, -0.03435163199901581, 0.016220055520534515, -0.030500754714012146, 0.05970190465450287, 0.03566167876124382, -0.04699018597602844, 0.10157360136508942, 0.017697948962450027, -0.03089883178472519, -0.043535079807043076, 0.002974108327180147, 0.01973307505249977, -0.023073837161064148, 0.010846536606550217, 0.012823824770748615, 0.027826521545648575, 0.009005468338727951, -0.0050378721207380295, 0.032491836696863174, 0.05412084236741066, 0.006919072475284338, -0.353023886680603, -0.01360779907554388, -0.028771793469786644, 0.01627386547625065, 0.031593289226293564, -0.039699967950582504, 0.0293650571256876, -0.020474333316087723, -0.032579924911260605, 0.0028602266684174538, 0.021089063957333565, -0.026710640639066696, -0.013916067779064178, -0.06241729110479355, 0.013222998939454556, 0.016279133036732674, -0.050822678953409195, -0.006266599055379629, -0.043192196637392044, 0.000047319485020125285, 0.016000472009181976, 0.01520204171538353, -0.01953592523932457, -0.02990635111927986, -0.012756304815411568, -0.040977079421281815, 0.06863701343536377, 0.010949314571917057, 0.02945711836218834, -0.013876323588192463, 0.018984206020832062, 0.013505435548722744, -0.005607570055872202, -0.10911084711551666, 0.018054628744721413, -0.03070571832358837, -0.014727847650647163, -0.03695171698927879, 0.037360262125730515, -0.05580432713031769, -0.029295990243554115, 0.03240029141306877, -0.061056949198246, -0.01435715239495039, -0.08504051715135574, 0.022707676514983177, -0.030681071802973747, -0.030688829720020294, -0.025616047903895378, 0.060426659882068634, 0.003821587422862649, -0.0031943200156092644, 0.019831493496894836, -0.015519890002906322, -0.0038241250440478325, -0.0334792323410511, -0.1017385870218277, 0.004220289643853903, -0.011639747768640518, 0.003348425729200244, 0.0156379584223032, 0.06877504289150238, 0.03562314808368683, -0.07872138917446136, 0.0175337977707386, 0.00753198703750968, 0.0028040604665875435, 0.0025714561343193054, 0.059222061187028885, 0.00036243273643776774, -0.027126191183924675, 0.08620017021894455, -0.027490146458148956, -0.02837153524160385, 0.03851095214486122, 0.060194969177246094, -0.030527129769325256, -0.019281908869743347, -0.0334688201546669, -0.011489097960293293, 0.017534006386995316, -0.024017633870244026, 0.014203136786818504, -0.015982413664460182, -0.005441519897431135, 0.013830249197781086, -0.032609011977910995, -0.04772086814045906, 0.06904783844947815, 0.002003083936870098, -0.013645841740071774, 0.017071744427084923, -0.05196335166692734, -0.011187476105988026, 0.049774669110774994, 0.014355138875544071, -0.24788229167461395, 0.023470694199204445, 0.08986150473356247, 0.03333957493305206, 0.007341591641306877, 0.0583631694316864, -0.02546379156410694, -0.05606551840901375, -0.0102528166025877, 0.03359965234994888, 0.05007456988096237, -0.0032408139668405056, -0.0018475198885425925, 0.007773289456963539, 0.01312662847340107, 0.014117223210632801, 0.04156676307320595, -0.011595985852181911, 0.026491472497582436, -0.0354260690510273, 0.027457688003778458, -0.022368773818016052, 0.13452419638633728, 0.003285350278019905, 0.03367963060736656, 0.025325709953904152, 0.008497108705341816, -0.024225648492574692, 0.04601038992404938, -0.029042035341262817, 0.03925999999046326, -0.05171241983771324, 0.02715674228966236, 0.014067367650568485, 0.03694659098982811, -0.07635746151208878, -0.02117042988538742, 0.045529067516326904, -0.0018748173024505377, 0.022942043840885162, 0.015313173644244671, 0.01744341291487217, -0.01853080280125141, 0.020885396748781204, 0.10232923179864883, 0.02509150840342045, 0.027727719396352768, -0.017937716096639633, -0.08893721550703049, -0.028843332082033157, -0.024803729727864265, -0.02751300111413002, -0.0002619912847876549, -0.0022760345600545406, 0.03592250123620033, 0.050349049270153046, 0.028424080461263657, -0.025069545954465866, 0.028216993436217308, 0.014577803201973438, -0.024811316281557083, 0.031462661921978, 0.09873732924461365, 0.04379867762327194, 0.0397588312625885 ]
[ -0.002850602613762021, -0.01139520388096571, 0.006980531383305788, 0.01972126215696335, -0.01400800608098507, 0.007317640818655491, 0.0026873829774558544, -0.01848827674984932, 0.010160993784666061, -0.0035360916517674923, 0.012159442529082298, 0.02985375002026558, 0.03684437647461891, 0.010436663404107094, 0.03674554079771042, -0.008565790951251984, 0.024819977581501007, -0.03529974818229675, 0.04474049061536789, 0.015196551568806171, -0.013002350926399231, -0.018988817930221558, 0.013506030663847923, -0.009694498963654041, -0.03385261818766594, -0.008253291249275208, -0.047622330486774445, -0.008186226710677147, 0.032606616616249084, -0.10404665023088455, -0.004057843238115311, -0.026328420266509056, -0.0178235974162817, -0.004604491870850325, -0.007857142016291618, -0.02064710110425949, -0.015833435580134392, 0.048486966639757156, 0.0018187395762652159, 0.010242649354040623, -0.001116272178478539, -0.008721894584596157, 0.008903243578970432, 0.0093360785394907, 0.008113523945212364, -0.011732958257198334, 0.0019559061620384455, -0.047157857567071915, -0.023418307304382324, -0.02966390736401081, -0.014828572049736977, -0.03730215132236481, 0.0019650014583021402, 0.012526409700512886, 0.005934922490268946, -0.010552939958870411, 0.006404117215424776, -0.013093789108097553, -0.00018607011588755995, -0.014785805717110634, -0.004358902107924223, -0.036999769508838654, -0.06389760226011276, -0.04753413796424866, -0.029749970883131027, -0.026697132736444473, 0.016426194459199905, -0.0030312822200357914, -0.007585454732179642, 0.006230244413018227, -0.015010112896561623, -0.01370247919112444, -0.007437898311764002, -0.03890383243560791, 0.0251197200268507, 0.010619844309985638, -0.004399386700242758, 0.01928524486720562, 0.0296811331063509, -0.03973054513335228, 0.01917143352329731, 0.02910548634827137, 0.036393940448760986, 0.04175637289881706, -0.0011217242572456598, -0.04701174795627594, 0.005361251067370176, -0.034876082092523575, -0.023292241618037224, 0.03258154168725014, -0.03591737523674965, 0.023559464141726494, -0.0025785653851926327, -0.009500686079263687, -0.11002980917692184, 0.013297466561198235, -0.023481205105781555, -0.004200087394565344, 0.011871585622429848, 0.8495522737503052, -0.0007227378082461655, 0.031506266444921494, 0.016768023371696472, 0.0024181553162634373, -0.01863269694149494, 0.006127769127488136, 0.012765046209096909, 0.0048212953843176365, -0.0005702932248823345, 0.00840927567332983, 0.005365224555134773, 0.021113358438014984, 0.005302675999701023, 0.01620575599372387, 0.017407072708010674, 0.033073198050260544, -0.014306014403700829, -0.002768723526969552, 0.005090457387268543, -0.002280471147969365, 0.05752509459853172, -0.011697058565914631, 0.05627157911658287, 0.022877782583236694, 0.012994565069675446, -0.1462879329919815, 0.02841860055923462, -9.114895602923315e-33, 0.06273073703050613, -0.009916775859892368, -0.024149397388100624, -0.002146960236132145, -0.008508147671818733, 0.03292239084839821, 0.017668841406702995, 0.030954115092754364, -0.0012073551770299673, -0.04136767238378525, -0.0013537785271182656, -0.027112439274787903, 0.001697723288089037, -0.03721591830253601, 0.027941107749938965, -0.030001431703567505, -0.019414979964494705, 0.0687987431883812, -0.011430432088673115, 0.003612043336033821, 0.049240171909332275, 0.02825228124856949, 0.004836331121623516, -0.00545773608610034, 0.03148110210895538, 0.015857893973588943, -0.007210319861769676, 0.007390934973955154, 0.01067353691905737, -0.040677305310964584, -0.005061537493020296, 0.009603616781532764, -0.021345725283026695, -0.005654279608279467, 0.0013077376643195748, -0.03426908329129219, -0.017017249017953873, -0.007069554645568132, 0.011989246122539043, -0.040757715702056885, -0.03407389670610428, 0.013382472097873688, -0.019097406417131424, -0.0170880239456892, -0.029795946553349495, 0.006890139076858759, 0.020607879385352135, -0.020305363461375237, -0.0007453004363924265, -0.007791353855282068, -0.01683714985847473, 0.010897263884544373, 0.001269922824576497, -0.02093217708170414, -0.032235220074653625, 0.012006670236587524, 0.0015153787098824978, 0.013838938437402248, 0.0002875567879527807, -0.021402662619948387, 0.04771658778190613, 0.008155611343681812, -0.03325914964079857, 0.05115347355604172, 0.01731717772781849, -0.005617724731564522, 0.006049246061593294, -0.004575799219310284, 0.05590676888823509, -0.012650620192289352, -0.06573131680488586, -0.007973609492182732, 0.02103998325765133, -0.010006687603890896, -0.00033272639848291874, -0.0077428738586604595, -0.012884238734841347, 0.0316954180598259, -0.0349467396736145, 0.035656947642564774, -0.0010317593114450574, -0.0066340621560812, -0.0450926199555397, -0.021427445113658905, -0.016918066889047623, -0.01813691109418869, 0.02565477415919304, -0.0011194641701877117, -0.03561430796980858, 0.015061826445162296, 0.02356736734509468, 0.009991372935473919, 0.022096678614616394, 0.019152797758579254, -0.021060241386294365, 8.847476515582998e-33, 0.027912728488445282, -0.005058700684458017, -0.003733704099431634, -0.021935313940048218, 0.07869962602853775, 0.0036776347551494837, -0.01277108769863844, 0.008957681246101856, -0.048564884811639786, 0.015214327722787857, -0.002408241620287299, 0.019294651225209236, -0.01413726806640625, 0.031030813232064247, -0.001731543685309589, -0.013690034858882427, -0.002459491603076458, -0.020749816671013832, -0.011376372538506985, -0.010785350576043129, 0.007888508960604668, 0.012485994957387447, 0.003682181006297469, 0.015366832725703716, 0.024771351367235184, 0.03187505528330803, 0.01873951219022274, 0.04094748944044113, 0.006017365958541632, 0.01582958735525608, 0.010373110882937908, -0.009864711202681065, 0.020679013803601265, -0.03062880039215088, -0.0014161091530695558, 0.014658492989838123, -0.004287449177354574, -0.042004503309726715, -0.033923957496881485, -0.022556578740477562, 0.02353806048631668, 0.017921118065714836, 0.01024565938860178, 0.022159432992339134, 0.03281095251441002, 0.008598831482231617, -0.03760691359639168, 0.00822428148239851, -0.015180929563939571, 0.00790021289139986, -0.020415261387825012, -0.0071302554570138454, 0.015976592898368835, -0.007862982340157032, 0.018117016181349754, -0.03766962140798569, -0.012655572034418583, -0.028406865894794464, -0.007387608289718628, 0.015499886125326157, -0.008168456144630909, 0.0377083420753479, -0.037014394998550415, -0.002105080522596836, -0.02769170142710209, 0.02040102705359459, 0.006623176392167807, 0.01037188246846199, -0.030475156381726265, 0.04288576915860176, 0.0072475881315767765, 0.011089878156781197, -0.034333840012550354, 0.03491409495472908, 0.06691648066043854, -0.0075447773560881615, -0.014042138122022152, 0.0027836214285343885, -0.030629582703113556, 0.009689143858850002, -0.006769704166799784, -0.017569493502378464, 0.016985822468996048, -0.021447021514177322, -0.019734904170036316, 0.0043737562373280525, 0.004674502648413181, 0.05690225586295128, -0.013835771940648556, -0.004942500498145819, 0.020595649257302284, -0.07467934489250183, 0.012314941734075546, 0.004566398914903402, 0.02493218518793583, -1.4301947182104868e-8, -0.007796747609972954, 0.008440171368420124, 0.0005324178491719067, 0.0061064003966748714, 0.01869683526456356, -0.04388805478811264, -0.016742462292313576, -0.03229236975312233, -0.010885559022426605, 0.007195268291980028, 0.047201596200466156, -0.044775597751140594, 0.03678007796406746, -0.018151570111513138, 0.04175085201859474, -0.03385492041707039, -0.020104294642806053, -0.00037571266875602305, 0.027484791353344917, 0.030617687851190567, 0.012305273674428463, 0.025683101266622543, -0.05269812420010567, 0.006418997421860695, 0.022094352170825005, 0.016867995262145996, -0.031800173223018646, -0.05844598263502121, -0.041081689298152924, 0.008410167880356312, 0.03250795230269432, -0.017177017405629158, -0.017433829605579376, 0.027814194560050964, -0.01773148402571678, -0.04347658157348633, 0.04463931545615196, -0.038715966045856476, -0.0010518049821257591, 0.006725719664245844, 0.02618306688964367, -0.033967260271310806, -0.0026497463695704937, -0.02361460216343403, -0.02182292379438877, 0.04310786724090576, -0.025788985192775726, -0.027688246220350266, -0.016600823029875755, -0.017372354865074158, -0.004398009739816189, -0.023799698799848557, 0.041472937911748886, 0.020506853237748146, 0.0031328166369348764, 0.015813609585165977, 0.02176443301141262, 0.02248874306678772, -0.03565804287791252, -0.000566869683098048, 0.050162117928266525, 0.042878612875938416, -0.007847325876355171, -0.02497745491564274 ]
retrospectives-general-observations
https://markhneedham.com/blog/2010/11/06/retrospectives-general-observations
false
2010-11-06 11:59:16
Retrospectives: Actions
[ "retrospectives" ]
[ "Agile" ]
My colleague Ashwin Raghav wrote a blog post earlier in the week in which he noted http://ashwinraghav.wordpress.com/2010/11/05/retrospetive-patterns/[some patterns that he's noticed in retrospectives in his time working in ThoughtWorks]. In it he talks quite generally about things he's noticed but in my experience one of the areas in which teams typically struggle is when it comes to action items. == Too many action items I think this is probably the number one mistake that we make in retrospectives and it's really easy to make. We find so many things that we can improve in our team and we want to try and do all of them straight away. This sounds a little similar to what http://www.dennisdoomen.net/2010/11/agile-architecture-according-to-dan.html[Dan North has been talking about in his Agile Architecture talk at QCon in San Francisco]: ____ Often you'll find tens and tens of things to improve, accept the fact that you probably can only change three of them, and focus on that. ____ Having any more than 2 or 3 action items probably means that the majority of them aren't going to happen so we need to prioritise and make sure only the action items we really care about are recorded. == Action items that noone is passionate about Even if we do manage to reduce the number of actions that we list it's often the case that we'll get to the next retrospective and nothing will have been done about many of them. I think this stems partly from the fact that it's really easy to suggest that something be added to the action items without considering whether or not there is someone in the team that is really passionate about making sure that it happens. This often happens when we volunteer 'owners' for actions rather than someone being enthusiastic enough that they just want to go and fix it. My current thinking is that if noone really wants to drive forward an action then we should just cross it off the list rather than fool ourselves into thinking it will get done. == Group ownership of actions We recently came up with an action that was applicable to all developers on the team - around recording technical debt while working on stories -and I didn't see the value of assigning an 'owner' to that action. A colleague pointed out that if we had group ownership for that action then it would mean that nothing would happen because *collective responsibility typically means no responsibility*. He added that it would be useful to have one or two developers paying particular attention to that item until the approach was engrained in the team's mentality and everyone just did it by default. == Action items that are difficult to measure Another common mistake is to come up with action items which are very difficult to measure i.e. we can't tell whether or not we succeeded in executing the action or not. In http://www.amazon.com/Agile-Retrospectives-Making-Teams-Great/dp/0977616649/ref=sr_1_1?ie=UTF8&s=books&qid=1289044694&sr=8-1[Agile Retrospectives] the authors suggest that we ensure our actions are http://www.thepracticeofleadership.net/2006/03/11/setting-smart-objectives/[S.M.A.R.T] which I think is a reasonably good idea although I'm not a fan of management acronyms! I prefer to just check that with each action we'll be able to know by the next retrospective whether or not we've managed to do it and if what we did worked.
null
null
[ 0.02897643856704235, -0.006830029189586639, -0.020442726090550423, 0.031205955892801285, 0.08078105002641678, -0.005794587079435587, 0.01985176093876362, 0.03359224274754524, 0.0213589146733284, -0.027803322300314903, -0.02441423386335373, 0.0007662511779926717, -0.05221673473715782, 0.022118136286735535, -0.05627782270312309, 0.0770590752363205, 0.05171888321638107, -0.006372844334691763, 0.024492666125297546, 0.011370662599802017, 0.037520881742239, 0.07579673081636429, 0.032325394451618195, 0.03413912653923035, 0.04204493761062622, 0.010867537930607796, 0.028985342010855675, -0.013759838417172432, -0.05560111626982689, -0.0042553129605948925, 0.03185455501079559, -0.004625763278454542, 0.009512657299637794, 0.004358722362667322, 0.026747459545731544, -0.01828806661069393, -0.011486981995403767, 0.03393413871526718, -0.0014017157955095172, 0.0007781762396916747, -0.05545393377542496, 0.04998661205172539, -0.03173070400953293, 0.013546755537390709, -0.028487278148531914, 0.022481301799416542, -0.03154950588941574, 0.009183702990412712, -0.005666673649102449, 0.00041830894770100713, -0.05112449824810028, 0.02968439646065235, 0.00795377604663372, -0.024291882291436195, -0.005058484151959419, 0.042177967727184296, 0.001655618310905993, -0.04467682167887688, -0.015094305388629436, -0.03178761154413223, -0.011965149082243443, -0.01851651258766651, 0.0053140344098210335, 0.030106982216238976, 0.031529445201158524, -0.027297917753458023, 0.016592038795351982, 0.031158367171883583, -0.015159934759140015, 0.012473334558308125, -0.02760985493659973, 0.005292617250233889, -0.017652295529842377, 0.0026279704179614782, -0.013377456925809383, -0.043944139033555984, 0.026538867503404617, 0.07325161248445511, 0.027469370514154434, 0.02520311065018177, -0.020280878990888596, 0.0205789003521204, -0.0014962131390348077, 0.034950822591781616, -0.011018739081919193, -0.04892933368682861, -0.0032762433402240276, -0.012185478582978249, -0.07035825401544571, 0.0706862211227417, 0.009500948712229729, -0.07178699970245361, 0.0386979803442955, 0.04548690840601921, -0.01000618189573288, 0.003525045234709978, 0.03149670735001564, 0.016986077651381493, 0.00940850842744112, -0.0091001121327281, -0.028668802231550217, -0.013658172450959682, -0.01464446447789669, 0.00374987511895597, -0.0670723170042038, -0.00945966225117445, -0.02376490645110607, -0.003319743787869811, -0.006824573501944542, -0.000501931004691869, -0.03413935750722885, 0.025090781971812248, -0.027800701558589935, 0.013975570909678936, -0.051800258457660675, 0.061657391488552094, 0.010063676163554192, -0.05113445967435837, -0.014976928010582924, -0.0032197206746786833, 0.043995946645736694, 0.025889186188578606, -0.01165804360061884, 0.07914002984762192, 0.008099607191979885, 0.008254575543105602, -0.019627463072538376, 0.05617062374949455, -0.026466475799679756, -0.06202033534646034, -0.022023029625415802, 0.0572974793612957, -0.06162222847342491, -0.02534419484436512, -0.010290861129760742, -0.038707759231328964, 0.005008192732930183, 0.004466707352548838, 0.016860611736774445, 0.055153053253889084, 0.0027704350650310516, -0.03346262499690056, 0.008068183436989784, 0.010588569566607475, 0.04194869473576546, 0.0007970779552124441, -0.002539150882512331, -0.025032296776771545, -0.06267745047807693, -0.03309476003050804, 0.004965837113559246, 0.0038247520569711924, 0.021996337920427322, -0.04868342727422714, 0.024236945435404778, 0.08536934107542038, 0.052448008209466934, 0.005283808801323175, -0.013468860648572445, 0.03311208263039589, 0.043972332030534744, 0.017747333273291588, 0.02216997928917408, 0.023106001317501068, 0.007006973959505558, -0.010150077752768993, -0.013784853741526604, 0.03145703300833702, 0.020125316455960274, 0.00814003124833107, -0.06704472750425339, -0.04745497554540634, 0.044840872287750244, -0.025419462472200394, -0.023745374754071236, 0.04985307902097702, 0.07115457206964493, 0.050508782267570496, 0.024216700345277786, 0.006715213414281607, -0.08183550089597702, 0.03538263216614723, 0.003696475410833955, 0.02379612624645233, 0.04738759621977806, -0.015873828902840614, 0.057018548250198364, 0.024982694536447525, 0.010678157210350037, 0.043911758810281754, -0.08263552188873291, -0.09530899673700333, -0.017265548929572105, -0.026463916525244713, 0.03658198565244675, -0.0435422845184803, 0.015348800458014011, 0.07341164350509644, 0.005104209762066603, 0.05873594060540199, 0.02373816817998886, 0.00842511560767889, 0.004703816957771778, -0.038384031504392624, -0.030221236869692802, 0.07194025069475174, 0.0397525317966938, 0.005250807385891676, -0.04760696366429329, 0.020740969106554985, 0.00027514019166119397, -0.0012810473563149571, 0.045962296426296234, -0.01396358385682106, 0.03843986243009567, 0.0007289621280506253, 0.06334718316793442, -0.03154449164867401, 0.0399528443813324, -0.04308709874749184, -0.0024309882428497076, -0.00692082429304719, -0.026616785675287247, 0.03737153857946396, -0.011016531847417355, 0.11525917053222656, 0.05253148451447487, -0.06271982192993164, -0.03927525132894516, 0.017701037228107452, 0.018709413707256317, -0.03405594453215599, -0.012881393544375896, -0.0033528704661875963, 0.029217718169093132, 0.008327126502990723, -0.0555860735476017, -0.039524149149656296, 0.0322909913957119, -0.05275287851691246, 0.011154687963426113, 0.047721654176712036, -0.005725954193621874, 0.06793482601642609, -0.013522514142096043, -0.010740204714238644, -0.015409344807267189, -0.014631515368819237, -0.057982802391052246, 0.012176411226391792, 0.013372108340263367, -0.02649177610874176, 0.056288644671440125, -0.02782624401152134, -0.03960714489221573, -0.03665023669600487, -0.022080088034272194, -0.0011537662940099835, 0.059188082814216614, 0.06014455482363701, -0.00694653345271945, 0.061164166778326035, -0.015786683186888695, 0.01900029554963112, 0.0029624023009091616, -0.04567756503820419, -0.028794359415769577, -0.029237793758511543, 0.0006545198266394436, 0.02219635248184204, -0.00018217509204987437, 0.006637615617364645, 0.02965058572590351, 0.014603243209421635, -0.01731364242732525, -0.009837153367698193, 0.03156221657991409, 0.017705360427498817, -0.005887965671718121, -0.024565279483795166, -0.007973256520926952, 0.05000375956296921, -0.011956590227782726, -0.018666747957468033, 0.01373497024178505, -0.09323286265134811, 0.04750962182879448, -0.04772891104221344, -0.031884826719760895, -0.00002211162427556701, 0.016286645084619522, 0.056429482996463776, 0.008337552659213543, 0.01420796662569046, 0.057169221341609955, 0.025334171950817108, 0.009188209660351276, -0.002059540245682001, -0.022119101136922836, 0.033152684569358826, 0.005135856103152037, -0.026846593245863914, 0.05023965984582901, -0.006780700292438269, 0.003240639343857765, -0.055912718176841736, 0.05278945341706276, -0.042326752096414566, -0.2941592335700989, 0.026026476174592972, 0.02744472026824951, -0.030630115419626236, 0.011818495579063892, -0.00842603761702776, 0.01348451804369688, -0.053077418357133865, -0.02491491474211216, 0.0036896499805152416, -0.0467093363404274, -0.05874805897474289, -0.010009687393903732, 0.045834194868803024, 0.005481920670717955, 0.0365874320268631, 0.03212437033653259, -0.02175469510257244, 0.0049589830450713634, 0.039308834820985794, -0.025539718568325043, -0.07647424936294556, -0.013970446772873402, 0.027354756370186806, 0.04094705358147621, 0.059710558503866196, -0.09118718653917313, 0.03727070614695549, -0.0544881708920002, 0.0028877882286906242, 0.006777009926736355, 0.014488977380096912, 0.0033753542229533195, -0.012434600852429867, -0.0069140964187681675, -0.021008959040045738, 0.04568991810083389, -0.0066948928870260715, -0.014185951091349125, -0.012716609984636307, -0.009345072321593761, -0.025402942672371864, 0.02287512645125389, 0.03359826281666756, 0.07043389230966568, 0.022314364090561867, -0.07997256517410278, -0.013200169429183006, -0.02531130239367485, 0.07593095302581787, -0.027584459632635117, -0.028382042422890663, 0.0003497208235785365, 0.03376426547765732, -0.012371529825031757, -0.040265075862407684, 0.002547534415498376, -0.03989211842417717, -0.022119788452982903, -0.012867094948887825, -0.003441565902903676, -0.02833959273993969, 0.004446792881935835, -0.042953021824359894, -0.0074876174330711365, -0.06597643345594406, -0.05823937803506851, -0.017679935321211815, 0.0679907351732254, -0.01569579355418682, -0.047426167875528336, 0.03106985054910183, -0.005910608917474747, -0.10568471252918243, -0.00675151776522398, 0.0023329502437263727, -0.01583092100918293, 0.0102164875715971, 0.012504148297011852, 0.043872635811567307, -0.03767205774784088, -0.05436759442090988, -0.0038209056947380304, 0.005022201221436262, 0.033610790967941284, 0.001527756336145103, 0.05966321751475334, 0.03130437806248665, -0.02400108240544796, 0.0297990869730711, 0.05927527695894241, 0.0035777436569333076, -0.03967113792896271, -0.0034567376133054495, 0.02871735207736492, -0.01099957711994648, 0.02188463881611824, -0.01313996035605669, 0.013391881249845028, 0.021461429074406624, -0.01050632819533348, -0.05550381541252136, 0.02281574159860611, -0.0315842367708683, -0.02350177988409996, 0.006009307689964771, -0.037304818630218506, 0.01480634044855833, 0.0551573820412159, 0.037619881331920624, 0.01574556902050972, -0.016295023262500763, 0.022170549258589745, -0.04158893600106239, -0.01561923511326313, -0.008616337552666664, 0.010740906931459904, 0.06456593424081802, -0.007216850761324167, -0.00610483530908823, -0.06224038824439049, 0.0020323016215115786, -0.0442492738366127, 0.003440445987507701, -0.07024956494569778, -0.016280002892017365, -0.031033601611852646, -0.018772585317492485, 0.020473595708608627, 0.025611169636249542, -0.014574382454156876, 0.017527492716908455, 0.03405876085162163, -0.0215783528983593, 0.025733331218361855, -0.03379989415407181, -0.06858152151107788, -0.026471013203263283, -0.007098115049302578, -0.017736295238137245, -0.014379845932126045, 0.029641427099704742, 0.017774121835827827, 0.026664594188332558, 0.03568631783127785, 0.01661544479429722, 0.018669217824935913, -0.008753059431910515, 0.03920074552297592, 0.013636749237775803, 0.027309710159897804, -0.0568997859954834, 0.010486852377653122, -0.031820669770240784, -0.019386516883969307, -0.02769971266388893, 0.02098393626511097, -0.04532868042588234, -0.016371427103877068, -0.006026581861078739, 0.0029007920529693365, -0.04701673984527588, -0.03657631576061249, -0.027439389377832413, 0.0318029522895813, 0.05634401738643646, -0.014012274332344532, -0.00484492676332593, -0.014167185872793198, -0.012269633822143078, -0.002213920233771205, -0.010249719955027103, -0.03143223002552986, -0.0012103868648409843, 0.01941845752298832, 0.007469473872333765, 0.0013385671190917492, 0.007999593392014503, 0.040519289672374725, 0.008002923801541328, -0.006396009586751461, -0.02392984926700592, 0.002734523732215166, 0.01908285543322563, 0.03244231641292572, 0.02546534687280655, -0.0010794925037771463, -0.004774235188961029, -0.03668735548853874, -0.03366569057106972, -0.0378299243748188, 0.007607452105730772, 0.01702619157731533, 0.007834737189114094, -0.020168591290712357, -0.08409897238016129, 0.0721154659986496, 0.023731771856546402, 0.007859313860535622, 0.0010052024153992534, 0.001451715361326933, -0.004410304129123688, -0.018884150311350822, 0.02981596812605858, 0.06093582138419151, -0.06803964078426361, -0.0017871694872155786, -0.021034114062786102, 0.0004054542805533856, 0.0057183667086064816, -0.021340681239962578, -0.035291749984025955, -0.01867441087961197, -0.026103893294930458, 0.01604684628546238, -0.07880657911300659, -0.010996204800903797, -0.022864537313580513, 0.017415517941117287, 0.006554979830980301, 0.0037976482417434454, -0.029598576948046684, -0.011280237697064877, -0.009472830221056938, -0.05455273762345314, 0.00886536668986082, -0.039652030915021896, -0.0028497192542999983, 0.00809470470994711, -0.03742826357483864, -0.00234945653937757, -0.04377869889140129, 0.005529929418116808, 0.011411012150347233, -0.03338814526796341, 0.008278564549982548, -0.022871514782309532, 0.0019478030735626817, 0.011635445058345795, 0.03906364366412163, -0.03628367558121681, -0.03160610795021057, -0.044259510934352875, -0.012026774697005749, -0.04767032340168953, -0.003440568223595619, -0.02984449453651905, 0.008949465118348598, 0.015361800789833069, 0.07465285062789917, 0.026803800836205482, 0.0338149257004261, -0.022234855219721794, -0.018583469092845917, 0.04834458976984024, -0.06540815532207489, -0.027719445526599884, -0.04445131868124008, -0.05454399809241295, -0.010470821522176266, 0.012716494500637054, 0.011273453943431377, -0.0370953269302845, 0.034722864627838135, 0.026170553639531136, 0.04244065284729004, 0.02794184535741806, 0.004596120212227106, 0.009857510216534138, -0.05115173012018204, 0.0028898960445076227, -0.07670789211988449, -0.013394011184573174, 0.031193643808364868, 0.0010672665666788816, 0.00036712331348098814, 0.01394567545503378, -0.048303037881851196, 0.036533139646053314, -0.08072368055582047, -0.027325375005602837, 0.03716569393873215, -0.004013035446405411, -0.013968702405691147, 0.022304533049464226, -0.07764676213264465, 0.02424139715731144, 0.024856839329004288, -0.05777652934193611, -0.007823502644896507, -0.042629264295101166, 0.05017750710248947, -0.00203116936609149, 0.04010254144668579, -0.04189189523458481, -0.02220095507800579, 0.0777265653014183, 0.002813934348523617, -0.013513266108930111, 0.0636509582400322, 0.001153705408796668, 0.020181799307465553, 0.023205924779176712, 0.005538451950997114, -0.029627209529280663, 0.010154061019420624, -0.015095014125108719, -0.053816333413124084, 0.02822849154472351, 0.02006840519607067, -0.047884177416563034, -0.03260312229394913, 0.06352246552705765, 0.022697268053889275, -0.02079582028090954, -0.04150351881980896, -0.00013314637180883437, -0.06278899312019348, -0.0035638222470879555, -0.010399683378636837, -0.011311080306768417, -0.06240706518292427, 0.04409555718302727, -0.008342609740793705, 0.04195866733789444, 0.06738070398569107, -0.003736842190846801, -0.006659572944045067, -0.026529043912887573, 0.09147848188877106, 0.07193388789892197, 0.06511238217353821, -0.0006790839252062142, 0.06915523111820221, -0.01515335962176323, -0.04305938258767128, 0.034385669976472855, -0.0005552518996410072, -0.015092574059963226, -0.02788488194346428, 0.033574365079402924, 0.060941532254219055, -0.015157537534832954, 0.05228714644908905, -0.011165682226419449, -0.03751775249838829, 0.02263486385345459, 0.03595483675599098, 0.013495812192559242, 0.06297270208597183, 0.007826962508261204, 0.018915778025984764, -0.016706502065062523, -0.046819236129522324, 0.03419606760144234, -0.036618709564208984, -0.01219989638775587, 0.05691253021359444, 0.007609114516526461, 0.03243240341544151, 0.013408222235739231, 0.015659168362617493, 0.0722595751285553, -0.04448430612683296, 0.007227818015962839, -0.012277006171643734, 0.023045489564538002, -0.016741134226322174, 0.017683997750282288, -0.012660392560064793, -0.026298655197024345, 0.021216485649347305, -0.028958411887288094, -0.004864330403506756, -0.0026111167389899492, -0.01870230957865715, 0.055383771657943726, -0.03171014040708542, 0.00700024701654911, 0.023276252672076225, 0.00848347693681717, -0.033826794475317, -0.05471030995249748, -0.022266192361712456, -0.03371897712349892, -0.047667182981967926, 0.003911101259291172, 0.023298660293221474, -0.0028529635164886713, -0.0389334000647068, -0.024126343429088593, -0.013073221780359745, -0.031112857162952423, 0.059209421277046204, -0.04687465727329254, -0.03326747193932533, -0.005843988619744778, 0.020805731415748596, 0.031379666179418564, 0.012282250449061394, 0.04204598814249039, -0.02150622382760048, -0.015026208013296127, -0.018277253955602646, 0.03896947577595711, 0.030984465032815933, -0.011620850302278996, -0.004954484291374683, -0.08456376940011978, 0.02142348326742649, 0.035432200878858566, -0.02862965315580368, -0.0742955133318901, 0.03819224610924721, 0.0031321814749389887, -0.020106371492147446, 0.053369179368019104, -0.01391464751213789, 0.010428177192807198, -0.05247301980853081, 0.0036137148272246122, 0.0046890308149158955, 0.009450135752558708, 0.04788069427013397, -0.03037499263882637, 0.07494881004095078, 0.03710775077342987, -0.006410215049982071, -0.05410590022802353, -0.011939615942537785, 0.006887956988066435, -0.007668183650821447, -0.0126378508284688, -0.027201583608984947, -0.03471720218658447, -0.07850415259599686, -0.03201426938176155, 0.018949033692479134, -0.011518028564751148, -0.035135526210069656, 0.04147327318787575, 0.028853753581643105, -0.026931356638669968, 0.011052167974412441, -0.05700519308447838, 0.04077479988336563, -0.026167098432779312, -0.0051976521499454975, -0.010082890279591084, 0.03702154383063316, 0.0011865898268297315, -0.002511009108275175, 0.031547315418720245, -0.03896239027380943, 0.01448510680347681, 0.013746881857514381, 0.0072141350246965885, 0.04566304013133049, 0.0151000851765275, -0.013754518702626228 ]
[ -0.09360118955373764, 0.01206705067306757, -0.009884495288133621, -0.02914140745997429, 0.04189462959766388, -0.0077172620221972466, 0.013772162608802319, 0.015296107158064842, 0.015348720364272594, 0.0012532040709629655, 0.0052110194228589535, -0.007305379491299391, -0.016348330304026604, -0.027462469413876534, 0.07454010844230652, 0.007572166156023741, -0.004708260763436556, -0.06138836219906807, 0.008935811929404736, 0.011323194019496441, -0.018587427213788033, -0.05286426842212677, -0.005017983261495829, 0.008009024895727634, 0.01745040901005268, 0.02783108316361904, 0.011262859217822552, -0.04356187582015991, 0.015572859905660152, -0.20530153810977936, 0.0024391382467001677, 0.014806368388235569, 0.05075199902057648, -0.01747855916619301, -0.0003623263619374484, 0.07305561751127243, -0.007884292863309383, 0.03899766504764557, -0.016279324889183044, 0.06593625992536545, 0.023176271468400955, 0.04728248342871666, -0.049587465822696686, -0.05619514733552933, -0.0006805351586081088, 0.01588444784283638, 0.015157855115830898, -0.053121112287044525, -0.02407447248697281, 0.013354681432247162, -0.02313256822526455, -0.03640894591808319, -0.031198862940073013, 0.00030963224708102643, -0.011551153846085072, 0.042124610394239426, 0.04088008403778076, 0.05918952450156212, 0.002438128460198641, 0.012229959480464458, 0.04989921674132347, -0.031129764392971992, -0.11480811983346939, 0.05266796797513962, 0.028609519824385643, 0.054704517126083374, -0.04888997599482536, 0.002679345663636923, -0.03099021315574646, 0.09815851598978043, 0.004506759345531464, -0.02378162182867527, 0.0034979667980223894, 0.013533617369830608, 0.038716670125722885, 0.016004512086510658, -0.006969083566218615, 0.031183920800685883, 0.01927054673433304, -0.05764295533299446, -0.032111335545778275, -0.012785783037543297, -0.018330885097384453, -0.008916500024497509, -0.04354145750403404, 0.004485765937715769, -0.007615618407726288, 0.04738817363977432, 0.025289470329880714, 0.04479498043656349, 0.06556433439254761, 0.024436205625534058, 0.048202063888311386, -0.006260553374886513, -0.07696747779846191, -0.005335369147360325, -0.01724262535572052, 0.017312077805399895, -0.06935524195432663, 0.47068220376968384, -0.013710071332752705, 0.0032788768876343966, 0.08124333620071411, 0.055456724017858505, -0.007886677980422974, 0.011432895436882973, 0.00557025708258152, -0.051785700023174286, 0.010667768307030201, 0.0013919303892180324, 0.023649509996175766, 0.03446860611438751, 0.049057163298130035, -0.052425917237997055, 0.03321538493037224, 0.041149478405714035, -0.0027145673520863056, 0.03480071574449539, -0.014477057382464409, -0.03373178094625473, 0.0010241847485303879, -0.0064035686664283276, 0.04325268045067787, -0.004072994459420443, -0.052076153457164764, -0.018309131264686584, 0.025283774361014366, 0.058381445705890656, 0.0441817082464695, -0.02371218614280224, 0.018531758338212967, -0.03251701593399048, -0.06385550647974014, -0.006480958312749863, 0.012691917829215527, 0.003075973829254508, 0.056119728833436966, -0.03738578036427498, 0.00016929475532379001, 0.03162482753396034, 0.032629504799842834, 0.005546426400542259, 0.04293704777956009, -0.03569307550787926, -0.04483099281787872, 0.1351403146982193, 0.03180496022105217, -0.05101051554083824, -0.002124821301549673, -0.028536086902022362, -0.015795396640896797, 0.026328446343541145, 0.01527324877679348, -0.03768046572804451, 0.019108250737190247, -0.009836656972765923, 0.0857551321387291, -0.018631506711244583, -0.06928109377622604, -0.001429307390935719, -0.007316763512790203, -0.014809374697506428, -0.05292979255318642, 0.045339129865169525, 0.06382221728563309, -0.102222740650177, -0.016384709626436234, -0.028355717658996582, 0.015810539945960045, -0.057621173560619354, -0.03006737492978573, 0.00920045655220747, -0.02223256416618824, 0.019095659255981445, 0.07043373584747314, -0.010570406913757324, -0.04807649552822113, -0.0046281972900033, 0.036246687173843384, 0.013288477435708046, 0.03780236467719078, 0.029142294079065323, -0.035344917327165604, 0.0100743742659688, -0.025781994685530663, -0.07817342132329941, -0.04852493479847908, -0.003086528042331338, -0.02672993205487728, -0.0056767393834888935, -0.02900487557053566, -0.011730099096894264, -0.0620201900601387, 0.11767377704381943, -0.038013357669115067, -0.032558731734752655, 0.03466072306036949, -0.020701907575130463, -0.04673118516802788, -0.029805650934576988, -0.08171645551919937, 0.009385982528328896, -0.03272896632552147, 0.015820926055312157, -0.06543423235416412, 0.04615408927202225, 0.01765860617160797, -0.037645451724529266, 0.08761104941368103, 0.03576410561800003, -0.04071590304374695, -0.03156501427292824, 0.015729930251836777, 0.04715198278427124, 0.0064107575453817844, 0.015167368575930595, -0.022523213177919388, 0.018355663865804672, 0.005184811074286699, 0.006857072003185749, -0.017112119123339653, 0.045900244265794754, -0.008388898335397243, -0.34163033962249756, -0.02839123085141182, -0.034544989466667175, -0.0048276097513735294, -0.00722039258107543, -0.02683231420814991, 0.028150305151939392, -0.01680348813533783, -0.02932531014084816, -0.016008609905838966, 0.05113046616315842, -0.037615057080984116, -0.010927366092801094, -0.07179900258779526, -0.00219711079262197, 0.02019728347659111, -0.05651628226041794, -0.010471215471625328, -0.05143098160624504, 0.022174162790179253, 0.024137653410434723, -0.003681277623400092, -0.014505616389214993, -0.042164500802755356, -0.0028650255408138037, -0.037704259157180786, 0.10122959315776825, -0.003110443474724889, 0.045510511845350266, -0.013742570765316486, 0.028723375871777534, 0.016792776063084602, 0.003944861236959696, -0.06850643455982208, 0.030838346108794212, -0.006233488209545612, 0.0026727793738245964, -0.044847238808870316, 0.017539530992507935, -0.03968758508563042, -0.06325317919254303, 0.022366488352417946, -0.07670845836400986, -0.03937935456633568, -0.06635488569736481, 0.00524155842140317, -0.040155477821826935, -0.01980442926287651, -0.011141403578221798, 0.0606926828622818, 0.02531597763299942, 0.013670762069523335, 0.023356523364782333, -0.006407666951417923, -0.012472140602767467, -0.025164809077978134, -0.09116137027740479, 0.02811010181903839, 0.014185652136802673, 0.008045029826462269, 0.015558280050754547, 0.05166033282876015, 0.025829952210187912, -0.06011652201414108, 0.04313657805323601, -0.013252994045615196, -0.0067722429521381855, -0.013614403083920479, 0.02496139146387577, -0.028081918135285378, -0.0031170996371656656, 0.07030607759952545, 0.004022316075861454, -0.040903493762016296, 0.030311884358525276, 0.024345817044377327, -0.03728547692298889, -0.0051825507543981075, 0.011518832296133041, -0.023560939356684685, 0.0026061146054416895, -0.03425632789731026, 0.010941017419099808, -0.027223944664001465, -0.00038002661312930286, 0.02603958733379841, -0.03596578538417816, -0.053924571722745895, 0.06339415162801743, 0.000594928627833724, -0.008276487700641155, 0.005550844129174948, -0.04658423736691475, -0.017460983246564865, 0.08715717494487762, 0.0011762056965380907, -0.23328734934329987, 0.02540142461657524, 0.08070798963308334, 0.022448601201176643, -0.0055746035650372505, 0.06928650289773941, 0.010185448452830315, -0.04314875975251198, 0.026167007163167, 0.025180576369166374, 0.026396121829748154, 0.031267281621694565, 0.0024382537230849266, -0.007755966391414404, 0.021414628252387047, 0.00729895755648613, 0.0472232811152935, -0.024764424189925194, 0.05303092673420906, -0.04026450216770172, 0.01923661306500435, -0.003936932422220707, 0.147450789809227, 0.012958366423845291, 0.028512446209788322, 0.018043924123048782, 0.0034934463910758495, -0.007396368775516748, 0.030381938442587852, 0.00072572281351313, 0.025557827204465866, -0.04377741739153862, 0.04934863746166229, 0.026408841833472252, 0.020149216055870056, -0.07234697788953781, -0.013456691056489944, 0.0031102506909519434, 0.006847271230071783, 0.026705779135227203, 0.017717840149998665, -0.013924505561590195, -0.013453643769025803, 0.03166734427213669, 0.08857066184282303, -0.00810142420232296, -0.005736897233873606, -0.024163158610463142, -0.07641519606113434, -0.012739527970552444, -0.0350242480635643, -0.04265596345067024, -0.011400403454899788, -0.012793134897947311, 0.012213997542858124, 0.06261564046144485, 0.036073360592126846, -0.018915880471467972, 0.0009477841667830944, 0.010329796001315117, -0.009253324009478092, -0.00485972547903657, 0.10960614681243896, 0.02353055030107498, 0.05041158199310303 ]
[ -0.013403846882283688, 0.01550101488828659, 0.004465078469365835, -0.00632139015942812, -0.010724869556725025, 0.02732461504638195, -0.0049164872616529465, 0.003671802580356598, 0.0014913167105987668, 0.02142886258661747, -0.0007566501153632998, 0.022724445909261703, 0.02953249216079712, 0.010264393873512745, 0.03263236954808235, -0.0037645497359335423, 0.017439639195799828, -0.005881655495613813, 0.024247918277978897, 0.007487433031201363, -0.006767227780073881, -0.005704521667212248, 0.012377438135445118, 0.005530085414648056, -0.01954839564859867, -0.014684190973639488, -0.050363533198833466, -0.013629904948174953, 0.026883108541369438, -0.10404162108898163, -0.012336059473454952, -0.018497642129659653, 0.01067331712692976, 0.006074505392462015, 0.019269218668341637, 0.003636308014392853, -0.031106576323509216, 0.015446653589606285, -0.013086152262985706, -0.0020945961587131023, 0.006919803563505411, 0.0066236169077456, -0.006394503638148308, -0.04919714853167534, 0.005170203745365143, 0.031760867685079575, 0.016857650130987167, -0.05664386600255966, -0.010604179464280605, 0.01607520505785942, -0.01362081803381443, 0.006143236067146063, 0.006868236232548952, -0.0007422815542668104, 0.019572101533412933, -0.009885177947580814, 0.028927307575941086, -0.005510189104825258, -0.010495912283658981, -0.03922330588102341, 0.04290908947587013, -0.022051744163036346, -0.0757356733083725, -0.022808987647294998, -0.031186306849122047, -0.0006589695112779737, 0.01913752220571041, 0.01806201972067356, -0.02525760792195797, 0.0015883150044828653, 0.019907282665371895, -0.014414672739803791, -0.0272758100181818, -0.03659450635313988, -0.004344254732131958, 0.009422064758837223, 0.02852712757885456, -0.012797663919627666, -0.02116699330508709, -0.02125220000743866, -0.022630706429481506, 0.003226384986191988, 0.005564926657825708, -0.013414623215794563, -0.010463685728609562, -0.017656521871685982, -0.021296296268701553, -0.01624058559536934, 0.02013770304620266, 0.02855406515300274, -0.025441324338316917, 0.005164100788533688, 0.016468141227960587, -0.009021293371915817, -0.10526958853006363, 0.0268094539642334, -0.026099538430571556, 0.006161050405353308, -0.04112159460783005, 0.8443946242332458, -0.0013093522284179926, 0.05296260118484497, 0.03678591549396515, 0.010499158874154091, 0.01548297330737114, 0.02114100754261017, 0.005650656763464212, -0.02154204621911049, -0.03596216440200806, -0.018902694806456566, 0.013709085993468761, 0.023231400176882744, 0.012353071011602879, 0.0009950792882591486, 0.04745585098862648, 0.018573515117168427, 0.013661835342645645, -0.019535643979907036, -0.03548743948340416, 0.004251577891409397, 0.0680239200592041, 0.004166725091636181, 0.039138562977313995, 0.023028654977679253, 0.039985135197639465, -0.15790164470672607, 0.01439016591757536, -8.930334173636584e-33, 0.05391814932227135, 0.018593257293105125, -0.011118369176983833, 0.0073012011125683784, 0.011645907536149025, -0.013918058015406132, 0.03202641010284424, 0.028301917016506195, 0.00337982177734375, -0.01785747893154621, 0.014310606755316257, -0.01913459599018097, 0.031922128051519394, -0.027117228135466576, 0.031627800315618515, -0.030291983857750893, -0.03867160901427269, 0.03400757908821106, -0.005070473998785019, 0.02282882295548916, 0.01981806568801403, 0.02853427641093731, -0.007035141345113516, 0.006349470466375351, 0.00007694477972108871, 0.009070868603885174, 0.009918463416397572, 0.004347150679677725, -0.008779143914580345, -0.039699289947748184, 0.0029155993834137917, 0.04573545232415199, -0.03618529438972473, -0.024050172418355942, 0.022237369790673256, -0.03320559486746788, -0.030184412375092506, -0.012351511977612972, -0.0025283682625740767, -0.057837989181280136, -0.01682000420987606, -0.01161505188792944, -0.05752316489815712, 0.00137636112049222, 0.0015033941017463803, -0.001303581171669066, 0.04833647236227989, 0.009332862682640553, 0.018294688314199448, 0.006434448529034853, 0.02921549417078495, 0.023646781221032143, 0.014752570539712906, 0.012674333527684212, -0.018851598724722862, 0.0038292158860713243, 0.0032544785644859076, 0.003427996998652816, 0.008410834707319736, 0.011629839427769184, 0.03876102715730667, -0.015519408509135246, -0.019733969122171402, 0.07072696089744568, -0.013027383014559746, 0.0041113910265266895, 0.010797444730997086, 0.031889658421278, 0.056628838181495667, -0.011151723563671112, -0.0497940257191658, -0.028069274500012398, 0.005526123568415642, -0.003526747226715088, -0.005473433993756771, 0.004782117437571287, -0.009108682163059711, 0.011150358244776726, -0.02579304203391075, 0.03619682788848877, -0.020459461957216263, -0.010553145781159401, -0.03802962601184845, -0.013505655340850353, -0.002792596584185958, -0.0019420984899625182, 0.027174383401870728, -0.006780737545341253, -0.014327960088849068, 0.010855293832719326, 0.02457358129322529, 0.004542160779237747, 0.01320443395525217, 0.026643970981240273, -0.00773392291739583, 9.388875418109158e-33, 0.00981864519417286, -0.0221851896494627, -0.030387120321393013, -0.011911042965948582, 0.05160662904381752, -0.02111004665493965, 0.011387438513338566, 0.0001660604466451332, -0.056844815611839294, 0.029479891061782837, -0.004429760854691267, -0.00530909514054656, -0.04100451618432999, 0.019895046949386597, 0.022634193301200867, -0.016141027212142944, 0.0317278653383255, -0.03263792023062706, 0.019296303391456604, -0.01193386223167181, 0.00625608628615737, 0.020328816026449203, -0.0015302011743187904, 0.01692359894514084, 0.013887891545891762, 0.06910865008831024, -0.018505778163671494, 0.010812117718160152, 0.015569490380585194, 0.0026369146071374416, -0.006765381433069706, -0.023050950840115547, 0.020689046010375023, -0.004598579835146666, 0.008737917058169842, 0.024930201470851898, -0.0029506487771868706, -0.005748950410634279, -0.01809505745768547, -0.007139487192034721, 0.012825489975512028, -0.011572776362299919, 0.015447423793375492, 0.03386472538113594, 0.015271925367414951, 0.008629752323031425, -0.016237381845712662, -0.01710638776421547, -0.018536539748311043, 0.03148987889289856, 0.029094304889440536, 0.0029468361753970385, 0.026228131726384163, 0.01876743696630001, 0.026034338399767876, -0.028532158583402634, -0.010322768241167068, -0.03613461181521416, -0.004266832489520311, 0.0012515266425907612, -0.0031261302065104246, 0.054854605346918106, -0.01974267140030861, -0.020409686490893364, -0.033733632415533066, 0.0082479827105999, 0.0012971385149285197, -0.02483878843486309, -0.06784719228744507, 0.011989230290055275, -0.03400808945298195, -0.0037035131826996803, -0.006663389969617128, 0.02621852420270443, 0.015470215119421482, -0.030138403177261353, -0.022583268582820892, 0.0009000473655760288, -0.01577708125114441, -0.012252875603735447, -0.018599942326545715, -0.007916314527392387, 0.018063781782984734, 0.01185512263327837, -0.035227566957473755, 0.0038324634078890085, -0.04853671044111252, 0.03244916722178459, -0.0009901628363877535, -0.003695079358294606, -0.0018913045059889555, -0.04717674478888512, 0.021995453163981438, 0.0007819042657501996, 0.0028872790280729532, -1.413323857946125e-8, -0.007421616930514574, 0.018694236874580383, -0.007525732275098562, 0.006934723351150751, -0.00008697765588294715, 0.002349394140765071, -0.03626614436507225, 0.007033773232251406, -0.024573378264904022, 0.028212517499923706, 0.06180031597614288, -0.0267279502004385, -0.0010660442057996988, -0.003284732112661004, 0.042044688016176224, -0.06076279282569885, -0.028265908360481262, -0.01753234677016735, 0.00740982498973608, 0.014751235954463482, 0.013321349397301674, 0.06872516870498657, -0.01657475158572197, -0.00894769188016653, -0.01314751710742712, 0.01820693537592888, -0.028268998488783836, -0.0816538855433464, -0.009066997095942497, 0.02485228329896927, 0.0492820106446743, -0.022828299552202225, -0.01953916810452938, 0.030604474246501923, -0.02207404188811779, -0.055552270263433456, 0.06965596228837967, -0.002501512411981821, 0.01681913249194622, -0.010868244804441929, -0.03870381414890289, 0.01078709401190281, -0.012847001664340496, -0.010245924815535545, -0.008208723738789558, 0.005883098114281893, -0.06344336271286011, -0.02723238430917263, 0.0073430887423455715, -0.05258605629205704, 0.001956443302333355, -0.011694012209773064, 0.023389266803860664, 0.06329312920570374, 0.003241470782086253, 0.023200469091534615, 0.011709488928318024, -0.03570540249347687, -0.017163287848234177, 0.016356566920876503, 0.04969456046819687, 0.020516548305749893, -0.013013839721679688, -0.007260431069880724 ]
retrospectives-actions
https://markhneedham.com/blog/2010/11/06/retrospectives-actions
false
2010-11-24 18:48:25
A dirty hack to get around aliases not working in a shell script
[ "shell-scripting-2" ]
[ "Shell Scripting" ]
In another script I've been working on lately I wanted to call 'mysql' but unfortunately on my machine it's 'mysql5' rather than 'mysql'. I have an alias defined in '~/.bash_profile' so I can call 'mysql' from the terminal whenever I want to. [source,text] ---- alias mysql=mysql5 ---- Unfortunately shell scripts don't seem to have access to this alias and the http://unix.ittoolbox.com/groups/technical-functional/shellscript-l/how-to-use-an-alias-in-shell-script-2076287[only suggestion] I've come across while googling this is to source '~/.bash_profile' inside the script. Since others are going to use the script and might have '~/.bashrc' instead of '~/.bash_profile' I didn't really want to go down that route. At this stage a colleague of mine came up with the idea of creating a soft link from mysql to mysql5 inside a folder which is already added to the path. We located mysql5... [source,text] ---- > which mysql5 /opt/local/bin/mysql5 ---- ...and then created a soft link like so: [source,text] ---- cd /opt/local/bin/mysql5 ln -s mysql5 mysql ---- And it works! Of course t'is pure hackery so I'd be interested if anyone knows a better way of getting around this.
null
null
[ -0.012349233962595463, -0.0065904646180570126, 0.007082800380885601, 0.006894481834024191, 0.10732398927211761, 0.005827598739415407, 0.010264712385833263, 0.03649311140179634, 0.03480008617043495, -0.03288235142827034, -0.001565009937621653, 0.031998999416828156, -0.04912106320261955, 0.0044426145032048225, 0.00845914427191019, 0.05163334310054779, 0.07706618309020996, 0.0036569854710251093, 0.012829631567001343, -0.005743672139942646, 0.005794072523713112, 0.07576216012239456, -0.029885737225413322, 0.027042340487241745, 0.006255268584936857, 0.06958954781293869, -0.005514171905815601, 0.023963142186403275, -0.0724191665649414, 0.017519069835543633, 0.04188058525323868, -0.010282851755619049, 0.015324011445045471, -0.03160988911986351, 0.023680517449975014, -0.023189585655927658, 0.002899761078879237, 0.014898685738444328, -0.007376240566372871, 0.021911878138780594, -0.0747096985578537, 0.05032297223806381, 0.035516407340765, 0.02647949755191803, -0.025348061695694923, 0.003015979193150997, -0.08362014591693878, 0.004627834539860487, -0.002326683374121785, 0.03156909719109535, -0.04503307491540909, 0.02763543277978897, -0.023606786504387856, -0.024204522371292114, 0.042602185159921646, 0.03682298958301544, 0.04220656678080559, -0.1020386815071106, 0.008987311273813248, -0.04156607389450073, 0.02177591435611248, 0.013688835315406322, 0.028136003762483597, 0.047784224152565, 0.0458570197224617, -0.0008029252057895064, 0.0004331204982008785, 0.0013280217535793781, -0.04542837664484978, 0.016873812302947044, 0.03807666152715683, 0.02104909159243107, -0.07066357880830765, -0.03640362620353699, 0.0028404511976987123, 0.015071638859808445, -0.029782501980662346, 0.04571127891540527, 0.03785150125622749, 0.09761615842580795, -0.05826684087514877, 0.013916742987930775, -0.006701120641082525, 0.026414580643177032, 0.0015172751154750586, -0.060798823833465576, -0.0054007419385015965, 0.0014925404684618115, -0.023431075736880302, 0.031773000955581665, 0.030311867594718933, -0.04875049740076065, 0.007167678792029619, 0.003509311703965068, 0.014181160368025303, 0.0012060034787282348, 0.014400655403733253, 0.020400675013661385, 0.008088819682598114, -0.005471577402204275, -0.06810039281845093, 0.009589502587914467, 0.01625502109527588, 0.009375892579555511, -0.06004512310028076, 0.03448463976383209, -0.031157363206148148, -0.027373993769288063, -0.012632828205823898, 0.031222933903336525, -0.03208187595009804, 0.013643677346408367, 0.05442686006426811, 0.007096238434314728, -0.07261302322149277, 0.06485063582658768, 0.01753385178744793, -0.02297053672373295, 0.022648604586720467, -0.011081652715802193, 0.025886425748467445, 0.05162585526704788, -0.03659873083233833, 0.05871650204062462, 0.003642590483650565, 0.03198537603020668, 0.008577561005949974, 0.033538419753313065, 0.012914616614580154, -0.07469546049833298, 0.01651701144874096, 0.06816178560256958, 0.011125144548714161, 0.013178413733839989, -0.01325480081140995, -0.025318920612335205, -0.01541397999972105, -0.024794485419988632, 0.06492949277162552, -0.0060903108678758144, 0.008690393529832363, -0.0395306721329689, -0.02154655195772648, -0.02445586770772934, 0.03921080008149147, -0.002640427788719535, 0.01680387184023857, -0.08021868765354156, -0.03685182332992554, 0.0001464834640501067, 0.022207818925380707, 0.038793884217739105, 0.06632732599973679, -0.04123290628194809, 0.022732509300112724, 0.0897742360830307, 0.0530594065785408, 0.013272393494844437, -0.03795208781957626, -0.008161775767803192, 0.02693515457212925, 0.005711352918297052, -0.00249684602022171, 0.055215977132320404, 0.01720321923494339, -0.04857337847352028, -0.010668602772057056, 0.004078558646142483, 0.0018357740482315421, 0.031257953494787216, -0.03266094997525215, -0.068763867020607, 0.08701151609420776, -0.024702949449419975, 0.007363433949649334, 0.025590281933546066, 0.07271178066730499, 0.04227721318602562, 0.018491048365831375, 0.037456028163433075, -0.07405196130275726, 0.005912431515753269, -0.0153593635186553, 0.022690072655677795, 0.04539668187499046, -0.008545266464352608, 0.06264106184244156, 0.0003145148803014308, 0.0176874827593565, 0.045414503663778305, -0.07857699692249298, -0.09566779434680939, -0.016623349860310555, 0.0021481362637132406, 0.0255524143576622, -0.03208690136671066, -0.026911456137895584, 0.0497649684548378, 0.03547391667962074, 0.015324103645980358, -0.029005303978919983, 0.014717102982103825, 0.04473677650094032, -0.08186885714530945, -0.05355193465948105, 0.01622522994875908, 0.008328855037689209, -0.02562839724123478, -0.019437771290540695, 0.029792439192533493, -0.0335608646273613, 0.009893086738884449, 0.020144522190093994, -0.025957362726330757, 0.05908336862921715, 0.01638469658792019, 0.02998647838830948, -0.01042733434587717, 0.0447382926940918, -0.007325104437768459, 0.04059562832117081, 0.03376433998346329, -0.020035140216350555, -0.006981848739087582, 0.009300477802753448, 0.11974780261516571, 0.049571696668863297, -0.0453978031873703, -0.036985915154218674, 0.049946609884500504, 0.005845770239830017, -0.04334956035017967, 0.014219443313777447, -0.011077279224991798, -0.0017052269540727139, 0.01792130246758461, -0.02990620583295822, -0.02667698822915554, -0.01110155787318945, -0.011738676577806473, 0.014487355947494507, 0.07610980421304703, -0.03467750549316406, 0.04294200986623764, -0.0076226708479225636, -0.030973641201853752, -0.03574689105153084, -0.05246182903647423, -0.05945746600627899, -0.0016984177054837346, 0.03972237557172775, -0.0098939323797822, 0.034817300736904144, -0.08384387940168381, 0.01507981214672327, 0.010054630227386951, -0.06610524654388428, 0.043734919279813766, 0.002270550699904561, 0.046393558382987976, -0.06167447939515114, 0.039835430681705475, -0.0066286297515034676, 0.047034852206707, -0.029028771445155144, 0.00003708165240823291, -0.03973851352930069, 0.0039625512436032295, -0.026362577453255653, 0.0065484317019581795, 0.027259018272161484, 0.029249131679534912, -0.024361051619052887, -0.0353921540081501, 0.004656430333852768, 0.017015645280480385, -0.034146908670663834, 0.028881780803203583, -0.015403954312205315, -0.046818532049655914, 0.0016368046635761857, 0.03437196463346481, -0.03882179036736488, -0.020416278392076492, 0.010645951144397259, -0.02688131481409073, 0.024600913748145103, -0.058111757040023804, -0.031473904848098755, -0.044687554240226746, -0.019261730834841728, 0.018501389771699905, -0.00265329796820879, 0.022357530891895294, 0.05093291774392128, 0.00005072909698355943, 0.020872047170996666, 0.03162721171975136, 0.018277624621987343, 0.052924156188964844, 0.02091541513800621, 0.019481515511870384, 0.015167921781539917, -0.032697826623916626, -0.0010624324204400182, 0.008542988449335098, -0.023871155455708504, -0.019153296947479248, -0.2711886763572693, 0.04195006936788559, -0.016280023381114006, -0.030405990779399872, 0.046490345150232315, -0.05547356605529785, -0.01968279667198658, -0.04388904571533203, -0.002640850143507123, 0.01483237836509943, -0.035733919590711594, -0.0430912971496582, 0.010336209088563919, 0.026155248284339905, -0.02774534933269024, 0.03143463283777237, -0.010635534301400185, -0.030459215864539146, 0.0009060503798536956, 0.000853510748129338, -0.003335237270221114, -0.02822091430425644, 0.014046487398445606, 0.02654830366373062, 0.02564290538430214, 0.07669788599014282, -0.051221687346696854, 0.03615343198180199, -0.04314257204532623, -0.019371137022972107, -0.02334081567823887, -0.0016827668296173215, -0.026106657460331917, 0.049199774861335754, -0.04092337563633919, 0.015648219734430313, 0.04408830776810646, -0.021792201325297356, 0.05482020601630211, -0.022127896547317505, -0.04784974083304405, -0.010731601156294346, 0.0011137131368741393, 0.0045411428436636925, 0.07908902317285538, -0.037836138159036636, -0.07402601093053818, -0.0044600265100598335, -0.014058900997042656, 0.062402401119470596, -0.021867521107196808, -0.0408097580075264, -0.03428036347031593, 0.03700833395123482, 0.00621463917195797, -0.027422746643424034, -0.012573324143886566, -0.008830394595861435, -0.0392598882317543, -0.032174061983823776, 0.009884011931717396, -0.029632017016410828, -0.021231384947896004, -0.04244048893451691, 0.02692328952252865, -0.047851599752902985, -0.047912660986185074, -0.04466911032795906, 0.07853426039218903, 0.03189096972346306, -0.020912427455186844, -0.035808101296424866, -0.036938637495040894, -0.09522600471973419, -0.0012552485568448901, -0.02021782286465168, -0.06171659007668495, -0.012143410742282867, -0.015353625640273094, 0.0263113621622324, -0.011596000753343105, -0.004243744537234306, -0.012223733589053154, -0.03136003389954567, -0.021502314135432243, -0.036850087344646454, 0.015667181462049484, 0.03477734699845314, -0.023319711908698082, -0.025330986827611923, 0.07377703487873077, -0.056617919355630875, -0.015465098433196545, -0.00026197300758212805, -0.041321225464344025, 0.03366584703326225, -0.004168142098933458, -0.02535856142640114, 0.02037850022315979, 0.024828730151057243, 0.07051923871040344, -0.05950964242219925, -0.017670977860689163, -0.04556647315621376, -0.008768318220973015, -0.03265060856938362, -0.020033735781908035, 0.044520605355501175, 0.006486441474407911, 0.049962230026721954, -0.007012372370809317, -0.04662136361002922, 0.0014932986814528704, -0.0646728053689003, -0.0456804484128952, 0.01235847920179367, 0.018605489283800125, -0.006384616252034903, 0.019623998552560806, -0.03683564439415932, -0.03687398508191109, 0.009470443241298199, 0.020328808575868607, -0.028892142698168755, -0.03523263335227966, -0.017078068107366562, -0.01472328882664442, -0.0016471297712996602, 0.01687987707555294, 0.009625536389648914, -0.014548167586326599, 0.01132703386247158, 0.05504037067294121, -0.02038203738629818, 0.02021200954914093, -0.005924534052610397, -0.046863049268722534, -0.024198811501264572, -0.0032117951195687056, 0.0013370796805247664, -0.053261637687683105, 0.0060676890425384045, 0.006739420350641012, 0.03563527762889862, 0.04314427077770233, 0.007283942773938179, 0.022614479064941406, -0.018482889980077744, 0.02258305624127388, 0.024723675101995468, 0.016162758693099022, -0.03355339169502258, 0.009603814221918583, -0.024819977581501007, -0.024607954546809196, -0.01493008341640234, 0.029416006058454514, -0.007642656564712524, -0.04095518961548805, -0.018105827271938324, 0.0003642133960966021, -0.05026981234550476, -0.015428774058818817, 0.010658224113285542, -0.04183446988463402, 0.03637032210826874, 0.014661730267107487, 0.04536374285817146, 0.00035667308839038014, 0.026309426873922348, -0.00735948933288455, 0.0166451595723629, -0.02467634715139866, -0.01610163226723671, -0.007892664521932602, -0.022461898624897003, 0.011410673148930073, 0.03141508251428604, 0.030585400760173798, -0.01304230373352766, 0.011545676738023758, -0.0005728147807531059, -0.021342502906918526, 0.036934271454811096, 0.06443197280168533, -0.013256561942398548, -0.029028795659542084, -0.0015790890902280807, -0.02417997270822525, -0.027278535068035126, -0.020350920036435127, 0.016899418085813522, -0.012268555350601673, -0.003846476785838604, 0.005954332184046507, -0.053810302168130875, 0.0693850889801979, 0.042582519352436066, -0.009037925861775875, 0.018902134150266647, 0.0036782517563551664, -0.01288622710853815, -0.030275529250502586, 0.03917743265628815, 0.0470714196562767, -0.04380475729703903, 0.005878645461052656, 0.00614009378477931, -0.013885067775845528, -0.018885266035795212, 0.04148174077272415, -0.03101823665201664, -0.01657942682504654, -0.004941993393003941, 0.016278378665447235, -0.027431868016719818, -0.03033546917140484, -0.006440276280045509, -0.045951973646879196, -0.013227874413132668, 0.015191317535936832, 0.004905909765511751, 0.02773253805935383, -0.00597423454746604, -0.035357095301151276, 0.013196693733334541, -0.013662123121321201, -0.012607457116246223, 0.0589047372341156, 0.011419516988098621, 0.025072330608963966, -0.03764819726347923, 0.05648581311106682, -0.017217883840203285, -0.013078486546874046, -0.021318525075912476, -0.0428478978574276, -0.01851019077003002, -0.027273109182715416, 0.012172097340226173, 0.009497705847024918, 0.009844733402132988, -0.04116755351424217, -0.004831620026379824, -0.03965383023023605, -0.032428231090307236, -0.027109572663903236, -0.03094160370528698, 0.013507630676031113, 0.03763512149453163, 0.013106977567076683, 0.01883707568049431, -0.018161512911319733, -0.023275190964341164, 0.05695710331201553, -0.05497681349515915, -0.04098902642726898, -0.0033704896923154593, -0.07071759551763535, 0.0426296591758728, 0.019560907036066055, 0.0292900912463665, -0.0856969878077507, 0.05079647898674011, 0.03870798647403717, -0.004519207868725061, 0.048917513340711594, 0.009485702961683273, 0.02715061977505684, -0.013678982853889465, -0.05753641948103905, -0.06908949464559555, 0.011860077269375324, -0.006506781093776226, -0.01362029742449522, -0.038885269314050674, 0.026262708008289337, -0.002921132603660226, 0.00011082687706220895, -0.036624666303396225, -0.05207853391766548, 0.016439538449048996, -0.009435414336621761, 0.01859511062502861, -0.002394235460087657, -0.04626520350575447, 0.004967362154275179, 0.02468537911772728, -0.031346045434474945, -0.03226785734295845, -0.024504341185092926, 0.05444435402750969, 0.02996036969125271, 0.08434037119150162, -0.017230967059731483, -0.016856884583830833, 0.10382866859436035, 0.005632978864014149, 0.017629090696573257, 0.03615095093846321, -0.004191667307168245, 0.01613844372332096, 0.01155014056712389, 0.017594438046216965, 0.007678588852286339, -0.006106792017817497, -0.013719607144594193, -0.003653454128652811, -0.01463459711521864, -0.008064256981015205, 0.003942619543522596, -0.037154749035835266, 0.035133302211761475, 0.01811201497912407, -0.04020579904317856, -0.047450076788663864, 0.016943994909524918, -0.013635564595460892, -0.0015198737382888794, -0.02063843607902527, 0.011107690632343292, -0.054440341889858246, 0.0555262491106987, -0.012983648106455803, 0.014208088628947735, 0.053983207792043686, -0.006136680953204632, -0.013520282693207264, -0.0019012195989489555, 0.05832471325993538, 0.08600497245788574, 0.01538177765905857, 0.017394300550222397, 0.03426423296332359, -0.04381750151515007, -0.01794149912893772, -0.03562234714627266, -0.029355378821492195, -0.0029739979654550552, -0.03662287816405296, 0.016719866544008255, 0.06733094155788422, -0.0391564667224884, 0.06318563222885132, 0.012436880730092525, 0.0012330592144280672, 0.022234739735722542, -0.0049630519933998585, 0.036639370024204254, 0.03364410251379013, 0.01351520512253046, 0.031172435730695724, -0.010081197135150433, -0.029309434816241264, 0.0440216064453125, -0.06164434552192688, -0.036239732056856155, 0.022149940952658653, 0.00005174726902623661, 0.04032649099826813, 0.015265162102878094, 0.07322394102811813, 0.09507271647453308, -0.029737873002886772, -0.013589411042630672, 0.001839333213865757, 0.07286113500595093, -0.006349183619022369, 0.047202516347169876, 0.015275801531970501, -0.02639625407755375, 0.00951907504349947, -0.05515962466597557, -0.015036663971841335, -0.01838694140315056, -0.026945218443870544, 0.03089936450123787, -0.0008105015731416643, -0.011012418195605278, 0.01961398310959339, -0.011200436390936375, -0.007766732946038246, -0.04439340531826019, -0.043005023151636124, -0.019201627001166344, -0.030146565288305283, -0.02702273800969124, 0.035789042711257935, -0.025666987523436546, -0.033379919826984406, 0.010218508541584015, -0.05211682245135307, -0.032515183091163635, 0.012463662773370743, -0.059739284217357635, -0.03948330134153366, -0.020145362243056297, -0.003331339219585061, 0.009060577489435673, -0.004000937100499868, 0.024830171838402748, 0.008969532325863838, -0.011404512450098991, -0.018728148192167282, 0.00016296232934109867, 0.04005637392401695, -0.03693763539195061, -0.001201012870296836, -0.03185207396745682, 0.059234995394945145, 0.01679970882833004, 0.056642401963472366, -0.04471006616950035, 0.03183659538626671, 0.012104064226150513, -0.011987423524260521, 0.08804894238710403, -0.03980763256549835, 0.023709343746304512, -0.00017849639698397368, -0.007314939051866531, -0.0017262559849768877, -0.0072786989621818066, 0.043956540524959564, -0.002640587743371725, 0.08562644571065903, 0.0438489131629467, -0.008981086313724518, -0.02434910275042057, -0.01607849821448326, 0.01899344101548195, -0.002268789568915963, -0.004361230880022049, -0.011270266957581043, -0.03671082481741905, -0.08119670301675797, -0.003293555462732911, 0.01987658068537712, 0.01710609532892704, -0.02845197543501854, -0.0010451911948621273, 0.015686100348830223, -0.065754733979702, -0.011401543393731117, -0.050351597368717194, -0.0028328264597803354, -0.035320717841386795, -0.02553444541990757, -0.017896542325615883, 0.04182170704007149, -0.0029172615613788366, 0.019430143758654594, 0.029002854600548744, -0.03369000181555748, -0.03771393001079559, -0.004350681323558092, 0.023648569360375404, 0.027494216337800026, -0.021652527153491974, 0.02506573684513569 ]
[ -0.05761333554983139, -0.05010027065873146, -0.031684212386608124, -0.05746547877788544, 0.018403558060526848, -0.06078627333045006, -0.010540102608501911, -0.005362308584153652, 0.009664768353104591, -0.05088571459054947, 0.0210422333329916, -0.01810021512210369, 0.008899028412997723, -0.042595431208610535, 0.04804138094186783, 0.009614072740077972, -0.028365768492221832, -0.04016891121864319, 0.010540195740759373, 0.022214528173208237, -0.03887033462524414, -0.03113134577870369, -0.018873944878578186, -0.033021822571754456, -0.021244041621685028, 0.04068462550640106, 0.025750059634447098, -0.01980067603290081, -0.04966461658477783, -0.17983068525791168, 0.038711078464984894, 0.015176109969615936, -0.028532246127724648, -0.045901525765657425, 0.026605335995554924, 0.027111923322081566, 0.01995767280459404, -0.008722318336367607, 0.00827392190694809, 0.057013969868421555, 0.05112677812576294, -0.024575065821409225, -0.035604383796453476, 0.014647813513875008, 0.03279472514986992, -0.03301446884870529, -0.003039347007870674, -0.03013438917696476, 0.029360514134168625, 0.016731077805161476, -0.05416248366236687, 0.024685494601726532, -0.016230551525950432, -0.018517568707466125, 0.010745995678007603, 0.013137955218553543, 0.039651986211538315, 0.08791892230510712, -0.012536278925836086, -0.003978648688644171, 0.016728170216083527, 0.021138500422239304, -0.1491784304380417, 0.11646293848752975, 0.006005053874105215, 0.05308454856276512, -0.006581212393939495, -0.02458150126039982, -0.026554903015494347, 0.0639178678393364, -0.04965604841709137, -0.01591687649488449, -0.06006575748324394, 0.0898352563381195, -0.013255618512630463, -0.03960375860333443, -0.026118824258446693, 0.028495976701378822, 0.030333489179611206, -0.03203313425183296, -0.0490749329328537, -0.039026543498039246, -0.04644320532679558, -0.03376993536949158, -0.02257028967142105, 0.02023131214082241, -0.002527273492887616, 0.06473889201879501, 0.04417452961206436, -0.0075202686712145805, 0.014026600867509842, -0.06133135035634041, 0.07561247795820236, 0.009203148074448109, -0.05775066092610359, -0.006016927771270275, -0.0007727916236035526, 0.016960181295871735, -0.046756766736507416, 0.36928659677505493, -0.0071881175972521305, -0.012817096896469593, 0.0087645398452878, -0.025697117671370506, 0.018303049728274345, 0.022068064659833908, -0.018148381263017654, -0.0029650728683918715, 0.042663633823394775, -0.04310459643602371, -0.01830398663878441, -0.03507543355226517, 0.07584944367408752, -0.059321969747543335, 0.008617022074759007, 0.015579110942780972, -0.003255600342527032, 0.0030768655706197023, -0.01907080039381981, -0.017967354506254196, -0.0038555110804736614, 0.009078449569642544, 0.04055913910269737, 0.05886237323284149, 0.03644761070609093, -0.004431142471730709, -0.0014448058791458607, 0.0708731934428215, 0.03846009448170662, 0.014705415815114975, 0.048057589679956436, -0.020312156528234482, -0.03709549084305763, -0.017854532226920128, -0.019023418426513672, 0.02132316865026951, -0.004632260650396347, -0.009483233094215393, 0.01740124635398388, -0.0006178788607940078, -0.03445758298039436, -0.06689183413982391, 0.002838634420186281, 0.019702281802892685, -0.025253470987081528, 0.08431787043809891, -0.035865649580955505, -0.0205821730196476, -0.051885075867176056, -0.026292698457837105, -0.020908253267407417, 0.03399684652686119, 0.01734856516122818, -0.03638117387890816, -0.042429544031620026, 0.024295460432767868, 0.07065542042255402, 0.028362581506371498, -0.053774699568748474, -0.03388706594705582, -0.02644982561469078, -0.0774054080247879, -0.047360219061374664, 0.08088807761669159, 0.011005439795553684, -0.10076596587896347, -0.06685004383325577, 0.01704535447061062, 0.01946602389216423, -0.0394950807094574, 0.013048333115875721, -0.029619641602039337, -0.046654392033815384, 0.003681843401864171, 0.02127070538699627, -0.04030953720211983, -0.0072216554544866085, 0.04046472907066345, 0.05136147886514664, 0.033924177289009094, 0.03498734533786774, -0.0013708712067455053, -0.04467221722006798, 0.009197383187711239, -0.05191702023148537, -0.09702544659376144, -0.08182942122220993, 0.03251377120614052, 0.0006691116141155362, -0.021867290139198303, -0.03832871466875076, 0.019086286425590515, -0.07690416276454926, 0.024414535611867905, -0.0043807136826217175, -0.04997670650482178, 0.031681276857852936, 0.033171702176332474, 0.007273583207279444, -0.04085410758852959, 0.07579942047595978, 0.0511915385723114, -0.013454407453536987, 0.03652314469218254, -0.08825899660587311, 0.013681330718100071, 0.03640076890587807, -0.03653360530734062, 0.0776253193616867, 0.0049114348366856575, -0.03423686698079109, -0.011985528282821178, -0.017055155709385872, 0.010205775499343872, -0.017940590158104897, -0.012776843272149563, -0.010024487972259521, -0.012910128571093082, 0.05960499122738838, 0.008215020410716534, -0.04435562342405319, 0.0148064736276865, 0.008085724897682667, -0.3477906882762909, -0.04141199588775635, -0.01547195203602314, 0.014497837983071804, 0.01286245509982109, -0.06160317733883858, 0.011105533689260483, 0.00815079640597105, -0.01596359722316265, 0.021550757810473442, 0.07119239866733551, -0.05847611650824547, 0.014877444133162498, -0.05651712045073509, -0.044282764196395874, 0.04072156175971031, -0.02720240131020546, -0.03972683101892471, -0.007990767247974873, 0.012598080560564995, 0.009171607904136181, -0.024623943492770195, -0.035644467920064926, -0.06093793734908104, 0.026626650243997574, 0.02110081911087036, 0.11014161258935928, 0.03393113240599632, 0.0926906168460846, -0.03535326570272446, 0.08534520119428635, -0.004399282392114401, 0.03784777224063873, -0.1183566004037857, -0.018738863989710808, -0.012650859542191029, -0.03183915838599205, 0.00015965306374710053, 0.011126307770609856, 0.020864542573690414, -0.08014866709709167, -0.023511802777647972, -0.015141213312745094, -0.039595894515514374, -0.027194783091545105, 0.004021937493234873, 0.014723257161676884, -0.005336359608918428, -0.011170479469001293, 0.06744984537363052, 0.01388678327202797, 0.013637498021125793, 0.03995908424258232, 0.007578828372061253, 0.032492224127054214, -0.02542821317911148, -0.05205492302775383, -0.013215260580182076, -0.001258842763490975, 0.04061424359679222, 0.0477006733417511, 0.08244090527296066, 0.02041449584066868, -0.0630260780453682, -0.0037804238963872194, -0.025508178398013115, -0.007281903177499771, 0.002978853415697813, 0.04908451437950134, -0.025812143459916115, -0.041509851813316345, 0.10717296600341797, 0.009913102723658085, 0.0638924390077591, 0.04639405012130737, 0.013223263435065746, -0.00006916850543348119, 0.006424117833375931, 0.02146800234913826, -0.01299950759857893, 0.04455595463514328, -0.03950102999806404, 0.08282766491174698, 0.01549879927188158, -0.010986477136611938, 0.06611619144678116, 0.014517378993332386, -0.001561344019137323, 0.07389556616544724, -0.0133357560262084, -0.0455143116414547, -0.028351837769150734, -0.0036072833463549614, -0.08417336642742157, 0.06848813593387604, -0.03058825433254242, -0.2533694803714752, 0.04761764407157898, 0.010132821276783943, 0.09058576822280884, 0.012342415750026703, 0.014980519190430641, 0.05545757710933685, -0.05121414735913277, -0.0070376209914684296, 0.007847495377063751, 0.044038910418748856, 0.0219611506909132, -0.00957261398434639, 0.035390738397836685, 0.0013411686522886157, -0.0157612357288599, 0.02244415320456028, 0.02748498134315014, -0.005134409759193659, 0.034941911697387695, 0.007025536149740219, -0.024946019053459167, 0.15758872032165527, 0.01672690361738205, 0.005688013508915901, 0.07500189542770386, -0.017314735800027847, 0.003652149112895131, 0.05036655440926552, 0.06097166985273361, -0.012849787250161171, -0.018130283802747726, 0.04430202394723892, -0.0277517382055521, 0.028397129848599434, -0.04435346648097038, -0.01618214137852192, 0.04240068420767784, 0.039445191621780396, -0.027050772681832314, -0.062100864946842194, 0.0598008818924427, -0.01694377325475216, 0.04285259172320366, 0.057630084455013275, -0.005429447162896395, 0.011100046336650848, -0.017282968387007713, 0.015640683472156525, 0.021221622824668884, -0.016248298808932304, -0.009814346209168434, -0.018939869478344917, 0.023137031123042107, 0.020763801410794258, 0.07452736794948578, 0.04919575899839401, 0.016643261536955833, 0.011611252091825008, 0.0032037831842899323, -0.02822165936231613, -0.016788644716143608, 0.15132708847522736, 0.015642743557691574, 0.013719888404011726 ]
[ -0.0021138328593224287, 0.002163790399208665, 0.0014375372556969523, 0.03643179312348366, -0.01012968085706234, -0.020311206579208374, 0.04565772786736488, 0.06500028073787689, -0.01738513633608818, -0.0352514423429966, -0.01618383824825287, -0.017610138282179832, 0.10684174299240112, 0.0000021033979464846198, -0.021153008565306664, 0.007672357838600874, 0.004258397966623306, -0.003374786116182804, -0.004300330299884081, -0.025790812447667122, 0.001507281675003469, 0.03514450415968895, 0.02960660122334957, -0.008871492929756641, 0.0010095544857904315, 0.0008379289065487683, -0.021172594279050827, -0.003329965053126216, -0.016629209741950035, -0.15477482974529266, -0.018613100051879883, 0.014300459064543247, -0.014008604921400547, -0.03304068744182587, 0.02272590808570385, 0.026543738320469856, 0.019034504890441895, 0.04002906382083893, 0.018596863374114037, 0.02580624632537365, -0.016374483704566956, -0.05134795606136322, -0.03478120267391205, 0.003725281683728099, 0.00598188629373908, -0.016247041523456573, -0.0596335306763649, 0.004360082093626261, -0.015381296165287495, -0.0054281847551465034, -0.0298643559217453, -0.01881461590528488, -0.008167784661054611, -0.0020312105771154165, 0.008000318892300129, 0.015305503271520138, -0.0019077322212979198, 0.023208728060126305, 0.007098384201526642, 0.042325861752033234, -0.021838869899511337, 0.028301307931542397, -0.034975700080394745, -0.0232877004891634, -0.009935426525771618, -0.04546131193637848, -0.016258371993899345, -0.006586948409676552, 0.0023703742772340775, 0.031522978097200394, -0.04476414993405342, -0.03297519311308861, -0.05233072489500046, -0.005548693239688873, 0.004094765521585941, -0.01852131076157093, 0.01243597362190485, -0.004492430482059717, -0.03941987827420235, 0.02125689387321472, -0.0961611270904541, 0.0021989934612065554, -0.026105906814336777, -0.014324515126645565, 0.022895319387316704, 0.028491465374827385, 0.04645606875419617, -0.0020061004906892776, 0.021940814331173897, -0.04805814474821091, 0.0073659224435687065, -0.026079868897795677, -0.022675558924674988, 0.008671206422150135, -0.07471717149019241, -0.017281439155340195, -0.008351550437510014, -0.00876063946634531, 0.01518355030566454, 0.7684205770492554, 0.028147725388407707, -0.018908090889453888, 0.012280579656362534, 0.06600706279277802, -0.007931659929454327, 0.013093840330839157, 0.028835508972406387, -0.00617701280862093, 0.02749582752585411, -0.025375738739967346, -0.03364060819149017, -0.009154330007731915, 0.024218248203396797, -0.015668140724301338, 0.07199595123529434, 0.06700243055820465, 0.05102244392037392, -0.01699421927332878, -0.029222922399640083, 0.012427955865859985, 0.06326881051063538, 0.010609041899442673, -0.035923730581998825, 0.03497239202260971, -0.01872582733631134, -0.1456194669008255, 0.006313531193882227, -6.510768600932976e-33, 0.03273040056228638, -0.0430435836315155, 0.0403844490647316, 0.007060214411467314, 0.014236008748412132, 0.005129808560013771, -0.0005561554571613669, 0.012436953373253345, -0.031197790056467056, 0.0012690366711467505, 0.04050507768988609, -0.009000430814921856, -0.006799828261137009, -0.003537028795108199, 0.0008142974693328142, 0.03868008032441139, -0.015732530504465103, 0.0312788225710392, 0.010353724472224712, 0.028558559715747833, -0.03651046007871628, 0.02741619013249874, -0.0260764230042696, 0.02809966541826725, 0.040075574070215225, 0.050002921372652054, 0.022996200248599052, 0.0005335257155820727, 0.04695657268166542, -0.03317129611968994, -0.0271439291536808, 0.009785046800971031, -0.03723309934139252, -0.051468007266521454, -0.011678542010486126, -0.02006573975086212, -0.012463868595659733, 0.03632050380110741, -0.003614134155213833, 0.01064883079379797, 0.009509691037237644, -0.033972177654504776, 0.005973916966468096, 0.0016308019403368235, 0.013434108346700668, 0.005027482286095619, -0.017293954268097878, -0.004368792288005352, -0.02710140310227871, -0.04870682954788208, 0.04390830546617508, -0.036322738975286484, 0.01751870848238468, 0.003360508708283305, 0.007824151776731014, 0.021741367876529694, -0.034865666180849075, 0.00603924784809351, -0.025520136579871178, 0.04604828730225563, -0.0003529316745698452, -0.015811827033758163, -0.004662558902055025, 0.010131520219147205, 0.02625413052737713, -0.04550611227750778, -0.003986389841884375, 0.021241502836346626, 0.03141311556100845, 0.05953934043645859, -0.0036881689447909594, 0.058879174292087555, -0.003737109247595072, -0.024930525571107864, 0.031645648181438446, -0.04222787916660309, -0.05283885449171066, 0.005750423762947321, 0.000882495369296521, 0.05819559842348099, 0.044243574142456055, 0.0026348396204411983, -0.09235789626836777, -0.03740513324737549, -0.011688445694744587, -0.021896498277783394, 0.04618324339389801, -0.011662532575428486, -0.037429217249155045, -0.0024345379788428545, 0.019407814368605614, -0.0092974454164505, 0.028835786506533623, -0.0005344697274267673, -0.06406863033771515, 5.805434888899155e-33, 0.02491498552262783, 0.0029021173249930143, 0.014514841139316559, 0.00388580234721303, 0.00310750980861485, -0.021552972495555878, 0.013824796304106712, -0.0008292196434922516, -0.05120353028178215, 0.012860102578997612, -0.055816203355789185, 0.03715508431196213, -0.014452939853072166, 0.018564373254776, 0.03123270533978939, 0.016138801351189613, 0.003624472999945283, -0.04216136410832405, 0.015112434513866901, 0.03852324187755585, -0.006328053306788206, 0.0008345153764821589, 0.016248365864157677, 0.024831390008330345, 0.028863394632935524, 0.03007468394935131, 0.002113871742039919, -0.00773869501426816, -0.010246330872178078, -0.008538707159459591, -0.028848065063357353, -0.048020102083683014, -0.01263779029250145, -0.10042555630207062, -0.04384712502360344, 0.043734192848205566, -0.0625506043434143, -0.007563464343547821, -0.02035738155245781, -0.05985410138964653, -0.013422293588519096, 0.0385105237364769, 0.016651220619678497, 0.01987200602889061, 0.0010846719378605485, 0.021036308258771896, 0.0006256882334128022, -0.01424600649625063, -0.0019027377711609006, -0.00040645795525051653, 0.010351342149078846, 0.0008391985320486128, 0.023285353556275368, -0.008707731030881405, -0.0013732834486290812, -0.04470191150903702, -0.025371398776769638, 0.03051561675965786, -0.026407059282064438, 0.016295358538627625, -0.0014193268725648522, 0.0620352178812027, -0.03683767840266228, 0.007011291570961475, -0.029165148735046387, -0.03315252810716629, -0.0066749900579452515, 0.017219727858901024, 0.000017077514712582342, -0.08767921477556229, 0.0056711845099925995, -0.041695158928632736, 0.027045510709285736, 0.04738584905862808, 0.05045832693576813, -0.05673239752650261, -0.011448832228779793, 0.029312819242477417, -0.022295750677585602, 0.04928353801369667, 0.016269510611891747, -0.002484465017914772, -0.03211820870637894, -0.05266180261969566, -0.02007588930428028, -0.031397782266139984, -0.036726389080286026, 0.039412956684827805, 0.04041525721549988, 0.010412676259875298, -0.005532821174710989, 0.000547399278730154, -0.04788549616932869, -0.0035525928251445293, -0.0609491802752018, -1.1954175427320024e-8, 0.031649474054574966, 0.01560925506055355, -0.0056816344149410725, -0.0013728304766118526, 0.04736010730266571, 0.011294761672616005, -0.056932855397462845, 0.007810625713318586, 0.0010988417780026793, 0.04699857532978058, 0.05291583761572838, 0.004704457242041826, 0.07859433442354202, 0.02697587199509144, 0.03391861170530319, -0.0010022014612331986, 0.012673319317400455, -0.02935926988720894, 0.05294544994831085, 0.003787799272686243, -0.01834217831492424, 0.09159990400075912, -0.0014055846258997917, -0.011221050284802914, 0.007280090358108282, -0.026921264827251434, 0.015910178422927856, -0.07005111128091812, -0.016866473481059074, -0.009466559626162052, -0.01669909618794918, -0.0037629397120326757, 0.009039899334311485, 0.01626008190214634, -0.017904022708535194, -0.04276295378804207, -0.03154018148779869, -0.004406518768519163, 0.0029200559947639704, 0.01251266896724701, 0.012201685458421707, -0.02755102701485157, 0.01532513927668333, -0.02825162373483181, -0.05908442288637161, -0.06231037154793739, 0.0021882648579776287, -0.008426017127931118, 0.06419137865304947, -0.024115465581417084, 0.01813831739127636, -0.044378459453582764, 0.04127645865082741, -0.011604564264416695, 0.04354910925030708, 0.005002232268452644, 0.02240360900759697, 0.012077508494257927, -0.03814135864377022, -0.010703695006668568, -0.03023989498615265, 0.04625473544001579, -0.001376264146529138, -0.005866273771971464 ]
a-dirty-hack-to-get-around-aliases-not-working-in-a-shell-script
https://markhneedham.com/blog/2010/11/24/a-dirty-hack-to-get-around-aliases-not-working-in-a-shell-script
false
2010-11-24 18:34:45
Ruby: Checking for environment variables in a script
[ "ruby" ]
[ "Ruby" ]
I've been working on a Ruby script to allow us to automate part of our http://lucene.apache.org/solr/[Solr] data setup and part of the task was to check that some environment variables were set and throw an exception if not. I got a bit stuck initially trying to work out how to return a message showing only the missing environment variables but it turned out to be pretty simple when I came back to it a couple of hours later. So for my future reference than anything else, this is what I ended up with: [source,ruby] ---- variables = %w{VARIABLE_1 VARIABLE_2} missing = variables.find_all { |v| ENV[v] == nil } unless missing.empty? raise "The following variables are missing and are needed to run this script: #{missing.join(', ')}." end ---- I recently came across '%w' which creates a string array out of the values that we specify. In this case we therefore end up with... [source,ruby] ---- > %w{VARIABLE_1 VARIABLE_2} ["VARIABLE_1", "VARIABLE_2"] ---- ...which I think is pretty neat! The other neat method is 'join' on line 4 which concatenates all the elements of an array while putting the provided separator in between each element. In this case if we had neither of the variables specified we'd end up with the following: [source,ruby] ---- > ["VARIABLE_1", "VARIABLE_2"].join(', ') "VARIABLE_1, VARIABLE2" ----
null
null
[ -0.0024823429994285107, 0.02753990702331066, -0.0362573117017746, 0.057180799543857574, 0.08386405557394028, 0.029001008719205856, 0.045383065938949585, 0.019175583496689796, -0.02300039492547512, -0.017793836072087288, -0.07740538567304611, 0.03384968638420105, -0.07363587617874146, 0.03266839310526848, 0.000151850312249735, 0.07950609177350998, 0.08472093194723129, 0.014400183223187923, 0.027901938185095787, 0.0051761590875685215, 0.03900640830397606, 0.04126441851258278, 0.005312941502779722, -0.002653650939464569, 0.03267759829759598, 0.018102163448929787, 0.019563725218176842, -0.0021816228982061148, -0.06654742360115051, 0.020381592214107513, 0.013549921102821827, 0.009227808564901352, 0.02721644565463066, -0.010095903649926186, 0.005873987451195717, 0.0028923286590725183, 0.007291967980563641, 0.00477815605700016, 0.0011518100509420037, 0.0414237417280674, -0.030443282797932625, 0.039526429027318954, -0.03077639453113079, 0.03320598974823952, -0.028032315894961357, 0.008715766482055187, -0.06771855056285858, 0.005753644742071629, 0.010379002429544926, 0.030751464888453484, -0.07223411649465561, 0.018702786415815353, 0.014385469257831573, -0.02092372626066208, 0.007398178335279226, 0.04584331810474396, 0.042047612369060516, -0.08473611623048782, 0.034040916711091995, -0.030602268874645233, -0.042189642786979675, 0.009594141505658627, -0.015285016037523746, 0.029983533546328545, 0.006275551859289408, -0.035609327256679535, 0.01645543798804283, 0.06723784655332565, -0.04295972362160683, -0.03832656890153885, 0.002448286861181259, -0.014359280467033386, -0.041487760841846466, -0.02027370035648346, 0.03363562375307083, -0.02069106139242649, 0.008999649435281754, 0.03674301132559776, -0.007667015306651592, 0.06275708973407745, -0.022975752130150795, -0.010828066617250443, 0.03978026285767555, 0.017450690269470215, -0.004123728722333908, -0.03646232932806015, -0.009464984759688377, -0.02648032270371914, -0.023900121450424194, 0.033527977764606476, 0.039547279477119446, -0.04930918663740158, 0.009518692269921303, -0.011557246558368206, 0.008250459097325802, -0.003717314451932907, 0.017350593581795692, -0.018173780292272568, -0.03025662526488304, 0.003405979834496975, -0.04361709579825401, 0.004996866919100285, 0.019743429496884346, -0.012717521749436855, -0.06486250460147858, -0.006034980062395334, -0.05391816422343254, -0.020907027646899223, 0.004211011342704296, 0.012701321393251419, -0.03576231375336647, 0.018650442361831665, -0.02200428582727909, 0.01773695833981037, -0.04836041107773781, 0.058250464498996735, -0.006374425254762173, -0.015186648815870285, 0.01926044002175331, 0.04330577701330185, 0.04322288557887077, 0.03931445628404617, -0.0029706789646297693, 0.08132998645305634, -0.04314770549535751, 0.03775545582175255, -0.006008947268128395, 0.04991544410586357, -0.0370182991027832, -0.08194375783205032, -0.013761486858129501, 0.04637916386127472, 0.019352497532963753, -0.0005871350294910371, -0.006986027117818594, -0.005304522812366486, -0.030086575075984, -0.02300834096968174, 0.062135979533195496, 0.0021628958638757467, -0.038130227476358414, -0.029162917286157608, -0.010444347746670246, -0.01036687009036541, 0.035015448927879333, 0.038025569170713425, -0.006994396448135376, -0.028930053114891052, -0.05651717260479927, 0.03164798393845558, 0.00020679029694292694, 0.01379366498440504, 0.056580182164907455, -0.0024829336907714605, -0.005252492614090443, 0.05329754203557968, -0.009829510934650898, 0.028598934412002563, -0.02733568660914898, -0.012116455473005772, 0.03593682497739792, 0.02885025180876255, 0.02521519362926483, 0.08602801710367203, 0.006764756981283426, 0.005692863836884499, -0.006807444151490927, 0.03219294920563698, -0.011092404834926128, -0.023777322843670845, -0.049810659140348434, -0.04262064769864082, 0.061599455773830414, -0.07170286029577255, -0.002856702310964465, 0.00400694552809, 0.056517209857702255, 0.05989658460021019, 0.029316741973161697, -0.0028728204779326916, -0.07724480330944061, -0.004620460793375969, -0.04820903018116951, 0.016873465850949287, 0.038093119859695435, -0.015522481873631477, 0.08151610940694809, 0.026410281658172607, 0.005569989327341318, 0.010985707864165306, -0.11066610366106033, -0.06658954918384552, -0.016788627952337265, 0.004817229695618153, 0.043363720178604126, -0.030451852828264236, -0.015344272367656231, 0.03221670538187027, -0.007653232663869858, 0.019916055724024773, 0.021438661962747574, 0.0012972700642421842, -0.000050267793994862586, -0.07231920212507248, -0.0252509918063879, 0.0456232987344265, 0.052431102842092514, 0.00020734391000587493, -0.04770598188042641, 0.022273603826761246, -0.0028387401252985, 0.01805655099451542, 0.024990694597363472, -0.00993348192423582, 0.060867033898830414, 0.08246126025915146, 0.02066822722554207, -0.02904583141207695, 0.03337942808866501, -0.029677554965019226, 0.04893345758318901, 0.011873542331159115, -0.0007545580738224089, -0.02580300346016884, 0.017309080809354782, 0.12269982695579529, 0.06971527636051178, 0.007779182866215706, -0.03492647409439087, 0.012315016239881516, 0.016102049499750137, -0.04866936430335045, -0.0014483414124697447, -0.0006121979095041752, -0.013749442063272, 0.022278914228081703, -0.04445859044790268, 0.0018498837016522884, 0.01871415786445141, -0.028466401621699333, -0.004743434488773346, 0.060570333153009415, -0.022539418190717697, 0.05126994103193283, 0.0057771760039031506, 0.007581635843962431, -0.0013262605061754584, -0.0429626926779747, -0.07429271191358566, 0.001052968087606132, 0.04868720844388008, -0.012477495707571507, 0.03360811248421669, -0.009835805743932724, -0.01135928463190794, -0.01836717315018177, -0.051393672823905945, 0.012313135899603367, 0.07488543540239334, 0.04178642854094505, -0.016294093802571297, 0.09346839785575867, -0.030361469835042953, -0.012293975800275803, -0.01817461848258972, -0.03717678785324097, -0.05025168135762215, -0.00848587229847908, -0.008313327096402645, 0.015477083623409271, -0.0017245104536414146, 0.01687958836555481, 0.012350298464298248, 0.03283488750457764, 0.013587035238742828, 0.0070433709770441055, 0.03364148363471031, 0.003161077154800296, 0.011929398402571678, -0.011000553146004677, -0.0021814319770783186, 0.029011057689785957, -0.0474318265914917, -0.01536895614117384, -0.020048009231686592, -0.07133940607309341, 0.03607085719704628, -0.052559059113264084, -0.06743939965963364, -0.04826992005109787, -0.019539818167686462, 0.00931124109774828, 0.017093408852815628, 0.023901667445898056, 0.07950445264577866, 0.002145851030945778, 0.05633612349629402, 0.01794230379164219, 0.05204028636217117, 0.028622254729270935, -0.008011135272681713, 0.01424022950232029, 0.0124554093927145, -0.02242318168282509, -0.022844607010483742, -0.022157229483127594, -0.0009642245131544769, -0.038635123521089554, -0.2564668655395508, 0.028626257553696632, -0.03804907202720642, -0.05454246327280998, 0.04285936430096626, -0.04165446013212204, -0.011157725006341934, -0.031956642866134644, -0.015226033516228199, 0.04882446303963661, -0.009911324828863144, -0.02444874867796898, -0.010586496442556381, 0.05815257877111435, 0.01689348928630352, 0.01996067352592945, 0.008176271803677082, -0.04358798265457153, 0.026332393288612366, 0.01138862781226635, 0.0154498890042305, -0.027456751093268394, 0.003298655617982149, 0.07006657123565674, 0.019850995391607285, 0.08416049182415009, -0.03299934044480324, 0.0440424308180809, -0.0536617711186409, -0.04207020252943039, 0.025992730632424355, -0.010328528471291065, -0.0032853377051651478, 0.013309376314282417, -0.02085963450372219, -0.027901804074645042, 0.04232195392251015, 0.008962632156908512, 0.06719387322664261, 0.003718116320669651, -0.06403007358312607, -0.04395117610692978, -0.019302936270833015, -0.013273078016936779, 0.06393139809370041, -0.014093891717493534, -0.060054197907447815, -0.008723406121134758, -0.0614461712539196, 0.07548090815544128, -0.004719305783510208, -0.03500714525580406, 0.0073959073051810265, 0.03383703902363777, 0.0002914209326263517, -0.005983365699648857, -0.03992149606347084, 0.012618240900337696, -0.025671461597085, -0.04381769150495529, -0.006807451602071524, -0.056435827165842056, -0.03600256145000458, -0.05140627548098564, 0.00041608253377489746, -0.05428683012723923, -0.043594542890787125, 0.014545973390340805, 0.07039778679609299, -0.01176704652607441, -0.011625908315181732, -0.008371888659894466, -0.02859187312424183, -0.09583130478858948, -0.020373618230223656, -0.016159862279891968, -0.037657056003808975, -0.0276153814047575, -0.05540949106216431, -0.002782834228128195, -0.06892254203557968, -0.04155299440026283, 0.037198781967163086, 0.005411996506154537, 0.019217699766159058, 0.0017214720137417316, -0.004682708531618118, -0.055557042360305786, -0.025347718968987465, -0.00751134566962719, 0.07258998602628708, -0.06682758778333664, -0.022462541237473488, 0.01049014925956726, 0.014266709797084332, 0.04090240225195885, 0.03078649379312992, -0.012568756937980652, 0.03879208862781525, 0.04795306548476219, 0.06493350118398666, -0.06091015785932541, 0.03764825686812401, -0.0199565552175045, -0.02348756417632103, 0.015513979829847813, -0.042785488069057465, 0.034706998616456985, 0.049880996346473694, -0.01873527467250824, -0.011534389108419418, -0.024999000132083893, 0.012078202329576015, -0.018786832690238953, -0.026670224964618683, -0.026889260858297348, 0.029850048944354057, 0.031138544902205467, 0.041123051196336746, -0.02237274870276451, -0.06905482709407806, 0.01037922129034996, 0.0617578849196434, -0.015358633361756802, -0.03653101250529289, -0.030976973474025726, 0.0012343013659119606, 0.011020197533071041, 0.021548811346292496, 0.01390067394822836, -0.00581104401499033, 0.009861724451184273, 0.005680500064045191, -0.03769755735993385, 0.004316215869039297, -0.00554586062207818, -0.04083733633160591, -0.013719161041080952, -0.012902081944048405, 0.006403971463441849, 0.009803256951272488, -0.03580568730831146, -0.009720614179968834, 0.03947025537490845, 0.03810620680451393, 0.01794002391397953, 0.022580379620194435, -0.008022957481443882, -0.01587316207587719, -0.017083020880818367, -0.019976550713181496, -0.035337477922439575, 0.013167457655072212, -0.023072347044944763, -0.04383418709039688, -0.025106163695454597, 0.028589526191353798, -0.02317127399146557, -0.018636377528309822, -0.018923720344901085, 0.013549834489822388, -0.03950348123908043, -0.008284994401037693, -0.0069881281815469265, -0.019140727818012238, 0.04172974452376366, 0.008849374018609524, 0.0271079633384943, 0.012255596928298473, 0.05318672955036163, 0.0018018814735114574, 0.006723544094711542, -0.01603812910616398, 0.02629621885716915, 0.0007600491517223418, -0.029895126819610596, 0.006680823862552643, -0.012471321038901806, 0.00547606498003006, 0.012241643853485584, 0.012224243953824043, -0.01791369542479515, 0.020061133429408073, 0.032323308289051056, 0.03109148144721985, -0.013622293248772621, -0.036033377051353455, 0.0009351986227557063, -0.024246005341410637, 0.00501972995698452, -0.03855608031153679, -0.02295556105673313, -0.024748900905251503, 0.011887987144291401, -0.0205805953592062, -0.08640066534280777, 0.009016609750688076, 0.01538723986595869, 0.01804332248866558, 0.020055998116731644, 0.004561874084174633, -0.04109848663210869, -0.030447209253907204, 0.0065855165012180805, 0.06472131609916687, -0.057986777275800705, -0.009617559611797333, -0.0000017829806893132627, -0.01977638341486454, 0.03095131926238537, -0.0035432118456810713, -0.05936658754944801, -0.0033889003098011017, 0.011442982591688633, 0.010618005879223347, -0.017778795212507248, -0.044487811625003815, -0.01010381244122982, -0.0028992602601647377, -0.05077208951115608, 0.03171011060476303, -0.02101682871580124, 0.03982137516140938, -0.02185969054698944, -0.026829414069652557, -0.015615652315318584, -0.026378817856311798, -0.012139293365180492, 0.003219835227355361, 0.016162632033228874, -0.0059076398611068726, -0.011910430155694485, 0.03918769955635071, 0.02900584787130356, -0.00962103996425867, -0.019991712644696236, -0.034696757793426514, 0.004372109193354845, -0.019235452637076378, 0.02083786390721798, -0.006426183506846428, 0.002078720135614276, -0.040220215916633606, -0.006477043963968754, -0.015090949833393097, -0.019574128091335297, -0.05367104336619377, -0.03465234860777855, 0.01175265945494175, 0.04069480299949646, -0.006152626592665911, 0.03832344338297844, 0.005546559114009142, -0.02584090270102024, 0.05095313489437103, -0.018635891377925873, -0.02492329478263855, -0.006223353557288647, -0.03137510269880295, 0.038301434367895126, 0.04650097340345383, 0.0288989394903183, -0.045056089758872986, 0.04688270390033722, 0.05510735884308815, 0.013114754110574722, 0.035675276070833206, -0.029234282672405243, 0.06235238537192345, -0.03316284343600273, 0.028676725924015045, -0.08705899864435196, 0.01646236516535282, 0.06284626573324203, -0.017407424747943878, -0.010821997188031673, -0.021734967827796936, -0.01620168425142765, 0.0020670006051659584, -0.04339602217078209, -0.06969067454338074, 0.03432305529713631, -0.007101164665073156, 0.01843513920903206, 0.027555475011467934, -0.04012005776166916, 0.01743096113204956, 0.04472826048731804, -0.03296923637390137, -0.027776312083005905, -0.019102012738585472, 0.0454731285572052, -0.022048959508538246, 0.014684964902698994, -0.019813837483525276, -0.020622678101062775, 0.054355934262275696, 0.024750448763370514, 0.02084236964583397, 0.031122155487537384, -0.036321040242910385, 0.041614968329668045, 0.02924898825585842, -0.009603045880794525, 0.008177375420928001, 0.025506114587187767, -0.01422495860606432, -0.04253329709172249, -0.013421130366623402, -0.00794927403330803, 0.01896059885621071, -0.025159437209367752, 0.051799580454826355, 0.019334090873599052, -0.03266879916191101, -0.02738085761666298, 0.029198260977864265, -0.03670329228043556, 0.0004161863471381366, -0.015292014926671982, -0.0010745057370513678, -0.058289460837841034, 0.055104270577430725, -0.012242646887898445, 0.005229983478784561, 0.07322895526885986, -0.00445699505507946, 0.023793362081050873, 0.011944690719246864, 0.0673370286822319, 0.07270532846450806, 0.02758598141372204, 0.023323478177189827, 0.049655474722385406, -0.0334346741437912, -0.038529280573129654, 0.012195426039397717, -0.06064070388674736, 0.02105715684592724, -0.016521064564585686, -0.015566297806799412, 0.06592997163534164, 0.010990973562002182, 0.041654445230960846, -0.027019713073968887, -0.011618027463555336, -0.010488847270607948, 0.008812345564365387, 0.04196242615580559, 0.04871724173426628, 0.03940011188387871, 0.053132325410842896, -0.01757797785103321, -0.04131106659770012, -0.02431560680270195, -0.012829175218939781, -0.03179312124848366, 0.04151802137494087, -0.005039589945226908, 0.033489078283309937, 0.028131797909736633, 0.01749338023364544, 0.0899081751704216, -0.025204632431268692, -0.03745903819799423, -0.04332582652568817, 0.05663219094276428, -0.03430858626961708, -0.015069914981722832, -0.009074661880731583, -0.02345879375934601, -0.0262280460447073, -0.05087472125887871, -0.024938048794865608, 0.0011368343839421868, -0.04078609496355057, 0.053505897521972656, -0.019844716414809227, 0.04066653549671173, 0.041546061635017395, 0.041802480816841125, -0.01066613756120205, -0.04911968484520912, -0.06672029942274094, -0.06631173193454742, -0.051132090389728546, 0.00841494183987379, 0.037875451147556305, 0.03146558254957199, -0.04869335517287254, -0.016387393698096275, -0.01170695386826992, -0.008876078762114048, 0.03452819213271141, -0.0376686230301857, -0.015237346291542053, 0.03345479443669319, -0.0001583411794854328, 0.01964874565601349, 0.025356754660606384, 0.023345066234469414, -0.020219821482896805, -0.0006520304013974965, 0.004462979733943939, -0.011302923783659935, 0.05561111494898796, -0.006842040456831455, 0.00948925781995058, -0.03606244921684265, 0.023609982803463936, 0.02835313230752945, -0.014439788646996021, -0.05089068412780762, 0.011747865006327629, 0.020501842722296715, -0.03530910983681679, 0.07563940435647964, -0.029824083670973778, 0.02462051622569561, -0.033531855791807175, -0.0010472394060343504, 0.02292093262076378, 0.007404137868434191, 0.00734013132750988, -0.019139789044857025, 0.07966265827417374, 0.024212690070271492, 0.02074003778398037, -0.041621774435043335, 0.010108060203492641, 0.000873694138135761, 0.008105110377073288, -0.049127060920000076, -0.038125596940517426, -0.09956122189760208, -0.058190830051898956, -0.04638899117708206, -0.004141331184655428, -0.04117179661989212, -0.041622012853622437, -0.010751406662166119, 0.023829029873013496, -0.04871702566742897, 0.04251586273312569, -0.04524358734488487, 0.049841057509183884, -0.049651991575956345, -0.043465327471494675, 0.0019812369719147682, 0.036079153418540955, -0.015424882061779499, -0.010870824567973614, -0.011024998500943184, -0.025849435478448868, 0.006918271072208881, -0.023804068565368652, 0.03363741934299469, 0.02796795219182968, -0.011438322253525257, 0.001382107730023563 ]
[ -0.06203406676650047, -0.013754540123045444, -0.02680462785065174, -0.005560908932238817, 0.05748407170176506, -0.09549129009246826, -0.004580463748425245, 0.02182638645172119, 0.007882430218160152, -0.026255132630467415, 0.015768779441714287, -0.058399494737386703, 0.015420098789036274, -0.02197125181555748, 0.05048205703496933, -0.012990121729671955, -0.008848026394844055, -0.027517035603523254, -0.0578213594853878, 0.0394594669342041, 0.014933806844055653, -0.012005418539047241, -0.02333480678498745, -0.04350649192929268, -0.02594892308115959, 0.05268941447138786, 0.01963304914534092, -0.008700590580701828, -0.016657285392284393, -0.19388119876384735, -0.014706570655107498, -0.00618937611579895, 0.02485484816133976, 0.010125525295734406, 0.01542417798191309, 0.0518803671002388, -0.005525598768144846, 0.00757412938401103, -0.001937164575792849, 0.05859972909092903, 0.04991926997900009, -0.019001567736268044, -0.07202806323766708, -0.01195995882153511, -0.010357050225138664, -0.012878460809588432, -0.0139033617451787, -0.011257901787757874, 0.008907495066523552, 0.0017479826929047704, -0.04411015659570694, 0.013361845165491104, -0.017415490001440048, -0.038883794099092484, 0.002367674605920911, 0.04246010258793831, 0.048761311918497086, 0.06515473872423172, 0.010047096759080887, 0.0036141464952379465, 0.029219606891274452, -0.01220714021474123, -0.15693064033985138, 0.03894781693816185, 0.06880500912666321, 0.04561343416571617, -0.02845999225974083, -0.04933670908212662, -0.03410135209560394, 0.04803840443491936, -0.0005764784291386604, -0.005114850588142872, -0.06524481624364853, 0.08845749497413635, -0.0032999038230627775, -0.01753334142267704, -0.007503205444663763, 0.011090891435742378, 0.025909222662448883, -0.022026926279067993, -0.045613665133714676, -0.012054221704602242, -0.04266775771975517, 0.0002775171014945954, -0.015725741162896156, -0.002249973826110363, -0.012827237136662006, 0.07004402577877045, 0.06395351141691208, 0.017200926318764687, 0.017640383914113045, -0.053078822791576385, 0.02136872336268425, 0.0469173826277256, -0.07029963284730911, -0.010365101508796215, 0.013348094187676907, 0.017503976821899414, -0.03398376703262329, 0.4224356710910797, -0.027284374460577965, -0.014324124902486801, 0.046104416251182556, -0.01566237024962902, -0.016714084893465042, -0.00011521325359353796, -0.01396673172712326, -0.03459370881319046, 0.028462003916502, -0.041081737726926804, 0.043601952493190765, -0.02493404969573021, 0.08246243745088577, -0.0841745063662529, -0.0010219801915809512, 0.03485891595482826, 0.025215843692421913, 0.006728284060955048, -0.011850506067276001, -0.016153786331415176, -0.010422784835100174, -0.019978947937488556, 0.03939632698893547, 0.025657443329691887, 0.020585663616657257, 0.017673606052994728, 0.053356368094682693, 0.06583590060472488, -0.004980658181011677, 0.05631585419178009, 0.05688567832112312, -0.03605515509843826, -0.0843275710940361, -0.008058846928179264, -0.03348327428102493, 0.027843941003084183, 0.026205245405435562, -0.012243175879120827, 0.012281019240617752, 0.05734992027282715, -0.02385270781815052, -0.05900280177593231, 0.016036733984947205, 0.008956318721175194, -0.03287702053785324, 0.09169922024011612, -0.0321100577712059, -0.02785527892410755, -0.024434126913547516, -0.06502889096736908, -0.05306672304868698, 0.0584312342107296, -0.004254364874213934, -0.05042863264679909, 0.005073788575828075, 0.01723479852080345, 0.052940528839826584, -0.031580936163663864, -0.037214796990156174, -0.006193327251821756, -0.029916593804955482, -0.05203205719590187, -0.048067040741443634, 0.06083223223686218, 0.015303600579500198, -0.08057007938623428, -0.029944822192192078, 0.00626267958432436, 0.023276181891560555, -0.024626079946756363, 0.023638110607862473, -0.007271631620824337, -0.027480369433760643, -0.024697627872228622, 0.05319805443286896, -0.04084760323166847, -0.001837841933593154, 0.03978458419442177, 0.023216284811496735, 0.013376421295106411, -0.022058850154280663, 0.017243944108486176, -0.00247529917396605, 0.035347431898117065, -0.04600933566689491, -0.06027074530720711, -0.07748754322528839, -0.007480073720216751, -0.04445643723011017, -0.020309824496507645, -0.06139350309967995, -0.030166300013661385, -0.04786564037203789, 0.048299215734004974, 0.019230356439948082, 0.003358574351295829, 0.020870940759778023, 0.006707984954118729, -0.019177762791514397, -0.008783549070358276, 0.034591663628816605, 0.029620569199323654, 0.0095239682123065, 0.016510311514139175, -0.07714952528476715, 0.02906721644103527, 0.05368721857666969, -0.015965081751346588, 0.03132523596286774, 0.05277756601572037, -0.017155231907963753, 0.001745877438224852, 0.006965388543903828, 0.01326809823513031, -0.038280583918094635, -0.03498001769185066, -0.021369770169258118, -0.0023867690470069647, 0.0326884388923645, 0.02698519080877304, -0.04036782309412956, -0.05211766064167023, 0.0015414194203913212, -0.36002323031425476, -0.04106250777840614, 0.006997477728873491, -0.009698792360723019, 0.03230530396103859, -0.06260892748832703, 0.04174648970365524, -0.010721384547650814, -0.054907433688640594, 0.005614507477730513, 0.08078969269990921, -0.03977784514427185, 0.009896657429635525, -0.08373737335205078, -0.031779639422893524, 0.016566796228289604, -0.05574484542012215, -0.020193427801132202, -0.020741702988743782, 0.07010803371667862, -0.003817256772890687, -0.059933245182037354, 0.02083822898566723, -0.04998764768242836, -0.00859746802598238, -0.03126058354973793, 0.10437162965536118, 0.013866063207387924, 0.06114161014556885, -0.07244548201560974, 0.04912722110748291, 0.0011335952440276742, 0.004359270446002483, -0.04591977968811989, 0.002039983170107007, -0.04021564871072769, -0.031314074993133545, 0.05885038152337074, 0.00885931309312582, -0.008740878663957119, -0.006981165148317814, 0.011745370924472809, -0.046737704426050186, -0.012601053342223167, 0.012553440406918526, -0.004254361614584923, -0.002261594170704484, -0.028816277161240578, 0.006263970863074064, 0.07198559492826462, 0.035227756947278976, 0.0245372261852026, 0.04168615862727165, 0.026498476043343544, 0.037775054574012756, -0.00954802893102169, -0.07011415809392929, -0.02155434899032116, 0.024820955470204353, -0.010928201489150524, 0.03766395151615143, 0.04659239575266838, 0.06176108866930008, -0.06745936721563339, 0.004301033914089203, -0.014537366107106209, -0.010212922468781471, 0.0033366570714861155, 0.0389668233692646, -0.021969789639115334, -0.031646475195884705, 0.09365389496088028, 0.008402291685342789, 0.025365207344293594, -0.010276048444211483, 0.06100177764892578, -0.011361045762896538, 0.009298102930188179, 0.016572188585996628, 0.026448309421539307, 0.057529620826244354, -0.016586150974035263, 0.07024756073951721, -0.0038088755682110786, 0.03313130512833595, 0.0888323038816452, -0.0010654794750735164, -0.021370232105255127, 0.07987678050994873, 0.020002717152237892, -0.05304151773452759, -0.01216065976768732, -0.01868293620646, -0.020570887252688408, 0.08151429146528244, -0.019296692684292793, -0.26367151737213135, 0.019013836979866028, 0.058102212846279144, 0.013695443980395794, 0.007156596053391695, 0.030678382143378258, 0.03138252720236778, -0.05830175057053566, -0.0069971270859241486, -0.00552415894344449, 0.00539691187441349, 0.04239913821220398, 0.0045123654417693615, -0.019803615286946297, 0.039971888065338135, 0.0084955720230937, 0.07116200774908066, 0.0065661040134727955, -0.012847108766436577, -0.008930906653404236, 0.014262480661273003, 0.002229395555332303, 0.16054068505764008, 0.007431720849126577, 0.0011652946704998612, 0.04503370448946953, -0.016398882493376732, 0.020742731168866158, 0.07357291877269745, 0.02198159135878086, 0.01666904427111149, 0.0006016554543748498, 0.07990171760320663, -0.017312783747911453, 0.024006647989153862, -0.04989606514573097, -0.019069695845246315, 0.014118886552751064, 0.04495494067668915, -0.04146333038806915, -0.018261577934026718, 0.02199418656527996, -0.044342901557683945, 0.03432747721672058, 0.05233848839998245, -0.012373757548630238, 0.008130126632750034, -0.026041729375720024, -0.014350369572639465, 0.007021233439445496, -0.02810490131378174, 0.00497486162930727, -0.023486008867621422, 0.004137428943067789, 0.021926837041974068, 0.05949339643120766, 0.00356599991209805, -0.016169102862477303, -0.010747320018708706, -0.010994674637913704, -0.042267099022865295, -0.044517360627651215, 0.13252516090869904, -0.006122290156781673, -0.008375688455998898 ]
[ 0.02089362032711506, 0.00003461041342234239, -0.03941318020224571, 0.07040467858314514, 0.010482915677130222, -0.013566641137003899, -0.01820971630513668, -0.0035512575414031744, -0.03616790473461151, -0.015250785276293755, 0.007357989437878132, 0.01087244413793087, 0.03446920961141586, -0.0013930671848356724, -0.011735989712178707, 0.029882308095693588, -0.04495783522725105, -0.043211426585912704, 0.028946468606591225, -0.03229568153619766, -0.047183528542518616, 0.0486164465546608, 0.0325799360871315, -0.02522249147295952, -0.017214830964803696, 0.034025050699710846, -0.02284821681678295, 0.050104036927223206, 0.027500737458467484, -0.10143861919641495, -0.01106774527579546, -0.005000752862542868, -0.010513235814869404, 0.003359889844432473, 0.018192987889051437, 0.026521703228354454, -0.016642166301608086, 0.017500678077340126, 0.0032822180073708296, 0.008938753046095371, -0.01612802781164646, 0.01854371279478073, -0.03769025206565857, 0.016093453392386436, -0.013638552278280258, -0.004629666917026043, -0.009642641060054302, -0.03002198599278927, -0.007275503594428301, -0.06616591662168503, -0.03128204494714737, -0.003565085120499134, 0.01245898474007845, 0.0016708375187590718, 0.021043043583631516, -0.02688712440431118, -0.01891734078526497, -0.044568661600351334, -0.021163081750273705, -0.0297226719558239, 0.03082450106739998, 0.035035133361816406, -0.03967573866248131, -0.03394973278045654, 0.007306745275855064, -0.01891869306564331, -0.0006134238210506737, 0.026024315506219864, 0.010326606221497059, -0.01584886759519577, -0.015608059242367744, 0.014277114532887936, -0.05829096958041191, -0.013984501361846924, -0.027983110398054123, 0.0058597177267074585, 0.04045576974749565, -0.018092118203639984, 0.030017536133527756, 0.057760756462812424, -0.06454838812351227, -0.01888291724026203, -0.039040472358465195, 0.04913470521569252, -0.027993880212306976, -0.022074494510889053, -0.006851123180240393, 0.013437187299132347, 0.017514986917376518, 0.014525272883474827, -0.06906238943338394, -0.04745624586939812, 0.010976782068610191, 0.036473654210567474, -0.07414920628070831, 0.03798503056168556, 0.02633066289126873, -0.02602493390440941, -0.014846688136458397, 0.7968780398368835, -0.009103375487029552, -0.0018406996969133615, 0.022410279139876366, -0.0040694172494113445, -0.013123194687068462, 0.002966107800602913, 0.019875621423125267, 0.052013710141181946, -0.0018168376991525292, -0.018082616850733757, 0.03921440988779068, 0.01699218526482582, 0.03459452465176582, 0.04524187743663788, 0.024535642936825752, 0.01062669325619936, 0.06838525086641312, 0.008673842065036297, 0.05253373831510544, 0.032759882509708405, 0.03037535771727562, 0.0343581885099411, 0.052137669175863266, 0.021275052800774574, 0.04533658176660538, -0.15857495367527008, 0.01508245151489973, -7.68107534824829e-33, 0.04457971081137657, -0.008913551457226276, -0.02450643479824066, -0.01175581756979227, -0.017363926395773888, 0.05953923612833023, -0.011534390971064568, 0.01678071729838848, 0.021853333339095116, -0.03596368432044983, -0.007507458794862032, 0.0009020225261338055, 0.016147397458553314, -0.04087216407060623, 0.013394634239375591, 0.003215707140043378, 0.022730303928256035, 0.0687999278306961, -0.005951356142759323, 0.015351698733866215, 0.016138510778546333, 0.003647209843620658, -0.0019053827272728086, 0.04088636860251427, 0.01686852052807808, -0.023266423493623734, 0.03853367269039154, -0.05449642241001129, 0.02117953635752201, -0.059689853340387344, 0.037987757474184036, 0.04203040152788162, 0.03009432926774025, 0.00505326222628355, 0.029921233654022217, -0.05255869776010513, 0.00036001758417114615, 0.018967218697071075, -0.03181357681751251, -0.016419896855950356, -0.0038174253422766924, 0.006300136912614107, 0.0001902485528262332, -0.018813541159033775, 0.007010504603385925, -0.027125360444188118, 0.006958336103707552, 0.06284011900424957, 0.02222473733127117, 0.007728875614702702, 0.015397402457892895, 0.023493070155382156, 0.01274565327912569, 0.03357302397489548, 0.005376314278692007, 0.015385889448225498, -0.01990150846540928, -0.02305537275969982, -0.023347530514001846, -0.0340011790394783, -0.013308580033481121, -0.01670755259692669, -0.0037210590671747923, 0.036126621067523956, 0.02089836075901985, -0.06240329518914223, 0.039025865495204926, 0.033384643495082855, -0.005513655953109264, 0.043306924402713776, -0.06895764917135239, 0.0026231915690004826, -0.040637627243995667, 0.01097793597728014, -0.00014005239063408226, -0.06697379052639008, 0.024232035502791405, -0.0064093670807778835, 0.031187070533633232, 0.024083023890852928, 0.024851925671100616, 0.010911265388131142, -0.023156318813562393, -0.00749678909778595, -0.008626657538115978, -0.0044534942135214806, 0.0005682220216840506, -0.01775808073580265, -0.007484210189431906, -0.036275140941143036, 0.018668700009584427, 0.02084512449800968, -0.035338614135980606, -0.0717337504029274, -0.019680924713611603, 7.512079668218355e-33, -0.004805597942322493, -0.03411330282688141, -0.01929514855146408, 0.00043825560715049505, 0.01599838398396969, -0.028103124350309372, 0.056440696120262146, -0.0031293448992073536, -0.011999876238405704, -0.01595606468617916, -0.011217095889151096, -0.0070432936772704124, 0.0017663813196122646, 0.031217023730278015, 0.007382879965007305, 0.0004414830473251641, 0.006445117294788361, -0.020802583545446396, 0.04499024897813797, 0.00558671448379755, -0.032483793795108795, 0.028219183906912804, 0.010475571267306805, -0.015726543962955475, 0.0108649842441082, 0.025386055931448936, -0.03504371643066406, -0.007914561778306961, -0.022192426025867462, 0.017208242788910866, 0.060687169432640076, -0.020247191190719604, 0.02571217715740204, -0.04467020928859711, -0.04991381615400314, 0.04416907951235771, -0.009676185436546803, -0.039329130202531815, -0.012987922877073288, 0.00620916998013854, 0.04898920655250549, 0.014449475333094597, -0.021220922470092773, 0.02194327488541603, -0.017576485872268677, 0.0634264349937439, 0.008370770141482353, 0.010456804186105728, -0.010642744600772858, 0.019710741937160492, 0.00832978542894125, -0.0002566907205618918, -0.018856914713978767, -0.02044091746211052, 0.01704948954284191, -0.04220544546842575, -0.04867567494511604, 0.01552326139062643, -0.03494644537568092, 0.0343213826417923, -0.003554696450009942, -0.006473213899880648, 0.02257416397333145, -0.001271589077077806, -0.06958522647619247, -0.0228178221732378, -0.046573929488658905, 0.0014606228796765208, 0.002824838273227215, -0.06229289248585701, 0.010537834838032722, -0.01747937686741352, -0.020585903897881508, 0.002945916960015893, 0.04980194568634033, 0.009003834798932076, -0.014089567586779594, 0.01725049316883087, -0.03706590086221695, -0.02054041624069214, 0.012078694067895412, -0.010482799261808395, -0.012736259028315544, -0.002440991345793009, 0.024798216298222542, 0.015820689499378204, -0.039897337555885315, 0.010756117291748524, 0.017480487003922462, 0.013440947979688644, 0.005606960505247116, 0.010148623026907444, -0.004806889686733484, 0.01513229962438345, -0.01316582877188921, -1.2750234645864111e-8, 0.007484838366508484, 0.07274249941110611, -0.028659794479608536, 0.043675899505615234, 0.01605961285531521, 0.025453981012105942, 0.019594497978687286, -0.005537999793887138, -0.03912077844142914, 0.04626051336526871, 0.0357612781226635, -0.018877346068620682, -0.035922273993492126, 0.04613148421049118, 0.03598381578922272, -0.027347661554813385, -0.010687806643545628, 0.0071102031506598, 0.005073602311313152, 0.0008542697178199887, 0.01905941218137741, 0.04249626770615578, -0.02694026008248329, -0.005211201962083578, 0.023170921951532364, -0.004469528794288635, -0.0030567427165806293, -0.11958400160074234, 0.010301119647920132, -0.03284923732280731, 0.03923258185386658, -0.023218439891934395, 0.021334564313292503, -0.015918320044875145, -0.048971422016620636, 0.009614359587430954, 0.01376529410481453, 0.00816459208726883, -0.00864463858306408, 0.015575057826936245, -0.020924726501107216, 0.008291681297123432, -0.03279954195022583, -0.029929541051387787, -0.047525081783533096, -0.022006841376423836, -0.016841072589159012, 0.014794985763728619, 0.0312303826212883, -0.024261122569441795, 0.009723065420985222, -0.026508809998631477, 0.01327831856906414, 0.029003508388996124, 0.01722397841513157, 0.03965085372328758, 0.04366544634103775, -0.014692623168230057, -0.04095779359340668, -0.029352927580475807, 0.006793124135583639, -0.022897420451045036, -0.060892198234796524, -0.004566553980112076 ]
ruby-checking-for-environment-variables-in-a-script
https://markhneedham.com/blog/2010/11/24/ruby-checking-for-environment-variables-in-a-script
false
2010-11-23 20:20:03
Systems Thinking: Individuals and the environment
[ "software-development" ]
[ "Software Development", "Systems Thinking" ]
Something which I've become fairly convinced about recently is that the environment that someone works in has far more impact on their perceived performance than their own individual skills. Given that belief I've often got stuck answering why some people are better able to handle a difficult environment than others - in terms of accepting the situation and finding a way of being productive regardless. Does this mean that they're better than people who can't work in that environment as effectively? That's certainly a judgement that I've made previously but after discussing this with http://twitter.com/#!/dtsato[Danilo Sato] over instant messenger and http://twitter.com/#!/patkua[Pat Kua] & http://twitter.com/#!/estherderby[Esther Derby] over twitter I can now see that I'm more than likely wrong. Danilo pointed out that *it doesn't actually means that they're better, it just means that they're better at coping*. If we work on improving the system then perhaps we can allow everyone to work more productively. http://twitter.com/estherderby/status/6407180727091200[Esther] has a similar view: ____ @markhneedham Sure. ppl have different ways of coping. Why not improve the system so everyone can do better? ____ And Pat http://twitter.com/#!/patkua/status/6405733037899778[adds] http://twitter.com/#!/patkua/status/6405912939986944[the following]: ____ @markhneedham different strengths and interest at play. Emergent behaviour based on individual and environment ____ ____ @markhneedham also people have different coping mechanisms and thresholds for tolerance/intolerance ____ Prior to this conversation I somehow hadn't considered the benefits we can get from putting people in environments which allow them to play to their strengths. I think we do this reasonably well when interviewing where one of the key criteria is to consider whether the candidate would enjoy working in the organisation's environment. Beyond that perhaps not so well because it's implicitly assumed that whoever is hired should be able to operate effectively regardless of the environment. Pat also pointed out that while it is good to work out how to get people into their optimal environment we shouldn't forget that, as difficult as it may be, *improving the system we're currently working in can also be effective*: http://twitter.com/markhneedham/status/6408946596188160[Me to Pat]: ____ @patkua ok so it sounds like what you're saying is we should look to try and place people in environments which are best suited to them ____ http://twitter.com/#!/patkua/status/6461463401070592[Pat's reply]: ____ @markhneedham I'm saying that's one possibility. Changing the system is another. We should be pursuing both strategies. ____
null
null
[ 0.04770544916391373, 0.002606503199785948, 0.0007340361480601132, 0.02517671324312687, 0.0937051773071289, 0.031487856060266495, 0.04291967302560806, 0.044189322739839554, 0.014368710108101368, -0.021772999316453934, -0.015093278139829636, 0.000596431375015527, -0.05409138649702072, 0.014046377502381802, -0.036557286977767944, 0.07247988879680634, 0.052830323576927185, 0.024755112826824188, 0.015473093837499619, 0.003396025625988841, 0.03979634493589401, 0.06345051527023315, 0.04946156218647957, 0.0287966076284647, 0.0695105716586113, -0.00974191166460514, 0.02983967214822769, 0.01926206238567829, -0.02611730434000492, -0.0007875863229855895, 0.03809240832924843, 0.024305421859025955, 0.013050650246441364, -0.004118557088077068, 0.028818771243095398, 0.007807284127920866, 0.0012925274204462767, 0.02282627485692501, 0.014582904055714607, 0.001973857404664159, -0.0857681855559349, 0.040957313030958176, -0.0289541557431221, 0.020038926973938942, -0.052762940526008606, 0.013307622633874416, -0.040848635137081146, 0.016025645658373833, 0.025716813281178474, 0.010585479438304901, -0.06933516263961792, 0.042829327285289764, 0.023484162986278534, -0.004357555881142616, 0.000052711868193000555, 0.027692366391420364, 0.004574880003929138, -0.04923861473798752, 0.013675792142748833, -0.04248782992362976, -0.016889261081814766, -0.01859053410589695, -0.028970636427402496, 0.01285642385482788, 0.026655714958906174, -0.02726139687001705, 0.008992222137749195, 0.025017254054546356, -0.04449894651770592, 0.030832670629024506, -0.01737217605113983, 0.013179589994251728, -0.002841241890564561, -0.007579116150736809, -0.00022979831555858254, -0.07194793224334717, -0.005250846967101097, 0.05349826067686081, 0.014912393875420094, 0.05069794878363609, -0.028891466557979584, -0.005125311203300953, -0.011575860902667046, 0.03186690807342529, -0.005823330953717232, -0.0292636901140213, 0.03983794152736664, -0.017227742820978165, -0.08018120378255844, 0.047407712787389755, 0.014628466218709946, -0.03516722470521927, 0.005241696257144213, 0.04357082396745682, -0.008217214606702328, 0.022812312468886375, 0.035911254584789276, -0.020529750734567642, -0.03530146926641464, -0.03561482951045036, -0.0209706649184227, -0.026725351810455322, -0.017625531181693077, 0.005581253208220005, -0.0815528854727745, -0.010510426945984364, 0.017609668895602226, -0.001741046435199678, -0.015282077714800835, 0.008998760022222996, -0.031119685620069504, 0.03778211027383804, -0.013929423876106739, 0.023348037153482437, -0.06654799729585648, 0.06321663409471512, 0.02103627473115921, -0.02710389718413353, 0.008769749663770199, 0.006656377576291561, 0.045747142285108566, 0.006050788797438145, -0.01651853136718273, 0.06624609977006912, -0.023474058136343956, 0.004235198255628347, -0.057551365345716476, 0.03487648814916611, -0.0044729141518473625, -0.04227568954229355, -0.012719016522169113, 0.042629048228263855, -0.023855039849877357, 0.009834135882556438, -0.028651170432567596, -0.03615960851311684, 0.011488568969070911, -0.0010909205302596092, 0.014788848347961903, 0.05728540197014809, -0.005692233331501484, -0.0525352917611599, 0.03151944652199745, 0.01645665057003498, 0.03412827476859093, -0.019902370870113373, -0.0009821892017498612, -0.034012846648693085, -0.021487919613718987, -0.036040838807821274, 0.02450038492679596, 0.0006849280325695872, 0.014842726290225983, -0.045690350234508514, 0.02323458157479763, 0.07020372897386551, 0.07092911005020142, -0.015813125297427177, -0.03157047554850578, 0.03460913896560669, 0.024366432800889015, 0.034108418971300125, 0.01569570228457451, 0.035857703536748886, 0.03085976466536522, -0.01590365171432495, -0.013040292076766491, 0.04627041518688202, -0.022535070776939392, 0.010166854597628117, -0.04132319241762161, -0.04565149545669556, 0.02906503528356552, -0.04312516003847122, -0.034178588539361954, 0.04004964977502823, 0.05417168140411377, 0.04005371779203415, 0.027178918942809105, 0.016165314242243767, -0.0693875402212143, 0.043009158223867416, 0.011124935932457447, 0.04672068729996681, 0.038632623851299286, -0.024387257173657417, 0.03953493759036064, 0.016059255227446556, 0.0035080956295132637, 0.05596625804901123, -0.07724884897470474, -0.09817412495613098, -0.0011369590647518635, -0.002807558747008443, 0.03555668890476227, -0.04787179082632065, 0.019300470128655434, 0.09426471590995789, 0.02474740520119667, 0.036148551851511, 0.02899891696870327, -0.032435204833745956, 0.007357345428317785, -0.06069599837064743, -0.06652672588825226, 0.09028615057468414, 0.03810885548591614, 0.010203540325164795, -0.036974769085645676, 0.027791332453489304, -0.0060666948556900024, -0.028540896251797676, 0.016273703426122665, -0.01470754574984312, 0.02528291754424572, -0.0032938893418759108, 0.04866381734609604, -0.015621681697666645, 0.04641038551926613, -0.020318657159805298, 0.016727851703763008, -0.0002016148646362126, 0.0002710715925786644, 0.017811808735132217, 0.0016173705225810409, 0.10635453462600708, 0.05651823803782463, -0.0498184971511364, -0.0529157891869545, 0.03140609338879585, 0.04113779217004776, -0.04000750929117203, 0.028721686452627182, 0.02996027283370495, -0.002780110342428088, 0.01323765143752098, -0.07049866765737534, -0.03821508213877678, 0.041032254695892334, -0.056946463882923126, -0.024340655654668808, 0.05227198079228401, -0.015634067356586456, 0.07219873368740082, -0.03288136422634125, -0.00025819605798460543, -0.019428199157118797, -0.009328080341219902, -0.048715002834796906, 0.02317810244858265, 0.014381414279341698, -0.017251601442694664, 0.04318094998598099, 0.008395982906222343, -0.015598749741911888, -0.04951629042625427, -0.030279407277703285, 0.028733408078551292, 0.062321942299604416, 0.03712104633450508, -0.015455979853868484, 0.06017906218767166, -0.02797958441078663, 0.05196873098611832, -0.0020367177203297615, -0.03699761629104614, -0.029174868017435074, -0.04329465329647064, -0.012807498686015606, 0.02202453278005123, 0.02895050309598446, -0.019437726587057114, 0.0026568667963147163, 0.017228657379746437, -0.003285745857283473, -0.004229432437568903, 0.02152860350906849, 0.012449582107365131, 0.012081864289939404, -0.026260845363140106, -0.004123725928366184, 0.06637061387300491, -0.015297654084861279, -0.0034422229509800673, 0.013731826096773148, -0.09194640070199966, 0.017199523746967316, -0.06329848617315292, -0.04946334660053253, -0.0042288112454116344, 0.024058429524302483, 0.03811938315629959, 0.040478914976119995, -0.0016145161353051662, 0.053956277668476105, 0.01217262726277113, 0.036278802901506424, 0.011643466539680958, 0.017569221556186676, 0.05636274069547653, 0.016409525647759438, 0.003325175028294325, 0.04390133172273636, 0.0008906865259632468, 0.005038436967879534, -0.06352695822715759, 0.02294507808983326, -0.04892577603459358, -0.2746523916721344, 0.04995918273925781, 0.043794047087430954, -0.024550199508666992, 0.017914071679115295, -0.07430358976125717, 0.006312593352049589, -0.03129653260111809, -0.03405078873038292, 0.012753615155816078, -0.021904855966567993, -0.02085811458528042, -0.0030524730682373047, 0.04226956516504288, -0.013327887281775475, 0.006565132178366184, 0.030716272071003914, -0.053109459578990936, 0.015802297741174698, 0.053067948669195175, -0.02355336770415306, -0.041286636143922806, -0.033138588070869446, 0.030737807974219322, 0.042283158749341965, 0.07296859472990036, -0.06675362586975098, 0.021191328763961792, -0.06593608111143112, -0.007584441918879747, -0.011630957946181297, 0.0039056017994880676, -0.006088332273066044, -0.004566692281514406, 0.022626440972089767, -0.02192828245460987, 0.04823005944490433, 0.0033813619520515203, 0.016372131183743477, -0.0016369401710107923, -0.027994539588689804, -0.040736306458711624, -0.0155768021941185, 0.015073658898472786, 0.04761370271444321, 0.021636908873915672, -0.08225730806589127, 0.012196742929518223, -0.024432044476270676, 0.06104655936360359, -0.02637491375207901, -0.02613282948732376, -0.036919496953487396, 0.023469943553209305, -0.011968794278800488, 0.004799780435860157, -0.020450830459594727, -0.028161710128188133, -0.04479373246431351, -0.06133214384317398, -0.018831884488463402, -0.017583927139639854, -0.023672254756093025, -0.04282618314027786, -0.01925630122423172, -0.05264855921268463, -0.0607101134955883, -0.024448389187455177, 0.05727484077215195, -0.0254342220723629, -0.017911765724420547, -0.007930931635200977, -0.0010692955693230033, -0.0961378663778305, -0.003637319430708885, -0.006541132926940918, -0.04755614325404167, 0.0027150497771799564, 0.040588222444057465, 0.032269109040498734, -0.016300078481435776, -0.06608223170042038, 0.03481364995241165, -0.0085253044962883, 0.03963495045900345, 0.0019614810589700937, 0.05356546863913536, 0.035390160977840424, -0.01787615194916725, 0.02223432995378971, 0.04802124202251434, 0.0001368969096802175, -0.045814357697963715, -0.012677744030952454, 0.02811318449676037, 0.01573038101196289, 0.0017770002596080303, -0.03823493793606758, -0.00597002450376749, 0.026282083243131638, -0.006786015350371599, -0.055364757776260376, 0.006640808191150427, -0.0012239068746566772, -0.002069945214316249, -0.010181937366724014, -0.05390629917383194, 0.020687399432063103, 0.039203617721796036, 0.0052639637142419815, 0.020005086436867714, -0.043456416577100754, 0.009341026656329632, -0.030108846724033356, -0.030030740424990654, -0.006478737574070692, 0.006523175165057182, 0.04416850581765175, 0.0262480229139328, 0.008759119547903538, -0.04103277623653412, 0.018395569175481796, -0.0008112675277516246, -0.02524726465344429, -0.0605376735329628, 0.008734316565096378, 0.0046495660208165646, -0.026355881243944168, 0.00009314736962551251, 0.01666451059281826, -0.01096962671726942, -0.016132928431034088, 0.04720437154173851, -0.03978345915675163, 0.026040779426693916, -0.028616013005375862, -0.05210160091519356, -0.03903336077928543, 0.00819645170122385, -0.006241473834961653, -0.02570096030831337, 0.01821099780499935, -0.01331237331032753, -0.00934185367077589, 0.04923060163855553, 0.017948437482118607, 0.011082795448601246, -0.02226078137755394, 0.016388945281505585, 0.020746955648064613, 0.021174684166908264, -0.06261885911226273, -0.0052563948556780815, -0.03951328247785568, -0.023149587213993073, -0.008417056873440742, 0.03365755081176758, -0.020210007205605507, -0.018459035083651543, -0.0249220822006464, 0.013548614457249641, -0.07147689908742905, -0.0616542249917984, -0.03579598665237427, 0.03363822028040886, 0.05155307799577713, -0.0215205829590559, 0.006708205211907625, -0.009223402477800846, 0.00975232757627964, 0.010891697369515896, 0.024362502619624138, -0.03214927762746811, -0.001295580412261188, -0.012072018347680569, 0.00740206940099597, -0.0005376493209041655, 0.0012468097265809774, 0.04210946708917618, 0.010195310227572918, -0.012405341491103172, -0.022177793085575104, -0.014002731069922447, 0.006282325368374586, 0.055801328271627426, 0.05941244587302208, 0.006520781200379133, -0.010304768569767475, -0.004120714962482452, -0.023175407201051712, -0.035006117075681686, -0.027539780363440514, -0.025709735229611397, 0.016263987869024277, -0.031078126281499863, -0.034949541091918945, 0.05494888499379158, -0.020396705716848373, 0.012912500649690628, 0.045750465244054794, -0.012842892669141293, 0.0025624537374824286, -0.04373252019286156, 0.00924175325781107, 0.05068390816450119, -0.06550835072994232, -0.009285123087465763, -0.00024959820439107716, -0.022836431860923767, 0.02906578965485096, -0.02858508937060833, -0.01587679609656334, -0.004583235364407301, -0.02318393811583519, 0.011298508383333683, -0.10396242886781693, -0.03126777336001396, -0.03178473189473152, 0.00916847214102745, 0.008679908700287342, -0.0009822031715884805, -0.0365227647125721, -0.03832913190126419, -0.000220879286644049, -0.026684259995818138, 0.017865799367427826, -0.034751780331134796, 0.011170800775289536, 0.025762613862752914, -0.04193153977394104, -0.018240954726934433, -0.02066737599670887, 0.025819918140769005, 0.03582344576716423, -0.04494054242968559, 0.0012854094384238124, -0.022115986794233322, 0.0011809173738583922, 0.018574466928839684, 0.011281185783445835, -0.01657220907509327, -0.0450577437877655, -0.030813470482826233, -0.0433243103325367, -0.03217320889234543, -0.006056825164705515, -0.023546239361166954, 0.011995776556432247, 0.03318510204553604, 0.06823542714118958, 0.035585228353738785, 0.02397918328642845, -0.022044068202376366, -0.014229477383196354, 0.023656090721488, -0.042350344359874725, -0.023493437096476555, -0.023691708222031593, -0.029445786029100418, -0.0006439695716835558, 0.01810394786298275, 0.010671044699847698, -0.02357642725110054, 0.023148560896515846, 0.014099376276135445, 0.02941340208053589, 0.048829492181539536, -0.004694008268415928, 0.037300921976566315, -0.07722790539264679, -0.02008279412984848, -0.07681921124458313, -0.02721182443201542, 0.010996853932738304, 0.00413390202447772, -0.00046401741565205157, 0.002928932197391987, -0.034467075020074844, 0.04165683314204216, -0.07162640243768692, -0.024634797126054764, 0.030356021597981453, -0.02217327244579792, -0.02036483772099018, 0.024093713611364365, -0.08991187810897827, 0.029942547902464867, -0.013935345225036144, -0.04659092798829079, -0.03938418999314308, -0.002891280222684145, 0.044914014637470245, -0.021845581009984016, 0.011361203156411648, -0.03492586687207222, -0.004845417104661465, 0.07952585816383362, 0.013323166407644749, -0.006086249370127916, 0.0472404845058918, -0.027450881898403168, 0.043926406651735306, 0.026726627722382545, 0.03324240818619728, -0.010968283750116825, 0.010325551964342594, -0.009821242652833462, -0.07337920367717743, 0.02024744264781475, 0.014189914800226688, -0.028580833226442337, -0.03792834281921387, 0.06798820942640305, 0.01926763355731964, -0.022099629044532776, -0.04933620244264603, 0.013572079129517078, -0.05009891465306282, -0.0010832099942490458, -0.022036714479327202, -0.006809332873672247, -0.052108678966760635, 0.039587341248989105, 0.031152937561273575, 0.032952044159173965, 0.07647702842950821, 0.012358788400888443, -0.015293387696146965, -0.003755856305360794, 0.09879438579082489, 0.07499329745769501, 0.07110069692134857, 0.018629657104611397, 0.0722280740737915, 0.0074465651996433735, -0.042919691652059555, 0.026919309049844742, 0.009704147465527058, -0.011979821138083935, -0.0148903988301754, 0.04381901025772095, 0.054229382425546646, -0.01107077207416296, 0.06774275004863739, -0.0036797416396439075, -0.037929944694042206, -0.006941717118024826, 0.02143183909356594, 0.012513297609984875, 0.0707440972328186, 0.02566675841808319, 0.027426624670624733, -0.026884285733103752, -0.057994864881038666, 0.026102621108293533, -0.027668356895446777, -0.011556914076209068, 0.02532198466360569, -0.013982935808598995, 0.026056116446852684, 0.03595825284719467, 0.021197326481342316, 0.07831844687461853, -0.05256076157093048, 0.034099068492650986, -0.028975296765565872, 0.035103872418403625, -0.021265029907226562, 0.017673496156930923, -0.004768142476677895, -0.0027578279841691256, -0.04319438710808754, -0.03575276583433151, -0.02871423028409481, -0.0026390717830508947, -0.022495998069643974, 0.019856741651892662, -0.040091294795274734, 0.0066710892133414745, 0.028703952208161354, 0.005411406513303518, -0.015594030730426311, -0.057023633271455765, -0.030299628153443336, -0.029922036454081535, -0.043486353009939194, -0.02288093790411949, 0.035604801028966904, -0.018375404179096222, -0.021930569782853127, 0.016112491488456726, 0.010929991491138935, -0.03255917504429817, 0.051573701202869415, -0.056931182742118835, -0.01306696143001318, 0.00520079443231225, 0.02963021956384182, 0.031524088233709335, -0.0019548810087144375, 0.05734841153025627, -0.005398094654083252, -0.00234822160564363, -0.006191044580191374, 0.026149043813347816, 0.029676277190446854, 0.0041365791112184525, -0.017513243481516838, -0.0903734415769577, -0.011364598758518696, 0.03657647222280502, -0.025067010894417763, -0.06679727137088776, 0.02136412262916565, 0.024693094193935394, 0.02824566885828972, 0.03856192156672478, -0.005624088458716869, 0.006860070861876011, -0.03746166452765465, 0.007056033704429865, -0.01682722009718418, -0.002261154819279909, 0.04498728737235069, -0.015087110921740532, 0.0748777836561203, -0.0006822582799941301, -0.021092062816023827, -0.03145836666226387, -0.003433593548834324, 0.004920043051242828, 0.0015984660713002086, -0.029454713687300682, -0.02952622063457966, -0.03965040296316147, -0.10002404451370239, -0.02066756971180439, 0.036062974482774734, -0.035907596349716187, -0.0518750436604023, 0.015100434422492981, -0.0015025314642116427, 0.0011669194791465998, 0.018718471750617027, -0.03492431342601776, 0.045808468014001846, -0.015445172786712646, 0.006840224843472242, 0.018620174378156662, -0.0004985284176655114, -0.03131530061364174, -0.011297004297375679, 0.01588565669953823, -0.032271962612867355, -0.0001525649131508544, -0.04909862205386162, 0.01052175648510456, 0.047478821128606796, 0.009616199880838394, -0.012200161814689636 ]
[ -0.06449776887893677, 0.017860259860754013, -0.007635150104761124, -0.0003127569507341832, 0.038713131099939346, -0.007817629724740982, 0.04673841968178749, 0.013416336849331856, -0.003662607865408063, -0.008613706566393375, 0.009369777515530586, -0.03449718654155731, 0.00018735730554908514, -0.02047913894057274, 0.055572036653757095, 0.018595468252897263, 0.003601064905524254, -0.06483878195285797, -0.0232815183699131, 0.02982887253165245, -0.02796720154583454, -0.03300303965806961, -0.03819046914577484, -0.019745202735066414, 0.03360488638281822, -0.03422373905777931, 0.03505567088723183, -0.007826357148587704, 0.00894356332719326, -0.14224445819854736, 0.024000149220228195, 0.0024851453490555286, 0.04855338856577873, 0.010612046346068382, -0.008955479599535465, 0.06193672493100166, 0.024806801229715347, 0.018063126131892204, -0.0046288734301924706, 0.04564834013581276, 0.030321920290589333, 0.0152216125279665, -0.034565672278404236, -0.01974848285317421, 0.013766397722065449, 0.060858871787786484, -0.0003122843336313963, -0.03894000127911568, -0.05597073212265968, -0.017333824187517166, -0.060335252434015274, -0.020058775320649147, -0.04170322045683861, 0.017938295379281044, 0.006363194901496172, -0.00021862554422114044, 0.04842158406972885, 0.06277359277009964, -0.01320714596658945, 0.008705112151801586, 0.020695006474852562, 0.0026540111284703016, -0.16605201363563538, 0.08778960257768631, 0.06934203952550888, 0.050185658037662506, -0.05979442596435547, -0.0090107386931777, -0.052255768328905106, 0.06480628252029419, 0.0016463708598166704, -0.021243590861558914, 0.008961138315498829, 0.002068164525553584, 0.0454055480659008, 0.00986954290419817, -0.016093989834189415, 0.01891414448618889, 0.047036681324243546, -0.04384374991059303, 0.01963341422379017, 0.03729591518640518, -0.043020207434892654, -0.010001737624406815, -0.022574732080101967, 0.017269335687160492, -0.028560753911733627, 0.013400016352534294, 0.021731959655880928, 0.03972972556948662, 0.011007646098732948, 0.004525025840848684, 0.031347788870334625, -0.008228129707276821, -0.034431375563144684, -0.030735798180103302, -0.00047438920591957867, 0.028814546763896942, -0.07506893575191498, 0.4572296440601349, -0.029234671965241432, -0.0017683212645351887, 0.0695669949054718, 0.035597823560237885, 0.0034586340188980103, 0.01578701287508011, 0.02059493213891983, -0.06365060806274414, 0.01476829033344984, 0.0024007647298276424, 0.04128881171345711, 0.014098438434302807, 0.042200248688459396, -0.0048645553179085255, 0.008182954974472523, 0.022148700430989265, 0.06115267425775528, -0.0005908223101869226, 0.0070671322755515575, -0.013844717293977737, -0.027088839560747147, 0.01574392430484295, 0.02135118655860424, -0.017577065154910088, -0.015741005539894104, -0.05697188898921013, 0.03530415892601013, 0.06754423677921295, 0.04438425227999687, -0.05420278385281563, 0.05456242710351944, -0.07183621823787689, -0.058859098702669144, 0.03115166909992695, -0.037669021636247635, -0.003289472544565797, 0.03701689466834068, 0.014361519366502762, 0.0005701102782040834, 0.09173454344272614, 0.04260305315256119, -0.025199979543685913, 0.003918143920600414, -0.05224234610795975, -0.02537338063120842, 0.13926637172698975, 0.042331796139478683, -0.0321248434484005, -0.006710575427860022, -0.011079231277108192, 0.0015298008220270276, 0.04899599775671959, -0.010153118520975113, -0.035338740795850754, 0.01715240627527237, 0.006215093657374382, 0.06080475077033043, -0.02115052565932274, -0.04194963350892067, -0.030474592000246048, 0.022856874391436577, -0.022617846727371216, -0.04872654005885124, 0.026707438752055168, 0.08952409029006958, -0.05033854767680168, -0.04637490212917328, 0.0009548550006002188, 0.018032655119895935, -0.07393109053373337, 0.020207751542329788, -0.0055557736195623875, -0.04144332930445671, 0.012463436461985111, 0.04506813734769821, -0.04994925484061241, -0.03710486739873886, 0.0401025228202343, 0.025035275146365166, 0.034315720200538635, 0.057518716901540756, 0.002245987066999078, -0.022846069186925888, -0.019252028316259384, -0.05548422411084175, -0.05265844613313675, -0.033594198524951935, -0.01470051147043705, -0.015985408797860146, 0.00012776428775396198, -0.01203206554055214, -0.03647608682513237, -0.11073711514472961, 0.06537016481161118, -0.031741976737976074, -0.012288316152989864, 0.018768733367323875, -0.026933087036013603, -0.04327719286084175, 0.013549751602113247, -0.08753732591867447, 0.02231472171843052, -0.060428570955991745, 0.008819801732897758, -0.049037545919418335, 0.04186464846134186, 0.027936778962612152, -0.04672149941325188, 0.12530983984470367, 0.03558473661541939, -0.020720509812235832, -0.03632644563913345, 0.007408482022583485, 0.06377137452363968, 0.020216939970850945, -0.003287702100351453, 0.03192783147096634, 0.0013863756321370602, 0.027548708021640778, 0.018016856163740158, -0.007074596360325813, -0.012724751606583595, -0.03716778755187988, -0.3489184081554413, -0.0706852599978447, -0.05282985419034958, 0.008906127884984016, 0.005063496995717287, -0.023110678419470787, 0.01000826247036457, -0.012560299597680569, -0.030402308329939842, 0.02508930116891861, 0.051432669162750244, -0.0034798607230186462, 0.012395704165101051, -0.02947458066046238, 0.0371200256049633, -0.006569677498191595, -0.05379010736942291, -0.025134526193141937, -0.01162883173674345, -0.006486949510872364, 0.014086218550801277, 0.014830884523689747, -0.011258453130722046, -0.034444622695446014, 0.02589327096939087, -0.06895802915096283, 0.08815081417560577, 0.02101645991206169, 0.047500066459178925, -0.017978236079216003, 0.023298321291804314, 0.025172719731926918, 0.016789013519883156, -0.14134570956230164, 0.023856215178966522, -0.013298842124640942, -0.012171966023743153, -0.054224882274866104, -0.030142975971102715, -0.055148784071207047, -0.05391305685043335, 0.03305221349000931, -0.0872102826833725, -0.01706637628376484, -0.1319878250360489, 0.017330875620245934, -0.01533709466457367, -0.0021127015352249146, -0.061364978551864624, 0.06589582562446594, 0.016581838950514793, 0.015621555037796497, 0.018121927976608276, -0.014338702894747257, -0.011376138776540756, -0.027024421840906143, -0.11750037223100662, 0.03350537270307541, -0.03817371651530266, 0.01843849942088127, -0.0018559129675850272, 0.04819898679852486, 0.04140454903244972, -0.028558973222970963, -0.013899773359298706, 0.016556447371840477, 0.0022068799007683992, 0.0007621944532729685, 0.0043791248463094234, 0.010362286120653152, -0.004068042151629925, 0.09887747466564178, -0.025112653151154518, -0.027151141315698624, 0.030588027089834213, 0.012140744365751743, -0.04051367565989494, 0.02061430923640728, 0.019071144983172417, -0.004927272908389568, 0.04743305593729019, -0.040486499667167664, 0.017948515713214874, -0.009757350198924541, -0.007964788004755974, 0.0013270729687064886, -0.027377739548683167, -0.05083450675010681, 0.06806190311908722, 0.03377385064959526, -0.018427837640047073, 0.0346544049680233, -0.06065219268202782, -0.08399844914674759, 0.05043471232056618, 0.0015277157071977854, -0.21353548765182495, 0.008214466273784637, 0.03288615122437477, 0.030499715358018875, -0.018575990572571754, 0.01694927178323269, 0.013131091371178627, -0.008952975273132324, 0.013759858906269073, 0.020459359511733055, 0.05549881234765053, 0.03450731188058853, -0.016011137515306473, 0.03793301805853844, 0.022546667605638504, -0.0375860221683979, 0.04010147601366043, 0.019853070378303528, 0.013930669054389, -0.00848610233515501, 0.018506882712244987, -0.011339855380356312, 0.10111741721630096, 0.015290160663425922, 0.0236384067684412, -0.0015789777971804142, -0.016717514023184776, -0.0005847343127243221, 0.04315639287233353, -0.032475151121616364, 0.019956137984991074, 0.012102517299354076, 0.028850501403212547, -0.007271369453519583, 0.019170623272657394, -0.09180813282728195, -0.023881489410996437, 0.012974089942872524, 0.02738497592508793, -0.013902724720537663, 0.025214657187461853, -0.014029642567038536, 0.0008798824273981154, 0.057507146149873734, 0.07372882962226868, -0.014306586235761642, 0.0022746766917407513, -0.06043287739157677, -0.033093348145484924, -0.011408877559006214, -0.02990742027759552, -0.02322813682258129, 0.044558703899383545, 0.021887974813580513, 0.026389703154563904, 0.057028885930776596, 0.020525678992271423, -0.027793265879154205, 0.02999584935605526, -0.028064116835594177, -0.02707841619849205, 0.0009623316000215709, 0.06785508990287781, 0.061142485588788986, 0.06651260703802109 ]
[ -0.00474516861140728, -0.008895060047507286, 0.018252793699502945, -0.0006568823591805995, -0.016837984323501587, 0.005389239173382521, 0.010981499217450619, 0.014821209013462067, 0.02499414049088955, -0.006870464887470007, -0.022324854508042336, 0.01874580979347229, 0.005430308636277914, -0.0218071099370718, 0.04185459762811661, -0.011097759939730167, 0.01440733578056097, -0.03364931046962738, 0.03595330938696861, -0.01430433802306652, -0.036498717963695526, -0.0160391703248024, -0.01858927682042122, -0.010166830383241177, -0.024143794551491737, 0.007005040533840656, -0.016094302758574486, 0.00006652247975580394, 0.02913050353527069, -0.12335503846406937, -0.04417519271373749, -0.024597791954874992, 0.009094882756471634, 0.007354444358497858, -0.0289227906614542, 0.04067811742424965, -0.0007014950388111174, 0.02860856056213379, 0.015780318528413773, 0.021363049745559692, 0.02225780300796032, -0.04727751761674881, -0.03923151642084122, -0.017444254830479622, -0.013723460026085377, -0.0073454175144433975, 0.012012550607323647, -0.0329781249165535, -0.030413175001740456, -0.04652046039700508, -0.02614954486489296, 0.004211065825074911, 0.01737068220973015, 0.007944303564727306, 0.01268581673502922, -0.00982186570763588, 0.005167522467672825, 0.03942401707172394, 0.02522166073322296, 0.011491688899695873, -0.008427084423601627, -0.011652958579361439, -0.025120969861745834, -0.006248338147997856, -0.003080900525674224, -0.003187426133081317, -0.020582113415002823, 0.02802097424864769, -0.03703926131129265, 0.006948903668671846, -0.025314675644040108, 0.016271773725748062, -0.0051476238295435905, -0.036679208278656006, -0.021800896152853966, -0.022632000967860222, -0.005649424623697996, -0.029978860169649124, 0.01672421023249626, 0.01420661248266697, -0.02170599438250065, 0.02711879275739193, -0.011175815016031265, 0.010626478120684624, -0.008713938295841217, 0.00674124900251627, -0.0041909050196409225, -0.033939965069293976, 0.011445784009993076, 0.0077911135740578175, -0.014864005148410797, 0.02466694824397564, -0.005333275999873877, 0.006064928602427244, -0.07577281445264816, -0.008746582083404064, -0.01504502259194851, -0.03303053602576256, 0.0009817687096074224, 0.8727386593818665, -0.027628635987639427, 0.020102476701140404, 0.012408659793436527, 0.004040487110614777, 0.002305512083694339, -0.007683918345719576, -0.013840707950294018, -0.0196321252733469, 0.026861410588026047, 0.001044203178025782, -0.02816087193787098, 0.011078231036663055, 0.021975303068757057, 0.030767442658543587, 0.02317286841571331, 0.009994055144488811, 0.012752742506563663, 0.01643395982682705, 0.0228583961725235, 0.017728637903928757, 0.04620690271258354, 0.00003062854739255272, -0.020688682794570923, 0.031374361366033554, 0.004937275778502226, -0.15716949105262756, 0.030534453690052032, -7.985557037786064e-33, 0.059329498559236526, 0.006128104403614998, 0.01841844618320465, -0.00790843553841114, -0.01597060263156891, -0.00753920990973711, 0.0007844501524232328, 0.02457450143992901, -0.010393619537353516, -0.01525223907083273, -0.00006273704639170319, -0.005038152914494276, -0.010485151782631874, -0.012346155941486359, 0.034258391708135605, 0.004930698312819004, -0.024836407974362373, 0.0479724146425724, -0.0022250982001423836, 0.014914198778569698, 0.03304079920053482, 0.01995026506483555, -0.03154050186276436, 0.012728714384138584, 0.012118931859731674, 0.03237421438097954, 0.0330042764544487, -0.022098513320088387, -0.018899764865636826, -0.045275501906871796, -0.04124005138874054, 0.010950762778520584, -0.010785242542624474, 0.0016745264874771237, 0.008394061587750912, -0.03853977099061012, -0.031747836619615555, 0.044608891010284424, -0.01840149611234665, -0.0413740873336792, -0.02817721478641033, 0.024650659412145615, 0.004202195443212986, -0.01835998333990574, -0.0184621661901474, -0.000349487760104239, 0.022425955161452293, -0.013681150041520596, 0.0018949656514450908, 0.01632443629205227, 0.020816074684262276, -0.011491287499666214, -0.008438433520495892, 0.006613488309085369, -0.005720627494156361, -0.011244896799325943, 0.0044839573092758656, 0.02382877841591835, 0.0029913478065282106, 0.017077716067433357, 0.029665669426321983, -0.014320582151412964, -0.030434900894761086, 0.004406397230923176, 0.02421736530959606, -0.025593599304556847, -0.006172263063490391, 0.019259130582213402, 0.011834713630378246, -0.013830344192683697, -0.04567477107048035, 0.02054690197110176, 0.0050447722896933556, 0.0028496740851551294, 0.0012731663882732391, -0.0017226351192221045, -0.01818273775279522, 0.024097928777337074, -0.014035775326192379, 0.045185964554548264, 0.0033844567369669676, 0.009171150624752045, -0.005683548282831907, -0.047955479472875595, -0.014477487653493881, 0.0038942131213843822, 0.029670746996998787, 0.0014723126078024507, -0.007773695979267359, 0.038174014538526535, 0.02897130511701107, 0.021047186106443405, -0.0003551394329406321, 0.0028877423610538244, -0.04019420966506004, 7.787707379547257e-33, 0.005949212238192558, -0.043666064739227295, -0.01295308768749237, -0.038438580930233, 0.05492854490876198, 0.01113045308738947, -0.010663029737770557, 0.02066471427679062, -0.04509287327528, 0.023805566132068634, -0.04150998964905739, -0.02478949911892414, -0.030301157385110855, 0.050285737961530685, 0.004169056657701731, -0.005135898478329182, 0.0019181736279278994, -0.004165331367403269, -0.02534724399447441, -0.010876319371163845, 0.021475106477737427, 0.009183160029351711, 0.0005698155146092176, 0.02869500406086445, 0.03192724660038948, 0.032329801470041275, 0.022410059347748756, 0.017727579921483994, 0.0027113838586956263, 0.021318404003977776, -0.0034464281052351, -0.01862981915473938, -0.002496680710464716, 0.0050100707449018955, -0.003122520400211215, 0.026261191815137863, -0.011944377794861794, -0.017433015629649162, 0.00858754850924015, -0.007811912801116705, 0.04485573247075081, -0.013313863426446915, 0.013780314475297928, 0.019367795437574387, -0.008069157600402832, 0.03660871833562851, 0.0013151252642273903, -0.03710850700736046, -0.022270657122135162, 0.020096754655241966, 0.0217091366648674, 0.022512633353471756, 0.001765908906236291, 0.01953655481338501, 0.006588559132069349, -0.03783696889877319, -0.020741432905197144, -0.008865907788276672, -0.024671651422977448, -0.02033487893640995, -0.007664993871003389, 0.0021171863190829754, -0.00989515520632267, 0.011249382048845291, -0.01360849104821682, -0.003713491139933467, -0.01269581913948059, 0.001017363159917295, -0.00004760423689731397, 0.0018123987829312682, -0.019406896084547043, -0.016410617157816887, 0.0025336924009025097, 0.03679032623767853, 0.01263346616178751, -0.03658779710531235, -0.02818986400961876, 0.010184171609580517, -0.019900454208254814, 0.02564097009599209, -0.012442383915185928, 0.014401813969016075, -0.0018915237160399556, -0.0026984624564647675, 0.00680311257019639, 0.03977673128247261, 0.003799710888415575, 0.02749575488269329, 0.019430898129940033, 0.006667717359960079, 0.010831426829099655, -0.0015778407687321305, -0.010031425394117832, 0.01779506728053093, -0.001253406167961657, -1.3743996163384509e-8, -0.002933020005002618, -0.03459808602929115, -0.0056707244366407394, 0.01761508546769619, -0.00687865586951375, 0.010288478806614876, -0.018216315656900406, -0.010654018260538578, -0.01977008581161499, 0.013869215734302998, 0.020637717097997665, -0.0016589406877756119, 0.004998276941478252, 0.018868055194616318, 0.021360786631703377, -0.05250079184770584, -0.008098175749182701, -0.0029928048606961966, 0.03643398731946945, 0.02273729257285595, 0.019923510029911995, 0.038927074521780014, -0.046259086579084396, 0.009798971936106682, 0.04007621482014656, 0.00240302924066782, -0.018815012648701668, -0.08891889452934265, -0.00896554533392191, 0.014015897177159786, 0.018466180190443993, -0.024778220802545547, -0.06584160029888153, -0.00569335650652647, -0.011562269181013107, -0.005996643099933863, -0.005420259200036526, -0.02129831537604332, -0.019168274477124214, 0.000625413900706917, -0.0032291091047227383, 0.02089202031493187, -0.0334019660949707, -0.03718557208776474, -0.0016085358802229166, 0.01807672344148159, -0.040630217641592026, -0.015455718152225018, 0.01342893484979868, -0.04130977764725685, 0.0015776073560118675, -0.032716404646635056, 0.041001588106155396, 0.035394467413425446, 0.013954932801425457, -0.0008777620969340205, 0.007767371833324432, -0.016754403710365295, -0.020682331174612045, -0.03104056604206562, 0.033218108117580414, 0.029368527233600616, -0.0015472760424017906, -0.01479870080947876 ]
systems-thinking-individuals-and-the-environment
https://markhneedham.com/blog/2010/11/23/systems-thinking-individuals-and-the-environment
false
2010-11-15 19:52:00
Retrospectives: My first time facilitating
[ "retrospectives" ]
[ "Agile" ]
Despite being part of numerous retrospectives over the past few years I don't remember actually facilitating one until my current team's last week. I've gradually come to appreciate the skill involved in facilitating this type of meeting having originally been of the opinion that there wasn't much to it. I recently read http://www.amazon.com/Agile-Retrospectives-Making-Teams-Great/dp/0977616649/ref=sr_1_1?ie=UTF8&s=books&qid=1289850279&sr=8-1[Agile Retrospectives] which has loads of different ideas for activities beyond just creating 'went well' and 'could improve' columns and then filling those in as a group. In the best retrospective I've attended recently the facilitator had us work together in small groups while coming up with ideas to fill in on the http://www.thekua.com/rant/2006/03/the-retrospective-starfish/[retrospective starfish]. I really like the idea of working in small groups because I think it encourages more participation in the discussion of problems on the team. My general observation is that a sizeable percentage of people are more comfortable taking part in discussions in smaller groups than with the whole team (~ 25 people). We split into groups of 4 or 5 and then populated a time line of the project since the last iteration before going across the board and discussing the most prominent topics. These were some of the main areas that I had thoughts about during and after facilitating this retro: == Time keeping Perhaps somewhat ironically given the amount I've been hassling my team mates to http://www.markhneedham.com/blog/2010/10/31/meetings-guerilla-collaboration/[keep meetings short] this one over ran by about 25 - 30 minutes, taking around 90 minutes instead of 60. I had a rough idea of how quickly we needed to move across the board in order to finish on time but it got thrown completely off track by one point which resulted in a much longer discussion than I had expected. I tried to move across the rest of the items a bit more quickly to make up for that but it didn't really work. I'd be interested to hear what a more experienced facilitator would have done in this situation as I'm sure it's very common. == Participating I've written previously about http://www.markhneedham.com/blog/2010/11/06/retrospectives-general-observations/[the dangers of giving your opinion when facilitating a retrospective] so I tried to make sure that I kept out of any discussions that happened and allowed others to talk. On a couple of occasions I was asked to give my opinion on certain things so I had to step out of my facilitating role temporarily, join the discussion and then step back in. I think this worked reasonably well but I can see how it would be difficult to keep quiet if you had really strong opinions on a topic being discussed! == Summarising the discussion I see part of the role of the facilitator being to try and summarise what is being discussed so that it can be written up afterwards and distributed to the team. I didn't realise how difficult this is, especially if the discussion drifts slightly away from its original direction. I found it quite tricky to follow what was going on at times but luckily one of my colleagues was able to help me out when I didn't quite get it right. Overall it was an interesting experience and I hope I'll get another chance to try this role again soon although for now we're trying to rotate it around the team to give everyone an opportunity to facilitate.
null
null
[ -0.0008339019259437919, -0.026994073763489723, -0.020464278757572174, 0.025446102023124695, 0.06561621278524399, -0.00897679291665554, 0.005311599932610989, 0.03546105697751045, 0.011880469508469105, -0.023601416498422623, 0.0025093327276408672, 0.0027466907631605864, -0.032192084938287735, 0.030921099707484245, -0.040784284472465515, 0.06863150000572205, 0.05592311918735504, -0.002514084568247199, 0.004857803229242563, 0.01892806962132454, 0.04954254999756813, 0.05910063162446022, 0.018516618758440018, 0.03661641478538513, 0.052618809044361115, 0.009526805020868778, 0.02514590509235859, -0.03581414744257927, -0.04334164038300514, 0.002570374635979533, 0.017611006274819374, -0.017970355227589607, 0.010986067354679108, 0.012598725967109203, 0.03186357766389847, -0.03935164213180542, 0.0025476731825619936, 0.03185633197426796, 0.008543085306882858, -0.02000504359602928, -0.05465827137231827, 0.0385795459151268, -0.032443609088659286, -0.009772353805601597, -0.030612507835030556, 0.03498539701104164, -0.020140279084444046, 0.004642358981072903, 0.007850943133234978, -0.009755299426615238, -0.04922015964984894, 0.022804327309131622, 0.03573652729392052, -0.0014719568425789475, -0.021451691165566444, 0.029989168047904968, 0.007825963199138641, -0.05332968011498451, 0.009040596894919872, -0.02789999730885029, -0.02633827179670334, -0.004704880528151989, 0.013271416537463665, 0.04208284243941307, 0.021183161064982414, -0.027649104595184326, 0.025111880153417587, 0.027757855132222176, -0.019325869157910347, 0.03646058216691017, -0.035085346549749374, 0.009816545993089676, -0.014845157973468304, -0.006327466573566198, -0.0063821799121797085, -0.045838527381420135, 0.018712766468524933, 0.05477480590343475, 0.031146690249443054, 0.04469139501452446, -0.012347816489636898, 0.008215297013521194, 0.00946575216948986, 0.020069831982254982, -0.01281327661126852, -0.04714435711503029, -0.00031746141030453146, -0.019530469551682472, -0.06880149990320206, 0.0569085069000721, -0.01234164834022522, -0.07945644110441208, 0.01924803853034973, 0.038368478417396545, 0.00471744779497385, -0.003603377379477024, 0.034830085933208466, 0.01784367859363556, -0.008086537010967731, -0.035635944455862045, -0.017621323466300964, -0.014412145130336285, -0.015226762741804123, 0.022250676527619362, -0.08843642473220825, 0.005735019221901894, -0.01426721177995205, -0.0022201656829565763, -0.027735348790884018, -0.0008126631728373468, -0.03961818665266037, 0.021312281489372253, -0.03824564814567566, 0.028772326186299324, -0.06287766247987747, 0.0461532399058342, 0.03469647839665413, -0.05038980022072792, -0.013981522992253304, -0.027525702491402626, 0.028762316331267357, 0.025796378031373024, 0.007296742871403694, 0.07080727815628052, -0.02208397351205349, 0.021705804392695427, -0.03232715278863907, 0.06363148987293243, -0.02362806536257267, -0.07228931784629822, -0.030702419579029083, 0.04933328554034233, -0.058088455349206924, -0.02397448569536209, 0.003941704519093037, -0.04056135565042496, 0.0031239825766533613, -0.0006512656691484153, 0.019020406529307365, 0.04962572827935219, 0.011475088074803352, -0.0067282444797456264, 0.011246247217059135, 0.033850472420454025, 0.02390802465379238, -0.011178326793015003, -0.021996183320879936, -0.03907208889722824, -0.05421653762459755, -0.012700604274868965, 0.014209607616066933, -0.001484614098444581, 0.021047016605734825, -0.05499223992228508, 0.015102993696928024, 0.0816730186343193, 0.03615107014775276, -0.006627300288528204, -0.01535090059041977, 0.03824416920542717, 0.033505551517009735, 0.0236232727766037, 0.0033382847905158997, 0.03319012373685837, 0.0136791430413723, -0.025587070733308792, -0.011861703358590603, 0.027555350214242935, 0.004463776480406523, 0.01974106766283512, -0.05189218372106552, -0.03212640807032585, 0.020472338423132896, -0.04742364212870598, -0.03994257003068924, 0.0674443244934082, 0.08127136528491974, 0.06953268498182297, 0.015874166041612625, -0.00048806468839757144, -0.07730215042829514, 0.02811780944466591, 0.017852483317255974, 0.027346085757017136, 0.04338296130299568, -0.03109504096210003, 0.03712578862905502, 0.030201775953173637, -0.028042539954185486, 0.04901951551437378, -0.07255671918392181, -0.0812160074710846, -0.011342590674757957, -0.023176293820142746, 0.04199746996164322, -0.05862027034163475, 0.033535998314619064, 0.08369673788547516, 0.005006668157875538, 0.052990298718214035, 0.03866538405418396, 0.02306949719786644, 0.005097278859466314, -0.03376062959432602, -0.01766722835600376, 0.07434270530939102, 0.03210115805268288, 0.006548973731696606, -0.04731133580207825, 0.018513206392526627, -0.02733238786458969, 0.00888964906334877, 0.03930831700563431, 0.0037779216654598713, 0.037644315510988235, 0.0037811838556081057, 0.06874427199363708, -0.0227167010307312, 0.03790326416492462, -0.04556962475180626, 0.024040522053837776, 0.007346676662564278, -0.022730248048901558, 0.010901154018938541, -0.03012159839272499, 0.09273169934749603, 0.056565769016742706, -0.049574702978134155, -0.04485178366303444, 0.022777361795306206, 0.03213425725698471, -0.020744595676660538, -0.021184084936976433, 0.010602838359773159, 0.04301908239722252, 0.0024137762375175953, -0.0735209658741951, -0.04354756325483322, 0.020966947078704834, -0.05197668820619583, -0.00921634677797556, 0.041558638215065, -0.0013051131973043084, 0.07864626497030258, 0.008938144892454147, 0.0006094605196267366, -0.031660910695791245, 0.020960163325071335, -0.04674181714653969, 0.011597005650401115, 0.013745916076004505, -0.033601321280002594, 0.059212423861026764, -0.01818610168993473, -0.030406352132558823, -0.03217271715402603, -0.017661195248365402, -0.0024534333497285843, 0.048902928829193115, 0.07398693263530731, -0.002880932530388236, 0.06939499080181122, -0.007947025820612907, 0.022883029654622078, 0.009222651831805706, -0.03387342765927315, -0.04160783067345619, -0.037232138216495514, -0.0015217284671962261, 0.015887470915913582, 0.0111819664016366, 0.0025080272462219, 0.0300439465790987, 0.02721434272825718, -0.031108468770980835, -0.009833079762756824, 0.016748176887631416, 0.0021274385508149862, 0.0002199925947934389, -0.0294562466442585, -0.014922099187970161, 0.041347894817590714, -0.026879707351326942, -0.012229828163981438, 0.017471350729465485, -0.07932157814502716, 0.028608625754714012, -0.05910176783800125, -0.0381024144589901, -0.005674084182828665, 0.020767299458384514, 0.03827337175607681, 0.019787415862083435, 0.006898197811096907, 0.07052650302648544, 0.02106516622006893, 0.025337032973766327, 0.006377704907208681, -0.021944977343082428, 0.04018101096153259, 0.00311425793915987, -0.04254607856273651, 0.06289265304803848, -0.013633799739181995, 0.0016864852514117956, -0.06653459370136261, 0.05481602996587753, -0.05230425298213959, -0.28126227855682373, 0.022302594035863876, 0.00781944952905178, -0.031845420598983765, 0.015357159078121185, -0.03958011418581009, 0.02569670043885708, -0.05932867154479027, -0.041439663618803024, 0.01901751384139061, -0.04684969782829285, -0.02116832137107849, -0.011647104285657406, 0.06015878915786743, 0.0029211388900876045, 0.04656759649515152, 0.02632458135485649, -0.011785500682890415, 0.011661278083920479, 0.059312693774700165, -0.0110465744510293, -0.071885846555233, -0.02936672605574131, 0.04683239012956619, 0.0265493206679821, 0.06071637198328972, -0.0718524232506752, 0.035095199942588806, -0.057458020746707916, -0.00695008784532547, 0.028906939551234245, 0.01415735948830843, 0.019457541406154633, -0.023073775693774223, 0.001422308967448771, -0.024301359429955482, 0.04643035680055618, 0.008770495653152466, -0.011972596868872643, -0.03373412787914276, 0.00026025885017588735, -0.043752945959568024, 0.012998298741877079, 0.034427184611558914, 0.054926421493291855, 0.027293408289551735, -0.05795900151133537, -0.014910532161593437, -0.02769261971116066, 0.0870104506611824, -0.02327984943985939, -0.025379465892910957, -0.004711288958787918, 0.02928145043551922, -0.0037691586185246706, -0.03715745732188225, -0.007266018074005842, -0.03292081132531166, -0.035280510783195496, -0.0279418732970953, -0.032104991376399994, -0.023657284677028656, -0.005017219111323357, -0.044870734214782715, -0.03167164698243141, -0.06037120521068573, -0.06349480897188187, 0.003252142807468772, 0.038425903767347336, -0.0081794373691082, -0.034951627254486084, 0.005401691887527704, -0.018273677676916122, -0.0891331285238266, -0.004519239999353886, 0.016271596774458885, -0.03262704238295555, 0.010285863652825356, 0.01623792201280594, 0.06497366726398468, -0.028406377881765366, -0.047540076076984406, 0.010121718980371952, 0.0070223151706159115, 0.04066883400082588, 0.009105014614760876, 0.05457428842782974, 0.03322616592049599, -0.04242813214659691, 0.0018247334519401193, 0.05235101282596588, 0.018139544874429703, -0.036301389336586, 0.009860485792160034, 0.026976468041539192, 0.02462628483772278, 0.003558333730325103, -0.00921010971069336, 0.020740259438753128, 0.005858392454683781, 0.014319662936031818, -0.03459736332297325, -0.0006515509448945522, -0.010089980438351631, -0.022456882521510124, -0.013124966993927956, -0.07508030533790588, 0.014736989513039589, 0.04737046733498573, 0.024908704683184624, 0.02552127093076706, 0.0017459307564422488, 0.03337815776467323, -0.0383046455681324, 0.0027518472634255886, -0.027413260191679, 0.000023959190002642572, 0.06992907077074051, -0.006075609941035509, 0.022088240832090378, -0.0680278018116951, 0.0068535879254341125, -0.031653571873903275, 0.008065258152782917, -0.061524398624897, -0.021718861535191536, -0.031034886837005615, -0.03361896798014641, -0.01055624708533287, 0.025831647217273712, -0.015677746385335922, -0.00897309836000204, 0.05104144662618637, -0.03388021141290665, 0.03790837526321411, -0.043408360332250595, -0.09066244214773178, -0.022857844829559326, -0.01108226366341114, 0.0000623278392595239, -0.015288837254047394, 0.02340361848473549, -0.022979898378252983, 0.016500120982527733, 0.0272052064538002, 0.028105758130550385, -0.0025655662175267935, -0.013217882253229618, 0.02001500502228737, 0.010080098174512386, 0.021894674748182297, -0.0546034537255764, -0.009184513241052628, -0.02892524190247059, -0.021208172664046288, -0.0021139897871762514, 0.02541269175708294, -0.02683192305266857, -0.0006131851696409285, -0.0065748924389481544, -0.018846074119210243, -0.04135877266526222, -0.029287993907928467, -0.04707523435354233, 0.03374321013689041, 0.0448552705347538, -0.023664232343435287, 0.005384073127061129, -0.009303863160312176, -0.004404178820550442, 0.007964946329593658, -0.009955155663192272, -0.04949396103620529, -0.0033655911684036255, 0.015689438208937645, 0.015348012559115887, 0.023388704285025597, 0.01333316508680582, 0.05233621597290039, -0.01049095019698143, 0.0016714062076061964, -0.029633205384016037, 0.008989785797894001, 0.008372055366635323, 0.042088575661182404, 0.023260293528437614, 0.0017737175803631544, -0.00043114504660479724, -0.031172553077340126, -0.031287360936403275, -0.0293355081230402, -0.013887512497603893, 0.009162298403680325, 0.012314626947045326, -0.02511206641793251, -0.08151362836360931, 0.06653468310832977, 0.011650304310023785, 0.010718485340476036, 0.005853969603776932, 0.006424546241760254, -0.00801534578204155, -0.018368767574429512, 0.030784964561462402, 0.05615699663758278, -0.06313807517290115, -0.003864191472530365, -0.02037162333726883, -0.01058492623269558, 0.006781184580177069, -0.015829594805836678, -0.03404441475868225, -0.020789112895727158, -0.010524459183216095, 0.004250661935657263, -0.0797230526804924, 0.0026944545097649097, -0.040717869997024536, 0.05325999855995178, 0.021779740229249, 0.007185003720223904, -0.0451037622988224, -0.02952735498547554, -0.02707706391811371, -0.03839382901787758, 0.016861308366060257, -0.05044427141547203, 0.012055623345077038, -0.014720786362886429, -0.028232818469405174, 0.00033076154068112373, -0.04717168211936951, 0.0305315088480711, 0.013201517052948475, -0.03781665861606598, -0.0040437765419483185, -0.03243543207645416, 0.011463467963039875, 0.03064020909368992, 0.058332499116659164, -0.027870934456586838, -0.02167569287121296, -0.03181082010269165, -0.009095462039113045, -0.04768625274300575, -0.021793795749545097, -0.028548989444971085, -0.0007417137385345995, 0.014576162211596966, 0.0781867578625679, 0.022619780153036118, 0.03382071480154991, -0.018098939210176468, -0.03137519210577011, 0.05004256218671799, -0.04472006857395172, -0.034478217363357544, -0.040370047092437744, -0.053661394864320755, 0.009468670934438705, 0.0015818404499441385, 0.015553600154817104, -0.053106434643268585, 0.027563728392124176, 0.01530754379928112, 0.03829694911837578, 0.042411062866449356, 0.027221735566854477, 0.0059090168215334415, -0.042580198496580124, -0.009159701876342297, -0.07591681182384491, -0.011911301873624325, 0.027240196242928505, 0.004817051813006401, -0.016517888754606247, 0.008449796587228775, -0.03358079493045807, 0.06717200577259064, -0.08360309898853302, -0.017372259870171547, 0.0427454374730587, -0.015545392408967018, 0.012148847803473473, 0.03369169682264328, -0.07769401371479034, 0.011819584295153618, 0.01559450849890709, -0.05138331651687622, 0.001660207286477089, -0.019726544618606567, 0.06121772155165672, -0.012430130504071712, 0.02910950593650341, -0.033238328993320465, 0.001544371945783496, 0.08803233504295349, 0.0101903872564435, -0.020979050546884537, 0.075705885887146, 0.0006470473599620163, 0.03342829644680023, 0.02722417376935482, 0.001882239943370223, -0.025820527225732803, 0.016346078366041183, -0.023627737537026405, -0.045959047973155975, 0.028059234842658043, 0.013098165392875671, -0.013503440655767918, -0.028912851586937904, 0.059205543249845505, 0.02193705551326275, -0.041629090905189514, -0.05629827082157135, 0.008631546050310135, -0.0726739838719368, 0.001063437550328672, -0.01349736750125885, 0.014995706267654896, -0.04875017702579498, 0.037980884313583374, -0.011317920871078968, 0.0181697066873312, 0.06974264979362488, -0.008087292313575745, -0.007873847149312496, -0.03526023402810097, 0.09240535646677017, 0.07998300343751907, 0.08158880472183228, 0.027206800878047943, 0.07075969129800797, -0.012150024995207787, -0.04334934800863266, 0.022170770913362503, -0.005671323277056217, -0.020554184913635254, -0.037592336535453796, 0.030280884355306625, 0.05798577144742012, -0.007834887132048607, 0.05601414665579796, -0.0013848760863766074, -0.02766985446214676, -0.0037221505772322416, 0.04410955309867859, 0.032276351004838943, 0.04197443276643753, -0.0010832555126398802, 0.018809694796800613, -0.00992053933441639, -0.05417093262076378, 0.03745342046022415, -0.022019924595952034, 0.0026570898480713367, 0.03553511202335358, -0.019554946571588516, 0.04226052388548851, 0.04039313271641731, 0.006482797209173441, 0.05253688246011734, -0.03217535838484764, 0.022890305146574974, -0.033170875161886215, 0.014131096191704273, -0.007479313760995865, 0.012122169137001038, 0.0006076687714084983, -0.017680272459983826, 0.011229497380554676, -0.04034265875816345, -0.02102380245923996, -0.0055308034643530846, -0.024931984022259712, 0.03837452083826065, -0.03398467227816582, 0.029269222170114517, 0.030111411586403847, -0.0025048076640814543, -0.04483593627810478, -0.05012772977352142, -0.02990022301673889, -0.04470059275627136, -0.03232415392994881, 0.028657499700784683, 0.0339183583855629, -0.0012686318950727582, -0.036366429179906845, 0.0037696193903684616, -0.021577803418040276, -0.02367863990366459, 0.024918239563703537, -0.04719320684671402, -0.03139188140630722, 0.002575651975348592, 0.016312340274453163, 0.03640274330973625, 0.001624495373107493, 0.02938556671142578, -0.0016293058870360255, -0.006954997777938843, -0.0178123377263546, 0.04234207421541214, 0.04196721687912941, -0.017866060137748718, 0.0070128850638866425, -0.09687963128089905, 0.020479880273342133, 0.04854084551334381, -0.025736438110470772, -0.07071312516927719, 0.027972722426056862, 0.022871410474181175, -0.01741759292781353, 0.0352604053914547, 0.0029199859127402306, 0.00444968743249774, -0.05696355178952217, 0.02081160619854927, -0.0024074476677924395, 0.03381878510117531, 0.04488610848784447, -0.032522402703762054, 0.07123155891895294, 0.035088829696178436, -0.02021080069243908, -0.04672251641750336, -0.013154526241123676, 0.017820533365011215, -0.003891669912263751, -0.005146456882357597, -0.044075559824705124, -0.04677371680736542, -0.0715857446193695, -0.03146166726946831, 0.01652991585433483, -0.0026583943981677294, -0.00570409232750535, 0.018480828031897545, 0.0035953382030129433, -0.020786497741937637, 0.0318266786634922, -0.056593235582113266, 0.04277578741312027, -0.013022595085203648, -0.021581517532467842, -0.008300531655550003, -0.010318014770746231, 0.005646905861794949, -0.013775133527815342, 0.012116044759750366, -0.04290842264890671, 0.006752844899892807, 0.002286287723109126, 0.012072195298969746, 0.04212820902466774, 0.007951520383358002, -0.01646786369383335 ]
[ -0.07840868830680847, 0.014524088241159916, -0.011591303162276745, -0.02889004349708557, 0.045798614621162415, -0.028397465124726295, -0.01623965986073017, 0.01670081540942192, -0.011086035519838333, -0.029838962480425835, 0.025246459990739822, -0.011942409910261631, 0.012163438834249973, -0.02703058160841465, 0.043673187494277954, -0.0034563359804451466, -0.00652968930080533, -0.0699278935790062, 0.012946395203471184, 0.028260575607419014, -0.04333215206861496, -0.03150046989321709, -0.03500217944383621, 0.022562172263860703, 0.02479964680969715, 0.046340588480234146, -0.0030182618647813797, -0.057968370616436005, -0.004054752178490162, -0.17646603286266327, 0.007579625118523836, 0.027748918160796165, 0.051116976886987686, -0.008853609673678875, -0.003721856512129307, 0.08747732639312744, 0.019304117187857628, 0.02369101531803608, -0.01120912004262209, 0.05324137210845947, 0.03521444648504257, 0.018153062090277672, -0.04601488634943962, -0.038069743663072586, 0.015390394255518913, -0.0002501026901882142, -0.005583783611655235, -0.061764031648635864, -0.03167570009827614, 0.01289103738963604, -0.02967209927737713, -0.041869863867759705, -0.012317377142608166, 0.0010576886124908924, -0.03375813364982605, 0.06159796565771103, 0.03855676203966141, 0.017332235351204872, -0.006882880348712206, 0.000008356879334314726, 0.027767296880483627, -0.015652162954211235, -0.14129552245140076, 0.07278846204280853, 0.009053811430931091, 0.04777408391237259, -0.05289115011692047, 0.012816636823117733, 0.0016321607399731874, 0.07256743311882019, 0.0024838699027895927, -0.029414348304271698, 0.003893635468557477, 0.01962013728916645, 0.052826788276433945, 0.020633647218346596, -0.0033182608895003796, 0.032789185643196106, 0.015980584546923637, -0.05159015581011772, -0.03076181374490261, 0.006416819524019957, -0.022248132154345512, -0.029843254014849663, -0.03051351010799408, -0.00009423359006177634, -0.004826919641345739, 0.05630176141858101, 0.029747115448117256, 0.041746921837329865, 0.04981360584497452, 0.0400109589099884, 0.026540607213974, 0.0008645991911180317, -0.08619461953639984, -0.0371713861823082, 0.00014123345317784697, 0.021517768502235413, -0.04509817063808441, 0.4564403295516968, -0.017145944759249687, 0.01365854125469923, 0.09814140945672989, 0.040184326469898224, -0.03354053199291229, -0.022649146616458893, 0.01831161417067051, -0.05653883144259453, 0.020833326503634453, -0.0002958660770673305, 0.01883010007441044, 0.03820953890681267, 0.06391489505767822, -0.053051140159368515, 0.03712455555796623, 0.04625749588012695, 0.012102214619517326, 0.022952452301979065, -0.014115304686129093, -0.016508562490344048, -0.0037083658389747143, 0.00027644948568195105, 0.045999959111213684, 0.018297621980309486, -0.033746927976608276, -0.018580367788672447, 0.013560839928686619, 0.04275297373533249, 0.06086760759353638, -0.024374356493353844, 0.06090928241610527, -0.017207160592079163, -0.06753984838724136, -0.005473115015774965, -0.0048423451371490955, -0.009021042846143246, 0.04732803627848625, -0.04285421222448349, 0.013221099972724915, 0.03700731322169304, 0.03822118043899536, -0.003591912565752864, 0.04359268769621849, -0.02837459184229374, -0.05573350936174393, 0.14171172678470612, 0.008743072859942913, -0.03232884034514427, -0.013854997232556343, -0.019445054233074188, -0.01565917767584324, 0.005388373974710703, 0.004848406184464693, -0.03479381278157234, 0.03384077921509743, -0.015666799619793892, 0.10065704584121704, -0.0011154438834637403, -0.0608518086373806, 0.015042668208479881, -0.019934039562940598, -0.023952893912792206, -0.046566106379032135, 0.046471476554870605, 0.08899848163127899, -0.1264880895614624, -0.01725228875875473, -0.023527933284640312, 0.02199590764939785, -0.06626328080892563, -0.021090231835842133, 0.012608583085238934, 0.011880666017532349, 0.022862406447529793, 0.05465452000498772, -0.009283325634896755, -0.025691749528050423, 0.004332521464675665, 0.03939512372016907, 0.008551133796572685, 0.05305157229304314, 0.03538041561841965, -0.029409179463982582, 0.017761820927262306, -0.024605728685855865, -0.07666068524122238, -0.05628156289458275, -0.018831003457307816, -0.028192590922117233, 0.008326866663992405, -0.04008900374174118, -0.027431469410657883, -0.0611286386847496, 0.11597378551959991, -0.04646237567067146, -0.02032221294939518, 0.03650149330496788, -0.02607213333249092, -0.04627743735909462, -0.02156231366097927, -0.09357015043497086, 0.008541886694729328, -0.037459105253219604, 0.04867949336767197, -0.03820034861564636, 0.038232073187828064, 0.03813396394252777, -0.045220714062452316, 0.09576009958982468, 0.04105596989393234, -0.029523003846406937, -0.05625177174806595, 0.03490827977657318, 0.015156848356127739, -0.0018821227131411433, 0.01517567876726389, -0.00655159680172801, 0.0188751183450222, -0.009549297392368317, 0.01158183068037033, 0.012785697355866432, 0.02448115311563015, -0.01769818179309368, -0.3311588168144226, -0.012346605770289898, -0.017627142369747162, 0.006771119777113199, 0.015962954610586166, -0.019477179273962975, 0.025297343730926514, -0.036475636065006256, -0.02143547125160694, -0.01612563244998455, 0.042536068707704544, -0.02061295323073864, -0.010494161397218704, -0.06937898695468903, -0.010792247019708157, 0.014935326762497425, -0.059475455433130264, -0.00972930621355772, -0.019477341324090958, 0.0032772717531770468, 0.017070626839995384, -0.011630849912762642, -0.023349953815340996, -0.02131534554064274, -0.004272724501788616, -0.041766997426748276, 0.08794569224119186, 0.018796920776367188, 0.0326065868139267, -0.025673650205135345, 0.029908062890172005, 0.02294771373271942, 0.015409998595714569, -0.09200030565261841, 0.010351761244237423, -0.011019125580787659, 0.030209263786673546, -0.049456637352705, 0.05083393678069115, -0.05406251549720764, -0.05693830922245979, 0.03552408888936043, -0.06705342233181, -0.052917636930942535, -0.07887641340494156, 0.002578974002972245, -0.028640948235988617, -0.0397225096821785, -0.023769769817590714, 0.05513210594654083, 0.010219949297606945, -0.029143279418349266, 0.03860459104180336, -0.0021266029216349125, -0.006468018516898155, -0.02872340753674507, -0.10028975456953049, 0.00019182627147529274, 0.00277262763120234, 0.0008078744285739958, 0.022539149969816208, 0.08031003922224045, 0.026399696245789528, -0.052554842084646225, 0.017301129177212715, 0.0008698271703906357, -0.014414001256227493, 0.02178342454135418, 0.022053729742765427, -0.03146752715110779, -0.00013517112529370934, 0.06655731052160263, -0.0032043932005763054, -0.03076043166220188, 0.043971866369247437, 0.02750667743384838, -0.03852709382772446, -0.010982166044414043, -0.003150497330352664, -0.013364196754992008, 0.00670646270737052, -0.036101531237363815, 0.00702284649014473, -0.027674313634634018, -0.010570118203759193, 0.025621943175792694, -0.021510178223252296, -0.0555587112903595, 0.07318026572465897, 0.004330773372203112, -0.0042013670317828655, 0.010141151957213879, -0.034756314009428024, 0.009915577247738838, 0.06412867456674576, 0.0022786634508520365, -0.24156267940998077, 0.04367256164550781, 0.07154063880443573, 0.025546297430992126, -0.005697209853678942, 0.07491083443164825, -0.005104037467390299, -0.0450051948428154, 0.013636514544487, 0.02945980429649353, 0.036159031093120575, 0.01327649224549532, 0.00784660317003727, -0.012263083830475807, 0.031570255756378174, 0.031198054552078247, 0.028529943898320198, -0.018697019666433334, 0.017072517424821854, -0.04060099646449089, -0.005184872075915337, -0.009887194260954857, 0.13264979422092438, -0.004205143544822931, 0.033132124692201614, 0.027062010020017624, -0.006402183789759874, -0.013247167691588402, 0.061118487268686295, -0.019989052787423134, 0.02508234605193138, -0.034267302602529526, 0.025562001392245293, 0.00674483273178339, 0.014313483610749245, -0.0883825272321701, -0.013330832123756409, 0.014801997691392899, 0.0013059884076938033, 0.03085314854979515, 0.020206185057759285, 0.008229238912463188, -0.0035107897128909826, 0.027535751461982727, 0.07492988556623459, 0.006960177794098854, 0.015246041119098663, -0.061809808015823364, -0.08290866017341614, -0.025980144739151, -0.03278844803571701, -0.0389542318880558, -0.007702486589550972, -0.012703199870884418, 0.03744363412261009, 0.06952512264251709, 0.0420709103345871, -0.015928450971841812, 0.001148470095358789, 0.012590494006872177, -0.03876790404319763, -0.001759184175170958, 0.11409972608089447, 0.02679380029439926, 0.05226562172174454 ]
[ 0.010729263536632061, 0.00782076083123684, -0.006172462832182646, 0.016293255612254143, -0.022099189460277557, 0.010459395125508308, -0.02440744824707508, -0.012168402783572674, -0.00003905705307261087, -0.01953725703060627, -0.00005502577914739959, 0.014710153453052044, 0.028982199728488922, 0.004356667399406433, 0.002120780060067773, -0.027715153992176056, 0.014582309871912003, -0.030034760013222694, 0.04708455502986908, 0.00991184264421463, -0.052669886499643326, -0.015619335696101189, -0.00155048503074795, -0.017343388870358467, -0.008981185965240002, 0.025872457772493362, -0.03286516293883324, 0.002734582172706723, 0.03383570536971092, -0.1199384406208992, -0.008228943683207035, 0.014174380339682102, -0.0018613857682794333, 0.007542816922068596, 0.01195862889289856, 0.01849927194416523, -0.0195748433470726, 0.03157235309481621, 0.015559053979814053, 0.008930818177759647, -0.00014236089191399515, -0.009234611876308918, 0.002226583193987608, 0.01683681458234787, -0.005570020992308855, 0.011696922592818737, -0.006907988339662552, -0.06015860289335251, -0.03471490740776062, -0.018992606550455093, -0.03350603207945824, -0.026954324916005135, -0.022217456251382828, 0.02323092892765999, 0.001965015195310116, -0.00474881287664175, 0.01693640649318695, -0.038871824741363525, 0.006560713984072208, -0.041126932948827744, -0.0007097285706549883, -0.04087335243821144, -0.018809719011187553, -0.03235338628292084, -0.019127989187836647, 0.011153513565659523, -0.006187160033732653, 0.00942579098045826, -0.03211933374404907, 0.0020139513071626425, -0.0025264169089496136, 0.0038256202824413776, -0.025610437616705894, -0.03987354785203934, 0.013220285065472126, 0.02952856943011284, 0.011534920893609524, -0.00320016429759562, 0.018649902194738388, -0.013058771379292011, -0.027084626257419586, 0.013008756563067436, -0.01217583753168583, -0.016286946833133698, 0.008398937061429024, -0.0199278537184, 0.029313264414668083, 0.005341583862900734, -0.003531055524945259, 0.00777265103533864, -0.002984273713082075, 0.0495656281709671, -0.000582527311053127, -0.02585662715137005, -0.09700244665145874, 0.0007380769238807261, -0.019480250775814056, 0.0016172180185094476, 0.01127641461789608, 0.856924831867218, 0.002954828320071101, 0.024147048592567444, 0.013405279256403446, 0.011100460775196552, -0.008544242940843105, -0.009095776826143265, 0.028277553617954254, -0.0024964625481516123, -0.013313818722963333, -0.005892968736588955, -0.01775497756898403, 0.04245619848370552, 0.008201435208320618, 0.011314883828163147, 0.026144860312342644, 0.035602618008852005, -0.004520757589489222, 0.019175924360752106, -0.012387190945446491, 0.003672761144116521, 0.06029527634382248, 0.017325086519122124, 0.053589921444654465, 0.0021250026766210794, 0.013031750917434692, -0.13697154819965363, -0.01095423474907875, -7.951521333541974e-33, 0.07241053134202957, -0.005332447588443756, -0.0314033143222332, -0.015403462573885918, 0.022018956020474434, -0.01957719773054123, 0.015042568556964397, 0.024705318734049797, 0.0011829748982563615, -0.039976172149181366, 0.006521039176732302, 0.00695943646132946, 0.02882741019129753, -0.03141040727496147, 0.03480016440153122, -0.03180711343884468, -0.02507544308900833, 0.03723784163594246, -0.009037706069648266, -0.012986277230083942, 0.016609475016593933, 0.015587901696562767, 0.0013638046802952886, -0.01416823174804449, 0.03556862846016884, 0.004558183252811432, 0.013777735643088818, 0.006005929317325354, -0.0033932537771761417, -0.04689176380634308, -0.04627734050154686, 0.0007673364598304033, -0.00778605230152607, -0.02368268370628357, -0.019503498449921608, -0.027232790365815163, -0.005882208235561848, -0.002846082206815481, 0.00484449090436101, -0.028439845889806747, -0.0012142726918682456, 0.00863370206207037, -0.03284252807497978, -0.017022015526890755, 0.0000029664781777682947, -0.005604787729680538, 0.0248489361256361, 0.028783107176423073, -0.0059046670794487, -0.01485565584152937, 0.013847878202795982, -0.003963881637901068, -0.004744198638945818, 0.002943499945104122, -0.018843336030840874, 0.0007868707762099802, -0.007245016284286976, 0.00865956675261259, -0.016719281673431396, -0.003088016528636217, 0.039111070334911346, 0.015956588089466095, -0.02405930496752262, 0.04566291719675064, 0.008917897939682007, -0.0012593790888786316, -0.011819839477539062, 0.03578503802418709, 0.030800268054008484, -0.020906638354063034, -0.04892974719405174, -0.008956484496593475, 0.01984378695487976, -0.011508836410939693, -0.006388222798705101, -0.0030657423194497824, -0.0030240316409617662, 0.01742113009095192, -0.02802737057209015, 0.007379936054348946, -0.024020008742809296, 0.004305580165237188, -0.03269467130303383, -0.038278065621852875, -0.0172282662242651, 0.02521132491528988, 0.039938509464263916, -0.00860891118645668, -0.031662434339523315, -0.010775045491755009, 0.031854044646024704, -0.00507355248555541, 0.03122260607779026, 0.0161422248929739, 0.006382510997354984, 7.989993794276449e-33, 0.01480036973953247, -0.008991949260234833, -0.017464356496930122, -0.004779683891683817, 0.07801400125026703, -0.040526170283555984, 0.009483308531343937, -0.008411374874413013, -0.061733052134513855, 0.010959506966173649, -0.03632943332195282, 0.005880930460989475, -0.035996876657009125, -0.003328505903482437, 0.02663104049861431, -0.02974366955459118, 0.04794081673026085, -0.0216465312987566, 0.0185670368373394, -0.012276794761419296, 0.025600075721740723, 0.005543629638850689, 0.02054544910788536, 0.002558261388912797, 0.03781862556934357, 0.059354979544878006, 0.017044153064489365, -0.0050970567390322685, 0.0029111485928297043, -0.008114387281239033, 0.0049152011051774025, -0.019207242876291275, 0.0033874891232699156, -0.015148023143410683, -0.01847294718027115, 0.015647882595658302, -0.014752755872905254, -0.014491448178887367, -0.03241901844739914, -0.002757101319730282, 0.022035744041204453, 0.019242411479353905, -0.017067600041627884, 0.04613535478711128, 0.015593287535011768, 0.04509187862277031, -0.007013433147221804, -0.005144394002854824, -0.028804730623960495, 0.014849563129246235, 0.008012143895030022, 0.023212594911456108, 0.008888090029358864, -0.025241350755095482, 0.014141297899186611, -0.018512843176722527, -0.008103045634925365, -0.03735103830695152, 0.00252462993375957, -0.0032249516807496548, 0.003032808192074299, 0.024008411914110184, -0.03163301572203636, -0.006386025808751583, -0.021467072889208794, 0.014877927489578724, -0.004717780742794275, 0.004563002847135067, -0.01895316317677498, 0.028751296922564507, -0.024780407547950745, 0.004657470155507326, -0.029797667637467384, 0.03645855933427811, 0.03417421504855156, 0.00015901433653198183, -0.03951794281601906, 0.02540052868425846, 0.0037883457262068987, 0.007113597355782986, -0.00917861983180046, 0.013640044257044792, -0.0304552149027586, -0.012374471873044968, -0.026855580508708954, 0.01134342048317194, -0.025073103606700897, 0.0633261501789093, -0.001718454179354012, -0.01103801280260086, -0.005963888950645924, -0.06612946838140488, 0.026355335488915443, 0.011992028914391994, 0.02207128517329693, -1.3696163314591558e-8, 0.027732357382774353, 0.03541943430900574, -0.02893766574561596, 0.02968066930770874, 0.01918216422200203, -0.03482759743928909, -0.02738083340227604, -0.007239855360239744, 0.024937892332673073, 0.02199130691587925, 0.031435705721378326, -0.0323704332113266, 0.00137584179174155, 0.02427365444600582, 0.01973993144929409, -0.02425932139158249, -0.004333370365202427, -0.028049597516655922, 0.03042493760585785, 0.003219976555556059, 0.021795623004436493, 0.03787750005722046, -0.04305635020136833, 0.017460297793149948, -0.01397407241165638, 0.012945182621479034, -0.013243873603641987, -0.06303802877664566, -0.02757928892970085, -0.022110652178525925, 0.01884157955646515, -0.01321488432586193, -0.04370710998773575, 0.04593464359641075, -0.020605241879820824, -0.03753950446844101, 0.05077070742845535, -0.01399342343211174, 0.03219395875930786, 0.026289086788892746, -0.01601814106106758, -0.01495378091931343, -0.02616484835743904, -0.034728165715932846, -0.022961443290114403, 0.041965749114751816, -0.05207911878824234, -0.012644091621041298, -0.022124160081148148, -0.038286369293928146, -0.0027653779834508896, -0.03162277117371559, 0.02898808754980564, 0.042433902621269226, 0.011385255493223667, 0.049076665192842484, 0.014388563111424446, 0.011564762331545353, -0.025702577084302902, -0.020263832062482834, 0.037255674600601196, 0.03205670416355133, -0.018378857523202896, -0.020649919286370277 ]
retrospectives-my-first-time-facilitating
https://markhneedham.com/blog/2010/11/15/retrospectives-my-first-time-facilitating
false
2010-11-12 15:43:37
Experiments in not using the mouse
[ "software-development" ]
[ "Software Development" ]
http://twitter.com/#!/priyaaank[Priyank] and I have been pairing a bit lately and we thought it'd be interesting to try and not use the mouse for anything that we had to do while pairing. == Editor Priyank uses http://gvim.en.softonic.com/[GVim] (http://yehudakatz.com/2010/07/29/everyone-who-tried-to-convince-me-to-use-vim-was-wrong/[Yehuda Katz] recommends http://macvim.org/[MacVim] if you're using Mac OS) so we already don't need to use the mouse at all when we're inside the editor. One annoying thing we found is that sometimes we wanted to copy stuff from the terminal into GVim and couldn't think of a good way to do that without selecting the text on the terminal with a mouse and then 'Ctrl-C'ing. A bit of Googling led us to the http://www.vergenet.net/~conrad/software/xsel/[xsel] command which takes standard input and makes it available on the clipboard. For example we've been using http://www.grymoire.com/Unix/Sed.html[sed] and wanted to copy the code we'd been spiking into a shell script: [source,text] ---- # code to replace backslashes with pipes in a file echo "sed -i 's/\\/|\g' some_file.text'" | xsel -bi ---- In OS X we have 'http://prefetch.net/blog/index.php/2009/02/13/pbcopy-pbpaste-in-os-x/[pbcopy]' which allows us to do the same type of thing. Once we've got that onto the clipboard we need to use 'Ctrl R' followed by '+' in order to paste into GVim. The next step is to get away from having to use the arrow keys which are annoyingly far away from all the others on a full sized keyboard but we're not there yet! == Browser We're using Chrome so Priyank has installed the http://vimium.github.com/[Vimium] extension which allows us to use Vim shortcuts inside Chrome. So far I've only been using the 'f' command which gives you key combinations to click on any of the links on the page but it's still much more fun than having to scroll around with the mouse! If anyone has any other tips or tools for us to experiment with that'd be cool to hear about - it was much more fun constraining ourselves slightly and seeing how we got on!
null
null
[ -0.010347055271267891, 0.029663361608982086, 0.008288752287626266, 0.027743790298700333, 0.0989924967288971, 0.021030325442552567, 0.023345263674855232, 0.05928308516740799, 0.00965119618922472, -0.039938852190971375, -0.033782895654439926, 0.004239998757839203, -0.06310868263244629, 0.007053045090287924, -0.018305299803614616, 0.08271006494760513, 0.05734863877296448, -0.010056652128696442, 0.00904125440865755, 0.0015405372250825167, 0.05810459703207016, 0.048461660742759705, 0.040144212543964386, 0.022303126752376556, 0.0016621630638837814, 0.0073193637654185295, -0.004362097941339016, -0.023248858749866486, -0.06714701652526855, -0.008855228312313557, 0.04491565749049187, -0.007500344887375832, 0.003032203996554017, -0.020787442103028297, 0.024633444845676422, -0.008137322962284088, -0.0419122613966465, 0.026550404727458954, 0.02223929762840271, 0.026736855506896973, -0.058055248111486435, 0.046145129948854446, 0.0035273979883641005, 0.022297026589512825, -0.02213583141565323, 0.006523297168314457, -0.06330849230289459, 0.013495896011590958, -0.003971241880208254, 0.00244887568987906, -0.07170463353395462, 0.04018722474575043, 0.003926983568817377, -0.010323850437998772, -0.024381397292017937, 0.023158365860581398, 0.03291463479399681, -0.05337947979569435, 0.02556154690682888, -0.01564379781484604, -0.0023782518692314625, 0.0009381826967000961, 0.0022036079317331314, 0.0483042448759079, -0.009145544841885567, -0.0310078002512455, 0.025575006380677223, 0.018762093037366867, -0.0584678128361702, -0.015970081090927124, 0.02404833398759365, 0.03890347108244896, -0.022527510300278664, -0.027837887406349182, 0.06486885994672775, -0.027920715510845184, 0.009578322991728783, 0.048522207885980606, 0.03643517568707466, 0.05890504643321037, -0.022271476686000824, 0.014547566883265972, 0.01290515623986721, 0.03590570390224457, -0.036042600870132446, -0.04032048583030701, 0.00545922527089715, 0.0016698024701327085, -0.06505440920591354, 0.05346443131566048, 0.006106118205934763, -0.05988004058599472, 0.018143966794013977, 0.018280906602740288, -0.0006942930049262941, 0.006286405026912689, 0.03399550914764404, 0.00014103046851232648, -0.0011445882264524698, 0.001820956589654088, -0.04585466533899307, -0.020539214834570885, -0.002491643652319908, 0.01875738985836506, -0.10337937623262405, -0.030797617509961128, -0.023329373449087143, 0.027641067281365395, 0.028343848884105682, -0.02183086983859539, 0.007045384496450424, -0.0035470009315758944, 0.014810234308242798, -0.013550001196563244, -0.06520317494869232, 0.07321511209011078, 0.0009650004212744534, -0.042485352605581284, 0.014698153361678123, 0.01044230442494154, 0.05420515686273575, 0.05770738050341606, -0.0030403577256947756, 0.0780089944601059, 0.03281420096755028, 0.006101343315094709, 0.009872200898826122, 0.029959555715322495, -0.012599448673427105, -0.06594962626695633, 0.014970844611525536, 0.07342585176229477, -0.00804025400429964, -0.0057772244326770306, 0.014707297086715698, -0.01697498746216297, 0.015521856024861336, -0.021478138864040375, 0.0378086231648922, 0.05708606541156769, 0.0023013621103018522, -0.025752119719982147, -0.013807362876832485, 0.017619142308831215, 0.03571302443742752, -0.0021476661786437035, -0.01237604208290577, -0.015552904456853867, -0.05351351201534271, 0.0075789159163832664, 0.005113642662763596, -0.005011510569602251, 0.035307615995407104, -0.039564523845911026, 0.006080510560423136, 0.07744570076465607, 0.020500896498560905, 0.014279310591518879, -0.03135376051068306, 0.026005929335951805, 0.05185437574982643, 0.04354139044880867, -0.0031056117732077837, 0.028686733916401863, -0.006222620606422424, 0.0004823874623980373, 0.009661577641963959, 0.02949387952685356, -0.01208378653973341, 0.022976865991950035, -0.03818659484386444, -0.04276857525110245, 0.06571059674024582, -0.0557713508605957, -0.01616818830370903, 0.052835240960121155, 0.0853038877248764, 0.04604334756731987, 0.044148366898298264, 0.008008327335119247, -0.09533320367336273, 0.04724443331360817, -0.002999346237629652, 0.03918682783842087, 0.0064211622811853886, -0.01764262281358242, 0.05461934953927994, 0.019143566489219666, -0.00964808277785778, 0.016372554004192352, -0.07847393304109573, -0.08759837597608566, -0.02148793637752533, 0.0020233537070453167, 0.053881559520959854, -0.04026869311928749, 0.0022306886967271566, 0.05506068840622902, 0.0287131629884243, 0.04304058849811554, -0.011860613711178303, -0.010080905631184578, 0.020889056846499443, -0.06622286140918732, -0.05049153417348862, 0.04351937770843506, 0.0039606159552931786, -0.01581030711531639, -0.021017730236053467, 0.022446701303124428, 0.003100642468780279, 0.004457887262105942, 0.04481682926416397, -0.010778204537928104, 0.0481400303542614, 0.010487277992069721, 0.04428240284323692, -0.029640424996614456, 0.020441200584173203, -0.022631201893091202, -0.0260853860527277, -0.001800591591745615, -0.0025761788710951805, 0.0266901683062315, 0.01357396598905325, 0.12039964646100998, 0.05738769471645355, -0.02573784813284874, -0.03247630596160889, 0.003988570999354124, -0.004147666972130537, -0.058989301323890686, -0.015407347120344639, -0.0058624595403671265, -0.025936907157301903, 0.005952003877609968, -0.061993345618247986, -0.0314435139298439, 0.012136786244809628, -0.035221025347709656, -0.01178232952952385, 0.06412281841039658, -0.01797468028962612, 0.05125519633293152, -0.021565908566117287, -0.007051979657262564, -0.008086993359029293, -0.014224858954548836, -0.033368006348609924, 0.002965641673654318, 0.0034148232080042362, -0.004549588542431593, 0.024884743615984917, -0.04352742061018944, -0.005371903069317341, -0.01220414787530899, -0.036304038017988205, 0.016717810183763504, 0.03970644995570183, 0.0635361447930336, -0.010096035897731781, 0.0608382411301136, -0.005162791348993778, 0.030761849135160446, -0.0197734534740448, -0.050777778029441833, -0.0483345203101635, 0.00027616467559710145, -0.0014016745844855905, 0.010125980712473392, -0.01448238454759121, 0.021780874580144882, -0.01077814307063818, -0.01583447866141796, 0.026848752051591873, -0.013880752958357334, 0.024127904325723648, 0.02774881385266781, -0.011614641174674034, -0.03623213618993759, -0.022786254063248634, 0.04087098315358162, -0.04343568906188011, 0.012475309893488884, 0.011837806552648544, -0.043431345373392105, 0.029839104041457176, -0.07883436232805252, -0.042808257043361664, -0.018619954586029053, -0.010319470427930355, 0.024846870452165604, -0.009809442795813084, 0.033214256167411804, 0.020596375688910484, -0.008017729967832565, 0.026664411649107933, 0.00531739229336381, 0.001631381455808878, 0.039295561611652374, 0.019789673388004303, 0.031240122392773628, 0.03491780161857605, -0.018918676301836967, -0.008800207637250423, -0.03654395043849945, 0.03744513913989067, -0.022982453927397728, -0.2924817204475403, 0.040787022560834885, 0.0036411720793694258, -0.05137936770915985, 0.004699979443103075, -0.029853882268071175, 0.020487990230321884, -0.07631763070821762, -0.016557347029447556, 0.018853716552257538, -0.03291860967874527, -0.038040485233068466, -0.007749683689326048, 0.0030521228909492493, 0.006693524308502674, 0.0007610421744175255, 0.012282379902899265, -0.07399197667837143, 0.015839893370866776, 0.014973151497542858, 0.011059221811592579, -0.07027427107095718, 0.012669747695326805, 0.04961872100830078, 0.0450512133538723, 0.06760254502296448, -0.050173621624708176, 0.0221396554261446, -0.04732269421219826, 0.0008390541188418865, -0.019947336986660957, 0.005120461340993643, -0.002996404655277729, 0.006647139322012663, -0.006435681600123644, 0.002481156960129738, 0.07460934668779373, -0.021024437621235847, 0.03799112141132355, 0.01106270868331194, 0.0053068408742547035, -0.016086535528302193, 0.0052781375125050545, -0.016442010179162025, 0.051880817860364914, 0.00012700700608547777, -0.05974452942609787, -0.0025307827163487673, -0.012277230620384216, 0.07657605409622192, -0.03915896639227867, -0.05416468530893326, -0.019888954237103462, 0.047603707760572433, 0.0281138326972723, -0.0038571006152778864, -0.030833188444375992, -0.010165976360440254, -0.016712194308638573, -0.04876592382788658, -0.012537045404314995, -0.029029563069343567, -0.04891455918550491, -0.05703790485858917, 0.02284616231918335, -0.058980729430913925, -0.06327943503856659, -0.02303013578057289, 0.09110242128372192, 0.016733864322304726, -0.037352271378040314, -0.00163080426864326, -0.005897268187254667, -0.09573033452033997, -0.004328325856477022, 0.009104381315410137, -0.06882758438587189, 0.009630433283746243, 0.028202466666698456, 0.04099603369832039, -0.052990496158599854, -0.04226060211658478, 0.024483170360326767, 0.013673316687345505, 0.01123552955687046, -0.04398791864514351, 0.01867804303765297, 0.014598234556615353, 0.0005356532637961209, 0.01073414459824562, 0.07312070578336716, -0.022399477660655975, -0.059177666902542114, -0.023122437298297882, 0.005757157690823078, -0.03261702507734299, 0.035580649971961975, 0.0056560761295259, 0.028282366693019867, 0.0316130630671978, 0.025077981874346733, -0.052769485861063004, 0.03814750537276268, -0.04233653470873833, -0.0046654860489070415, -0.014444274827837944, -0.06829745322465897, 0.0018777577206492424, 0.036364782601594925, 0.02321314439177513, -0.03741778805851936, -0.051131390035152435, 0.028865279629826546, -0.07215353846549988, -0.02815735898911953, -0.007337301503866911, 0.02726304717361927, 0.033993784338235855, -0.002068114699795842, -0.0379762127995491, -0.0447547473013401, 0.002681524259969592, -0.00510783214122057, -0.0019376728450879455, -0.0445285327732563, -0.00920717604458332, -0.007317970972508192, 0.009278555400669575, 0.013154174201190472, 0.01290469616651535, -0.029002126306295395, 0.023232905194163322, 0.038111940026283264, -0.03466575965285301, 0.027150703594088554, -0.022296665236353874, -0.04646998271346092, -0.03040987066924572, 0.019167490303516388, 0.00011974927474511787, -0.030724583193659782, 0.01994306407868862, -0.018021073192358017, 0.01383036095649004, 0.023627296090126038, 0.012559866532683372, 0.0488944947719574, -0.017789240926504135, 0.017280271276831627, 0.027588002383708954, 0.0008723697392269969, -0.0574372224509716, 0.017525991424918175, -0.013047534041106701, -0.02982548624277115, -0.009330715984106064, 0.032968420535326004, -0.004103667102754116, -0.022399360314011574, -0.00815573986619711, 0.00931571051478386, -0.022462593391537666, -0.011103939265012741, -0.0008284941432066262, -0.008609370328485966, 0.05710821598768234, -0.0026752359699457884, 0.01984155736863613, -0.0027982674073427916, 0.029452838003635406, 0.04236597940325737, 0.04752000793814659, -0.05247065797448158, 0.010228730738162994, 0.003025331534445286, -0.012437977828085423, -0.006820045877248049, 0.02782553993165493, 0.034712113440036774, 0.02906057983636856, 0.013007743284106255, -0.030132979154586792, 0.02079096995294094, 0.026543403044342995, 0.051648229360580444, -0.009380107745528221, -0.00932138878852129, 0.00020636609406210482, -0.012842491269111633, -0.01949024200439453, -0.024817422032356262, -0.011124706827104092, -0.014222808182239532, -0.02110361121594906, -0.043672386556863785, -0.07598404586315155, 0.036079246550798416, 0.044648993760347366, 0.00727331405505538, 0.03431970253586769, -0.002778514986857772, 0.00704260403290391, -0.0222758911550045, 0.049115996807813644, 0.0546371191740036, -0.06297148764133453, 0.0034120860509574413, -0.008529813028872013, -0.010130251757800579, 0.004099771846085787, 0.01779226027429104, -0.029690729454159737, -0.00917011871933937, -0.027664992958307266, 0.0302288681268692, -0.03573096916079521, -0.015874644741415977, -0.03724898025393486, 0.011350448243319988, -0.010827168822288513, -0.026689887046813965, -0.001061779330484569, -0.0032717869617044926, 0.014658743515610695, -0.04034635052084923, 0.011106000281870365, -0.025085987523198128, 0.012280077673494816, 0.05436475947499275, -0.03441031649708748, 0.03340332210063934, -0.020577356219291687, 0.02442799136042595, 0.04640248790383339, -0.028054725378751755, -0.000026944839191855863, -0.04002498835325241, -0.009758107364177704, -0.010460429824888706, 0.043170906603336334, 0.014940356835722923, -0.03332237899303436, -0.07149706035852432, 0.013974427245557308, -0.035640351474285126, -0.004229779355227947, -0.04042705520987511, -0.030491502955555916, 0.03544975072145462, 0.05429136008024216, 0.01814953051507473, 0.01971397176384926, -0.028499994426965714, -0.02432403154671192, 0.014684327878057957, -0.06517341732978821, -0.04999749734997749, 0.01159142330288887, -0.05747165530920029, 0.027890443801879883, 0.019241981208324432, 0.025057774037122726, -0.05003843829035759, 0.03760125860571861, 0.018911276012659073, -0.012612815946340561, 0.024283483624458313, -0.010050908662378788, 0.029364613816142082, -0.03288586065173149, -0.007734682410955429, -0.09539750218391418, 0.013294989243149757, 0.00043305798317305744, -0.026498129591345787, -0.047162316739559174, 0.032904136925935745, -0.025896582752466202, 0.01872919499874115, -0.058542121201753616, -0.032283391803503036, 0.04778168722987175, -0.004748825449496508, -0.002536076121032238, 0.007612935733050108, -0.07380879670381546, 0.04360567405819893, 0.012915607541799545, -0.03029789961874485, -0.03128334879875183, -0.01085404958575964, 0.06113000586628914, 0.005363841541111469, 0.04522419720888138, -0.03560706600546837, -0.025905655696988106, 0.07256195694208145, 0.011097701266407967, -0.010736159980297089, 0.014554633758962154, -0.0121829304844141, 0.02840634621679783, 0.036299124360084534, 0.016366304829716682, 0.010320065543055534, -0.019531231373548508, -0.03198100998997688, -0.06372442096471786, -0.0074617029167711735, 0.00013628289161715657, -0.018435640260577202, -0.026829630136489868, 0.05763288959860802, 0.019610771909356117, -0.023216698318719864, -0.061266422271728516, 0.04633487015962601, -0.05144045501947403, 0.0036111720837652683, -0.04949187859892845, 0.004810009617358446, -0.05502981320023537, 0.03518872708082199, 0.00407940661534667, -0.0025602884124964476, 0.06756816804409027, 0.019744955003261566, 0.011020042933523655, -0.00046765251317992806, 0.07552853226661682, 0.07707154750823975, 0.06465833634138107, 0.03194174915552139, 0.05108578875660896, -0.03827312961220741, -0.045725177973508835, 0.013744613155722618, 0.004272887017577887, -0.019371066242456436, -0.02209976315498352, 0.016036462038755417, 0.0754363015294075, -0.05507748946547508, 0.0783410519361496, -0.011339439079165459, -0.020399343222379684, 0.0004755133995786309, 0.005132108926773071, 0.00833321362733841, 0.05815047398209572, 0.009296518750488758, 0.0036213190760463476, -0.022963818162679672, -0.015890661627054214, 0.0515374056994915, -0.03181666135787964, -0.008681802079081535, 0.004493479151278734, -0.011203191243112087, 0.028371283784508705, -0.018467582762241364, 0.03159567713737488, 0.08201948553323746, -0.040687914937734604, 0.02873191609978676, 0.030750976875424385, 0.050040386617183685, 0.008701758459210396, 0.05736042931675911, -0.025218989700078964, -0.00389490625821054, 0.005963449366390705, -0.009946484118700027, -0.014305667020380497, -0.023238833993673325, -0.010618510656058788, 0.02773091569542885, -0.015625780448317528, -0.0025645189452916384, 0.03506461903452873, -0.010767435654997826, -0.013434816151857376, -0.052224136888980865, -0.04588201269507408, -0.041326854377985, -0.027662327513098717, -0.02313176728785038, 0.014261879958212376, 0.006323504727333784, -0.038832712918519974, -0.01142078172415495, -0.04717479646205902, -0.040352120995521545, -0.005726955831050873, -0.048401203006505966, -0.04216138646006584, 0.01402224786579609, 0.01777777448296547, -0.02163892611861229, 0.048433076590299606, 0.057873908430337906, -0.008614873513579369, -0.01871415786445141, -0.021951043978333473, 0.006856999825686216, 0.036338601261377335, -0.01461332943290472, -0.01553419791162014, -0.0912153348326683, 0.030543917790055275, 0.031163658946752548, 0.003273757640272379, -0.06480379402637482, 0.027640018612146378, 0.0022691150661557913, -0.011056714691221714, 0.06080104783177376, -0.031817708164453506, 0.03526030108332634, -0.04279809817671776, -0.008884492330253124, -0.02529143914580345, -0.0005533086368814111, 0.045184001326560974, -0.0013499932829290628, 0.09172545373439789, 0.029848895967006683, 0.0070571000687778, -0.03368435800075531, -0.02037864923477173, 0.0036103427410125732, 0.00842536985874176, -0.019898703321814537, -0.020783405750989914, -0.029501283541321754, -0.08978269249200821, -0.04384402558207512, 0.0157993882894516, -0.009226994588971138, -0.052357062697410583, 0.02526669390499592, -0.0016801031306385994, -0.029506705701351166, 0.05445448309183121, -0.053290680050849915, -0.03371692821383476, -0.01859569549560547, -0.025286300107836723, -0.012034021317958832, 0.023080095648765564, -0.015999644994735718, -0.0034613171592354774, 0.024443933740258217, -0.03273053839802742, 0.00013138368376530707, 0.010070182383060455, 0.008789469487965107, 0.018253380432724953, 0.012371929362416267, 0.015138661488890648 ]
[ -0.08267492055892944, -0.017528356984257698, -0.006969383452087641, -0.046015314757823944, 0.01214561052620411, -0.060071419924497604, -0.0041976794600486755, 0.02501721680164337, -0.005056628491729498, -0.018647266551852226, -0.023186402395367622, -0.032510869204998016, 0.018680701032280922, -0.011321049183607101, 0.09874684363603592, 0.00009396272071171552, -0.004125736188143492, -0.06973309814929962, 0.0035255991388112307, 0.01592164859175682, -0.031843192875385284, -0.0500708669424057, -0.00437227264046669, -0.03444531559944153, -0.012024812400341034, 0.026124129071831703, 0.03078339621424675, -0.0324760377407074, 0.013284050859510899, -0.20386868715286255, 0.012853582389652729, 0.015141304582357407, 0.03474155440926552, -0.02202366665005684, -0.03055129013955593, 0.04432370513677597, 0.01478920690715313, 0.005826909095048904, -0.020116593688726425, 0.00883004255592823, 0.03331049159169197, 0.0006796375964768231, -0.06390620768070221, -0.003656956134364009, 0.08389364928007126, -0.022005626931786537, -0.0013437197776511312, -0.06572949141263962, 0.024865128099918365, 0.010652554221451283, -0.04506351426243782, -0.011132272891700268, -0.011836758814752102, -0.04792431369423866, -0.012477857060730457, 0.028590278699994087, 0.016255998983979225, 0.0350220650434494, 0.01633041724562645, 0.026381975039839745, -0.0061501809395849705, -0.022308196872472763, -0.12444964796304703, 0.11828599870204926, 0.029743773862719536, 0.02712899073958397, 0.0021030548959970474, -0.0316321961581707, -0.015433854423463345, 0.08056790381669998, -0.003571763401851058, -0.006451176013797522, -0.04359383136034012, 0.02640853263437748, -0.007903381250798702, -0.02962312661111355, 0.00865613017231226, 0.02447628229856491, 0.023067578673362732, -0.04522036761045456, -0.025148630142211914, -0.0002319493651157245, -0.011331317946314812, -0.009358911775052547, -0.023884056136012077, 0.020634779706597328, -0.01772596314549446, 0.054099585860967636, -0.0002958226832561195, -0.0038605353329330683, 0.003288134466856718, -0.03474653139710426, 0.045711759477853775, -0.008676878176629543, -0.09653040021657944, -0.015840062871575356, 0.03624464571475983, 0.017700696364045143, -0.06532659381628036, 0.4514879882335663, -0.019077567383646965, -0.01793658919632435, 0.06064992770552635, 0.001635114778764546, 0.03952772915363312, 0.008906141854822636, 0.011812388896942139, -0.043650150299072266, 0.0079290010035038, 0.0012263093376532197, 0.0310808215290308, -0.005595867987722158, 0.07339398562908173, -0.0026634663809090853, 0.03089485689997673, 0.0187559612095356, 0.016120856627821922, 0.019553177058696747, 0.01709013618528843, -0.0025745441671460867, -0.0229457039386034, -0.007713576313108206, 0.028087111189961433, 0.020638469606637955, 0.06202882528305054, -0.07137313485145569, -0.006809205748140812, 0.04361306130886078, 0.018603375181555748, 0.004576878156512976, 0.05097045376896858, -0.0425049252808094, -0.026784459128975868, 0.02129899151623249, 0.007311820052564144, 0.022954322397708893, 0.03842396289110184, -0.051954273134469986, 0.024308500811457634, -0.005024658981710672, -0.007160102017223835, -0.018300561234354973, 0.046665024012327194, 0.0034058792516589165, 0.0004315089317969978, 0.07988059520721436, 0.014549432322382927, -0.054121751338243484, -0.017355676740407944, -0.019296089187264442, 0.024493936449289322, 0.01246973779052496, 0.0013571131275966763, -0.03309110924601555, 0.019399331882596016, 0.019752297550439835, 0.09105540812015533, 0.004357039928436279, -0.06489996612071991, 0.005741792730987072, -0.01671925000846386, -0.03311587870121002, -0.0588405504822731, 0.035498086363077164, 0.07425586879253387, -0.06753365695476532, -0.024182366207242012, 0.05019516125321388, 0.0021602993365377188, -0.04949476569890976, -0.010875767096877098, 0.007863210514187813, -0.032396793365478516, -0.008660671301186085, 0.04257439449429512, -0.037520118057727814, -0.03938253968954086, 0.020544130355119705, 0.04083237797021866, 0.010525178164243698, -0.017911411821842194, -0.0048027015291154385, -0.03588919714093208, -0.014451434835791588, -0.029612736776471138, -0.07427471876144409, -0.016098182648420334, -0.016904236748814583, -0.014612349681556225, -0.014782188460230827, 0.016947105526924133, -0.021426428109407425, -0.045169953256845474, 0.05721697956323624, -0.022382827475667, -0.01794050820171833, 0.000006430259873013711, -0.026438351720571518, 0.002209694590419531, -0.03860776871442795, -0.010309742763638496, 0.005431711208075285, -0.03591753542423248, 0.03107486478984356, -0.04308514669537544, 0.034300412982702255, 0.03900766000151634, -0.03287447988986969, 0.09680021554231644, 0.03758668899536133, -0.03527309373021126, -0.03024807944893837, 0.028802553191781044, 0.0015041085425764322, -0.026942096650600433, -0.033076245337724686, -0.01409853808581829, 0.015217447653412819, 0.03365181386470795, 0.03800572454929352, -0.012177002616226673, 0.007169993594288826, -0.03149057924747467, -0.32498258352279663, -0.04802102595567703, -0.024999011307954788, 0.017492111772298813, 0.0005740458145737648, -0.0800025537610054, 0.02471303381025791, -0.0212994571775198, 0.005384025163948536, -0.018309887498617172, 0.09543205797672272, -0.028979947790503502, 0.021605797111988068, -0.08920781314373016, -0.021915562450885773, 0.047766122967004776, -0.002525484189391136, -0.022591160610318184, 0.007990110665559769, 0.01144355908036232, -0.015793167054653168, 0.008557282388210297, -0.050040993839502335, -0.01726309210062027, -0.02153308317065239, -0.012026514858007431, 0.1078639104962349, 0.05317963287234306, 0.07957372069358826, -0.015130245126783848, 0.04961352422833443, 0.042043302208185196, 0.009564157575368881, -0.11536657810211182, -0.024298304691910744, 0.04684189334511757, 0.024639662355184555, -0.01859341375529766, 0.040015604346990585, -0.02273797243833542, -0.07839987426996231, 0.015796292573213577, -0.054746512323617935, -0.06166257709264755, -0.05291477590799332, 0.007065277546644211, -0.0174133088439703, -0.02653542533516884, -0.025783978402614594, 0.08117276430130005, 0.020183725282549858, -0.0024813490454107523, -0.015937497839331627, -0.015916472300887108, -0.02028908208012581, -0.03810932859778404, -0.06512748450040817, -0.006385308224707842, 0.008117636665701866, -0.018802138045430183, 0.04657569155097008, 0.06406784802675247, 0.01060339342802763, -0.1094207689166069, -0.01608879491686821, 0.027665676549077034, 0.016565117985010147, 0.003260804805904627, 0.08957108110189438, 0.00012648872507270426, -0.010392383672297001, 0.08839810639619827, 0.04426499828696251, 0.03608442842960358, 0.02129771187901497, 0.017724014818668365, 0.002712331246584654, 0.057949457317590714, -0.02372351475059986, -0.011001445353031158, 0.009671323001384735, 0.013926789164543152, 0.044071704149246216, -0.016803687438368797, -0.012001117691397667, -0.007787719368934631, -0.007552098948508501, -0.03317355737090111, 0.06376462429761887, -0.02080760896205902, -0.042434222996234894, -0.004676301963627338, -0.003634491004049778, -0.07114076614379883, 0.06468036770820618, -0.0025199460797011852, -0.2546972632408142, 0.022049611434340477, 0.07174436748027802, 0.08723495900630951, -0.01315273903310299, -0.012126362882554531, 0.003138220403343439, -0.09046556055545807, -0.03950527310371399, 0.0299419853836298, 0.021562471985816956, 0.03796081617474556, -0.0383075550198555, -0.0006867473130114377, 0.04884963482618332, -0.00907981675118208, 0.05160820484161377, -0.0009351104963570833, 0.0018824978033080697, -0.021262409165501595, 0.01465761661529541, -0.01744031347334385, 0.1574859768152237, -0.012054454535245895, -0.0036643596831709146, 0.028608335182070732, -0.013336327858269215, 0.004874306730926037, 0.06855343282222748, 0.023257801309227943, -0.008500664494931698, -0.011917626485228539, 0.020030150189995766, 0.020128635689616203, 0.05386592820286751, -0.07458126544952393, -0.04000357165932655, 0.036304764449596405, 0.03599328175187111, 0.021329890936613083, -0.012631085701286793, 0.04791564121842384, -0.027147077023983, -0.0008847715216688812, 0.05864671245217323, -0.036929674446582794, 0.02486378327012062, 0.015020955353975296, -0.05074690282344818, -0.012730611488223076, -0.03739091008901596, -0.048146430402994156, 0.013037100434303284, 0.004502253141254187, 0.028104586526751518, 0.04676082357764244, 0.02377711609005928, -0.016050219535827637, 0.02452315203845501, 0.051300257444381714, 0.0075468341819942, -0.021253924816846848, 0.13210542500019073, 0.02635449916124344, 0.04983092471957207 ]
[ 0.001755179837346077, 0.0015262503875419497, -0.03215905278921127, 0.007525295484811068, -0.018235426396131516, 0.0009980705799534917, 0.017674867063760757, 0.024600736796855927, -0.005585703998804092, 0.001392961130477488, 0.025189761072397232, 0.024209631606936455, 0.012395398691296577, -0.048086680471897125, 0.022625813260674477, -0.01099676825106144, -0.007447101175785065, -0.016921566799283028, 0.018821783363819122, 0.026907119899988174, -0.039693161845207214, 0.0036250806879252195, 0.017247464507818222, 0.0010981062659993768, -0.014229911379516125, 0.007384836673736572, 0.01194350142031908, -0.01606827788054943, 0.04199784994125366, -0.10784819722175598, -0.04253283888101578, -0.03012305125594139, 0.02510019764304161, -0.0013801079476252198, -0.024504084140062332, 0.00626428984105587, 0.012568650767207146, -0.0021373750641942024, -0.048300597816705704, -0.05481741204857826, -0.008158771321177483, -0.03477811440825462, 0.005025925114750862, 0.02829578146338463, 0.014879836700856686, -0.012827035039663315, -0.016514472663402557, -0.039070069789886475, -0.03417856618762016, 0.0340224914252758, -0.05043021962046623, -0.0011760762427002192, -0.047190215438604355, 0.015207309275865555, 0.007510544266551733, 0.02788623981177807, -0.037432216107845306, -0.06427952647209167, 0.046805575489997864, 0.01094287633895874, -0.017271611839532852, 0.025626270100474358, -0.05235523730516434, -0.02865966036915779, -0.008864987641572952, -0.017175864428281784, 0.02119809202849865, 0.00535952253267169, -0.015646042302250862, 0.020712535828351974, 0.0009310676250606775, -0.024360619485378265, -0.01850253902375698, 0.000736045534722507, -0.06315765529870987, 0.01248157862573862, -0.012859059497714043, -0.02355106920003891, 0.006891130469739437, -0.030286341905593872, -0.02154918573796749, 0.0008661570609547198, 0.03222621977329254, 0.0730552226305008, 0.038761746138334274, 0.014043748378753662, -0.019326437264680862, 0.004663318861275911, -0.008606990799307823, 0.0013665519654750824, -0.02161431312561035, 0.0343010313808918, 0.01337683480232954, 0.004683150909841061, -0.05667785927653313, -0.0034499557223170996, 0.01314836647361517, -0.0013432878768071532, -0.0074219368398189545, 0.8216536045074463, -0.044770482927560806, 0.04501973092556, 0.044541697949171066, 0.0123329171910882, 0.0022371525410562754, 0.016918126493692398, 0.045456815510988235, -0.02954329364001751, 0.03509657829999924, -0.026469890028238297, 0.002979047829285264, -0.03992779552936554, 0.013643983751535416, 0.0036146887578070164, 0.032046832144260406, 0.023840874433517456, 0.010690618306398392, 0.0048386696726083755, 0.04539300873875618, 0.017614534124732018, -0.008756370283663273, -0.009040584787726402, -0.0028018734883517027, -0.004949674010276794, 0.027895106002688408, -0.16473360359668732, 0.03626076504588127, -6.480845657548825e-33, 0.01790466532111168, -0.023990653455257416, 0.011838441714644432, -0.02599974162876606, 0.010798485949635506, 0.036885909736156464, 0.023811835795640945, -0.04502611979842186, -0.023691851645708084, -0.031428538262844086, -0.016677625477313995, -0.03730137646198273, -0.008037971332669258, -0.0025414032861590385, -0.004535238724201918, 0.002219628542661667, 0.030534252524375916, 0.030299358069896698, -0.030508389696478844, 0.008613518439233303, 0.048932965844869614, 0.04803108051419258, 0.010440020821988583, -0.003941364586353302, -0.013679851777851582, 0.028384193778038025, -0.0324053056538105, 0.004372141789644957, 0.01918533630669117, -0.036998432129621506, -0.043686043471097946, 0.03159334510564804, -0.013637684285640717, -0.02101992629468441, -0.009650071151554585, -0.0374484658241272, -0.02356194518506527, -0.014383026398718357, -0.00989906582981348, 0.015307694673538208, -0.058464933186769485, -0.018538713455200195, -0.03706500679254532, -0.06249084323644638, -0.01063749473541975, -0.025494515895843506, -0.014289774931967258, 0.020454466342926025, -0.005023636389523745, -0.010629584081470966, 0.015783680602908134, 0.0332520566880703, -0.048248711973428726, 0.023016639053821564, -0.05408526211977005, 0.02267070859670639, 0.011987615376710892, 0.01985114999115467, -0.014397170394659042, 0.02358747459948063, 0.03140353038907051, 0.02863205224275589, 0.014865301549434662, 0.00415849918499589, 0.02686798945069313, 0.004676223732531071, -0.009348902851343155, -0.017396869137883186, -0.010168327949941158, 0.02464350126683712, -0.05032997578382492, 0.011190672405064106, -0.015006490051746368, -0.04373776167631149, 0.023958224803209305, -0.03844873607158661, -0.0017547484021633863, -0.013837668113410473, 0.005148617550730705, 0.031003136187791824, 0.011254050768911839, -0.005334141198545694, 0.0022523156367242336, -0.019510716199874878, -0.023822976276278496, -0.023668529465794563, 0.014810033142566681, 0.008326749317348003, -0.044075340032577515, 0.058579593896865845, 0.03665734827518463, 0.03060111775994301, 0.008577283471822739, -0.03604775294661522, -0.029534993693232536, 6.0081690935076136e-33, -0.003381791990250349, 0.01804537884891033, 0.013550356030464172, 0.056432094424963, 0.034970205277204514, 0.04435904324054718, 0.015643445774912834, -0.04011071100831032, -0.04550289362668991, 0.015343530103564262, -0.017116444185376167, 0.034389130771160126, 0.0003211827715858817, 0.01720433123409748, 0.06467325985431671, 0.03677035868167877, 0.002057410543784499, 0.013595642521977425, -0.00797057244926691, -0.07102798670530319, 0.045546967536211014, -0.007932115346193314, 0.05206628143787384, 0.03523741289973259, 0.024751270189881325, -0.016660116612911224, 0.038453608751297, 0.02141636423766613, -0.010510478168725967, 0.014285915531218052, -0.01744038425385952, 0.021375620737671852, -0.010342853143811226, -0.01788383163511753, 0.015162580646574497, 0.05049469321966171, -0.035521239042282104, -0.01024022325873375, 0.012052564881742, -0.00399583438411355, 0.013021044433116913, -0.0034889825619757175, -0.009535146877169609, 0.014780610799789429, 0.010616574436426163, 0.03159002214670181, 0.0221110749989748, 0.004319256171584129, -0.0021806322038173676, 0.013361670076847076, 0.054328929632902145, 0.04004666209220886, 0.0033576684072613716, -0.02428252436220646, -0.03171288222074509, -0.05514019727706909, -0.014722691848874092, 0.014153693802654743, -0.024312831461429596, -0.02710053324699402, -0.03065037541091442, -0.009265022352337837, -0.005371274426579475, 0.008585643023252487, -0.006035755854099989, -0.03419758379459381, 0.005472574848681688, 0.03336204215884209, -0.0026983493007719517, 0.009081965312361717, 0.03504166007041931, -0.021138807758688927, 0.0019286723108962178, 0.02716519869863987, -0.0026399330236017704, -0.007927864789962769, 0.00702280318364501, -0.030024869367480278, 0.003968219738453627, -0.008786378428339958, 0.06531799584627151, 0.056947190314531326, 0.05854879692196846, 0.03661173954606056, -0.026696518063545227, 0.06406140327453613, -0.009836540557444096, 0.053239766508340836, 0.01853725127875805, -0.003375642467290163, -0.0029563033021986485, -0.013824254274368286, -0.00623081112280488, -0.012617558240890503, 0.011821446008980274, -1.2408349014947362e-8, -0.06731986999511719, -0.007182497531175613, -0.051679592579603195, 0.022765448316931725, 0.0189612228423357, 0.010144327767193317, -0.03450033813714981, 0.0006732236361131072, 0.0021491667721420527, 0.0003026521881110966, 0.03656642884016037, -0.024498194456100464, -0.010806354694068432, 0.03361130878329277, 0.025088628754019737, -0.002003380563110113, 0.020295660942792892, -0.015606148168444633, 0.010113396681845188, -0.011130723170936108, -0.007690045516937971, 0.03026857227087021, -0.013352981768548489, 0.020724521949887276, -0.01123281754553318, -0.003732629120349884, 0.017180338501930237, -0.06191524118185043, -0.020893944427371025, 0.017506850883364677, 0.019406035542488098, -0.040925804525613785, -0.06687581539154053, 0.024527987465262413, -0.022793909534811974, -0.044652584940195084, 0.015213754959404469, 0.0358319953083992, 0.007053281180560589, -0.014947162009775639, 0.010414382442831993, -0.02862350270152092, -0.002784637501463294, -0.03459597006440163, -0.058386605232954025, 0.019315151497721672, -0.027771087363362312, -0.042119599878787994, -0.032913923263549805, -0.033074088394641876, 0.017403874546289444, -0.0012250784784555435, 0.017293350771069527, 0.02347083017230034, -0.007361371535807848, 0.0019187098369002342, 0.0024632662534713745, 0.005741293076425791, 0.007727876305580139, -0.05024797096848488, 0.004511977545917034, 0.02018660120666027, -0.02384442836046219, -0.002809704514220357 ]
experiments-in-not-using-the-mouse
https://markhneedham.com/blog/2010/11/12/experiments-in-not-using-the-mouse