<!DOCTYPE html>
<!--[if IE 6]>
<html id="ie6" lang="en">
<![endif]-->
<!--[if IE 7]>
<html id="ie7" lang="en">
<![endif]-->
<!--[if IE 8]>
<html id="ie8" lang="en">
<![endif]-->
<!--[if !(IE 6) & !(IE 7) & !(IE 8)]><!-->
<html lang="en">
<!--<![endif]-->
<head>
	<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta name="viewport" content="width=device-width"/>
<title>Advocate's Studio | Musings on Technology in the Law, Research and Writing</title>
	<link rel="canonical" href="https://advocatesstudio.com" />
<link rel="profile" href="https://gmpg.org/xfn/11" />
<link rel="pingback" href="https://advocatesstudio.com/xmlrpc.php"/>
<!--[if lt IE 9]>
<script src="https://s2.wp.com/wp-content/themes/pub/itheme2/js/html5.js" type="text/javascript"></script>
<![endif]-->
<meta name="robots" content="max-image-preview:large"/>
<!-- Async WordPress.com Remote Login -->
<script id="wpcom_remote_login_js">
var wpcom_remote_login_extra_auth = '';
function wpcom_remote_login_remove_dom_node_id( element_id ) {
	var dom_node = document.getElementById( element_id );
	if ( dom_node ) { dom_node.parentNode.removeChild( dom_node ); }
}
function wpcom_remote_login_remove_dom_node_classes( class_name ) {
	var dom_nodes = document.querySelectorAll( '.' + class_name );
	for ( var i = 0; i < dom_nodes.length; i++ ) {
		dom_nodes[ i ].parentNode.removeChild( dom_nodes[ i ] );
	}
}
function wpcom_remote_login_final_cleanup() {
	wpcom_remote_login_remove_dom_node_classes( "wpcom_remote_login_msg" );
	wpcom_remote_login_remove_dom_node_id( "wpcom_remote_login_key" );
	wpcom_remote_login_remove_dom_node_id( "wpcom_remote_login_validate" );
	wpcom_remote_login_remove_dom_node_id( "wpcom_remote_login_js" );
	wpcom_remote_login_remove_dom_node_id( "wpcom_request_access_iframe" );
	wpcom_remote_login_remove_dom_node_id( "wpcom_request_access_styles" );
}
// Watch for messages back from the remote login
window.addEventListener( "message", function( e ) {
	if ( e.origin === "https://r-login.wordpress.com" ) {
		var data = {};
		try {
			data = JSON.parse( e.data );
		} catch( e ) {
			wpcom_remote_login_final_cleanup();
			return;
		}
		if ( data.msg === 'LOGIN' ) {
			// Clean up the login check iframe
			wpcom_remote_login_remove_dom_node_id( "wpcom_remote_login_key" );
			var id_regex = new RegExp( /^[0-9]+$/ );
			var token_regex = new RegExp( /^.*|.*|.*$/ );
			if (
				token_regex.test( data.token )
				&& id_regex.test( data.wpcomid )
			) {
				// We have everything we need to ask for a login
				var script = document.createElement( "script" );
				script.setAttribute( "id", "wpcom_remote_login_validate" );
				script.src='remote-login_wpcom_remote_login-validate/'
					+ '&wpcomid=' + data.wpcomid
					+ '&token=' + encodeURIComponent( data.token )
					+ '&host=' + window.location.protocol
					+ '//' + window.location.hostname
					+ '&postid=5843'
					+ '&is_singular=';
				document.body.appendChild( script );
			}
			return;
		}
		// Safari ITP, not logged in, so redirect
		if ( data.msg === 'LOGIN-REDIRECT' ) {
			+ window.location.href;
			return;
		}
		// Safari ITP, storage access failed, remove the request
		if ( data.msg === 'LOGIN-REMOVE' ) {
			var css_zap = 'html { -webkit-transition: margin-top 1s; transition: margin-top 1s; } /* 9001 */ html { margin-top: 0 !important; } * html body { margin-top: 0 !important; } @media screen and ( max-width: 782px ) { html { margin-top: 0 !important; } * html body { margin-top: 0 !important; } }';
			var style_zap = document.createElement( 'style' );
			style_zap.type = 'text/css';
			style_zap.appendChild( document.createTextNode( css_zap ) );
			document.body.appendChild( style_zap );
			var e = document.getElementById( 'wpcom_request_access_iframe' );
			e.parentNode.removeChild( e );
			document.cookie = 'wordpress_com_login_access=denied; path=/; max-age=31536000';
			return;
		}
		// Safari ITP
		if ( data.msg === 'REQUEST_ACCESS' ) {
			console.log( 'request access: safari' );
			// Check ITP iframe enable/disable knob
			if ( wpcom_remote_login_extra_auth !== 'safari_itp_iframe' ) {
				return;
			}
			// If we are in a "private window" there is no ITP.
			var private_window = false;
			try {
				var opendb = window.openDatabase( null, null, null, null );
			} catch( e ) {
				private_window = true;
			}
			if ( private_window ) {
				console.log( 'private window' );
				return;
			}
			var iframe = document.createElement( 'iframe' );
			iframe.id = 'wpcom_request_access_iframe';
			iframe.setAttribute( 'scrolling', 'no' );
			iframe.setAttribute( 'sandbox', 'allow-storage-access-by-user-activation allow-scripts allow-same-origin allow-top-navigation-by-user-activation' );
			iframe.src = 'https://r-login.wordpress.com/remote-login.php?wpcom_remote_login=request_access&origin=' + encodeURIComponent( data.origin ) + '&wpcomid=' + encodeURIComponent( data.wpcomid );
			var css = 'html { -webkit-transition: margin-top 1s; transition: margin-top 1s; } /* 9001 */ html { margin-top: 46px !important; } * html body { margin-top: 46px !important; } @media screen and ( max-width: 660px ) { html { margin-top: 71px !important; } * html body { margin-top: 71px !important; } #wpcom_request_access_iframe { display: block; height: 71px !important; } } #wpcom_request_access_iframe { border: 0px; height: 46px; position: fixed; top: 0; left: 0; width: 100%; min-width: 100%; z-index: 99999; background: #23282d; } ';
			var style = document.createElement( 'style' );
			style.type = 'text/css';
			style.id = 'wpcom_request_access_styles';
			style.appendChild( document.createTextNode( css ) );
			document.body.appendChild( style );
			document.body.appendChild( iframe );
		}
		if ( data.msg === 'DONE' ) {
			wpcom_remote_login_final_cleanup();
		}
	}
}, false );
// Inject the remote login iframe after the page has had a chance to load
// more critical resources
window.addEventListener( "DOMContentLoaded", function( e ) {
	var iframe = document.createElement( "iframe" );
	iframe.style.display = "none";
	iframe.setAttribute( "scrolling", "no" );
	iframe.setAttribute( "id", "wpcom_remote_login_key" );
	iframe.src = "https://r-login.wordpress.com/remote-login.php"
		+ "?wpcom_remote_login=key"
		+ "&origin=aHR0cHM6Ly9hZHZvY2F0ZXNzdHVkaW8uY29t"
		+ "&wpcomid=3450058"
		+ "&time=1744290580";
	document.body.appendChild( iframe );
}, false );
</script>
<link rel="dns-prefetch" href="https://s1.wp.com/"/>
<link rel="dns-prefetch" href="https://s2.wp.com/"/>
<link rel="dns-prefetch" href="https://s0.wp.com/"/>
<link rel="dns-prefetch" href="https://s.pubmine.com/"/>
<link rel="dns-prefetch" href="https://x.bidswitch.net/"/>
<link rel="dns-prefetch" href="https://static.criteo.net/"/>
<link rel="dns-prefetch" href="https://ib.adnxs.com/"/>
<link rel="dns-prefetch" href="https://aax.amazon-adsystem.com/"/>
<link rel="dns-prefetch" href="https://bidder.criteo.com/"/>
<link rel="dns-prefetch" href="https://cas.criteo.com/"/>
<link rel="dns-prefetch" href="https://gum.criteo.com/"/>
<link rel="dns-prefetch" href="https://ads.pubmatic.com/"/>
<link rel="dns-prefetch" href="https://gads.pubmatic.com/"/>
<link rel="dns-prefetch" href="https://tpc.googlesyndication.com/"/>
<link rel="dns-prefetch" href="https://ad.doubleclick.net/"/>
<link rel="dns-prefetch" href="https://googleads.g.doubleclick.net/"/>
<link rel="dns-prefetch" href="https://www.googletagservices.com/"/>
<link rel="dns-prefetch" href="https://cdn.switchadhub.com/"/>
<link rel="dns-prefetch" href="https://delivery.g.switchadhub.com/"/>
<link rel="dns-prefetch" href="https://delivery.swid.switchadhub.com/"/>
<link rel="dns-prefetch" href="https://a.teads.tv/"/>
<link rel="dns-prefetch" href="https://prebid.media.net/"/>
<link rel="dns-prefetch" href="https://adserver-us.adtech.advertising.com/"/>
<link rel="dns-prefetch" href="https://fastlane.rubiconproject.com/"/>
<link rel="dns-prefetch" href="https://prebid-server.rubiconproject.com/"/>
<link rel="dns-prefetch" href="https://hb-api.omnitagjs.com/"/>
<link rel="dns-prefetch" href="https://mtrx.go.sonobi.com/"/>
<link rel="dns-prefetch" href="https://apex.go.sonobi.com/"/>
<link rel="dns-prefetch" href="https://u.openx.net/"/>
	<script type="text/javascript">
		/* <![CDATA[ */
		function addLoadEvent(func) {
			var oldonload = window.onload;
			if (typeof window.onload != 'function') {
				window.onload = func;
			} else {
				window.onload = function () {
					oldonload();
					func();
				}
			}
		}
		/* ]]> */
	</script>
	<script type="text/javascript">
/* <![CDATA[ */
window._wpemojiSettings = {"baseUrl":"https:\/\/s0.wp.com\/wp-content\/mu-plugins\/wpcom-smileys\/twemoji\/2\/72x72\/","ext":".png","svgUrl":"https:\/\/s0.wp.com\/wp-content\/mu-plugins\/wpcom-smileys\/twemoji\/2\/svg\/","svgExt":".svg","source":{"concatemoji":"wp-includes/js/wp-emoji-release.min_m-1743601627i-ver-6.8-alpha-59449.js"}};
/*! This file is auto-generated */
!function(i,n){var o,s,e;function c(e){try{var t={supportTests:e,timestamp:(new Date).valueOf()};sessionStorage.setItem(o,JSON.stringify(t))}catch(e){}}function p(e,t,n){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);var t=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data),r=(e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(n,0,0),new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data));return t.every(function(e,t){return e===r[t]})}function u(e,t,n){switch(t){case"flag":return n(e,"\ud83c\udff3\ufe0f\u200d\u26a7\ufe0f","\ud83c\udff3\ufe0f\u200b\u26a7\ufe0f")?!1:!n(e,"\ud83c\uddfa\ud83c\uddf3","\ud83c\uddfa\u200b\ud83c\uddf3")&&!n(e,"\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc65\udb40\udc6e\udb40\udc67\udb40\udc7f","\ud83c\udff4\u200b\udb40\udc67\u200b\udb40\udc62\u200b\udb40\udc65\u200b\udb40\udc6e\u200b\udb40\udc67\u200b\udb40\udc7f");case"emoji":return!n(e,"\ud83d\udc26\u200d\ud83d\udd25","\ud83d\udc26\u200b\ud83d\udd25")}return!1}function f(e,t,n){var r="undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?new OffscreenCanvas(300,150):i.createElement("canvas"),a=r.getContext("2d",{willReadFrequently:!0}),o=(a.textBaseline="top",a.font="600 32px Arial",{});return e.forEach(function(e){o[e]=t(a,e,n)}),o}function t(e){var t=i.createElement("script");t.src=e,t.defer=!0,i.head.appendChild(t)}"undefined"!=typeof Promise&&(o="wpEmojiSettingsSupports",s=["flag","emoji"],n.supports={everything:!0,everythingExceptFlag:!0},e=new Promise(function(e){i.addEventListener("DOMContentLoaded",e,{once:!0})}),new Promise(function(t){var n=function(){try{var e=JSON.parse(sessionStorage.getItem(o));if("object"==typeof e&&"number"==typeof e.timestamp&&(new Date).valueOf()<e.timestamp+604800&&"object"==typeof e.supportTests)return e.supportTests}catch(e){}return null}();if(!n){if("undefined"!=typeof Worker&&"undefined"!=typeof OffscreenCanvas&&"undefined"!=typeof URL&&URL.createObjectURL&&"undefined"!=typeof Blob)try{var e="postMessage("+f.toString()+"("+[JSON.stringify(s),u.toString(),p.toString()].join(",")+"));",r=new Blob([e],{type:"text/javascript"}),a=new Worker(URL.createObjectURL(r),{name:"wpTestEmojiSupports"});return void(a.onmessage=function(e){c(n=e.data),a.terminate(),t(n)})}catch(e){}c(n=f(s,u,p))}t(n)}).then(function(e){for(var t in e)n.supports[t]=e[t],n.supports.everything=n.supports.everything&&n.supports[t],"flag"!==t&&(n.supports.everythingExceptFlag=n.supports.everythingExceptFlag&&n.supports[t]);n.supports.everythingExceptFlag=n.supports.everythingExceptFlag&&!n.supports.flag,n.DOMReady=!1,n.readyCallback=function(){n.DOMReady=!0}}).then(function(){return e}).then(function(){var e;n.supports.everything||(n.readyCallback(),(e=n.source||{}).concatemoji?t(e.concatemoji):e.wpemoji&&e.twemoji&&(t(e.twemoji),t(e.wpemoji)))}))}((window,document),window._wpemojiSettings);
/* ]]> */
</script>
<link rel="stylesheet" id="all-css-0-1" href="https://s1.wp.com/_static/??-eJyFzMsKwjAQheEXMg5tA3YjPkuaDDHN5IIzMfj21m66EHR5+D8O9KpsyYJZYKHiVaXmQ2bo5eGMY/BUFkNny3yCfzbIHROO6jl++dQOHZxHYcC21RIDKjIdBFMlI8jA8iL8dUAhbmxFqcZGta8Pv6XrcNHTPE960Osbxn5QFQ==&amp;cssminify=yes" type="text/css" media="all"/>
<style id="wp-emoji-styles-inline-css">
	img.wp-smiley, img.emoji {
		display: inline !important;
		border: none !important;
		box-shadow: none !important;
		height: 1em !important;
		width: 1em !important;
		margin: 0 0.07em !important;
		vertical-align: -0.1em !important;
		background: none !important;
		padding: 0 !important;
	}
</style>
<link rel="stylesheet" id="all-css-2-1" href="css/AzdCqGLUpzB3ejdlFIaf03QU5SQf7y-/M2X-1slsUYu30AMZRP0A---cssminify-yes.css" type="text/css" media="all"/>
<style id="wp-block-library-inline-css">
.has-text-align-justify {
	text-align:justify;
}
.has-text-align-justify{text-align:justify;}
</style>
<link rel="stylesheet" id="all-css-4-1" href="https://s2.wp.com/_static/??-eJzTLy/QzcxLzilNSS3WzyrWz01NyUxMzUnNTc0rQeEU5CRWphbp5qSmJyZX6uVm5uklFxfr6OPTDpRD5sM02efaGpoZmFkYGRuZGmQBAHPvL0Y=&amp;cssminify=yes" type="text/css" media="all"/>
<style id="jetpack-sharing-buttons-style-inline-css">
.jetpack-sharing-buttons__services-list{display:flex;flex-direction:row;flex-wrap:wrap;gap:0;list-style-type:none;margin:5px;padding:0}.jetpack-sharing-buttons__services-list.has-small-icon-size{font-size:12px}.jetpack-sharing-buttons__services-list.has-normal-icon-size{font-size:16px}.jetpack-sharing-buttons__services-list.has-large-icon-size{font-size:24px}.jetpack-sharing-buttons__services-list.has-huge-icon-size{font-size:36px}@media print{.jetpack-sharing-buttons__services-list{display:none!important}}.editor-styles-wrapper .wp-block-jetpack-sharing-buttons{gap:0;padding-inline-start:0}ul.jetpack-sharing-buttons__services-list.has-background{padding:1.25em 2.375em}
</style>
<link rel="stylesheet" id="all-css-6-1" href="wp-content/plugins/coblocks/2.18.1-simple-rev.4/dist/coblocks-style_m-1681832297i-cssminify-yes.css" type="text/css" media="all"/>
<style id="classic-theme-styles-inline-css">
/*! This file is auto-generated */
.wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none}
</style>
<link rel="stylesheet" id="all-css-8-1" href="https://s2.wp.com/_static/??-eJx9jcEKg0AMRH+oaVhorR7Eb9E16IpZg8min2889FZ6GYbhPQYPgbhlo2zIBWQtU8qKcdvJd5be0AmmMfW0Ejv2jKoP/K0daZzIXNdvB6PzvyJ+A8MgO6mCJ6fCYLN/6e113IZXU9WfUL/DcgHSTkDo&amp;cssminify=yes" type="text/css" media="all"/>
<style id="global-styles-inline-css">
:root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--font-family--albert-sans: 'Albert Sans', sans-serif;--wp--preset--font-family--alegreya: Alegreya, serif;--wp--preset--font-family--arvo: Arvo, serif;--wp--preset--font-family--bodoni-moda: 'Bodoni Moda', serif;--wp--preset--font-family--bricolage-grotesque: 'Bricolage Grotesque', sans-serif;--wp--preset--font-family--cabin: Cabin, sans-serif;--wp--preset--font-family--chivo: Chivo, sans-serif;--wp--preset--font-family--commissioner: Commissioner, sans-serif;--wp--preset--font-family--cormorant: Cormorant, serif;--wp--preset--font-family--courier-prime: 'Courier Prime', monospace;--wp--preset--font-family--crimson-pro: 'Crimson Pro', serif;--wp--preset--font-family--dm-mono: 'DM Mono', monospace;--wp--preset--font-family--dm-sans: 'DM Sans', sans-serif;--wp--preset--font-family--dm-serif-display: 'DM Serif Display', serif;--wp--preset--font-family--domine: Domine, serif;--wp--preset--font-family--eb-garamond: 'EB Garamond', serif;--wp--preset--font-family--epilogue: Epilogue, sans-serif;--wp--preset--font-family--fahkwang: Fahkwang, sans-serif;--wp--preset--font-family--figtree: Figtree, sans-serif;--wp--preset--font-family--fira-sans: 'Fira Sans', sans-serif;--wp--preset--font-family--fjalla-one: 'Fjalla One', sans-serif;--wp--preset--font-family--fraunces: Fraunces, serif;--wp--preset--font-family--gabarito: Gabarito, system-ui;--wp--preset--font-family--ibm-plex-mono: 'IBM Plex Mono', monospace;--wp--preset--font-family--ibm-plex-sans: 'IBM Plex Sans', sans-serif;--wp--preset--font-family--ibarra-real-nova: 'Ibarra Real Nova', serif;--wp--preset--font-family--instrument-serif: 'Instrument Serif', serif;--wp--preset--font-family--inter: Inter, sans-serif;--wp--preset--font-family--josefin-sans: 'Josefin Sans', sans-serif;--wp--preset--font-family--jost: Jost, sans-serif;--wp--preset--font-family--libre-baskerville: 'Libre Baskerville', serif;--wp--preset--font-family--libre-franklin: 'Libre Franklin', sans-serif;--wp--preset--font-family--literata: Literata, serif;--wp--preset--font-family--lora: Lora, serif;--wp--preset--font-family--merriweather: Merriweather, serif;--wp--preset--font-family--montserrat: Montserrat, sans-serif;--wp--preset--font-family--newsreader: Newsreader, serif;--wp--preset--font-family--noto-sans-mono: 'Noto Sans Mono', sans-serif;--wp--preset--font-family--nunito: Nunito, sans-serif;--wp--preset--font-family--open-sans: 'Open Sans', sans-serif;--wp--preset--font-family--overpass: Overpass, sans-serif;--wp--preset--font-family--pt-serif: 'PT Serif', serif;--wp--preset--font-family--petrona: Petrona, serif;--wp--preset--font-family--piazzolla: Piazzolla, serif;--wp--preset--font-family--playfair-display: 'Playfair Display', serif;--wp--preset--font-family--plus-jakarta-sans: 'Plus Jakarta Sans', sans-serif;--wp--preset--font-family--poppins: Poppins, sans-serif;--wp--preset--font-family--raleway: Raleway, sans-serif;--wp--preset--font-family--roboto: Roboto, sans-serif;--wp--preset--font-family--roboto-slab: 'Roboto Slab', serif;--wp--preset--font-family--rubik: Rubik, sans-serif;--wp--preset--font-family--rufina: Rufina, serif;--wp--preset--font-family--sora: Sora, sans-serif;--wp--preset--font-family--source-sans-3: 'Source Sans 3', sans-serif;--wp--preset--font-family--source-serif-4: 'Source Serif 4', serif;--wp--preset--font-family--space-mono: 'Space Mono', monospace;--wp--preset--font-family--syne: Syne, sans-serif;--wp--preset--font-family--texturina: Texturina, serif;--wp--preset--font-family--urbanist: Urbanist, sans-serif;--wp--preset--font-family--work-sans: 'Work Sans', sans-serif;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}.has-albert-sans-font-family{font-family: var(--wp--preset--font-family--albert-sans) !important;}.has-alegreya-font-family{font-family: var(--wp--preset--font-family--alegreya) !important;}.has-arvo-font-family{font-family: var(--wp--preset--font-family--arvo) !important;}.has-bodoni-moda-font-family{font-family: var(--wp--preset--font-family--bodoni-moda) !important;}.has-bricolage-grotesque-font-family{font-family: var(--wp--preset--font-family--bricolage-grotesque) !important;}.has-cabin-font-family{font-family: var(--wp--preset--font-family--cabin) !important;}.has-chivo-font-family{font-family: var(--wp--preset--font-family--chivo) !important;}.has-commissioner-font-family{font-family: var(--wp--preset--font-family--commissioner) !important;}.has-cormorant-font-family{font-family: var(--wp--preset--font-family--cormorant) !important;}.has-courier-prime-font-family{font-family: var(--wp--preset--font-family--courier-prime) !important;}.has-crimson-pro-font-family{font-family: var(--wp--preset--font-family--crimson-pro) !important;}.has-dm-mono-font-family{font-family: var(--wp--preset--font-family--dm-mono) !important;}.has-dm-sans-font-family{font-family: var(--wp--preset--font-family--dm-sans) !important;}.has-dm-serif-display-font-family{font-family: var(--wp--preset--font-family--dm-serif-display) !important;}.has-domine-font-family{font-family: var(--wp--preset--font-family--domine) !important;}.has-eb-garamond-font-family{font-family: var(--wp--preset--font-family--eb-garamond) !important;}.has-epilogue-font-family{font-family: var(--wp--preset--font-family--epilogue) !important;}.has-fahkwang-font-family{font-family: var(--wp--preset--font-family--fahkwang) !important;}.has-figtree-font-family{font-family: var(--wp--preset--font-family--figtree) !important;}.has-fira-sans-font-family{font-family: var(--wp--preset--font-family--fira-sans) !important;}.has-fjalla-one-font-family{font-family: var(--wp--preset--font-family--fjalla-one) !important;}.has-fraunces-font-family{font-family: var(--wp--preset--font-family--fraunces) !important;}.has-gabarito-font-family{font-family: var(--wp--preset--font-family--gabarito) !important;}.has-ibm-plex-mono-font-family{font-family: var(--wp--preset--font-family--ibm-plex-mono) !important;}.has-ibm-plex-sans-font-family{font-family: var(--wp--preset--font-family--ibm-plex-sans) !important;}.has-ibarra-real-nova-font-family{font-family: var(--wp--preset--font-family--ibarra-real-nova) !important;}.has-instrument-serif-font-family{font-family: var(--wp--preset--font-family--instrument-serif) !important;}.has-inter-font-family{font-family: var(--wp--preset--font-family--inter) !important;}.has-josefin-sans-font-family{font-family: var(--wp--preset--font-family--josefin-sans) !important;}.has-jost-font-family{font-family: var(--wp--preset--font-family--jost) !important;}.has-libre-baskerville-font-family{font-family: var(--wp--preset--font-family--libre-baskerville) !important;}.has-libre-franklin-font-family{font-family: var(--wp--preset--font-family--libre-franklin) !important;}.has-literata-font-family{font-family: var(--wp--preset--font-family--literata) !important;}.has-lora-font-family{font-family: var(--wp--preset--font-family--lora) !important;}.has-merriweather-font-family{font-family: var(--wp--preset--font-family--merriweather) !important;}.has-montserrat-font-family{font-family: var(--wp--preset--font-family--montserrat) !important;}.has-newsreader-font-family{font-family: var(--wp--preset--font-family--newsreader) !important;}.has-noto-sans-mono-font-family{font-family: var(--wp--preset--font-family--noto-sans-mono) !important;}.has-nunito-font-family{font-family: var(--wp--preset--font-family--nunito) !important;}.has-open-sans-font-family{font-family: var(--wp--preset--font-family--open-sans) !important;}.has-overpass-font-family{font-family: var(--wp--preset--font-family--overpass) !important;}.has-pt-serif-font-family{font-family: var(--wp--preset--font-family--pt-serif) !important;}.has-petrona-font-family{font-family: var(--wp--preset--font-family--petrona) !important;}.has-piazzolla-font-family{font-family: var(--wp--preset--font-family--piazzolla) !important;}.has-playfair-display-font-family{font-family: var(--wp--preset--font-family--playfair-display) !important;}.has-plus-jakarta-sans-font-family{font-family: var(--wp--preset--font-family--plus-jakarta-sans) !important;}.has-poppins-font-family{font-family: var(--wp--preset--font-family--poppins) !important;}.has-raleway-font-family{font-family: var(--wp--preset--font-family--raleway) !important;}.has-roboto-font-family{font-family: var(--wp--preset--font-family--roboto) !important;}.has-roboto-slab-font-family{font-family: var(--wp--preset--font-family--roboto-slab) !important;}.has-rubik-font-family{font-family: var(--wp--preset--font-family--rubik) !important;}.has-rufina-font-family{font-family: var(--wp--preset--font-family--rufina) !important;}.has-sora-font-family{font-family: var(--wp--preset--font-family--sora) !important;}.has-source-sans-3-font-family{font-family: var(--wp--preset--font-family--source-sans-3) !important;}.has-source-serif-4-font-family{font-family: var(--wp--preset--font-family--source-serif-4) !important;}.has-space-mono-font-family{font-family: var(--wp--preset--font-family--space-mono) !important;}.has-syne-font-family{font-family: var(--wp--preset--font-family--syne) !important;}.has-texturina-font-family{font-family: var(--wp--preset--font-family--texturina) !important;}.has-urbanist-font-family{font-family: var(--wp--preset--font-family--urbanist) !important;}.has-work-sans-font-family{font-family: var(--wp--preset--font-family--work-sans) !important;}
:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}
:root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}
:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}
</style>
<link rel="stylesheet" id="all-css-10-1" href="https://s0.wp.com/wp-content/themes/pub/itheme2/style.css?m=1440109507i&amp;cssminify=yes" type="text/css" media="all"/>
<style id="akismet-widget-style-inline-css">
			.a-stats {
				--akismet-color-mid-green: #357b49;
				--akismet-color-white: #fff;
				--akismet-color-light-grey: #f6f7f7;
				max-width: 350px;
				width: auto;
			}
			.a-stats * {
				all: unset;
				box-sizing: border-box;
			}
			.a-stats strong {
				font-weight: 600;
			}
			.a-stats a.a-stats__link,
			.a-stats a.a-stats__link:visited,
			.a-stats a.a-stats__link:active {
				background: var(--akismet-color-mid-green);
				border: none;
				box-shadow: none;
				border-radius: 8px;
				color: var(--akismet-color-white);
				cursor: pointer;
				display: block;
				font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen-Sans', 'Ubuntu', 'Cantarell', 'Helvetica Neue', sans-serif;
				font-weight: 500;
				padding: 12px;
				text-align: center;
				text-decoration: none;
				transition: all 0.2s ease;
			}
			/* Extra specificity to deal with TwentyTwentyOne focus style */
			.widget .a-stats a.a-stats__link:focus {
				background: var(--akismet-color-mid-green);
				color: var(--akismet-color-white);
				text-decoration: none;
			}
			.a-stats a.a-stats__link:hover {
				filter: brightness(110%);
				box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06), 0 0 2px rgba(0, 0, 0, 0.16);
			}
			.a-stats .count {
				color: var(--akismet-color-white);
				display: block;
				font-size: 1.5em;
				line-height: 1.4;
				padding: 0 13px;
				white-space: nowrap;
			}
</style>
<link rel="stylesheet" id="all-css-12-1" href="_static/---eJzTLy/QTc7PK0nNK9HPLdUtyClNz8wr1i9KTcrJTwcy0/WTi5G5ekCujj52Temp-bo5-cmJJZn5eSgc3bScxMwikFb7XFtDE1NLExMLc0OTLACohS2q-cssminify-yes.css" type="text/css" media="all"/>
<link rel="stylesheet" id="print-css-13-1" href="https://s1.wp.com/wp-content/mu-plugins/global-print/global-print.css?m=1465851035i&amp;cssminify=yes" type="text/css" media="print"/>
<style id="jetpack-global-styles-frontend-style-inline-css">
:root { --font-headings: unset; --font-base: unset; --font-headings-default: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif; --font-base-default: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;}
</style>
<link rel="stylesheet" id="all-css-16-1" href="https://s1.wp.com/_static/??-eJyNjcsKQjEMRH/IGh+F60b8FKlpaHtNk2JaxL/XK27EjZthDgxn4N4cqnSSDnW4xiMVMZipt4DXD0NVXSIOJgPL4UYxxPh41yJpjWYr+N90LoJgiiWwY01qX/Bj65nq6zd7SKyXwMvgVI/byfvdYe830/wEUS5JJg==&amp;cssminify=yes" type="text/css" media="all"/>
<script type="text/javascript" id="wpcom-actionbar-placeholder-js-extra">
/* <![CDATA[ */
var actionbardata = {"siteID":"3450058","postID":"0","siteURL":"https:\/\/advocatesstudio.com","xhrURL":"/","nonce":"168c21c0fa","isLoggedIn":"","statusMessage":"","subsEmailDefault":"instantly","proxyScriptUrl":"https:\/\/s0.wp.com\/wp-content\/js\/wpcom-proxy-request.js?ver=20211021","i18n":{"followedText":"New posts from this site will now appear in your <a href=\"https:\/\/wordpress.com\/reader\">Reader<\/a>","foldBar":"Collapse this bar","unfoldBar":"Expand this bar","shortLinkCopied":"Shortlink copied to clipboard."}};
/* ]]> */
</script>
<script type="text/javascript" id="jetpack-mu-wpcom-settings-js-before">
/* <![CDATA[ */
var JETPACK_MU_WPCOM_SETTINGS = {"assetsUrl":"https:\/\/s1.wp.com\/wp-content\/mu-plugins\/jetpack-mu-wpcom-plugin\/moon\/jetpack_vendor\/automattic\/jetpack-mu-wpcom\/src\/build\/"};
/* ]]> */
</script>
<script type="text/javascript" src="_static/---eJyFjcsOwiAQRX/I6dSa-lgYvwWBEAgMOAPW/n3bqIk7V2dxT87FqYDOVC1VDIIcKxTOr7kLssN186RjM1a2MTya5fmDLnn6K0HyjlW1v/L37R6zgxKb8yQ4ZTbKCOioRN4hnQo-hw1AmcCZwmvilq7709CPh/54voQFmNpFWg--.js"></script>
<script type="text/javascript" id="rlt-proxy-js-after">
/* <![CDATA[ */
	rltInitialize( {"token":null,"iframeOrigins":["https:\/\/widgets.wp.com"]} );
/* ]]> */
</script>
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://advocatesstudio.wordpress.com/xmlrpc.php?rsd"/>
<meta name="generator" content="WordPress.com"/>
<link rel="shortlink" href="https://wp.me/etw6"/>
<!-- Jetpack Open Graph Tags -->
<meta property="og:type" content="website"/>
<meta property="og:title" content="Advocate's Studio"/>
<meta property="og:description" content="Musings on Technology in the Law, Research and Writing"/>
<meta property="og:url" content="https://advocatesstudio.com/"/>
<meta property="og:site_name" content="Advocate's Studio"/>
<meta property="og:image" />
<meta property="og:image:alt" content=""/>
<meta property="og:locale" content="en_US"/>
<meta name="twitter:creator" content="@advocatesstudio"/>
<!-- End Jetpack Open Graph Tags -->
<link rel="shortcut icon" type="image/x-icon" href="https://imgstore.io/images/2025/09/03/favicon-omacuan1.png" sizes="16x16 24x24 32x32 48x48"/>
<link rel="icon" type="image/x-icon" href="https://imgstore.io/images/2025/09/03/favicon-omacuan1.png" sizes="16x16 24x24 32x32 48x48"/>
<link rel="apple-touch-icon" href="i/webclip.png"/>
<link rel="openid.server" href="https://advocatesstudio.com/?openidserver=1"/>
<link rel="openid.delegate" href="https://advocatesstudio.com/"/>
<link rel="search" type="application/opensearchdescription+xml" href="https://advocatesstudio.com/osd.xml" title="Advocate's Studio"/>
<link rel="search" type="application/opensearchdescription+xml" href="https://s1.wp.com/opensearch.xml" title="WordPress.com"/>
<meta name="description" content="Musings on Technology in the Law, Research and Writing"/>
		<script type="text/javascript">
		function __ATA_CC() {var v = document.cookie.match('(^|;) ?personalized-ads-consent=([^;]*)(;|$)');return v ? 1 : 0;}
		var __ATA_PP = { 'pt': 0, 'ht': 0, 'tn': 'itheme2', 'uloggedin': 0, 'amp': false, 'consent': __ATA_CC(), 'gdpr_applies': false, 'ad': { 'label': { 'text': 'Advertisements' }, 'reportAd': { 'text': 'Report this ad' } }, 'disabled_slot_formats': [], 'siteid': 8982, 'blogid': 3450058 };
		var __ATA = __ATA || {};
		__ATA.cmd = __ATA.cmd || [];
		__ATA.criteo = __ATA.criteo || {};
		__ATA.criteo.cmd = __ATA.criteo.cmd || [];
		</script>
		<script type="text/javascript">
		(function(){var g=Date.now||function(){return+new Date};function h(a,b){a:{for(var c=a.length,d="string"==typeof a?a.split(""):a,e=0;e<c;e++)if(e in d&&b.call(void 0,d[e],e,a)){b=e;break a}b=-1}return 0>b?null:"string"==typeof a?a.charAt(b):a[b]};function k(a,b,c){c=null!=c?"="+encodeURIComponent(String(c)):"";if(b+=c){c=a.indexOf("#");0>c&&(c=a.length);var d=a.indexOf("?");if(0>d||d>c){d=c;var e=""}else e=a.substring(d+1,c);a=[a.substr(0,d),e,a.substr(c)];c=a[1];a[1]=b?c?c+"&"+b:b:c;a=a[0]+(a[1]?"?"+a[1]:"")+a[2]}return a};var l=0;function m(a,b){var c=document.createElement("script");c.src=a;c.onload=function(){b&&b(void 0)};c.onerror=function(){b&&b("error")};a=document.getElementsByTagName("head");var d;a&&0!==a.length?d=a[0]:d=document.documentElement;d.appendChild(c)}function n(a){var b=void 0===b?document.cookie:b;return(b=h(b.split("; "),function(c){return-1!=c.indexOf(a+"=")}))?b.split("=")[1]:""}function p(a){return"string"==typeof a&&0<a.length}
		function r(a,b,c){b=void 0===b?"":b;c=void 0===c?".":c;var d=[];Object.keys(a).forEach(function(e){var f=a[e],q=typeof f;"object"==q&&null!=f||"function"==q?d.push(r(f,b+e+c)):null!==f&&void 0!==f&&(e=encodeURIComponent(b+e),d.push(e+"="+encodeURIComponent(f)))});return d.filter(p).join("&")}function t(a,b){a||((window.__ATA||{}).config=b.c,m(b.url))}var u=Math.floor(1E13*Math.random()),v=window.__ATA||{};window.__ATA=v;window.__ATA.cmd=v.cmd||[];v.rid=u;v.createdAt=g();var w=window.__ATA||{},x="s.pubmine.com";
		w&&w.serverDomain&&(x=w.serverDomain);var y="//"+x+"/conf",z=window.top===window,A=window.__ATA_PP&&window.__ATA_PP.gdpr_applies,B="boolean"===typeof A?Number(A):null,C=window.__ATA_PP||null,D=z?document.referrer?document.referrer:null:null,E=z?window.location.href:document.referrer?document.referrer:null,F,G=n("__ATA_tuuid");F=G?G:null;var H=window.innerWidth+"x"+window.innerHeight,I=n("usprivacy"),J=r({gdpr:B,pp:C,rid:u,src:D,ref:E,tuuid:F,vp:H,us_privacy:I?I:null},"",".");
		(function(a){var b=void 0===b?"cb":b;l++;var c="callback__"+g().toString(36)+"_"+l.toString(36);a=k(a,b,c);window[c]=function(d){t(void 0,d)};m(a,function(d){d&&t(d)})})(y+"?"+J);}).call(this);
		</script>	<script>
		var sas_fallback = sas_fallback || [];
		sas_fallback.push(
			{ tag: "&lt;div id=&quot;atatags-26942-{{unique_id}}&quot;&gt;&lt;/div&gt;&lt;script&gt;__ATA.cmd.push(function() {__ATA.initDynamicSlot({id: \'atatags-26942-{{unique_id}}\',location: 120,formFactor: \'001\',label: {text: \'Advertisements\',},creative: {reportAd: {text: \'Report this ad\',},privacySettings: {text: \'Privacy\',}}});});&lt;/script&gt;", type: 'belowpost' },
			{ tag: "&lt;div id=&quot;atatags-26942-{{unique_id}}&quot;&gt;&lt;/div&gt;&lt;script&gt;__ATA.cmd.push(function() {__ATA.initDynamicSlot({id: \'atatags-26942-{{unique_id}}\',location: 310,formFactor: \'001\',label: {text: \'Advertisements\',},creative: {reportAd: {text: \'Report this ad\',},privacySettings: {text: \'Privacy\',}}});});&lt;/script&gt;", type: 'inline' },
			{ tag: "&lt;div id=&quot;atatags-26942-{{unique_id}}&quot;&gt;&lt;/div&gt;&lt;script&gt;__ATA.cmd.push(function() {__ATA.initDynamicSlot({id: \'atatags-26942-{{unique_id}}\',location: 140,formFactor: \'003\',label: {text: \'Advertisements\',},creative: {reportAd: {text: \'Report this ad\',},privacySettings: {text: \'Privacy\',}}});});&lt;/script&gt;", type: 'sidebar' },
			{ tag: "&lt;div id=&quot;atatags-26942-{{unique_id}}&quot;&gt;&lt;/div&gt;&lt;script&gt;__ATA.cmd.push(function() {__ATA.initDynamicSlot({id: \'atatags-26942-{{unique_id}}\',location: 110,formFactor: \'002\',label: {text: \'Advertisements\',},creative: {reportAd: {text: \'Report this ad\',},privacySettings: {text: \'Privacy\',}}});});&lt;/script&gt;", type: 'top' }
		);
	</script>		<script type="text/javascript">
			window.doNotSellCallback = function() {
				var linkElements = [
					'a[href="https://wordpress.com/?ref=footer_blog"]',
					'a[href="https://wordpress.com/?ref=footer_website"]',
					'a[href="https://wordpress.com/?ref=vertical_footer"]',
					'a[href^="https://wordpress.com/?ref=footer_segment_"]',
				].join(',');
				var dnsLink = document.createElement( 'a' );
				dnsLink.href = 'https://wordpress.com/advertising-program-optout/';
				dnsLink.classList.add( 'do-not-sell-link' );
				dnsLink.rel = 'nofollow';
				dnsLink.style.marginLeft = '0.5em';
				dnsLink.textContent = 'Do Not Sell or Share My Personal Information';
				var creditLinks = document.querySelectorAll( linkElements );
				if ( 0 === creditLinks.length ) {
					return false;
				}
				Array.prototype.forEach.call( creditLinks, function( el ) {
					el.insertAdjacentElement( 'afterend', dnsLink );
				});
				return true;
			};
		</script>
		<script type="text/javascript">
	window.google_analytics_uacct = "UA-52447-2";
</script>
<script type="text/javascript">
	var _gaq = _gaq || [];
	_gaq.push(['_setAccount', 'UA-52447-2']);
	_gaq.push(['_gat._anonymizeIp']);
	_gaq.push(['_setDomainName', 'none']);
	_gaq.push(['_setAllowLinker', true]);
	_gaq.push(['_initData']);
	_gaq.push(['_trackPageview']);
	(function() {
		var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
		ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
		(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(ga);
	})();
</script>
</head>
<body class="home blog wp-theme-pubitheme2 customizer-styles-applied indexed single-author jetpack-reblog-enabled">
<div id="page" class="hfeed">
	<header id="masthead" role="banner">
		<hgroup>
			<h1 id="site-title"><a href="/" title="Advocate's Studio" rel="home">Advocate's Studio</a></h1>
			<h2 id="site-description">Musings on Technology in the Law, Research and Writing</h2>
		</hgroup>
				<nav id="access" role="navigation">
			<h1 class="assistive-text section-heading">Main menu</h1>
			<div class="assistive-text skip-link"><a href="#content" title="Skip to content">Skip to content</a></div>
			<div class="menu"><ul>
<li class="current_page_item"><a href="/">Home</a></li><li class="page_item page-item-1905"><a href="about-the-advocate-2/">About The Advocate</a></li>
<li class="page_item page-item-1906"><a href="disclaimer-2/">The Advocate's Disclaimer</a></li>
</ul></div>
		</nav><!-- #access -->
	</header><!-- #masthead -->
	<div id="main">
		<div id="featured" class="slider">
			<ul id="featured-posts" class="slides">
							<li>
					<a href="2012/11/08/someones-finally-tamed-pacer-pacerpro-to-the-rescue/" title="Permalink to Someone’s Finally Tamed Pacer! PacerPro To The Rescue" rel="bookmark"><img width="145" height="110" src="wp-content/uploads/2012/11/screen-shot-2012-11-07-at-9-45-41-pm1_w-145-h-110-crop-1.png" class="attachment-small-feature size-small-feature wp-post-image" alt="" decoding="async" data-attachment-id="5432" data-permalink="https://advocatesstudio.com/2012/11/08/someones-finally-tamed-pacer-pacerpro-to-the-rescue/screen-shot-2012-11-07-at-9-45-41-pm-2/" data-orig-file="https://advocatesstudio.com/wp-content/uploads/2012/11/screen-shot-2012-11-07-at-9-45-41-pm1.png" data-orig-size="293,110" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="screen-shot-2012-11-07-at-9-45-41-pm" data-image-description="" data-image-caption="" data-medium-file="https://advocatesstudio.com/wp-content/uploads/2012/11/screen-shot-2012-11-07-at-9-45-41-pm1.png?w=293" data-large-file="https://advocatesstudio.com/wp-content/uploads/2012/11/screen-shot-2012-11-07-at-9-45-41-pm1.png?w=293"/></a>
					<a class="feature-post-title" href="2012/11/08/someones-finally-tamed-pacer-pacerpro-to-the-rescue/" rel="bookmark">Someone’s Finally Tamed Pacer! PacerPro To The&nbsp;Rescue</a>
				</li>
								<li>
					<a href="2012/09/07/the-intersection-of-art-law/" title="Permalink to The Intersection of Art &amp; Law" rel="bookmark"><img width="145" height="120" src="wp-content/uploads/2012/09/eraser_w-145-h-120-crop-1.jpeg" class="attachment-small-feature size-small-feature wp-post-image" alt="" decoding="async" srcset="wp-content/uploads/2012/09/eraser_w-145-h-120-crop-1.jpeg 145w, wp-content/uploads/2012/09/eraser_w-290-h-240-crop-1.jpeg 290w, wp-content/uploads/2012/09/eraser_w-150-h-124-crop-1.jpeg 150w" sizes="(max-width: 145px) 100vw, 145px" data-attachment-id="5393" data-permalink="https://advocatesstudio.com/2012/09/07/the-intersection-of-art-law/eraser/" data-orig-file="https://advocatesstudio.com/wp-content/uploads/2012/09/eraser.jpeg" data-orig-size="378,340" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="eraser" data-image-description="" data-image-caption="" data-medium-file="https://advocatesstudio.com/wp-content/uploads/2012/09/eraser.jpeg?w=300" data-large-file="https://advocatesstudio.com/wp-content/uploads/2012/09/eraser.jpeg?w=378"/></a>
					<a class="feature-post-title" href="2012/09/07/the-intersection-of-art-law/" rel="bookmark">The Intersection of Art &&nbsp;Law</a>
				</li>
								<li>
					<a href="2012/05/29/when-you-need-a-fast-business-plan-fast/" title="Permalink to When You Need A Fast Business Plan, Fast" rel="bookmark"><img width="145" height="120" src="wp-content/uploads/2012/05/chapman-biz-plan_w-145-h-120-crop-1.jpg" class="attachment-small-feature size-small-feature wp-post-image" alt="" decoding="async" srcset="wp-content/uploads/2012/05/chapman-biz-plan_w-145-h-120-crop-1.jpg 145w, wp-content/uploads/2012/05/chapman-biz-plan_w-290-h-240-crop-1.jpg 290w, wp-content/uploads/2012/05/chapman-biz-plan_w-150-h-124-crop-1.jpg 150w" sizes="(max-width: 145px) 100vw, 145px" data-attachment-id="5435" data-permalink="https://advocatesstudio.com/2012/05/29/when-you-need-a-fast-business-plan-fast/chapman-biz-plan/" data-orig-file="https://advocatesstudio.com/wp-content/uploads/2012/05/chapman-biz-plan.jpg" data-orig-size="1200,900" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="Chapman-biz-plan" data-image-description="" data-image-caption="" data-medium-file="https://advocatesstudio.com/wp-content/uploads/2012/05/chapman-biz-plan.jpg?w=300" data-large-file="https://advocatesstudio.com/wp-content/uploads/2012/05/chapman-biz-plan.jpg?w=593"/></a>
					<a class="feature-post-title" href="2012/05/29/when-you-need-a-fast-business-plan-fast/" rel="bookmark">When You Need A Fast Business Plan,&nbsp;Fast</a>
				</li>
								<li>
					<a href="2011/05/26/linkedin-connection-timeline-just-for-fun/" title="Permalink to LinkedIn Connection Timeline – Just For Fun" rel="bookmark"><img width="145" height="120" src="wp-content/uploads/2011/05/linkedin-logo-square-300x300_w-145-h-120-crop-1.png" class="attachment-small-feature size-small-feature wp-post-image" alt="" decoding="async" srcset="wp-content/uploads/2011/05/linkedin-logo-square-300x300_w-145-h-120-crop-1.png 145w, wp-content/uploads/2011/05/linkedin-logo-square-300x300_w-290-h-240-crop-1.png 290w, wp-content/uploads/2011/05/linkedin-logo-square-300x300_w-150-h-124-crop-1.png 150w" sizes="(max-width: 145px) 100vw, 145px" data-attachment-id="5423" data-permalink="https://advocatesstudio.com/2011/05/26/linkedin-connection-timeline-just-for-fun/linkedin-logo-square-300x300/" data-orig-file="https://advocatesstudio.com/wp-content/uploads/2011/05/linkedin-logo-square-300x300.png" data-orig-size="300,300" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="linkedin-logo-square-300×300" data-image-description="" data-image-caption="" data-medium-file="https://advocatesstudio.com/wp-content/uploads/2011/05/linkedin-logo-square-300x300.png?w=300" data-large-file="https://advocatesstudio.com/wp-content/uploads/2011/05/linkedin-logo-square-300x300.png?w=300"/></a>
					<a class="feature-post-title" href="2011/05/26/linkedin-connection-timeline-just-for-fun/" rel="bookmark">LinkedIn Connection Timeline - Just For&nbsp;Fun</a>
				</li>
								<li>
					<a href="2009/09/03/i-finally-figured-out-what-is-wrong-with-wikipedia/" title="Permalink to I Finally Figured Out What Is Wrong With Wikipedia" rel="bookmark"><img width="145" height="120" src="wp-content/uploads/2009/09/battle1_w-145-h-120-crop-1.jpg" class="attachment-small-feature size-small-feature wp-post-image" alt="" decoding="async" srcset="wp-content/uploads/2009/09/battle1_w-145-h-120-crop-1.jpg 145w, wp-content/uploads/2009/09/battle1_w-290-h-240-crop-1.jpg 290w, wp-content/uploads/2009/09/battle1_w-150-h-124-crop-1.jpg 150w" sizes="(max-width: 145px) 100vw, 145px" data-attachment-id="5428" data-permalink="https://advocatesstudio.com/2009/09/03/i-finally-figured-out-what-is-wrong-with-wikipedia/battle-2/" data-orig-file="https://advocatesstudio.com/wp-content/uploads/2009/09/battle1.jpg" data-orig-size="533,430" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="battle" data-image-description="" data-image-caption="" data-medium-file="https://advocatesstudio.com/wp-content/uploads/2009/09/battle1.jpg?w=300" data-large-file="https://advocatesstudio.com/wp-content/uploads/2009/09/battle1.jpg?w=533"/></a>
					<a class="feature-post-title" href="2009/09/03/i-finally-figured-out-what-is-wrong-with-wikipedia/" rel="bookmark">I Finally Figured Out What Is Wrong With&nbsp;Wikipedia</a>
				</li>
							</ul>
					</div><!-- #featured .slider -->
		<div id="primary">
			<div id="content" role="main">
					<nav id="nav-above">
		<h1 class="assistive-text section-heading">Post navigation</h1>
				<div class="nav-previous"><a href="page/2/"><span class="meta-nav">&larr;</span> Older posts</a></div>
	</nav><!-- #nav-above -->
<article id="post-5843" class="post-5843 post type-post status-publish format-standard hentry category-uncategorized tag-infographic tag-legal-tech tag-technology tag-timeline">
	<header class="entry-header">
		<div class="post-date">
					<a href="2019/09/13/50-years-of-legal-technology-infographic/" title="Permalink to 50 Years of Legal Technology (Infographic)" rel="bookmark">
				<span class="month">Sep</span>
				<span class="day">13</span>
				<span class="year">2019</span>
			</a>
				</div>
							<h1 class="entry-title">
									<a href="2019/09/13/50-years-of-legal-technology-infographic/" rel="bookmark">50 Years of Legal Technology&nbsp;(Infographic)</a>
							</h1>
			</header><!-- .entry-header -->
		<div class="entry-content">
<figure class="wp-block-image"></figure>
<p>Been awhile, I know. But my blog is always on my mind. Yesterday, I was creating a timeline of legal technology to help me prepare for presenting at Duke Law School’s <a href="http://www.dukelawtechlab.com/demo-day">Duke Law Tech Lab Demo Day 2019</a> and then I thought, Hey, why not make an infographic? People love them! So, here is my personal take on 50 years of legal technology. Remember when Fed Ex started? Remember West’s Walt terminal? If not, then take a peek at this and refresh your recollection of where we were and marvel at where we are now. </p>
<iframe class="scribd_iframe_embed" src="embeds/425707640/content_start_page-1-view_mode-access_key-key-72OqeHSp6gYI2tOdT4Ho_ext_iframe/" data-auto-height="true" scrolling="no" id="scribd_425707640" width="100%" height="500" frameborder="0"></iframe>
		<div style="font-size:10px;text-align:center;width:100%"><a href="https://www.scribd.com/doc/425707640" rel="noopener noreferrer" target="_blank">View this document on Scribd</a></div>
<p></p>
<div class="wordads-tag" data-slot-type="belowpost" style="display: none;"></div><div id="jp-post-flair" class="sharedaddy sd-like-enabled sd-sharing-enabled"><div class="sharedaddy sd-sharing-enabled"><div class="robots-nocontent sd-block sd-social sd-social-icon sd-sharing"><h3 class="sd-title">Share this:</h3><div class="sd-content"><ul><li class="share-linkedin"><a rel="nofollow noopener noreferrer" data-shared="sharing-linkedin-5843" class="share-linkedin sd-button share-icon no-text" href="2019/09/13/50-years-of-legal-technology-infographic/" target="_blank" aria-labelledby="sharing-linkedin-5843">
				<span id="sharing-linkedin-5843" hidden>Click to share on LinkedIn (Opens in new window)</span>
				<span>LinkedIn</span>
			</a></li><li class="share-facebook"><a rel="nofollow noopener noreferrer" data-shared="sharing-facebook-5843" class="share-facebook sd-button share-icon no-text" href="2019/09/13/50-years-of-legal-technology-infographic/" target="_blank" aria-labelledby="sharing-facebook-5843">
				<span id="sharing-facebook-5843" hidden>Click to share on Facebook (Opens in new window)</span>
				<span>Facebook</span>
			</a></li><li class="share-twitter"><a rel="nofollow noopener noreferrer" data-shared="sharing-twitter-5843" class="share-twitter sd-button share-icon no-text" href="2019/09/13/50-years-of-legal-technology-infographic/" target="_blank" aria-labelledby="sharing-twitter-5843">
				<span id="sharing-twitter-5843" hidden>Click to share on X (Opens in new window)</span>
				<span>X</span>
			</a></li><li class="share-tumblr"><a rel="nofollow noopener noreferrer" data-shared="sharing-tumblr-5843" class="share-tumblr sd-button share-icon no-text" href="2019/09/13/50-years-of-legal-technology-infographic/" target="_blank" aria-labelledby="sharing-tumblr-5843">
				<span id="sharing-tumblr-5843" hidden>Click to share on Tumblr (Opens in new window)</span>
				<span>Tumblr</span>
			</a></li><li class="share-email"><a rel="nofollow noopener noreferrer" data-shared="sharing-email-5843" class="share-email sd-button share-icon no-text" href="/cdn-cgi/l/email-protection#331c0c404651595650470e160671605b52415657160103635c404716067716010306031601036a565241401601035c551601037f5654525f1601036756505b5d5c5f5c544a16010316010b7a5d555c544152435b5a5016010a15525e4308515c574a0e5b474743401600721601751601755257455c5052475640404746575a5c1d505c5e1601750103020a160175030a160175020016017506031e4a565241401e5c551e5f5654525f1e4756505b5d5c5f5c544a1e5a5d555c544152435b5a50160175" target="_blank" aria-labelledby="sharing-email-5843" data-email-share-error-title="Do you have email set up?" data-email-share-error-text="If you're having problems sharing via email, you might not have email set up for your browser. You may need to create a new email yourself." data-email-share-nonce="a3c31cf300" data-email-share-track-url="https://advocatesstudio.com/2019/09/13/50-years-of-legal-technology-infographic/?share=email">
				<span id="sharing-email-5843" hidden>Click to email a link to a friend (Opens in new window)</span>
				<span>Email</span>
			</a></li><li class="share-print"><a rel="nofollow noopener noreferrer" data-shared="sharing-print-5843" class="share-print sd-button share-icon no-text" href="2019/09/13/50-years-of-legal-technology-infographic/share-print/" target="_blank" aria-labelledby="sharing-print-5843">
				<span id="sharing-print-5843" hidden>Click to print (Opens in new window)</span>
				<span>Print</span>
			</a></li><li class="share-end"></li></ul></div></div></div><div class="sharedaddy sd-block sd-like jetpack-likes-widget-wrapper jetpack-likes-widget-unloaded" id="like-post-wrapper-3450058-5843-67f7c314a8287" data-src="https://widgets.wp.com/likes/index.html?ver=20250410#blog_id=3450058&amp;post_id=5843&amp;origin=advocatesstudio.wordpress.com&amp;obj_id=3450058-5843-67f7c314a8287&amp;domain=advocatesstudio.com" data-name="like-post-frame-3450058-5843-67f7c314a8287" data-title="Like or Reblog"><div class="likes-widget-placeholder post-likes-widget-placeholder" style="height: 55px;"><span class="button"><span>Like</span></span> <span class="loading">Loading...</span></div><span class="sd-text-color"></span><a class="sd-link-color"></a></div></div>			</div><!-- .entry-content -->
	<footer class="entry-meta">
					By Martha Sperry
						<span class="sep"> &#149; </span>
			<span class="cat-links">
				Posted in <a href="category/uncategorized/" rel="category tag">Uncategorized</a>			</span>
			<span class="sep"> &#149; </span><span class="tag-links">Tagged <a href="tag/infographic/" rel="tag">infographic</a>, <a href="tag/legal-tech/" rel="tag">Legal Tech</a>, <a href="tag/technology/" rel="tag">Technology</a>, <a href="tag/timeline/" rel="tag">timeline</a></span>
				<div class="comments-link">
			<a href="2019/09/13/50-years-of-legal-technology-infographic/#comments">1</a>		</div>
			</footer><!-- #entry-meta -->
</article><!-- #post-5843 -->
<article id="post-5833" class="post-5833 post type-post status-publish format-standard hentry category-uncategorized">
	<header class="entry-header">
		<div class="post-date">
					<a href="2019/02/04/legaltech-2019-i-finally-made-it/" title="Permalink to Legaltech 2019 – I Finally Made It" rel="bookmark">
				<span class="month">Feb</span>
				<span class="day">4</span>
				<span class="year">2019</span>
			</a>
				</div>
							<h1 class="entry-title">
									<a href="2019/02/04/legaltech-2019-i-finally-made-it/" rel="bookmark">Legaltech 2019 - I Finally Made&nbsp;It</a>
							</h1>
			</header><!-- .entry-header -->
		<div class="entry-content">
<div class="wp-block-image"><figure class="alignleft is-resized"><img data-attachment-id="5834" data-permalink="https://advocatesstudio.com/2019/02/04/legaltech-2019-i-finally-made-it/screen-shot-2019-02-04-at-1-48-37-pm/" data-orig-file="https://advocatesstudio.com/wp-content/uploads/2019/02/screen-shot-2019-02-04-at-1.48.37-pm.png" data-orig-size="840,414" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="Screen Shot 2019-02-04 at 1.48.37 PM" data-image-description="" data-image-caption="" data-medium-file="https://advocatesstudio.com/wp-content/uploads/2019/02/screen-shot-2019-02-04-at-1.48.37-pm.png?w=300" data-large-file="https://advocatesstudio.com/wp-content/uploads/2019/02/screen-shot-2019-02-04-at-1.48.37-pm.png?w=593" src="wp-content/uploads/2019/02/screen-shot-2019-02-04-at-1.48.37-pm_w-600.png" alt="Screen Shot 2019-02-04 at 1.48.37 PM" class="wp-image-5834" width="247" height="121" srcset="wp-content/uploads/2019/02/screen-shot-2019-02-04-at-1.48.37-pm_w-247.png 247w, wp-content/uploads/2019/02/screen-shot-2019-02-04-at-1.48.37-pm_w-491.png 491w, wp-content/uploads/2019/02/screen-shot-2019-02-04-at-1.48.37-pm_w-150.png 150w, wp-content/uploads/2019/02/screen-shot-2019-02-04-at-1.48.37-pm_w-300.png 300w" sizes="(max-width: 247px) 100vw, 247px"/><figcaption>Legaltech 2019</figcaption></figure></div>
<p>It is, in fact, a little embarrassing. I have been writing about legal technology issues for probably close to a decade. However, I have never been able to get myself to <a href="https://www.legalweekshow.com/legaltech/east/">Legaltech</a>. Legaltech has been going on far longer than I and perhaps other readers may suspect - it all <a href="https://abovethelaw.com/2018/02/the-conference-formerly-known-as-legaltech-takes-shape-as-legalweek/">started in 1982</a> when Janet Felleman joined forces with Price Waterhouse to teach lawyers how to use tech in their law practice. Fast forward through a couple of handoffs and mergers, and it is now conducted by ALM. It also is part of a larger gathering called <a href="https://www.legalweekshow.com/">Legalweek</a>, during which legal professionals discuss more than just shiny cool technology. But that is not the focus of this blog. </p>
<p>I didn’t quite know what to expect, but thought I would likely see lots of vendors with various offerings with some technology angle. I also thought I would see a few sessions on tech-related topics that might arise in the course of one’s practice. I was right on both of those accounts. I also anticipated more of a firm focus, rather than in house legal department focus. On that latter account, I was a bit off the mark. The conference started with a State of the Industry address offering a more global view of the legal industry, addressing firms, in house legal departments and the newer entrant in the space - Alternative Legal Service Providers. ALM analysts touched on current events in the legal industry to the present, as well as trends for the future. This included a striation of firms between &#8220;bet the company&#8221; top tier firms and ALS providers who can offer innovative and efficient solutions to higher frequency, lower severity or repetitive matters. Coupled with concepts of increased in-sourcing by corporate clients and their in-house legal departments, it is clear to see that the practice of law is changing dramatically and that trajectory isn’t going to flatten any time soon.</p>
<div class="wp-block-image"><figure class="alignleft is-resized"><img data-attachment-id="5837" data-permalink="https://advocatesstudio.com/screen-shot-2019-02-04-at-2-39-09-pm/" data-orig-file="https://advocatesstudio.com/wp-content/uploads/2019/02/screen-shot-2019-02-04-at-2.39.09-pm.png" data-orig-size="1080,1318" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="screen-shot-2019-02-04-at-2.39.09-pm" data-image-description="" data-image-caption="" data-medium-file="https://advocatesstudio.com/wp-content/uploads/2019/02/screen-shot-2019-02-04-at-2.39.09-pm.png?w=246" data-large-file="https://advocatesstudio.com/wp-content/uploads/2019/02/screen-shot-2019-02-04-at-2.39.09-pm.png?w=593" src="wp-content/uploads/2019/02/screen-shot-2019-02-04-at-2.39.09-pm.png" alt="" class="wp-image-5837" width="147" height="179" srcset="wp-content/uploads/2019/02/screen-shot-2019-02-04-at-2.39.09-pm_w-147-h-179.png 147w, wp-content/uploads/2019/02/screen-shot-2019-02-04-at-2.39.09-pm_w-294-h-358.png 294w, wp-content/uploads/2019/02/screen-shot-2019-02-04-at-2.39.09-pm_w-123-h-150.png 123w, wp-content/uploads/2019/02/screen-shot-2019-02-04-at-2.39.09-pm_w-246-h-300.png 246w" sizes="(max-width: 147px) 100vw, 147px"/><figcaption>Alberto Gonzales</figcaption></figure></div>
<p>Another nice surprise was the keynote from former U.S. Attorney Generals Alberto Gonzales and Loretta Lynch. While it made an appearance in the discussions, the former A.G.’s did not focus on technology. I found the keynote  very timely given our current climate and a nice &#8220;forest for the trees&#8221; view of the larger geopolitical legal landscape. And, as one might expect, cybersecurity is a top level concern of our government lawyers.</p>
<div class="wp-block-image"><figure class="alignright is-resized"><img data-attachment-id="5838" data-permalink="https://advocatesstudio.com/screen-shot-2019-02-04-at-2-39-50-pm/" data-orig-file="https://advocatesstudio.com/wp-content/uploads/2019/02/screen-shot-2019-02-04-at-2.39.50-pm.png" data-orig-size="966,1198" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="screen-shot-2019-02-04-at-2.39.50-pm" data-image-description="" data-image-caption="" data-medium-file="https://advocatesstudio.com/wp-content/uploads/2019/02/screen-shot-2019-02-04-at-2.39.50-pm.png?w=242" data-large-file="https://advocatesstudio.com/wp-content/uploads/2019/02/screen-shot-2019-02-04-at-2.39.50-pm.png?w=593" src="wp-content/uploads/2019/02/screen-shot-2019-02-04-at-2.39.50-pm.png" alt="" class="wp-image-5838" width="155" height="192" srcset="wp-content/uploads/2019/02/screen-shot-2019-02-04-at-2.39.50-pm_w-155-h-192.png 155w, wp-content/uploads/2019/02/screen-shot-2019-02-04-at-2.39.50-pm_w-310-h-384.png 310w, wp-content/uploads/2019/02/screen-shot-2019-02-04-at-2.39.50-pm_w-121-h-150.png 121w, wp-content/uploads/2019/02/screen-shot-2019-02-04-at-2.39.50-pm_w-242-h-300.png 242w" sizes="(max-width: 155px) 100vw, 155px"/><figcaption>Loretta Lynch</figcaption></figure></div>
<p>I still saw tech and lots of it. I visited almost 20 different vendors, with a focus on artificial intelligence, consulting and analytics solutions. I also got a chance to catch up with <a href="https://www.mycase.com/blog/author/nikiblack">Nicole Black</a> of MyCase and <a href="https://www.lawsitesblog.com/">Bob Ambrogi</a> of Lawsites, as well as <a href="http://www.cobralegalsolutions.com/leadership-team.php">Doug Kaminski</a> of CobrATX. I was impressed with Fastcase’s <a href="https://www.docketalarm.com/">Docket Alarm</a> - an award winner at the show - that offers full text docket search and alerts, as well as analytics, for federal and some state courts. I also was intrigued by audio analytics tools. These were primarily advertised in the context of e-discovery, but I can see the potential behavioral analysis that expand beyond discovery and into predictive customer analytics. There were a few vendors offering this and I am interested to see what the future might hold there.</p>
<figure class="wp-block-image"><img data-attachment-id="5836" data-permalink="https://advocatesstudio.com/screen-shot-2019-02-04-at-2-37-24-pm/" data-orig-file="https://advocatesstudio.com/wp-content/uploads/2019/02/screen-shot-2019-02-04-at-2.37.24-pm.png" data-orig-size="2308,730" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="screen-shot-2019-02-04-at-2.37.24-pm" data-image-description="" data-image-caption="" data-medium-file="https://advocatesstudio.com/wp-content/uploads/2019/02/screen-shot-2019-02-04-at-2.37.24-pm.png?w=300" data-large-file="https://advocatesstudio.com/wp-content/uploads/2019/02/screen-shot-2019-02-04-at-2.37.24-pm.png?w=593" loading="lazy" width="2308" height="730" src="wp-content/uploads/2019/02/screen-shot-2019-02-04-at-2.37.24-pm.png" alt="" class="wp-image-5836" srcset="wp-content/uploads/2019/02/screen-shot-2019-02-04-at-2.37.24-pm.png 2308w, wp-content/uploads/2019/02/screen-shot-2019-02-04-at-2.37.24-pm_w-150-h-47.png 150w, wp-content/uploads/2019/02/screen-shot-2019-02-04-at-2.37.24-pm_w-300-h-95.png 300w, wp-content/uploads/2019/02/screen-shot-2019-02-04-at-2.37.24-pm_w-768-h-243.png 768w, wp-content/uploads/2019/02/screen-shot-2019-02-04-at-2.37.24-pm_w-1024-h-324.png 1024w" sizes="(max-width: 2308px) 100vw, 2308px"/></figure>
<p>I attended a few sessions, but my favorite was an ILTA educational track session on how to innovate and get client buy-in on a budget, which is a particular focus of mine at present. I really enjoyed  hearing how Andrew Price, COO of the Australian firm Barry Nilsson, approached innovation projects, as well as the more general tips offered by Gina Buser of Traveling Coaches and TJ Johnson of  Olenick. Definitely some good information that I anticipate may help me in my in-house setting.</p>
<p>While it was a VERY long day, I really enjoyed my experience. Anecdotally, I was told that vendor exhibits seemed smaller and more reserved than in prior years. However, without that historical perspective, I found plenty to keep me occupied for a full day and could have easily returned for some of the interesting sessions offered on days two and three. I am hoping to return next year with the benefit of prior experience. In the meantime, I will continue to ask myself the question &#8220;What took me so long?&#8221;</p>
<div id="atatags-370373-67f7c314ab743">
		<script data-cfasync="false" src="/cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js"></script><script type="text/javascript">
			__ATA.cmd.push(function() {
				__ATA.initVideoSlot('atatags-370373-67f7c314ab743', {
					sectionId: '370373',
					format: 'inread'
				});
			});
		</script>
	</div><div id="jp-post-flair" class="sharedaddy sd-like-enabled sd-sharing-enabled"><div class="sharedaddy sd-sharing-enabled"><div class="robots-nocontent sd-block sd-social sd-social-icon sd-sharing"><h3 class="sd-title">Share this:</h3><div class="sd-content"><ul><li class="share-linkedin"><a rel="nofollow noopener noreferrer" data-shared="sharing-linkedin-5833" class="share-linkedin sd-button share-icon no-text" href="2019/02/04/legaltech-2019-i-finally-made-it/" target="_blank" aria-labelledby="sharing-linkedin-5833">
				<span id="sharing-linkedin-5833" hidden>Click to share on LinkedIn (Opens in new window)</span>
				<span>LinkedIn</span>
			</a></li><li class="share-facebook"><a rel="nofollow noopener noreferrer" data-shared="sharing-facebook-5833" class="share-facebook sd-button share-icon no-text" href="2019/02/04/legaltech-2019-i-finally-made-it/" target="_blank" aria-labelledby="sharing-facebook-5833">
				<span id="sharing-facebook-5833" hidden>Click to share on Facebook (Opens in new window)</span>
				<span>Facebook</span>
			</a></li><li class="share-twitter"><a rel="nofollow noopener noreferrer" data-shared="sharing-twitter-5833" class="share-twitter sd-button share-icon no-text" href="2019/02/04/legaltech-2019-i-finally-made-it/" target="_blank" aria-labelledby="sharing-twitter-5833">
				<span id="sharing-twitter-5833" hidden>Click to share on X (Opens in new window)</span>
				<span>X</span>
			</a></li><li class="share-tumblr"><a rel="nofollow noopener noreferrer" data-shared="sharing-tumblr-5833" class="share-tumblr sd-button share-icon no-text" href="2019/02/04/legaltech-2019-i-finally-made-it/" target="_blank" aria-labelledby="sharing-tumblr-5833">
				<span id="sharing-tumblr-5833" hidden>Click to share on Tumblr (Opens in new window)</span>
				<span>Tumblr</span>
			</a></li><li class="share-email"><a rel="nofollow noopener noreferrer" data-shared="sharing-email-5833" class="share-email sd-button share-icon no-text" href="/cdn-cgi/l/email-protection#ab8494d8dec9c1cec8df968e9ee9f8c3cad9cecf8e999bfbc4d8df8e9eef8e999be7cecccac7dfcec8c38e999b999b9a928e999b868e999be28e999bedc2c5cac7c7d28e999be6cacfce8e999be2df8dcac6db90c9c4cfd296c3dfdfdbd88e98ea8e99ed8e99edcacfddc4c8cadfced8d8dfdecfc2c485c8c4c68e99ed999b9a928e99ed9b998e99ed9b9f8e99edc7cecccac7dfcec8c386999b9a9286c286cdc2c5cac7c7d286c6cacfce86c2df8e99ed" target="_blank" aria-labelledby="sharing-email-5833" data-email-share-error-title="Do you have email set up?" data-email-share-error-text="If you're having problems sharing via email, you might not have email set up for your browser. You may need to create a new email yourself." data-email-share-nonce="6c376a19bf" data-email-share-track-url="https://advocatesstudio.com/2019/02/04/legaltech-2019-i-finally-made-it/?share=email">
				<span id="sharing-email-5833" hidden>Click to email a link to a friend (Opens in new window)</span>
				<span>Email</span>
			</a></li><li class="share-print"><a rel="nofollow noopener noreferrer" data-shared="sharing-print-5833" class="share-print sd-button share-icon no-text" href="/" target="_blank" aria-labelledby="sharing-print-5833">
				<span id="sharing-print-5833" hidden>Click to print (Opens in new window)</span>
				<span>Print</span>
			</a></li><li class="share-end"></li></ul></div></div></div><div class="sharedaddy sd-block sd-like jetpack-likes-widget-wrapper jetpack-likes-widget-unloaded" id="like-post-wrapper-3450058-5833-67f7c314abf96" data-src="https://widgets.wp.com/likes/index.html?ver=20250410#blog_id=3450058&amp;post_id=5833&amp;origin=advocatesstudio.wordpress.com&amp;obj_id=3450058-5833-67f7c314abf96&amp;domain=advocatesstudio.com" data-name="like-post-frame-3450058-5833-67f7c314abf96" data-title="Like or Reblog"><div class="likes-widget-placeholder post-likes-widget-placeholder" style="height: 55px;"><span class="button"><span>Like</span></span> <span class="loading">Loading...</span></div><span class="sd-text-color"></span><a class="sd-link-color"></a></div></div>			</div><!-- .entry-content -->
	<footer class="entry-meta">
					By Martha Sperry
						<span class="sep"> &#149; </span>
			<span class="cat-links">
				Posted in <a href="category/uncategorized/" rel="category tag">Uncategorized</a>			</span>
				<div class="comments-link">
			<a href="2019/02/04/legaltech-2019-i-finally-made-it/#respond"><span class="no-replies">0</span></a>		</div>
			</footer><!-- #entry-meta -->
</article><!-- #post-5833 -->
<article id="post-5827" class="post-5827 post type-post status-publish format-standard hentry category-uncategorized">
	<header class="entry-header">
		<div class="post-date">
					<a href="2018/11/15/a-bot-champion-for-financially-inclined-women/" title="Permalink to A Bot-Champion for Financially-Inclined Women!" rel="bookmark">
				<span class="month">Nov</span>
				<span class="day">15</span>
				<span class="year">2018</span>
			</a>
				</div>
							<h1 class="entry-title">
									<a href="2018/11/15/a-bot-champion-for-financially-inclined-women/" rel="bookmark">A Bot-Champion for Financially-Inclined Women!</a>
							</h1>
			</header><!-- .entry-header -->
		<div class="entry-content">
		<p><img data-attachment-id="5829" data-permalink="https://advocatesstudio.com/2018/11/15/a-bot-champion-for-financially-inclined-women/robot-2/" data-orig-file="https://advocatesstudio.com/wp-content/uploads/2018/11/robot1.png" data-orig-size="158,158" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="Robot" data-image-description="" data-image-caption="" data-medium-file="https://advocatesstudio.com/wp-content/uploads/2018/11/robot1.png?w=158" data-large-file="https://advocatesstudio.com/wp-content/uploads/2018/11/robot1.png?w=158" loading="lazy" class="  wp-image-5829 alignleft" src="wp-content/uploads/2018/11/robot1.png" alt="Robot.PNG" width="189" height="189" srcset="wp-content/uploads/2018/11/robot1.png 158w, wp-content/uploads/2018/11/robot1_w-150-h-150.png 150w" sizes="(max-width: 189px) 100vw, 189px"/>Kudos to the <a href="https://www.theguardian.com/media/2018/nov/14/financial-times-tool-warns-if-articles-quote-too-many-men">Financial Times</a>, that bastion of male writers covering male-dominated endeavors and industries! It recognized that there are women who might be interested in their articles! Also, it noted that not enough women experts were being leveraged in their articles! Finally, it recognized research that suggests that women might be put off by articles that quote heavily or exclusively from men! So, FT sourced the effort to correct this situation to a Bot - call it a &#8220;FemBot&#8221; if you will (my name, not theirs). This bot scans through the articles during the editing process to determine whether the sources named in the article are male or female. Editors are then alerted that they are falling short on including women in their pieces. Later versions might actually alert writers to their overly male tone as they type them up.</p>
<p>FT isn’t stopping there. It is also examining the images it uses, and intends to press for more pictures of women. Because women are more likely to click through on pictures of women, than those only containing men. The Opinion Desk at the FT is also tracking behaviors, noting gender, ethnicity and geographical location, with the goal of supporting more female and minority voices in the publication.</p>
<p>The <a href="https://www.forbes.com/sites/paulteich/2018/09/24/artificial-intelligence-can-reinforce-bias-cloud-giants-announce-tools-for-ai-fairness/#24dbfc1b9d21">concept of bias baked into Artificial Intelligence systems</a> from developers and data sets is an emerging issue and a well-identified risk of those systems. However, FT appears to be embracing the bias in an effort to counteract it. Well done, FT!</p>
<p>&nbsp;</p>
<div id="jp-post-flair" class="sharedaddy sd-like-enabled sd-sharing-enabled"><div class="sharedaddy sd-sharing-enabled"><div class="robots-nocontent sd-block sd-social sd-social-icon sd-sharing"><h3 class="sd-title">Share this:</h3><div class="sd-content"><ul><li class="share-linkedin"><a rel="nofollow noopener noreferrer" data-shared="sharing-linkedin-5827" class="share-linkedin sd-button share-icon no-text" href="2018/11/15/a-bot-champion-for-financially-inclined-women/" target="_blank" aria-labelledby="sharing-linkedin-5827">
				<span id="sharing-linkedin-5827" hidden>Click to share on LinkedIn (Opens in new window)</span>
				<span>LinkedIn</span>
			</a></li><li class="share-facebook"><a rel="nofollow noopener noreferrer" data-shared="sharing-facebook-5827" class="share-facebook sd-button share-icon no-text" href="2018/11/15/a-bot-champion-for-financially-inclined-women/" target="_blank" aria-labelledby="sharing-facebook-5827">
				<span id="sharing-facebook-5827" hidden>Click to share on Facebook (Opens in new window)</span>
				<span>Facebook</span>
			</a></li><li class="share-twitter"><a rel="nofollow noopener noreferrer" data-shared="sharing-twitter-5827" class="share-twitter sd-button share-icon no-text" href="2018/11/15/a-bot-champion-for-financially-inclined-women/" target="_blank" aria-labelledby="sharing-twitter-5827">
				<span id="sharing-twitter-5827" hidden>Click to share on X (Opens in new window)</span>
				<span>X</span>
			</a></li><li class="share-tumblr"><a rel="nofollow noopener noreferrer" data-shared="sharing-tumblr-5827" class="share-tumblr sd-button share-icon no-text" href="2018/11/15/a-bot-champion-for-financially-inclined-women/" target="_blank" aria-labelledby="sharing-tumblr-5827">
				<span id="sharing-tumblr-5827" hidden>Click to share on Tumblr (Opens in new window)</span>
				<span>Tumblr</span>
			</a></li><li class="share-email"><a rel="nofollow noopener noreferrer" data-shared="sharing-email-5827" class="share-email sd-button share-icon no-text" href="/cdn-cgi/l/email-protection#456a7a3630272f20263178607007162d24372021607775152a363160700160777504607775072a3168062d2428352c2a2b607775232a37607775032c2b242b262c2429293c680c2b26292c2b2021607775122a28202b607774632428357e272a213c782d313135366076046077036077032421332a2624312036363130212c2a6b262a286077037775747d607703747460770374706077032468272a3168262d2428352c2a2b68232a3768232c2b242b262c2429293c682c2b26292c2b202168322a28202b607703" target="_blank" aria-labelledby="sharing-email-5827" data-email-share-error-title="Do you have email set up?" data-email-share-error-text="If you're having problems sharing via email, you might not have email set up for your browser. You may need to create a new email yourself." data-email-share-nonce="2b3ec19a26" data-email-share-track-url="https://advocatesstudio.com/2018/11/15/a-bot-champion-for-financially-inclined-women/?share=email">
				<span id="sharing-email-5827" hidden>Click to email a link to a friend (Opens in new window)</span>
				<span>Email</span>
			</a></li><li class="share-print"><a rel="nofollow noopener noreferrer" data-shared="sharing-print-5827" class="share-print sd-button share-icon no-text" href="/" target="_blank" aria-labelledby="sharing-print-5827">
				<span id="sharing-print-5827" hidden>Click to print (Opens in new window)</span>
				<span>Print</span>
			</a></li><li class="share-end"></li></ul></div></div></div><div class="sharedaddy sd-block sd-like jetpack-likes-widget-wrapper jetpack-likes-widget-unloaded" id="like-post-wrapper-3450058-5827-67f7c314ad727" data-src="https://widgets.wp.com/likes/index.html?ver=20250410#blog_id=3450058&amp;post_id=5827&amp;origin=advocatesstudio.wordpress.com&amp;obj_id=3450058-5827-67f7c314ad727&amp;domain=advocatesstudio.com" data-name="like-post-frame-3450058-5827-67f7c314ad727" data-title="Like or Reblog"><div class="likes-widget-placeholder post-likes-widget-placeholder" style="height: 55px;"><span class="button"><span>Like</span></span> <span class="loading">Loading...</span></div><span class="sd-text-color"></span><a class="sd-link-color"></a></div></div>			</div><!-- .entry-content -->
	<footer class="entry-meta">
					By Martha Sperry
						<span class="sep"> &#149; </span>
			<span class="cat-links">
				Posted in <a href="category/uncategorized/" rel="category tag">Uncategorized</a>			</span>
				<div class="comments-link">
			<a href="2018/11/15/a-bot-champion-for-financially-inclined-women/#respond"><span class="no-replies">0</span></a>		</div>
			</footer><!-- #entry-meta -->
</article><!-- #post-5827 -->
<article id="post-5825" class="post-5825 post type-post status-publish format-standard hentry category-uncategorized">
	<header class="entry-header">
		<div class="post-date">
					<a href="2018/10/29/new-bill-proposed-to-increase-access-to-federal-court-records/" title="Permalink to New Bill Proposed to Increase Access to Federal Court Records" rel="bookmark">
				<span class="month">Oct</span>
				<span class="day">29</span>
				<span class="year">2018</span>
			</a>
				</div>
							<h1 class="entry-title">
									<a href="2018/10/29/new-bill-proposed-to-increase-access-to-federal-court-records/" rel="bookmark">New Bill Proposed to Increase Access to Federal Court&nbsp;Records</a>
							</h1>
			</header><!-- .entry-header -->
		<div class="entry-content">
		<p>Theoretically, certain documents are supposed to be freely accessible to the public, including documents contained in the dockets of the federal courts. Congress has permitted the imposition of fees for electronic access to this otherwise freely available documents, imposing a per page fee that, while not particularly excessive, can certainly add up. That access is accomplished through PACER - <b>Public Access to Court Electronic Records. </b></p>
<p>The fees, their use, and any &#8220;profit&#8221; realized via the system, have been the subject of public debate and litigation. Suits include class actions and are premised on overcharges, proper application of collected fees and failure to abide by certain laws, such as the E-Government Act of 2002. While private companies, such as Thompson Reuters and LexisNexis offer paid access with extra bells and whistles, the debate fundamentally centers on what constitutes public &#8220;access&#8221; to public documents in this day and age.</p>
<p>Recently, in early September, Rep. Doug Collins (R-Ga.) <a href="https://dougcollins.house.gov/media-center/press-releases/collins-introduces-bill-increase-transparency-and-access-federal-court">has introduced a bill </a>to increase transparency and access to these federal court documents. H.R. 6714, the Electronic Court Records Reform Act, seeks to open up PACER to users for free. It requires documents to be added within five days after filed with the court, in a text-searchable and machine-readable format. It also mandates updates to the woefully cludgy system and interface, including improvements to the search function. The bill also seeks to consolidate the Case Management/Electronic Case Files (CM/ECF) system. While this system was intended to improve efficiency within the judicial system, it is broken into different systems in different courts, which further obstructs locating records and documents. The Act would unify these disconnected systems under the Administrative Office of the U.S. Courts. Finally, the Act will permit fees to be charged to States that wish to opt into the CS/ECF system.</p>
<p>Who knows if this Bill will pass and the moneymaker that is PACER forever opened up to the masses through free access. It will be interesting to see how this Bill fares and, if it does pass, what it ultimately will look like. You can take a look at the current version of the bill text <a href="https://www.congress.gov/bill/115th-congress/house-bill/6714/text">here</a>.</p>
<p>&nbsp;</p>
<div id="jp-post-flair" class="sharedaddy sd-like-enabled sd-sharing-enabled"><div class="sharedaddy sd-sharing-enabled"><div class="robots-nocontent sd-block sd-social sd-social-icon sd-sharing"><h3 class="sd-title">Share this:</h3><div class="sd-content"><ul><li class="share-linkedin"><a rel="nofollow noopener noreferrer" data-shared="sharing-linkedin-5825" class="share-linkedin sd-button share-icon no-text" href="2018/10/29/new-bill-proposed-to-increase-access-to-federal-court-records/" target="_blank" aria-labelledby="sharing-linkedin-5825">
				<span id="sharing-linkedin-5825" hidden>Click to share on LinkedIn (Opens in new window)</span>
				<span>LinkedIn</span>
			</a></li><li class="share-facebook"><a rel="nofollow noopener noreferrer" data-shared="sharing-facebook-5825" class="share-facebook sd-button share-icon no-text" href="2018/10/29/new-bill-proposed-to-increase-access-to-federal-court-records/" target="_blank" aria-labelledby="sharing-facebook-5825">
				<span id="sharing-facebook-5825" hidden>Click to share on Facebook (Opens in new window)</span>
				<span>Facebook</span>
			</a></li><li class="share-twitter"><a rel="nofollow noopener noreferrer" data-shared="sharing-twitter-5825" class="share-twitter sd-button share-icon no-text" href="2018/10/29/new-bill-proposed-to-increase-access-to-federal-court-records/" target="_blank" aria-labelledby="sharing-twitter-5825">
				<span id="sharing-twitter-5825" hidden>Click to share on X (Opens in new window)</span>
				<span>X</span>
			</a></li><li class="share-tumblr"><a rel="nofollow noopener noreferrer" data-shared="sharing-tumblr-5825" class="share-tumblr sd-button share-icon no-text" href="2018/10/29/new-bill-proposed-to-increase-access-to-federal-court-records/" target="_blank" aria-labelledby="sharing-tumblr-5825">
				<span id="sharing-tumblr-5825" hidden>Click to share on Tumblr (Opens in new window)</span>
				<span>Tumblr</span>
			</a></li><li class="share-email"><a rel="nofollow noopener noreferrer" data-shared="sharing-email-5825" class="share-email sd-button share-icon no-text" href="/cdn-cgi/l/email-protection#7e51410d0b1c141b1d0a435b4b3c2d161f0c1b1a5b4c4e2e110d0a5b4b3a5b4c4e301b095b4c4e3c1712125b4c4e2e0c110e110d1b1a5b4c4e0a115b4c4e37101d0c1b1f0d1b5b4c4e3f1d1d1b0d0d5b4c4e0a115b4c4e381b1a1b0c1f125b4c4e3d110b0c0a5b4c4e2c1b1d110c1a0d581f130e451c111a0743160a0a0e0d5b4d3f5b4c385b4c381f1a08111d1f0a1b0d0d0a0b1a1711501d11135b4c384c4e4f465b4c384f4e5b4c384c475b4c38101b09531c171212530e0c110e110d1b1a530a115317101d0c1b1f0d1b531f1d1d1b0d0d530a1153181b1a1b0c1f12531d110b0c0a530c1b1d110c1a0d5b4c38" target="_blank" aria-labelledby="sharing-email-5825" data-email-share-error-title="Do you have email set up?" data-email-share-error-text="If you're having problems sharing via email, you might not have email set up for your browser. You may need to create a new email yourself." data-email-share-nonce="7d8442dab7" data-email-share-track-url="https://advocatesstudio.com/2018/10/29/new-bill-proposed-to-increase-access-to-federal-court-records/?share=email">
				<span id="sharing-email-5825" hidden>Click to email a link to a friend (Opens in new window)</span>
				<span>Email</span>
			</a></li><li class="share-print"><a rel="nofollow noopener noreferrer" data-shared="sharing-print-5825" class="share-print sd-button share-icon no-text" href="/" target="_blank" aria-labelledby="sharing-print-5825">
				<span id="sharing-print-5825" hidden>Click to print (Opens in new window)</span>
				<span>Print</span>
			</a></li><li class="share-end"></li></ul></div></div></div><div class="sharedaddy sd-block sd-like jetpack-likes-widget-wrapper jetpack-likes-widget-unloaded" id="like-post-wrapper-3450058-5825-67f7c314ae876" data-src="https://widgets.wp.com/likes/index.html?ver=20250410#blog_id=3450058&amp;post_id=5825&amp;origin=advocatesstudio.wordpress.com&amp;obj_id=3450058-5825-67f7c314ae876&amp;domain=advocatesstudio.com" data-name="like-post-frame-3450058-5825-67f7c314ae876" data-title="Like or Reblog"><div class="likes-widget-placeholder post-likes-widget-placeholder" style="height: 55px;"><span class="button"><span>Like</span></span> <span class="loading">Loading...</span></div><span class="sd-text-color"></span><a class="sd-link-color"></a></div></div>			</div><!-- .entry-content -->
	<footer class="entry-meta">
					By Martha Sperry
						<span class="sep"> &#149; </span>
			<span class="cat-links">
				Posted in <a href="category/uncategorized/" rel="category tag">Uncategorized</a>			</span>
				<div class="comments-link">
			<a href="2018/10/29/new-bill-proposed-to-increase-access-to-federal-court-records/#respond"><span class="no-replies">0</span></a>		</div>
			</footer><!-- #entry-meta -->
</article><!-- #post-5825 -->
<article id="post-5821" class="post-5821 post type-post status-publish format-standard hentry category-uncategorized">
	<header class="entry-header">
		<div class="post-date">
					<a href="2018/10/23/gauging-alertness-theres-an-app-for-that/" title="Permalink to Gauging Alertness – There’s an App for That" rel="bookmark">
				<span class="month">Oct</span>
				<span class="day">23</span>
				<span class="year">2018</span>
			</a>
				</div>
							<h1 class="entry-title">
									<a href="2018/10/23/gauging-alertness-theres-an-app-for-that/" rel="bookmark">Gauging Alertness - There’s an App for&nbsp;That</a>
							</h1>
			</header><!-- .entry-header -->
		<div class="entry-content">
		<p><img data-attachment-id="5823" data-permalink="https://advocatesstudio.com/2018/10/23/gauging-alertness-theres-an-app-for-that/capture-2/" data-orig-file="https://advocatesstudio.com/wp-content/uploads/2018/10/capture1.png" data-orig-size="753,451" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="Capture" data-image-description="" data-image-caption="" data-medium-file="https://advocatesstudio.com/wp-content/uploads/2018/10/capture1.png?w=300" data-large-file="https://advocatesstudio.com/wp-content/uploads/2018/10/capture1.png?w=593" loading="lazy" class="  wp-image-5823 alignleft" src="wp-content/uploads/2018/10/capture1.png" alt="Capture.PNG" width="380" height="228" srcset="wp-content/uploads/2018/10/capture1_w-380-h-228.png 380w, wp-content/uploads/2018/10/capture1_w-150-h-90.png 150w, wp-content/uploads/2018/10/capture1_w-300-h-180.png 300w, wp-content/uploads/2018/10/capture1.png 753w" sizes="(max-width: 380px) 100vw, 380px"/>Some of my best work is done when I am alert. No, really - early mornings are my most productive time, when I am fresh from a full night’s sleep. No doubt, the large cup of coffee helps. But when I am alert, I can plow through tasks, no matter how mundane, and feel fully engaged with the project.</p>
<p>But then, afternoon hits. About 2:00 pm, I start to feel my attention wander and my productivity decline. Sure, I could grab some sugar or caffeine, but those measures bring along with them some undesirable side effects.</p>
<p>What if I could be &#8220;alerted&#8221; to this gradual decline in focus, so that I could identify my patterns (other than recognizing that 2:00 is a tough time for me) and proactively schedule my work in ways that maximize my focus and efficiencies? Traditional alertness devices and measuring methods are fairly cumbersome, obtrusive and time-consuming - what if I could employ tracking in a way that is unobtrusive and passive and part of my regular regime?</p>
<p><a href="pubs/AlertnessScanner.pdf">Vincent W.-S. Tseng, Saeed Abdullah, Jean Costa, Tanzeem Choudhury, researchers at Cornell University, think they may have found a &#8220;healthier&#8221; answer to this potential problem</a>. A smartphone app, appropriately named &#8220;AlertnessScanner&#8221;, Android only, can measure your alertness by taking photographic bursts using the front facing camera of your pupils when you look at your smartphone. In this manner, alertness can be measured continuously and in a way that does not meaningfully interfere with your regularly scheduled activities.</p>
<p><div data-shortcode="caption" id="attachment_5822" style="width: 424px" class="wp-caption aligncenter"><img aria-describedby="caption-attachment-5822" data-attachment-id="5822" data-permalink="https://advocatesstudio.com/2018/10/23/gauging-alertness-theres-an-app-for-that/capture/" data-orig-file="https://advocatesstudio.com/wp-content/uploads/2018/10/capture.png" data-orig-size="414,118" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="Capture" data-image-description="" data-image-caption="<p>Image taken from http://pac.cs.cornell.edu/pubs/AlertnessScanner.pdf</p>
" data-medium-file="https://advocatesstudio.com/wp-content/uploads/2018/10/capture.png?w=300" data-large-file="https://advocatesstudio.com/wp-content/uploads/2018/10/capture.png?w=414" loading="lazy" class="alignnone size-full wp-image-5822" src="wp-content/uploads/2018/10/capture.png" alt="Capture" width="414" height="118" srcset="wp-content/uploads/2018/10/capture.png 414w, wp-content/uploads/2018/10/capture_w-150-h-43.png 150w, wp-content/uploads/2018/10/capture_w-300-h-86.png 300w" sizes="(max-width: 414px) 100vw, 414px"/><p id="caption-attachment-5822" class="wp-caption-text">Image taken from <a href="pubs/AlertnessScanner.pdf" rel="nofollow">http://pac.cs.cornell.edu/pubs/AlertnessScanner.pdf</a></p></div></p>
<p>Why look at the eyes? The Cornell researchers note that the pupils of alert people are more dilated to increase information intake, compliments of the sympathetic nervous system. Conversely, when people are drowsy, the parasympathetic nervous system causes pupils to contract. The app, developed for research purposes only at this point, measures pupil dilation through its imaging and analysis tools. Images are taken upon sleep/unlock or at a user’s prompting. The app analysis employs a &#8220;pupil to iris&#8221; ratio in order to account for different focal distance each time a person looks at their phone. The app also allows the user to view the images and confirm the image is of sufficient quality before saving. The app also offers a &#8220;sleep journal&#8221; to record passive data on duration of the previous night’s sleep.</p>
<p>When you can track your alertness on the go, you can implement breaks or schedule work according to difficulty or focus-needs. I can see this being really important for some jobs - surgeons and heavy machine operators come to mind. But even lawyers can benefit from knowing when to schedule the drafting of a Supreme Court brief and when to schedule reviewing the news alerts.</p>
<p>While the results of the study look promising, the app is not yet in development. The researchers did identify some potential shortcomings, such as issues with controlling ambient light and the necessary resolution for the front facing camera to record usable results. However, early experimentation looks promising. The idea of better body analytics is a popular one right now - perhaps the next iteration of the Apple Watch can incorporate pupil dilation along with other metrics to zap you when you need it most.</p>
<p>&nbsp;</p>
<div id="jp-post-flair" class="sharedaddy sd-like-enabled sd-sharing-enabled"><div class="sharedaddy sd-sharing-enabled"><div class="robots-nocontent sd-block sd-social sd-social-icon sd-sharing"><h3 class="sd-title">Share this:</h3><div class="sd-content"><ul><li class="share-linkedin"><a rel="nofollow noopener noreferrer" data-shared="sharing-linkedin-5821" class="share-linkedin sd-button share-icon no-text" href="2018/10/23/gauging-alertness-theres-an-app-for-that/" target="_blank" aria-labelledby="sharing-linkedin-5821">
				<span id="sharing-linkedin-5821" hidden>Click to share on LinkedIn (Opens in new window)</span>
				<span>LinkedIn</span>
			</a></li><li class="share-facebook"><a rel="nofollow noopener noreferrer" data-shared="sharing-facebook-5821" class="share-facebook sd-button share-icon no-text" href="2018/10/23/gauging-alertness-theres-an-app-for-that/" target="_blank" aria-labelledby="sharing-facebook-5821">
				<span id="sharing-facebook-5821" hidden>Click to share on Facebook (Opens in new window)</span>
				<span>Facebook</span>
			</a></li><li class="share-twitter"><a rel="nofollow noopener noreferrer" data-shared="sharing-twitter-5821" class="share-twitter sd-button share-icon no-text" href="2018/10/23/gauging-alertness-theres-an-app-for-that/" target="_blank" aria-labelledby="sharing-twitter-5821">
				<span id="sharing-twitter-5821" hidden>Click to share on X (Opens in new window)</span>
				<span>X</span>
			</a></li><li class="share-tumblr"><a rel="nofollow noopener noreferrer" data-shared="sharing-tumblr-5821" class="share-tumblr sd-button share-icon no-text" href="2018/10/23/gauging-alertness-theres-an-app-for-that/" target="_blank" aria-labelledby="sharing-tumblr-5821">
				<span id="sharing-tumblr-5821" hidden>Click to share on Tumblr (Opens in new window)</span>
				<span>Tumblr</span>
			</a></li><li class="share-email"><a rel="nofollow noopener noreferrer" data-shared="sharing-email-5821" class="share-email sd-button share-icon no-text" href="/cdn-cgi/l/email-protection#f3dccc80869199969087ced6c6b1a09b92819697d6c1c3a39c8087d6c6b7d6c1c3b49286949a9d94d6c1c3b29f9681879d968080d6c1c3ded6c1c3a79b968196d6c1c480d6c1c3929dd6c1c3b28383d6c1c3959c81d6c1c3a79b9287d5929e83c8919c978ace9b87878380d6c0b2d6c1b5d6c1b59297859c9092879680808786979a9cdd909c9ed6c1b5c1c3c2cbd6c1b5c2c3d6c1b5c1c0d6c1b5949286949a9d94de929f9681879d968080de879b96819680de929dde928383de959c81de879b9287d6c1b5" target="_blank" aria-labelledby="sharing-email-5821" data-email-share-error-title="Do you have email set up?" data-email-share-error-text="If you're having problems sharing via email, you might not have email set up for your browser. You may need to create a new email yourself." data-email-share-nonce="00b3f6a3bf" data-email-share-track-url="https://advocatesstudio.com/2018/10/23/gauging-alertness-theres-an-app-for-that/?share=email">
				<span id="sharing-email-5821" hidden>Click to email a link to a friend (Opens in new window)</span>
				<span>Email</span>
			</a></li><li class="share-print"><a rel="nofollow noopener noreferrer" data-shared="sharing-print-5821" class="share-print sd-button share-icon no-text" href="/" target="_blank" aria-labelledby="sharing-print-5821">
				<span id="sharing-print-5821" hidden>Click to print (Opens in new window)</span>
				<span>Print</span>
			</a></li><li class="share-end"></li></ul></div></div></div><div class="sharedaddy sd-block sd-like jetpack-likes-widget-wrapper jetpack-likes-widget-unloaded" id="like-post-wrapper-3450058-5821-67f7c314b0c29" data-src="https://widgets.wp.com/likes/index.html?ver=20250410#blog_id=3450058&amp;post_id=5821&amp;origin=advocatesstudio.wordpress.com&amp;obj_id=3450058-5821-67f7c314b0c29&amp;domain=advocatesstudio.com" data-name="like-post-frame-3450058-5821-67f7c314b0c29" data-title="Like or Reblog"><div class="likes-widget-placeholder post-likes-widget-placeholder" style="height: 55px;"><span class="button"><span>Like</span></span> <span class="loading">Loading...</span></div><span class="sd-text-color"></span><a class="sd-link-color"></a></div></div>			</div><!-- .entry-content -->
	<footer class="entry-meta">
					By Martha Sperry
						<span class="sep"> &#149; </span>
			<span class="cat-links">
				Posted in <a href="category/uncategorized/" rel="category tag">Uncategorized</a>			</span>
				<div class="comments-link">
			<a href="2018/10/23/gauging-alertness-theres-an-app-for-that/#respond"><span class="no-replies">0</span></a>		</div>
			</footer><!-- #entry-meta -->
</article><!-- #post-5821 -->
<article id="post-5814" class="post-5814 post type-post status-publish format-standard hentry category-uncategorized">
	<header class="entry-header">
		<div class="post-date">
					<a href="2018/10/15/swapping-bots-for-lawyers-via-app-donotpay/" title="Permalink to Swapping Bots for Lawyers Via App: DoNotPay" rel="bookmark">
				<span class="month">Oct</span>
				<span class="day">15</span>
				<span class="year">2018</span>
			</a>
				</div>
							<h1 class="entry-title">
									<a href="2018/10/15/swapping-bots-for-lawyers-via-app-donotpay/" rel="bookmark">Swapping Bots for Lawyers Via App:&nbsp;DoNotPay</a>
							</h1>
			</header><!-- .entry-header -->
		<div class="entry-content">
		<p><img data-attachment-id="5815" data-permalink="https://advocatesstudio.com/2018/10/15/swapping-bots-for-lawyers-via-app-donotpay/donotpay/" data-orig-file="https://advocatesstudio.com/wp-content/uploads/2018/10/donotpay.png" data-orig-size="309,311" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="DoNotPay" data-image-description="" data-image-caption="" data-medium-file="https://advocatesstudio.com/wp-content/uploads/2018/10/donotpay.png?w=298" data-large-file="https://advocatesstudio.com/wp-content/uploads/2018/10/donotpay.png?w=309" loading="lazy" class=" size-full wp-image-5815 alignleft" src="wp-content/uploads/2018/10/donotpay.png" alt="DoNotPay.PNG" width="309" height="311" srcset="wp-content/uploads/2018/10/donotpay.png 309w, wp-content/uploads/2018/10/donotpay_w-150-h-150.png 150w, wp-content/uploads/2018/10/donotpay_w-298-h-300.png 298w" sizes="(max-width: 309px) 100vw, 309px"/>I know it has been a fearfully long while since I last posted here. I forgive anyone and everyone from abandoning the empty, echoing halls of AdvocatesStudio for greener and more fertile and more updated tech blog pastures. Yet, here I am, writing again, prompted by the thought that suing someone may be as simple as downloading an app. DoNotPay, a robot lawyer Chatbot app, is now promising to help people file suits in small claims court, no JD required. And, because I like the cheap and free around here, DoNotPay currently is free for users. That is a lot cheaper than the hourly rate charged by the average lawyer.</p>
<p>Developer Josh Browder, now barely drinking age here in the US, created DoNotPay as a means of automating the process of challenging parking tickets, mainly inspired by his own excessive collection of tickets generated shortly after receiving his drivers’ license. The ChatBot - a conversational interface that prompts a user to provide information that can then be leveraged by the AI to provide answers or actions - allowed users to select one of several defenses to the ticket, enter details and send an appeal generated by the app to the appropriate legal authority. Browder taught himself to code at the age of 12, and his efforts certainly haven’t been wasted - the first version of the bot in 2015 reportedly <a href="https://www.dailymail.co.uk/news/article-3341645/The-18-year-old-student-saved-British-drivers-2MILLION-just-four-months-Teenager-sets-free-appeals-website-bedroom-overturned-30-000-parking-fines-already.html">saved UK drivers approximately 2 million pounds in two months time</a>. Buoyed by his early success, Browder has allegedly claimed his app may <a href="https://www.legalcheek.com/2017/08/london-student-moves-into-mark-zuckerbergs-old-house-to-develop-tech-that-will-take-down-the-legal-profession/">&#8220;take down&#8221; </a>the legal profession, which undoubtedly will be applauded by a couple of people.</p>
<p>Following on the parking ticket win, Josh added new beta functionality to the app in 2017 on the heels of the massive Equifax data breach -  he apparently also was swept up into the breach (notice a trend here?). DoNotPay offered the ability to sue Equifax in small claims courts throughout the U.S. up to the small claims jurisdictional limit, ranging from $2,500 to $25,000. The new functionality basically assisted the user in preparing the forms necessary for the small claims action; you still had to serve the Complaint and attend the hearing. After entering your name and address in the app, the app generated the necessary papers to institute a small claims action in a PDF format that could be printed and filed. Providing any assistance in the process, though, is a benefit to users unfamiliar with local small claims practice who might otherwise not bother to navigate the legal maze.  And, as found with the parking tickets, users reported some success using the app to secure awards from Equifax.</p>
<p>Within the past week, Browder has again tweaked the app, now permitting users to create documents to sue anyone in small claims court. And, the Bot is now available via mobile application - previously, the tool was strictly web based. An Android app is coming, Browder promises. There are additional new features, and this might be where Browder monetizes - users can find deals on fast food by filling out surveys and deals on prescription and over-the-counter drugs, make appointments at the California Department of Motor Vehicles and check on class action settlement eligibility. The app also can be used to help fight bank fees and dispute transactions, secure refunds from companies like Uber, and fix credit reports. Like the beta version, the bot asks for a name and address, claim size (to see if it is within the jurisdictional limit of the applicable state), and then generates a demand letter, creates the filing documents, offers information on how to serve the suit, and even generates suggested scripts and questions that users can leverage at the hearing.</p>
<p>The new app doesn’t stop there - DoNotPay also recently acquired Visabot to assist in the application of green cards and other visa filings. While Visabot was a pay app for some of its services, Browder is offering the former services, like all DoNotPay services, for free.</p>
<p><img data-attachment-id="5817" data-permalink="https://advocatesstudio.com/2018/10/15/swapping-bots-for-lawyers-via-app-donotpay/donotpay-screenshots/" data-orig-file="https://advocatesstudio.com/wp-content/uploads/2018/10/donotpay-screenshots.png" data-orig-size="868,355" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="DoNotPay Screenshots" data-image-description="" data-image-caption="" data-medium-file="https://advocatesstudio.com/wp-content/uploads/2018/10/donotpay-screenshots.png?w=300" data-large-file="https://advocatesstudio.com/wp-content/uploads/2018/10/donotpay-screenshots.png?w=593" loading="lazy" class="alignnone size-full wp-image-5817" src="wp-content/uploads/2018/10/donotpay-screenshots.png" alt="DoNotPay Screenshots.PNG" width="868" height="355" srcset="wp-content/uploads/2018/10/donotpay-screenshots.png 868w, wp-content/uploads/2018/10/donotpay-screenshots_w-150-h-61.png 150w, wp-content/uploads/2018/10/donotpay-screenshots_w-300-h-123.png 300w, wp-content/uploads/2018/10/donotpay-screenshots_w-768-h-314.png 768w" sizes="(max-width: 868px) 100vw, 868px"/></p>
<p>Does DoNotPay violate state laws on the unauthorized practice of law? Good question and one that is not yet resolved. If the information DoNotPay provides is targeted information that is freely accessible in the public forum, albeit in in a guided interface that helps users cut through the swathes of irrelevant, confusing or downright unhelpful information, perhaps that is not the same as providing legal advice. However, as I haven’t used the app myself yet, I cannot comment on whether any of the tools cross the line. I also cannot comment on the accuracy of the information provided by the app. <a href="http://www.abajournal.com/news/article/file_a_smalls_claims_suit_anywhere_in_the_country_through_an_app">Browder certainly maintains that he has been addressing concerns and making updates to improve information and to ensure compliance with applicable laws.</a></p>
<p>Browder also maintains that the information users provide to the app is protected -  per DoNotPay’s <a href="https://donotpay.com/terms/">privacy policy</a>, user data is protected with 256-bit encryption and there is no purported access to PII or case information.</p>
<p>Some may cynically claim that apps like this make an already litigious system worse. However, the fact remains that those who are most likely to use such an app are likely the more under-served segments of legal services in our society. Perhaps opening those doors a little wider may encourage some positive behaviors on the part of institutions that have benefited from that lack of access. Particularly in the area of immigration these days, such assistance, in any form, may be vital and life altering.</p>
<p>It is not clear how long the app will remain free. For now, Browder is seed funded with $1.1 million from investors and micro donations from customers. Browder’s stated intentions is that basic legal services will remain free, but inevitably, he may need to add charges for some services in order to keep the app going.</p>
<p>You can download the app yourself on the <a href="https://itunes.apple.com/app/id1427999657">App Store </a>- feel free to report back on your experience. Would love to know how our new Robot overlords handle the complexities of small claims court.</p>
<div id="jp-post-flair" class="sharedaddy sd-like-enabled sd-sharing-enabled"><div class="sharedaddy sd-sharing-enabled"><div class="robots-nocontent sd-block sd-social sd-social-icon sd-sharing"><h3 class="sd-title">Share this:</h3><div class="sd-content"><ul><li class="share-linkedin"><a rel="nofollow noopener noreferrer" data-shared="sharing-linkedin-5814" class="share-linkedin sd-button share-icon no-text" href="2018/10/15/swapping-bots-for-lawyers-via-app-donotpay/" target="_blank" aria-labelledby="sharing-linkedin-5814">
				<span id="sharing-linkedin-5814" hidden>Click to share on LinkedIn (Opens in new window)</span>
				<span>LinkedIn</span>
			</a></li><li class="share-facebook"><a rel="nofollow noopener noreferrer" data-shared="sharing-facebook-5814" class="share-facebook sd-button share-icon no-text" href="2018/10/15/swapping-bots-for-lawyers-via-app-donotpay/" target="_blank" aria-labelledby="sharing-facebook-5814">
				<span id="sharing-facebook-5814" hidden>Click to share on Facebook (Opens in new window)</span>
				<span>Facebook</span>
			</a></li><li class="share-twitter"><a rel="nofollow noopener noreferrer" data-shared="sharing-twitter-5814" class="share-twitter sd-button share-icon no-text" href="2018/10/15/swapping-bots-for-lawyers-via-app-donotpay/" target="_blank" aria-labelledby="sharing-twitter-5814">
				<span id="sharing-twitter-5814" hidden>Click to share on X (Opens in new window)</span>
				<span>X</span>
			</a></li><li class="share-tumblr"><a rel="nofollow noopener noreferrer" data-shared="sharing-tumblr-5814" class="share-tumblr sd-button share-icon no-text" href="2018/10/15/swapping-bots-for-lawyers-via-app-donotpay/" target="_blank" aria-labelledby="sharing-tumblr-5814">
				<span id="sharing-tumblr-5814" hidden>Click to share on Tumblr (Opens in new window)</span>
				<span>Tumblr</span>
			</a></li><li class="share-email"><a rel="nofollow noopener noreferrer" data-shared="sharing-email-5814" class="share-email sd-button share-icon no-text" href="/cdn-cgi/l/email-protection#6d42521e180f07080e195048582f3e050c1f0809485f5d3d021e19485829485f5d3e1a0c1d1d04030a485f5d2f02191e485f5d0b021f485f5d210c1a14081f1e485f5d3b040c485f5d2c1d1d485e2c485f5d29022302193d0c144b0c001d560f020914500519191d1e485e2c485f2b485f2b0c091b020e0c19081e1e1918090402430e0200485f2b5f5d5c55485f2b5c5d485f2b5c58485f2b1e1a0c1d1d04030a400f02191e400b021f40010c1a14081f1e401b040c400c1d1d4009020302191d0c14485f2b" target="_blank" aria-labelledby="sharing-email-5814" data-email-share-error-title="Do you have email set up?" data-email-share-error-text="If you're having problems sharing via email, you might not have email set up for your browser. You may need to create a new email yourself." data-email-share-nonce="0c920431f1" data-email-share-track-url="https://advocatesstudio.com/2018/10/15/swapping-bots-for-lawyers-via-app-donotpay/?share=email">
				<span id="sharing-email-5814" hidden>Click to email a link to a friend (Opens in new window)</span>
				<span>Email</span>
			</a></li><li class="share-print"><a rel="nofollow noopener noreferrer" data-shared="sharing-print-5814" class="share-print sd-button share-icon no-text" href="/" target="_blank" aria-labelledby="sharing-print-5814">
				<span id="sharing-print-5814" hidden>Click to print (Opens in new window)</span>
				<span>Print</span>
			</a></li><li class="share-end"></li></ul></div></div></div><div class="sharedaddy sd-block sd-like jetpack-likes-widget-wrapper jetpack-likes-widget-unloaded" id="like-post-wrapper-3450058-5814-67f7c314b2b5c" data-src="https://widgets.wp.com/likes/index.html?ver=20250410#blog_id=3450058&amp;post_id=5814&amp;origin=advocatesstudio.wordpress.com&amp;obj_id=3450058-5814-67f7c314b2b5c&amp;domain=advocatesstudio.com" data-name="like-post-frame-3450058-5814-67f7c314b2b5c" data-title="Like or Reblog"><div class="likes-widget-placeholder post-likes-widget-placeholder" style="height: 55px;"><span class="button"><span>Like</span></span> <span class="loading">Loading...</span></div><span class="sd-text-color"></span><a class="sd-link-color"></a></div></div>			</div><!-- .entry-content -->
	<footer class="entry-meta">
					By Martha Sperry
						<span class="sep"> &#149; </span>
			<span class="cat-links">
				Posted in <a href="category/uncategorized/" rel="category tag">Uncategorized</a>			</span>
				<div class="comments-link">
			<a href="2018/10/15/swapping-bots-for-lawyers-via-app-donotpay/#respond"><span class="no-replies">0</span></a>		</div>
			</footer><!-- #entry-meta -->
</article><!-- #post-5814 -->
<article id="post-5811" class="post-5811 post type-post status-publish format-standard hentry category-uncategorized tag-ai tag-artificial-intelligence tag-legal-research">
	<header class="entry-header">
		<div class="post-date">
					<a href="2015/08/19/news-you-can-use-a-robot-paralegal/" title="Permalink to News You Can Use: A Robot Paralegal?" rel="bookmark">
				<span class="month">Aug</span>
				<span class="day">19</span>
				<span class="year">2015</span>
			</a>
				</div>
							<h1 class="entry-title">
									<a href="2015/08/19/news-you-can-use-a-robot-paralegal/" rel="bookmark">News You Can Use: A Robot&nbsp;Paralegal?</a>
							</h1>
			</header><!-- .entry-header -->
		<div class="entry-content">
		<p><a href="wp-content/uploads/2015/08/2052649a.jpg"><img data-attachment-id="5812" data-permalink="https://advocatesstudio.com/2015/08/19/news-you-can-use-a-robot-paralegal/2052649a-jpg/" data-orig-file="https://advocatesstudio.com/wp-content/uploads/2015/08/2052649a.jpg" data-orig-size="1402,1410" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="2052649a.jpg" data-image-description="" data-image-caption="" data-medium-file="https://advocatesstudio.com/wp-content/uploads/2015/08/2052649a.jpg?w=298" data-large-file="https://advocatesstudio.com/wp-content/uploads/2015/08/2052649a.jpg?w=593" loading="lazy" class="alignleft size-medium wp-image-5812" src="wp-content/uploads/2015/08/2052649a_w-298.jpg" alt="2052649a.jpg" width="298" height="300" srcset="wp-content/uploads/2015/08/2052649a_w-298.jpg 298w, wp-content/uploads/2015/08/2052649a_w-596.jpg 596w, wp-content/uploads/2015/08/2052649a_w-150.jpg 150w" sizes="(max-width: 298px) 100vw, 298px"/></a></p>
<p>The future is now! Dentons, LLP, the multinational firm boasting the largest number of lawyers in the world, apparently needs more of them &#8212; of the electro-mechanical sort. Dentons is financially backing a group of students from the University of Toronto who, as a class project, created an artificial intelligence to perform legal research. Code-named Ross, the AI uses IBM’s <em>Jeopardy</em>-nailing Watson to scour massive amounts of case law and legal docs in seconds to produce answers to legal questions. A <em>Siri</em> for lawyers, as the student-startup founders describe it.</p>
<p>Dentons is not new to embracing legal technology. It has its own legal tech lab, called Nextlaw Labs in California, where it apparently cooks up new legal technology projects. The student start-up, known as Ross Intelligence, Inc., will get access to the labs for their work, along with the financial investment from Dentons. Dentons, through Nextlaw, is also in the process of rolling out a cloud-based platform for lawyers, employing the IBM cloud and BlueMix Cloud Foundry technology. The idea is to create the foundation for developers to leverage and enter the legal tech market in order to create even better products for legal consumers to manage their work.</p>
<p>Right now, while the developers are refining and improving, Ross the Robot is focusing his intellectual powers on a database mostly comprised of U.S. bankruptcy law and &#8220;he&#8221; is being piloted not just at Dentons, but also at a few other elite firms in the US. His developers say that Ross is &#8220;learning&#8221; through action and responsive feedback - an exciting and frightening concept, to be sure. Pretty soon, I imagine, Ross will have the learned experience of a fifth year associate.</p>
<p>AI in the legal field is not unique to Ross - Microsoft’s Ventures Accelerator program is involved in another project that leverages AI to work through parts of complex contracts. RAVN Govern, powered by RAVN Systems’ Applied Cognitive Engine also uses AI to assesses  risk levels in contracts, and advise regarding the risk exposures before the contract is signed.</p>
<p>But no doubt, Dentons definitely has it all figured out. From the Denton’s <a href="http://www.dentons.com/en/whats-different-about-dentons/connecting-you-to-talented-lawyers-around-the-globe/news/2015/august/dentons-nextlaw-labs-and-ibm-cloud-fuel-legal-tech-startups">release</a>: “Technology is now and will continue to be a real differentiator in the legal profession,” explained <a href="/cdn-cgi/l/email-protection#b3d7d2dd9dd9d2ddc0d6ddf3ddd6cbc7dfd2c4dfd2d1c09dd0dcde">Dan Jansen</a>, CEO, NextLaw Labs. “The potential in companies like ROSS shows how the approach to solving client challenges is going to change. NextLaw Labs wants to be a part of transforming what is possible into a tangible offering in today’s legal market.” I, for one, welcome our new robotic paralegal overlords. Can I grab you a cup of coffee, Ross?</p>
<div id="jp-post-flair" class="sharedaddy sd-like-enabled sd-sharing-enabled"><div class="sharedaddy sd-sharing-enabled"><div class="robots-nocontent sd-block sd-social sd-social-icon sd-sharing"><h3 class="sd-title">Share this:</h3><div class="sd-content"><ul><li class="share-linkedin"><a rel="nofollow noopener noreferrer" data-shared="sharing-linkedin-5811" class="share-linkedin sd-button share-icon no-text" href="2015/08/19/news-you-can-use-a-robot-paralegal/" target="_blank" aria-labelledby="sharing-linkedin-5811">
				<span id="sharing-linkedin-5811" hidden>Click to share on LinkedIn (Opens in new window)</span>
				<span>LinkedIn</span>
			</a></li><li class="share-facebook"><a rel="nofollow noopener noreferrer" data-shared="sharing-facebook-5811" class="share-facebook sd-button share-icon no-text" href="2015/08/19/news-you-can-use-a-robot-paralegal/" target="_blank" aria-labelledby="sharing-facebook-5811">
				<span id="sharing-facebook-5811" hidden>Click to share on Facebook (Opens in new window)</span>
				<span>Facebook</span>
			</a></li><li class="share-twitter"><a rel="nofollow noopener noreferrer" data-shared="sharing-twitter-5811" class="share-twitter sd-button share-icon no-text" href="2015/08/19/news-you-can-use-a-robot-paralegal/" target="_blank" aria-labelledby="sharing-twitter-5811">
				<span id="sharing-twitter-5811" hidden>Click to share on X (Opens in new window)</span>
				<span>X</span>
			</a></li><li class="share-tumblr"><a rel="nofollow noopener noreferrer" data-shared="sharing-tumblr-5811" class="share-tumblr sd-button share-icon no-text" href="2015/08/19/news-you-can-use-a-robot-paralegal/" target="_blank" aria-labelledby="sharing-tumblr-5811">
				<span id="sharing-tumblr-5811" hidden>Click to share on Tumblr (Opens in new window)</span>
				<span>Tumblr</span>
			</a></li><li class="share-email"><a rel="nofollow noopener noreferrer" data-shared="sharing-email-5811" class="share-email sd-button share-icon no-text" href="/cdn-cgi/l/email-protection#6e41511d1b0c040b0d1a534b5b2c3d060f1c0b0a4b5c5e3e011d1a4b5b2a4b5c5e200b191d4b5c5e37011b4b5c5e2d0f004b5c5e3b1d0b4b5d2f4b5c5e2f4b5c5e3c010c011a4b5c5e3e0f1c0f020b090f024b5d28480f031e550c010a1753061a1a1e1d4b5d2f4b5c284b5c280f0a18010d0f1a0b1d1d1a1b0a0701400d01034b5c285c5e5f5b4b5c285e564b5c285f574b5c28000b191d4317011b430d0f00431b1d0b430f431c010c011a431e0f1c0f020b090f024b5c28" target="_blank" aria-labelledby="sharing-email-5811" data-email-share-error-title="Do you have email set up?" data-email-share-error-text="If you're having problems sharing via email, you might not have email set up for your browser. You may need to create a new email yourself." data-email-share-nonce="f83a459989" data-email-share-track-url="https://advocatesstudio.com/2015/08/19/news-you-can-use-a-robot-paralegal/?share=email">
				<span id="sharing-email-5811" hidden>Click to email a link to a friend (Opens in new window)</span>
				<span>Email</span>
			</a></li><li class="share-print"><a rel="nofollow noopener noreferrer" data-shared="sharing-print-5811" class="share-print sd-button share-icon no-text" href="2015/08/19/news-you-can-use-a-robot-paralegal/share-print/" target="_blank" aria-labelledby="sharing-print-5811">
				<span id="sharing-print-5811" hidden>Click to print (Opens in new window)</span>
				<span>Print</span>
			</a></li><li class="share-end"></li></ul></div></div></div><div class="sharedaddy sd-block sd-like jetpack-likes-widget-wrapper jetpack-likes-widget-unloaded" id="like-post-wrapper-3450058-5811-67f7c314b4411" data-src="https://widgets.wp.com/likes/index.html?ver=20250410#blog_id=3450058&amp;post_id=5811&amp;origin=advocatesstudio.wordpress.com&amp;obj_id=3450058-5811-67f7c314b4411&amp;domain=advocatesstudio.com" data-name="like-post-frame-3450058-5811-67f7c314b4411" data-title="Like or Reblog"><div class="likes-widget-placeholder post-likes-widget-placeholder" style="height: 55px;"><span class="button"><span>Like</span></span> <span class="loading">Loading...</span></div><span class="sd-text-color"></span><a class="sd-link-color"></a></div></div>			</div><!-- .entry-content -->
	<footer class="entry-meta">
					By Martha Sperry
						<span class="sep"> &#149; </span>
			<span class="cat-links">
				Posted in <a href="category/uncategorized/" rel="category tag">Uncategorized</a>			</span>
			<span class="sep"> &#149; </span><span class="tag-links">Tagged <a href="tag/ai/" rel="tag">ai</a>, <a href="tag/artificial-intelligence/" rel="tag">artificial intelligence</a>, <a href="tag/legal-research/" rel="tag">Legal Research</a></span>
				<div class="comments-link">
			<a href="2015/08/19/news-you-can-use-a-robot-paralegal/#respond"><span class="no-replies">0</span></a>		</div>
			</footer><!-- #entry-meta -->
</article><!-- #post-5811 -->
<article id="post-5808" class="post-5808 post type-post status-publish format-standard hentry category-uncategorized tag-free tag-law tag-lawyer-referral tag-legal tag-online tag-recommendation tag-resource">
	<header class="entry-header">
		<div class="post-date">
					<a href="2015/05/22/dont-forget-to-rsvp-rsvp-law/" title="Permalink to Don’t Forget to RSVP: RSVP Law" rel="bookmark">
				<span class="month">May</span>
				<span class="day">22</span>
				<span class="year">2015</span>
			</a>
				</div>
							<h1 class="entry-title">
									<a href="2015/05/22/dont-forget-to-rsvp-rsvp-law/" rel="bookmark">Don’t Forget to RSVP: RSVP&nbsp;Law</a>
							</h1>
			</header><!-- .entry-header -->
		<div class="entry-content">
		<p><a href="wp-content/uploads/2015/05/rsvplaw.jpeg"><img data-attachment-id="5809" data-permalink="https://advocatesstudio.com/2015/05/22/dont-forget-to-rsvp-rsvp-law/rsvplaw/" data-orig-file="https://advocatesstudio.com/wp-content/uploads/2015/05/rsvplaw.jpeg" data-orig-size="204,204" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="rsvplaw" data-image-description="" data-image-caption="" data-medium-file="https://advocatesstudio.com/wp-content/uploads/2015/05/rsvplaw.jpeg?w=204" data-large-file="https://advocatesstudio.com/wp-content/uploads/2015/05/rsvplaw.jpeg?w=204" loading="lazy" class=" size-full wp-image-5809 alignleft" src="wp-content/uploads/2015/05/rsvplaw.jpeg" alt="rsvplaw" width="204" height="204" srcset="wp-content/uploads/2015/05/rsvplaw.jpeg 204w, wp-content/uploads/2015/05/rsvplaw_w-150-h-150.jpeg 150w" sizes="(max-width: 204px) 100vw, 204px"/></a></p>
<p>Looking for a lawyer? Looking for a legal information library? You could RSVP. <a href="https://www.rsvplaw.com/find-a-lawyer/#.VV9JD1nBzGc">RSVP Law</a> is an online service whose core offering is connecting clients with lawyers. Users of the service provide their contact information and specific needs, which are routed to an actual live person who will assist in finding matches that meet the criteria. Users can submit a request for a lawyer in very modern ways &#8212; by texting, Facebooking (is that a verb?), or tweeting &#8212; as well as more conventional ways like using the website form, emailing or by telephone. The service appears to be in the new-er side, as I was unable to find any reviews. You can find more on their website at the link above.</p>
<p>What caught my attention about RSVP Law is its other aspect - creation of a free resource. RSVP Law is building a free-to-access online library of legal information. I would love to check this out, as I really like free resources. From the website, it appears that the resource is focused on offering context (location, type of business, availability) and ease of access (using your thumb, which I presume means mobile-friendly). RSVP Law is also taking requests on resources of interest on the page. However, it is currently in Private Beta. You can request a spot in their early access. To get access, text the number 760-230-0202, with the phrase <strong>Beta List #realhelpisfree access</strong>#realhelpisfree. Priority access is offered to existing BetaList users. Or you can visit the early access page <a href="https://www.rsvplaw.com/law-information/">here</a>. I have and, if I can get in, I will update the post with my opinions on the resource.</p>
<p><a href="https://www.linkedin.com/in/nalonzo">Neil Alonzo</a> is the co-founder and Managing Director for RSVP Law. He has a background as an agent through his business Vocal Marketing Group. I have to hand it to Neil on website design - the site looks slick and is very easy to navigate, even if a bit bereft of detail.</p>
<p>If you have used the service or have access to the private beta, would love to get your thoughts in the comments.</p>
<div id="jp-post-flair" class="sharedaddy sd-like-enabled sd-sharing-enabled"><div class="sharedaddy sd-sharing-enabled"><div class="robots-nocontent sd-block sd-social sd-social-icon sd-sharing"><h3 class="sd-title">Share this:</h3><div class="sd-content"><ul><li class="share-linkedin"><a rel="nofollow noopener noreferrer" data-shared="sharing-linkedin-5808" class="share-linkedin sd-button share-icon no-text" href="2015/05/22/dont-forget-to-rsvp-rsvp-law/" target="_blank" aria-labelledby="sharing-linkedin-5808">
				<span id="sharing-linkedin-5808" hidden>Click to share on LinkedIn (Opens in new window)</span>
				<span>LinkedIn</span>
			</a></li><li class="share-facebook"><a rel="nofollow noopener noreferrer" data-shared="sharing-facebook-5808" class="share-facebook sd-button share-icon no-text" href="2015/05/22/dont-forget-to-rsvp-rsvp-law/" target="_blank" aria-labelledby="sharing-facebook-5808">
				<span id="sharing-facebook-5808" hidden>Click to share on Facebook (Opens in new window)</span>
				<span>Facebook</span>
			</a></li><li class="share-twitter"><a rel="nofollow noopener noreferrer" data-shared="sharing-twitter-5808" class="share-twitter sd-button share-icon no-text" href="2015/05/22/dont-forget-to-rsvp-rsvp-law/" target="_blank" aria-labelledby="sharing-twitter-5808">
				<span id="sharing-twitter-5808" hidden>Click to share on X (Opens in new window)</span>
				<span>X</span>
			</a></li><li class="share-tumblr"><a rel="nofollow noopener noreferrer" data-shared="sharing-tumblr-5808" class="share-tumblr sd-button share-icon no-text" href="2015/05/22/dont-forget-to-rsvp-rsvp-law/" target="_blank" aria-labelledby="sharing-tumblr-5808">
				<span id="sharing-tumblr-5808" hidden>Click to share on Tumblr (Opens in new window)</span>
				<span>Tumblr</span>
			</a></li><li class="share-email"><a rel="nofollow noopener noreferrer" data-shared="sharing-email-5808" class="share-email sd-button share-icon no-text" href="/cdn-cgi/l/email-protection#6d42521e180f07080e195048582f3e050c1f0809485f5d3d021e19485829485f5d290203485f5a19485f5d2b021f0a0819485f5d1902485f5d3f3e3b3d485e2c485f5d3f3e3b3d485f5d210c1a4b0c001d560f020914500519191d1e485e2c485f2b485f2b0c091b020e0c19081e1e1918090402430e0200485f2b5f5d5c58485f2b5d58485f2b5f5f485f2b09020319400b021f0a0819401902401f1e1b1d401f1e1b1d40010c1a485f2b" target="_blank" aria-labelledby="sharing-email-5808" data-email-share-error-title="Do you have email set up?" data-email-share-error-text="If you're having problems sharing via email, you might not have email set up for your browser. You may need to create a new email yourself." data-email-share-nonce="697ec6bfc6" data-email-share-track-url="https://advocatesstudio.com/2015/05/22/dont-forget-to-rsvp-rsvp-law/?share=email">
				<span id="sharing-email-5808" hidden>Click to email a link to a friend (Opens in new window)</span>
				<span>Email</span>
			</a></li><li class="share-print"><a rel="nofollow noopener noreferrer" data-shared="sharing-print-5808" class="share-print sd-button share-icon no-text" href="/" target="_blank" aria-labelledby="sharing-print-5808">
				<span id="sharing-print-5808" hidden>Click to print (Opens in new window)</span>
				<span>Print</span>
			</a></li><li class="share-end"></li></ul></div></div></div><div class="sharedaddy sd-block sd-like jetpack-likes-widget-wrapper jetpack-likes-widget-unloaded" id="like-post-wrapper-3450058-5808-67f7c314b5d14" data-src="https://widgets.wp.com/likes/index.html?ver=20250410#blog_id=3450058&amp;post_id=5808&amp;origin=advocatesstudio.wordpress.com&amp;obj_id=3450058-5808-67f7c314b5d14&amp;domain=advocatesstudio.com" data-name="like-post-frame-3450058-5808-67f7c314b5d14" data-title="Like or Reblog"><div class="likes-widget-placeholder post-likes-widget-placeholder" style="height: 55px;"><span class="button"><span>Like</span></span> <span class="loading">Loading...</span></div><span class="sd-text-color"></span><a class="sd-link-color"></a></div></div>			</div><!-- .entry-content -->
	<footer class="entry-meta">
					By Martha Sperry
						<span class="sep"> &#149; </span>
			<span class="cat-links">
				Posted in <a href="category/uncategorized/" rel="category tag">Uncategorized</a>			</span>
			<span class="sep"> &#149; </span><span class="tag-links">Tagged <a href="tag/free/" rel="tag">free</a>, <a href="tag/law/" rel="tag">law</a>, <a href="tag/lawyer-referral/" rel="tag">lawyer referral</a>, <a href="tag/legal/" rel="tag">legal</a>, <a href="tag/online/" rel="tag">online</a>, <a href="tag/recommendation/" rel="tag">recommendation</a>, <a href="tag/resource/" rel="tag">resource</a></span>
				<div class="comments-link">
			<a href="2015/05/22/dont-forget-to-rsvp-rsvp-law/#respond"><span class="no-replies">0</span></a>		</div>
			</footer><!-- #entry-meta -->
</article><!-- #post-5808 -->
<article id="post-5800" class="post-5800 post type-post status-publish format-standard hentry category-uncategorized tag-apple tag-ios tag-osx tag-wwdc tag-yosemite">
	<header class="entry-header">
		<div class="post-date">
					<a href="2014/06/02/apples-new-software-wwdc-2014-recap/" title="Permalink to Apple’s New Software – WWDC 2014 Recap" rel="bookmark">
				<span class="month">Jun</span>
				<span class="day">2</span>
				<span class="year">2014</span>
			</a>
				</div>
							<h1 class="entry-title">
									<a href="2014/06/02/apples-new-software-wwdc-2014-recap/" rel="bookmark">Apple’s New Software - WWDC 2014&nbsp;Recap</a>
							</h1>
			</header><!-- .entry-header -->
		<div class="entry-content">
		<p><a href="wp-content/uploads/2014/06/apple.png"><img data-attachment-id="5801" data-permalink="https://advocatesstudio.com/2014/06/02/apples-new-software-wwdc-2014-recap/apple-3/" data-orig-file="https://advocatesstudio.com/wp-content/uploads/2014/06/apple.png" data-orig-size="659,572" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="Apple" data-image-description="" data-image-caption="" data-medium-file="https://advocatesstudio.com/wp-content/uploads/2014/06/apple.png?w=300" data-large-file="https://advocatesstudio.com/wp-content/uploads/2014/06/apple.png?w=593" loading="lazy" class="alignnone size-medium wp-image-5801" src="wp-content/uploads/2014/06/apple_w-300.png" alt="Apple" width="300" height="260" srcset="wp-content/uploads/2014/06/apple_w-300.png 300w, wp-content/uploads/2014/06/apple_w-600.png 600w, wp-content/uploads/2014/06/apple_w-150.png 150w" sizes="(max-width: 300px) 100vw, 300px"/></a></p>
<p>Another year, another opportunity for Apple to wow its developers and get the rest of us excited about new features coming soon to an iDevice near you. Apple’s World Wide Development Conference happened today and Apple didn’t leave us hanging. With <a href="http://www.apple.com/">OSX 10.10 Yosemite and iOS 8</a>, there are plenty of new features, most designed around the idea of seamless movement from device to device to device, with nary a skip in the workflow. For the geeks, Apple has rolled out a new developer language called Swift with features to make the designing process easier. For iOS, there are new features that developers can take advantage of, including: Homekit (a tool that will permit apps to interface with the OS to control external devices - like home security, heating, lighting, etc.); Healthkit (a tool to bring together fitness information from various external tracking methods); the ability to work with third party keyboards, as well as predictive typing like Swiftkey; better communication between apps and iOS; access for third party apps to TouchID; third party widgets; family share for iOS purchases so that everyone can benefit from downloads; shared photo editing through new iOS Photos app; improved Siri performance; and, changes to the App store including the ability to download bundles.</p>
<p>For Yosemite, users will find improvements to AirDrop,  iOS inspired flat design, and  an expanded Notifications function, which will also work with third party app widgets. It will also be able to leverage iCloud Drive - Apple’s answer to DropBox, with 20 GB for $.99 per month and 200 GB at $3.99 per month, synced across all of your devices. And, it works on Windows too. iCloud Drive will make for easier work within Apple apps across devices, improving efficiencies. MailDrop allows Mail users to attach large files without restriction using iCloud Drive. Users will also be able to edit image attachments with simple annotations. Safari has changed its look, and will show recent people you have messaged and RSS feeds and a thumbnail of open tabs. You will be able to view text messages and make phone calls on your computer in the new OSX. Tweaks and shine, rather than a significant overhaul.</p>
<p>While I didn’t note a great deal of business-ready features, iCloud Drive is certainly interesting for those who use Apple products for their office suite. And, the improvements and tweaks to both OS’ will make Apple devices more user-friendly, which is always a good thing.</p>
<p>What do you think? Was there anything you were hoping for that Apple missed? Or are you satisfied with the next iteration of Apple’s operating systems?</p>
<p>UPDATE: Something I missed in yesterday’s live blogs - Google is no longer the default search engine in Safari in iOS. Say hello to Bing. And even cooler: DuckDuckGo, my fav private search engine, is now an option in Safari as well - no tracking allowed!</p>
<div id="jp-post-flair" class="sharedaddy sd-like-enabled sd-sharing-enabled"><div class="sharedaddy sd-sharing-enabled"><div class="robots-nocontent sd-block sd-social sd-social-icon sd-sharing"><h3 class="sd-title">Share this:</h3><div class="sd-content"><ul><li class="share-linkedin"><a rel="nofollow noopener noreferrer" data-shared="sharing-linkedin-5800" class="share-linkedin sd-button share-icon no-text" href="2014/06/02/apples-new-software-wwdc-2014-recap/" target="_blank" aria-labelledby="sharing-linkedin-5800">
				<span id="sharing-linkedin-5800" hidden>Click to share on LinkedIn (Opens in new window)</span>
				<span>LinkedIn</span>
			</a></li><li class="share-facebook"><a rel="nofollow noopener noreferrer" data-shared="sharing-facebook-5800" class="share-facebook sd-button share-icon no-text" href="2014/06/02/apples-new-software-wwdc-2014-recap/" target="_blank" aria-labelledby="sharing-facebook-5800">
				<span id="sharing-facebook-5800" hidden>Click to share on Facebook (Opens in new window)</span>
				<span>Facebook</span>
			</a></li><li class="share-twitter"><a rel="nofollow noopener noreferrer" data-shared="sharing-twitter-5800" class="share-twitter sd-button share-icon no-text" href="2014/06/02/apples-new-software-wwdc-2014-recap/" target="_blank" aria-labelledby="sharing-twitter-5800">
				<span id="sharing-twitter-5800" hidden>Click to share on X (Opens in new window)</span>
				<span>X</span>
			</a></li><li class="share-tumblr"><a rel="nofollow noopener noreferrer" data-shared="sharing-tumblr-5800" class="share-tumblr sd-button share-icon no-text" href="2014/06/02/apples-new-software-wwdc-2014-recap/" target="_blank" aria-labelledby="sharing-tumblr-5800">
				<span id="sharing-tumblr-5800" hidden>Click to share on Tumblr (Opens in new window)</span>
				<span>Tumblr</span>
			</a></li><li class="share-email"><a rel="nofollow noopener noreferrer" data-shared="sharing-email-5800" class="share-email sd-button share-icon no-text" href="/cdn-cgi/l/email-protection#143b2b6761767e71776029312156477c75667170312624447b67603121503126245564647871312623673126245a7163312624477b7260637566713126243931262443435057312624262425203126244671777564327579642f767b706d297c606064673127553126523126527570627b7775607167676061707d7b3a777b793126522624252031265224223126522426312652756464787167397a716339677b72606375667139636370773926242520396671777564312652" target="_blank" aria-labelledby="sharing-email-5800" data-email-share-error-title="Do you have email set up?" data-email-share-error-text="If you're having problems sharing via email, you might not have email set up for your browser. You may need to create a new email yourself." data-email-share-nonce="95f2be02ed" data-email-share-track-url="https://advocatesstudio.com/2014/06/02/apples-new-software-wwdc-2014-recap/?share=email">
				<span id="sharing-email-5800" hidden>Click to email a link to a friend (Opens in new window)</span>
				<span>Email</span>
			</a></li><li class="share-print"><a rel="nofollow noopener noreferrer" data-shared="sharing-print-5800" class="share-print sd-button share-icon no-text" href="/" target="_blank" aria-labelledby="sharing-print-5800">
				<span id="sharing-print-5800" hidden>Click to print (Opens in new window)</span>
				<span>Print</span>
			</a></li><li class="share-end"></li></ul></div></div></div><div class="sharedaddy sd-block sd-like jetpack-likes-widget-wrapper jetpack-likes-widget-unloaded" id="like-post-wrapper-3450058-5800-67f7c314b75ee" data-src="https://widgets.wp.com/likes/index.html?ver=20250410#blog_id=3450058&amp;post_id=5800&amp;origin=advocatesstudio.wordpress.com&amp;obj_id=3450058-5800-67f7c314b75ee&amp;domain=advocatesstudio.com" data-name="like-post-frame-3450058-5800-67f7c314b75ee" data-title="Like or Reblog"><div class="likes-widget-placeholder post-likes-widget-placeholder" style="height: 55px;"><span class="button"><span>Like</span></span> <span class="loading">Loading...</span></div><span class="sd-text-color"></span><a class="sd-link-color"></a></div></div>			</div><!-- .entry-content -->
	<footer class="entry-meta">
					By Martha Sperry
						<span class="sep"> &#149; </span>
			<span class="cat-links">
				Posted in <a href="category/uncategorized/" rel="category tag">Uncategorized</a>			</span>
			<span class="sep"> &#149; </span><span class="tag-links">Tagged <a href="tag/apple/" rel="tag">Apple</a>, <a href="tag/ios/" rel="tag">ios</a>, <a href="tag/osx/" rel="tag">OSX</a>, <a href="tag/wwdc/" rel="tag">WWDC</a>, <a href="tag/yosemite/" rel="tag">Yosemite</a></span>
				<div class="comments-link">
			<a href="2014/06/02/apples-new-software-wwdc-2014-recap/#respond"><span class="no-replies">0</span></a>		</div>
			</footer><!-- #entry-meta -->
</article><!-- #post-5800 -->
<article id="post-5792" class="post-5792 post type-post status-publish format-standard hentry category-uncategorized tag-apps tag-excel tag-microsoft tag-mobile tag-office-for-ipad tag-powerpoint tag-word">
	<header class="entry-header">
		<div class="post-date">
					<a href="2014/03/28/microsoft-office-for-ipad-its-about-freaking-time/" title="Permalink to Microsoft Office for iPad – It’s About Freaking Time" rel="bookmark">
				<span class="month">Mar</span>
				<span class="day">28</span>
				<span class="year">2014</span>
			</a>
				</div>
							<h1 class="entry-title">
									<a href="2014/03/28/microsoft-office-for-ipad-its-about-freaking-time/" rel="bookmark">Microsoft Office for iPad - It’s About Freaking&nbsp;Time</a>
							</h1>
			</header><!-- .entry-header -->
		<div class="entry-content">
		<p><a href="wp-content/uploads/2014/03/20140327_office_for_ipad_icons.jpg"><img data-attachment-id="5798" data-permalink="https://advocatesstudio.com/2014/03/28/microsoft-office-for-ipad-its-about-freaking-time/20140327_office_for_ipad_icons/" data-orig-file="https://advocatesstudio.com/wp-content/uploads/2014/03/20140327_office_for_ipad_icons.jpg" data-orig-size="231,221" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="20140327_office_for_ipad_icons" data-image-description="" data-image-caption="" data-medium-file="https://advocatesstudio.com/wp-content/uploads/2014/03/20140327_office_for_ipad_icons.jpg?w=231" data-large-file="https://advocatesstudio.com/wp-content/uploads/2014/03/20140327_office_for_ipad_icons.jpg?w=231" loading="lazy" class="alignnone wp-image-5798 size-full" src="wp-content/uploads/2014/03/20140327_office_for_ipad_icons.jpg" alt="20140327_office_for_ipad_icons" width="231" height="221" srcset="wp-content/uploads/2014/03/20140327_office_for_ipad_icons.jpg 231w, wp-content/uploads/2014/03/20140327_office_for_ipad_icons_w-150-h-144.jpg 150w" sizes="(max-width: 231px) 100vw, 231px"/></a></p>
<p>Yep, it’s finally here. After lots of promises and years of delay, Microsoft has finally released a true <a href="http://blogs.office.com/2014/03/27/announcing-the-office-you-love-now-on-the-ipad/">Office for iPad</a> suite (no more emulations from third parties). Maybe this move is to counter Apple’s semi-recent decision to bundle its iLife apps (Pages, Numbers  and Keynote) for free. Maybe they just finally got around to it. Who knows? But here it is, so I figured I should check out exactly what Microsoft is offering to Apple users.</p>
<p>As expected, Office for iPad is a collection of three apps  - Word, Excel and Powerpoint, of course, in addition to the previously available Microsoft - iPad offerings.  The apps are free, but there is a catch - to do more than view (in other words, to create or edit) docs, you will need the Office 365 subscription, ranging from $6.99 to $9.99 per month for Home Personal or Premium, or one of their business subscriptions. Then, the tablet will have access to the same material available through Office Online, including use of OneDrive for storage.  With an Office 365 subscription, you get five tablet set ups and five desktop setups of the suite.</p>
<p>The apps for iPad are more robust than one might think - they do look like their desktop counterparts to a degree. Of course, with the emphasis on touch interface. Most common features are included in the iPad version, while more arcane features remain desktop only (for example, you can footnote on the iPad, but forget about Mailings and Reference tools). Manipulating text follows the usual iOS protocols for selecting, cutting, pasting, etc. You can track changes, co-author docs, and spell check (although there is no grammar checking or thesaurus tools). There are 16 templates in Excel for iPad, which should cover most of the scenarios you would need on a mobile basis.</p>
<p>For free, you can read, view and present. For a monthly fee, you can create and edit. I would imagine the cost would be justified in the business setting if you are a heavily Office-oriented firm. You can get a 30 day free trial of Office 365, so you can assess whether the new mobile / desktop setup would work well for you. Make sure you are running iOS 7 or later. Oh, and they have versions for your iPhone and Android device as well.</p>
<p>Check out the promo video and screenshots below. The apps are nothing if not beautiful to look at.</p>
<p><span class="embed-youtube" style="text-align:center; display: block;"><iframe class="youtube-player" width="593" height="334" src="https://www.youtube.com/embed/frpsGFQ4AIY?version=3&amp;rel=1&amp;showsearch=0&amp;showinfo=1&amp;iv_load_policy=1&amp;fs=1&amp;hl=en&amp;autohide=2&amp;wmode=transparent" allowfullscreen="true" style="border:0;" sandbox="allow-scripts allow-same-origin allow-popups allow-presentation allow-popups-to-escape-sandbox"></iframe></span></p>
<p><a href="wp-content/uploads/2014/03/image-01_excelhero_ipad_slvr.png"><img data-attachment-id="5793" data-permalink="https://advocatesstudio.com/2014/03/28/microsoft-office-for-ipad-its-about-freaking-time/image-01_excelhero_ipad_slvr/" data-orig-file="https://advocatesstudio.com/wp-content/uploads/2014/03/image-01_excelhero_ipad_slvr.png" data-orig-size="600,426" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMAGE-01_ExcelHero_iPad_Slvr" data-image-description="" data-image-caption="" data-medium-file="https://advocatesstudio.com/wp-content/uploads/2014/03/image-01_excelhero_ipad_slvr.png?w=300" data-large-file="https://advocatesstudio.com/wp-content/uploads/2014/03/image-01_excelhero_ipad_slvr.png?w=593" loading="lazy" class="aligncenter size-large wp-image-5793" src="wp-content/uploads/2014/03/image-01_excelhero_ipad_slvr_w-593.png" alt="IMAGE-01_ExcelHero_iPad_Slvr" width="593" height="421" srcset="wp-content/uploads/2014/03/image-01_excelhero_ipad_slvr_w-593.png 593w, wp-content/uploads/2014/03/image-01_excelhero_ipad_slvr_w-150.png 150w,  wp-content/uploads/2014/03/image-01_excelhero_ipad_slvr.png 600w" sizes="(max-width: 593px) 100vw, 593px"/></a> <a href="wp-content/uploads/2014/03/image-02_ppthero_ipad_slvr.png"><img data-attachment-id="5794" data-permalink="https://advocatesstudio.com/2014/03/28/microsoft-office-for-ipad-its-about-freaking-time/image-02_ppthero_ipad_slvr/" data-orig-file="https://advocatesstudio.com/wp-content/uploads/2014/03/image-02_ppthero_ipad_slvr.png" data-orig-size="600,426" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMAGE-02_PPTHero_iPad_Slvr" data-image-description="" data-image-caption="" data-medium-file="https://advocatesstudio.com/wp-content/uploads/2014/03/image-02_ppthero_ipad_slvr.png?w=300" data-large-file="https://advocatesstudio.com/wp-content/uploads/2014/03/image-02_ppthero_ipad_slvr.png?w=593" loading="lazy" class="alignnone size-medium wp-image-5794" src="wp-content/uploads/2014/03/image-02_ppthero_ipad_slvr_w-300.png" alt="IMAGE-02_PPTHero_iPad_Slvr" width="300" height="213" srcset="wp-content/uploads/2014/03/image-02_ppthero_ipad_slvr_w-300.png 300w, wp-content/uploads/2014/03/image-02_ppthero_ipad_slvr.png 600w, wp-content/uploads/2014/03/image-02_ppthero_ipad_slvr_w-150.png 150w" sizes="(max-width: 300px) 100vw, 300px"/></a> <a href="wp-content/uploads/2014/03/image-03_officeheroportrait_ipad_slvr.png"><img data-attachment-id="5795" data-permalink="https://advocatesstudio.com/2014/03/28/microsoft-office-for-ipad-its-about-freaking-time/image-03_officeheroportrait_ipad_slvr/" data-orig-file="https://advocatesstudio.com/wp-content/uploads/2014/03/image-03_officeheroportrait_ipad_slvr.png" data-orig-size="422,600" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMAGE-03_OfficeHeroPortrait_iPad_Slvr" data-image-description="" data-image-caption="" data-medium-file="https://advocatesstudio.com/wp-content/uploads/2014/03/image-03_officeheroportrait_ipad_slvr.png?w=211" data-large-file="https://advocatesstudio.com/wp-content/uploads/2014/03/image-03_officeheroportrait_ipad_slvr.png?w=422" loading="lazy" class="alignnone size-medium wp-image-5795" src="wp-content/uploads/2014/03/image-03_officeheroportrait_ipad_slvr_w-211.png" alt="IMAGE-03_OfficeHeroPortrait_iPad_Slvr" width="211" height="300" srcset="wp-content/uploads/2014/03/image-03_officeheroportrait_ipad_slvr_w-211.png 211w, wp-content/uploads/2014/03/image-03_officeheroportrait_ipad_slvr.png 422w, wp-content/uploads/2014/03/image-03_officeheroportrait_ipad_slvr_w-106.png 106w" sizes="(max-width: 211px) 100vw, 211px"/></a> <a href="wp-content/uploads/2014/03/image-04_wordcollab5authors_ipad_slvr.png"><img data-attachment-id="5796" data-permalink="https://advocatesstudio.com/2014/03/28/microsoft-office-for-ipad-its-about-freaking-time/image-04_wordcollab5authors_ipad_slvr/" data-orig-file="https://advocatesstudio.com/wp-content/uploads/2014/03/image-04_wordcollab5authors_ipad_slvr.png" data-orig-size="422,600" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMAGE-04_WordCollab5Authors_iPad_Slvr" data-image-description="" data-image-caption="" data-medium-file="https://advocatesstudio.com/wp-content/uploads/2014/03/image-04_wordcollab5authors_ipad_slvr.png?w=211" data-large-file="https://advocatesstudio.com/wp-content/uploads/2014/03/image-04_wordcollab5authors_ipad_slvr.png?w=422" loading="lazy" class="alignnone size-medium wp-image-5796" src="wp-content/uploads/2014/03/image-04_wordcollab5authors_ipad_slvr_w-211.png" alt="IMAGE-04_WordCollab5Authors_iPad_Slvr" width="211" height="300" srcset="wp-content/uploads/2014/03/image-04_wordcollab5authors_ipad_slvr_w-211.png 211w, wp-content/uploads/2014/03/image-04_wordcollab5authors_ipad_slvr.png 422w" sizes="(max-width: 211px) 100vw, 211px"/></a> <a href="wp-content/uploads/2014/03/image-05_pptrecent_ipad_slvr.png"><img data-attachment-id="5797" data-permalink="https://advocatesstudio.com/2014/03/28/microsoft-office-for-ipad-its-about-freaking-time/image-05_pptrecent_ipad_slvr/" data-orig-file="https://advocatesstudio.com/wp-content/uploads/2014/03/image-05_pptrecent_ipad_slvr.png" data-orig-size="600,426" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMAGE-05_PPTRecent_iPad_Slvr" data-image-description="" data-image-caption="" data-medium-file="https://advocatesstudio.com/wp-content/uploads/2014/03/image-05_pptrecent_ipad_slvr.png?w=300" data-large-file="https://advocatesstudio.com/wp-content/uploads/2014/03/image-05_pptrecent_ipad_slvr.png?w=593" loading="lazy" class="alignnone size-medium wp-image-5797" src="wp-content/uploads/2014/03/image-05_pptrecent_ipad_slvr_w-300.png" alt="IMAGE-05_PPTRecent_iPad_Slvr" width="300" height="213" srcset="wp-content/uploads/2014/03/image-05_pptrecent_ipad_slvr_w-300.png 300w, wp-content/uploads/2014/03/image-05_pptrecent_ipad_slvr.png 600w, wp-content/uploads/2014/03/image-05_pptrecent_ipad_slvr_w-150.png 150w" sizes="(max-width: 300px) 100vw, 300px"/></a></p>
<div id="jp-post-flair" class="sharedaddy sd-like-enabled sd-sharing-enabled"><div class="sharedaddy sd-sharing-enabled"><div class="robots-nocontent sd-block sd-social sd-social-icon sd-sharing"><h3 class="sd-title">Share this:</h3><div class="sd-content"><ul><li class="share-linkedin"><a rel="nofollow noopener noreferrer" data-shared="sharing-linkedin-5792" class="share-linkedin sd-button share-icon no-text" href="2014/03/28/microsoft-office-for-ipad-its-about-freaking-time/" target="_blank" aria-labelledby="sharing-linkedin-5792">
				<span id="sharing-linkedin-5792" hidden>Click to share on LinkedIn (Opens in new window)</span>
				<span>LinkedIn</span>
			</a></li><li class="share-facebook"><a rel="nofollow noopener noreferrer" data-shared="sharing-facebook-5792" class="share-facebook sd-button share-icon no-text" href="2014/03/28/microsoft-office-for-ipad-its-about-freaking-time/" target="_blank" aria-labelledby="sharing-facebook-5792">
				<span id="sharing-facebook-5792" hidden>Click to share on Facebook (Opens in new window)</span>
				<span>Facebook</span>
			</a></li><li class="share-twitter"><a rel="nofollow noopener noreferrer" data-shared="sharing-twitter-5792" class="share-twitter sd-button share-icon no-text" href="2014/03/28/microsoft-office-for-ipad-its-about-freaking-time/" target="_blank" aria-labelledby="sharing-twitter-5792">
				<span id="sharing-twitter-5792" hidden>Click to share on X (Opens in new window)</span>
				<span>X</span>
			</a></li><li class="share-tumblr"><a rel="nofollow noopener noreferrer" data-shared="sharing-tumblr-5792" class="share-tumblr sd-button share-icon no-text" href="2014/03/28/microsoft-office-for-ipad-its-about-freaking-time/" target="_blank" aria-labelledby="sharing-tumblr-5792">
				<span id="sharing-tumblr-5792" hidden>Click to share on Tumblr (Opens in new window)</span>
				<span>Tumblr</span>
			</a></li><li class="share-email"><a rel="nofollow noopener noreferrer" data-shared="sharing-email-5792" class="share-email sd-button share-icon no-text" href="/cdn-cgi/l/email-protection#7c53430f091e16191f084159493e2f141d0e1918594e4c2c130f08594938594e4c31151f0e130f131a08594e4c331a1a151f19594e4c1a130e594e4c152c1d18594e4c51594e4c3508594e4b0f594e4c3d1e130908594e4c3a0e191d1715121b594e4c281511195a1d110c471e131805411408080c0f594f3d594e3a594e3a1d180a131f1d08190f0f0809181513521f1311594e3a4e4c4d48594e3a4c4f594e3a4e44594e3a11151f0e130f131a0851131a1a151f19511a130e51150c1d185115080f511d1e130908511a0e191d1715121b5108151119594e3a" target="_blank" aria-labelledby="sharing-email-5792" data-email-share-error-title="Do you have email set up?" data-email-share-error-text="If you're having problems sharing via email, you might not have email set up for your browser. You may need to create a new email yourself." data-email-share-nonce="503f0212bb" data-email-share-track-url="https://advocatesstudio.com/2014/03/28/microsoft-office-for-ipad-its-about-freaking-time/?share=email">
				<span id="sharing-email-5792" hidden>Click to email a link to a friend (Opens in new window)</span>
				<span>Email</span>
			</a></li><li class="share-print"><a rel="nofollow noopener noreferrer" data-shared="sharing-print-5792" class="share-print sd-button share-icon no-text" href="2014/03/28/microsoft-office-for-ipad-its-about-freaking-time/share-print/" target="_blank" aria-labelledby="sharing-print-5792">
				<span id="sharing-print-5792" hidden>Click to print (Opens in new window)</span>
				<span>Print</span>
			</a></li><li class="share-end"></li></ul></div></div></div><div class="sharedaddy sd-block sd-like jetpack-likes-widget-wrapper jetpack-likes-widget-unloaded" id="like-post-wrapper-3450058-5792-67f7c314ba924" data-src="https://widgets.wp.com/likes/index.html?ver=20250410#blog_id=3450058&amp;post_id=5792&amp;origin=advocatesstudio.wordpress.com&amp;obj_id=3450058-5792-67f7c314ba924&amp;domain=advocatesstudio.com" data-name="like-post-frame-3450058-5792-67f7c314ba924" data-title="Like or Reblog"><div class="likes-widget-placeholder post-likes-widget-placeholder" style="height: 55px;"><span class="button"><span>Like</span></span> <span class="loading">Loading...</span></div><span class="sd-text-color"></span><a class="sd-link-color"></a></div></div>			</div><!-- .entry-content -->
	<footer class="entry-meta">
					By Martha Sperry
						<span class="sep"> &#149; </span>
			<span class="cat-links">
				Posted in <a href="category/uncategorized/" rel="category tag">Uncategorized</a>			</span>
			<span class="sep"> &#149; </span><span class="tag-links">Tagged <a href="tag/apps/" rel="tag">apps</a>, <a href="tag/excel/" rel="tag">excel</a>, <a href="tag/microsoft/" rel="tag">Microsoft</a>, <a href="tag/mobile/" rel="tag">mobile</a>, <a href="tag/office-for-ipad/" rel="tag">office for ipad</a>, <a href="tag/powerpoint/" rel="tag">powerpoint</a>, <a href="tag/word/" rel="tag">Word</a></span>
				<div class="comments-link">
			<a href="2014/03/28/microsoft-office-for-ipad-its-about-freaking-time/#comments">1</a>		</div>
			</footer><!-- #entry-meta -->
</article><!-- #post-5792 -->
					<nav id="nav-below">
		<h1 class="assistive-text section-heading">Post navigation</h1>
				<div class="nav-previous"><a href="page/2/"><span class="meta-nav">&larr;</span> Older posts</a></div>
	</nav><!-- #nav-below -->
			</div><!-- #content -->
		</div><!-- #primary -->
		<div id="secondary" class="widget-area" role="complementary">
					<aside id="search-2" class="widget widget_search">	<form method="get" id="searchform" action="/">
		<label for="s" class="assistive-text">Search</label>
		<input type="text" class="field" name="s" id="s" placeholder="Search …"/>
		<input type="submit" class="submit" name="submit" id="searchsubmit" value="Search"/>
	</form>
</aside><aside id="text-330145422" class="widget widget_text">			<div class="textwidget"><a href="http://www.flickr.com/photos/marthasperry/6669865525/" title="BLAWG_100_HonoreeBadgeRed by StarToeStudio, on Flickr"><img src="farm8.staticflickr.com/7005/6669865525_db71baae65_q.jpg" width="150" height="150" alt="BLAWG_100_HonoreeBadgeRed"></a></div>
		</aside><aside id="text-330145423" class="widget widget_text">			<div class="textwidget"><a href="http://www.flickr.com/photos/marthasperry/6669905697/" title="Solo Practice University Faculty by StarToeStudio, on Flickr"><img src="farm8.staticflickr.com/7006/6669905697_d92edd1797_m.jpg" width="150" height="150" alt="Solo Practice University Faculty"></a></div>
		</aside><aside id="text-190141551" class="widget widget_text"><h1 class="widget-title">Subscribe To This Blog</h1>			<div class="textwidget"><a href="https://advocatesstudio.wordpress.com/feed/"><img src="2008/12/rss-file-image_w-150.jpg"></a></div>
		</aside><aside id="text-288474081" class="widget widget_text"><h1 class="widget-title">Subscribe To My Podcast</h1>			<div class="textwidget"><a href="http://podcasts.odiogo.com/advocates-studio/podcasts-html.php"></a>
</div>
		</aside><aside id="twitter-393079851" class="widget widget_twitter"><h1 class="widget-title"><a href="https://twitter.com/advocatesstudio">Twitter Timeline</a></h1><a class="twitter-timeline" data-height="600" data-dnt="true" href="https://twitter.com/advocatesstudio">Tweets by advocatesstudio</a></aside><aside id="calendar-2" class="widget widget_calendar"><div id="calendar_wrap" class="calendar_wrap"><table id="wp-calendar" class="wp-calendar-table">
	<caption>April 2025</caption>
	<thead>
	<tr>
		<th scope="col" aria-label="Monday">M</th>
		<th scope="col" aria-label="Tuesday">T</th>
		<th scope="col" aria-label="Wednesday">W</th>
		<th scope="col" aria-label="Thursday">T</th>
		<th scope="col" aria-label="Friday">F</th>
		<th scope="col" aria-label="Saturday">S</th>
		<th scope="col" aria-label="Sunday">S</th>
	</tr>
	</thead>
	<tbody>
	<tr>
		<td colspan="1" class="pad">&nbsp;</td><td>1</td><td>2</td><td>3</td><td>4</td><td>5</td><td>6</td>
	</tr>
	<tr>
		<td>7</td><td>8</td><td>9</td><td id="today">10</td><td>11</td><td>12</td><td>13</td>
	</tr>
	<tr>
		<td>14</td><td>15</td><td>16</td><td>17</td><td>18</td><td>19</td><td>20</td>
	</tr>
	<tr>
		<td>21</td><td>22</td><td>23</td><td>24</td><td>25</td><td>26</td><td>27</td>
	</tr>
	<tr>
		<td>28</td><td>29</td><td>30</td>
		<td class="pad" colspan="4">&nbsp;</td>
	</tr>
	</tbody>
	</table><nav aria-label="Previous and next months" class="wp-calendar-nav">
		<span class="wp-calendar-nav-prev"><a href="2019/09/">&laquo; Sep</a></span>
		<span class="pad">&nbsp;</span>
		<span class="wp-calendar-nav-next">&nbsp;</span>
	</nav></div></aside><aside id="archives-2" class="widget widget_archive"><h1 class="widget-title">Archives</h1>
			<ul>
					<li><a href="2019/09/">September 2019</a></li>
	<li><a href="2019/02/">February 2019</a></li>
	<li><a href="2018/11/">November 2018</a></li>
	<li><a href="2018/10/">October 2018</a></li>
	<li><a href="2015/08/">August 2015</a></li>
	<li><a href="2015/05/">May 2015</a></li>
	<li><a href="2014/06/">June 2014</a></li>
	<li><a href="2014/03/">March 2014</a></li>
	<li><a href="2014/02/">February 2014</a></li>
	<li><a href="2014/01/">January 2014</a></li>
	<li><a href="2013/12/">December 2013</a></li>
	<li><a href="2013/10/">October 2013</a></li>
	<li><a href="2013/09/">September 2013</a></li>
	<li><a href="2013/08/">August 2013</a></li>
	<li><a href="2013/07/">July 2013</a></li>
	<li><a href="2013/06/">June 2013</a></li>
	<li><a href="2013/04/">April 2013</a></li>
	<li><a href="2013/03/">March 2013</a></li>
	<li><a href="2013/02/">February 2013</a></li>
	<li><a href="2013/01/">January 2013</a></li>
	<li><a href="2012/12/">December 2012</a></li>
	<li><a href="2012/11/">November 2012</a></li>
	<li><a href="2012/10/">October 2012</a></li>
	<li><a href="2012/09/">September 2012</a></li>
	<li><a href="2012/08/">August 2012</a></li>
	<li><a href="2012/07/">July 2012</a></li>
	<li><a href="2012/06/">June 2012</a></li>
	<li><a href="2012/05/">May 2012</a></li>
	<li><a href="2012/04/">April 2012</a></li>
	<li><a href="2012/03/">March 2012</a></li>
	<li><a href="2012/02/">February 2012</a></li>
	<li><a href="2012/01/">January 2012</a></li>
	<li><a href="2011/12/">December 2011</a></li>
	<li><a href="2011/11/">November 2011</a></li>
	<li><a href="2011/10/">October 2011</a></li>
	<li><a href="2011/09/">September 2011</a></li>
	<li><a href="2011/08/">August 2011</a></li>
	<li><a href="2011/07/">July 2011</a></li>
	<li><a href="2011/06/">June 2011</a></li>
	<li><a href="2011/05/">May 2011</a></li>
	<li><a href="2011/04/">April 2011</a></li>
	<li><a href="2011/03/">March 2011</a></li>
	<li><a href="2011/02/">February 2011</a></li>
	<li><a href="2011/01/">January 2011</a></li>
	<li><a href="2010/12/">December 2010</a></li>
	<li><a href="2010/11/">November 2010</a></li>
	<li><a href="2010/10/">October 2010</a></li>
	<li><a href="2010/09/">September 2010</a></li>
	<li><a href="2010/08/">August 2010</a></li>
	<li><a href="2010/07/">July 2010</a></li>
	<li><a href="2010/06/">June 2010</a></li>
	<li><a href="2010/05/">May 2010</a></li>
	<li><a href="2010/04/">April 2010</a></li>
	<li><a href="2010/03/">March 2010</a></li>
	<li><a href="2010/02/">February 2010</a></li>
	<li><a href="2010/01/">January 2010</a></li>
	<li><a href="2009/12/">December 2009</a></li>
	<li><a href="2009/11/">November 2009</a></li>
	<li><a href="2009/10/">October 2009</a></li>
	<li><a href="2009/09/">September 2009</a></li>
	<li><a href="2009/08/">August 2009</a></li>
	<li><a href="2009/07/">July 2009</a></li>
	<li><a href="2009/06/">June 2009</a></li>
	<li><a href="2009/05/">May 2009</a></li>
	<li><a href="2009/04/">April 2009</a></li>
	<li><a href="2009/03/">March 2009</a></li>
	<li><a href="2009/02/">February 2009</a></li>
	<li><a href="2009/01/">January 2009</a></li>
	<li><a href="2008/12/">December 2008</a></li>
	<li><a href="2008/11/">November 2008</a></li>
	<li><a href="2008/10/">October 2008</a></li>
	<li><a href="2008/09/">September 2008</a></li>
	<li><a href="2008/08/">August 2008</a></li>
	<li><a href="2008/04/">April 2008</a></li>
			</ul>
			</aside><aside id="blog-stats-2" class="widget widget_blog-stats"><h1 class="widget-title">Blog Stats</h1>		<ul>
			<li>183,577 hits</li>
		</ul>
		</aside><aside id="text-317177501" class="widget widget_text">			<div class="textwidget"><div id="networkedblogs_nwidget_container" style="height:80px;padding-top:10px;"><div id="networkedblogs_nwidget_above"></div><div id="networkedblogs_nwidget_widget" style="border:1px solid #D1D7DF;background-color:#F5F6F9;margin:0 auto;"><div id="networkedblogs_nwidget_logo" style="background-color:#edeff4;text-align:center;height:21px;margin:0;padding:1px;"><a href="http://networkedblogs.com/" target="_blank" title="NetworkedBlogs" rel="noopener"><img style="border:none;" src="static.networkedblogs.com/static/images/logo_small.png"></a></div><div id="networkedblogs_nwidget_body" style="text-align:center;"></div><div id="networkedblogs_nwidget_follow" style="padding:5px;"><a href="http://networkedblogs.com/blog/advocates_studio/?ahash=f5c3a1dd975f7e990459a6c7ca3675f4">Follow this blog</a></div></div><div id="networkedblogs_nwidget_below"></div></div></div>
		</aside><div class="wordads-tag" data-slot-type="sidebar" style="display: none;"></div>		</div><!-- #secondary .widget-area -->
	</div><!-- #main -->
	<footer id="colophon" role="contentinfo">
		<div id="site-generator">
						<a href="https://wordpress.com/?ref=footer_blog" rel="nofollow">Blog at WordPress.com.</a>
					</div>
	</footer><!-- #colophon -->
</div><!-- #page -->
<!--  -->
<script data-cfasync="false" src="/cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js"></script><script type="speculationrules">
{"prefetch":[{"source":"document","where":{"and":[{"href_matches":"\/*"},{"not":{"href_matches":["\/wp-*.php","\/wp-admin\/*","\/files\/*","\/wp-content\/*","\/wp-content\/plugins\/*","\/wp-content\/themes\/pub\/itheme2\/*","\/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]}
</script>
		<script type="text/javascript">
		/* <![CDATA[ */
		/**
		 * We use the initCallback callback
		 * to assign functionality to the controls
		 */
		function mycarousel_initCallback(carousel) {
			jQuery('.jcarousel-control a').bind('click', function() {
				carousel.scroll(jQuery.jcarousel.intval(jQuery(this).text()));
				return false;
			});
			jQuery('.jcarousel-scroll select').bind('change', function() {
				carousel.options.scroll = jQuery.jcarousel.intval(this.options[this.selectedIndex].value);
				return false;
			});
			jQuery('#featured-posts-next').bind('click', function() {
				carousel.next();
				return false;
			});
			jQuery('#featured-posts-prev').bind('click', function() {
				carousel.prev();
				return false;
			});
		};
		jQuery(document).ready(function(){
			jQuery('#featured .slides').jcarousel({
				wrap: 'circular',
				visible: 5,
				scroll: 1,
				animation: "200",
				initCallback: mycarousel_initCallback,
				// This tells jCarousel NOT to autobuild prev/next buttons
				buttonNextHTML: null,
				buttonPrevHTML: null
			});
		});
		/* ]]> */
		</script>
	<script type="text/javascript" src="js/hovercards/hovercards.min_ver-2025157d8bf6c02970a26c6b0c26b0fcfc89796aa30f84307cffd8fd28d2bcca53dd7a.js" id="grofiles-cards-js"></script>
<script type="text/javascript" id="wpgroho-js-extra">
/* <![CDATA[ */
var WPGroHo = {"my_hash":""};
/* ]]> */
</script>
<script type="text/javascript" src="wp-content/mu-plugins/gravatar-hovercards/wpgroho_m-1610363240i.js"></script>
	<script>
		// Initialize and attach hovercards to all gravatars
		( function() {
			function init() {
				if ( typeof Gravatar === 'undefined' ) {
					return;
				}
				if ( typeof Gravatar.init !== 'function' ) {
					return;
				}
				Gravatar.profile_cb = function ( hash, id ) {
					WPGroHo.syncProfileData( hash, id );
				};
				Gravatar.my_hash = WPGroHo.my_hash;
				Gravatar.init(
					'body',
					'#wp-admin-bar-my-account',
					{
						i18n: {
							'Edit your profile →': 'Edit your profile →',
							'View profile →': 'View profile →',
							'Contact': 'Contact',
							'Send money': 'Send money',
							'Sorry, we are unable to load this Gravatar profile.': 'Sorry, we are unable to load this Gravatar profile.',
							'Profile not found.': 'Profile not found.',
							'Too Many Requests.': 'Too Many Requests.',
							'Internal Server Error.': 'Internal Server Error.',
						},
					}
				);
			}
			if ( document.readyState !== 'loading' ) {
				init();
			} else {
				document.addEventListener( 'DOMContentLoaded', init );
			}
		} )();
	</script>
		<div style="display:none">
	</div>
		<!-- CCPA [start] -->
		<script type="text/javascript">
			( function () {
				var setupPrivacy = function() {
					// Minimal Mozilla Cookie library
					// https://developer.mozilla.org/en-US/docs/Web/API/Document/cookie/Simple_document.cookie_framework
					var cookieLib = window.cookieLib = {getItem:function(e){return e&&decodeURIComponent(document.cookie.replace(new RegExp("(?:(?:^|.*;)\\s*"+encodeURIComponent(e).replace(/[\-\.\+\*]/g,"\\$&")+"\\s*\\=\\s*([^;]*).*$)|^.*$"),"$1"))||null},setItem:function(e,o,n,t,r,i){if(!e||/^(?:expires|max\-age|path|domain|secure)$/i.test(e))return!1;var c="";if(n)switch(n.constructor){case Number:c=n===1/0?"; expires=Fri, 31 Dec 9999 23:59:59 GMT":"; max-age="+n;break;case String:c="; expires="+n;break;case Date:c="; expires="+n.toUTCString()}return"rootDomain"!==r&&".rootDomain"!==r||(r=(".rootDomain"===r?".":"")+document.location.hostname.split(".").slice(-2).join(".")),document.cookie=encodeURIComponent(e)+"="+encodeURIComponent(o)+c+(r?"; domain="+r:"")+(t?"; path="+t:"")+(i?"; secure":""),!0}};
					// Implement IAB USP API.
					window.__uspapi = function( command, version, callback ) {
						// Validate callback.
						if ( typeof callback !== 'function' ) {
							return;
						}
						// Validate the given command.
						if ( command !== 'getUSPData' || version !== 1 ) {
							callback( null, false );
							return;
						}
						// Check for GPC. If set, override any stored cookie.
						if ( navigator.globalPrivacyControl ) {
							callback( { version: 1, uspString: '1YYN' }, true );
							return;
						}
						// Check for cookie.
						var consent = cookieLib.getItem( 'usprivacy' );
						// Invalid cookie.
						if ( null === consent ) {
							callback( null, false );
							return;
						}
						// Everything checks out. Fire the provided callback with the consent data.
						callback( { version: 1, uspString: consent }, true );
					};
					// Initialization.
					document.addEventListener( 'DOMContentLoaded', function() {
						// Internal functions.
						var setDefaultOptInCookie = function() {
							var value = '1YNN';
							var domain = '.wordpress.com' === location.hostname.slice( -14 ) ? '.rootDomain' : location.hostname;
							cookieLib.setItem( 'usprivacy', value, 365 * 24 * 60 * 60, '/', domain );
						};
						var setDefaultOptOutCookie = function() {
							var value = '1YYN';
							var domain = '.wordpress.com' === location.hostname.slice( -14 ) ? '.rootDomain' : location.hostname;
							cookieLib.setItem( 'usprivacy', value, 24 * 60 * 60, '/', domain );
						};
						var setDefaultNotApplicableCookie = function() {
							var value = '1---';
							var domain = '.wordpress.com' === location.hostname.slice( -14 ) ? '.rootDomain' : location.hostname;
							cookieLib.setItem( 'usprivacy', value, 24 * 60 * 60, '/', domain );
						};
						var setCcpaAppliesCookie = function( applies ) {
							var domain = '.wordpress.com' === location.hostname.slice( -14 ) ? '.rootDomain' : location.hostname;
							cookieLib.setItem( 'ccpa_applies', applies, 24 * 60 * 60, '/', domain );
						}
						var maybeCallDoNotSellCallback = function() {
							if ( 'function' === typeof window.doNotSellCallback ) {
								return window.doNotSellCallback();
							}
							return false;
						}
						// Look for usprivacy cookie first.
						var usprivacyCookie = cookieLib.getItem( 'usprivacy' );
						// Found a usprivacy cookie.
						if ( null !== usprivacyCookie ) {
							// If the cookie indicates that CCPA does not apply, then bail.
							if ( '1---' === usprivacyCookie ) {
								return;
							}
							// CCPA applies, so call our callback to add Do Not Sell link to the page.
							maybeCallDoNotSellCallback();
							// We're all done, no more processing needed.
							return;
						}
						// We don't have a usprivacy cookie, so check to see if we have a CCPA applies cookie.
						var ccpaCookie = cookieLib.getItem( 'ccpa_applies' );
						// No CCPA applies cookie found, so we'll need to geolocate if this visitor is from California.
						// This needs to happen client side because we do not have region geo data in our $SERVER headers,
						// only country data -- therefore we can't vary cache on the region.
						if ( null === ccpaCookie ) {
							var request = new XMLHttpRequest();
							request.open( 'GET', 'https://public-api.wordpress.com/geo/', true );
							request.onreadystatechange = function () {
								if ( 4 === this.readyState ) {
									if ( 200 === this.status ) {
										// Got a geo response. Parse out the region data.
										var data = JSON.parse( this.response );
										var region      = data.region ? data.region.toLowerCase() : '';
										var ccpa_applies = ['california', 'colorado', 'connecticut', 'delaware', 'indiana', 'iowa', 'montana', 'new jersey', 'oregon', 'tennessee', 'texas', 'utah', 'virginia'].indexOf( region ) > -1;
										// Set CCPA applies cookie. This keeps us from having to make a geo request too frequently.
										setCcpaAppliesCookie( ccpa_applies );
										// Check if CCPA applies to set the proper usprivacy cookie.
										if ( ccpa_applies ) {
											if ( maybeCallDoNotSellCallback() ) {
												// Do Not Sell link added, so set default opt-in.
												setDefaultOptInCookie();
											} else {
												// Failed showing Do Not Sell link as required, so default to opt-OUT just to be safe.
												setDefaultOptOutCookie();
											}
										} else {
											// CCPA does not apply.
											setDefaultNotApplicableCookie();
										}
									} else {
										// Could not geo, so let's assume for now that CCPA applies to be safe.
										setCcpaAppliesCookie( true );
										if ( maybeCallDoNotSellCallback() ) {
											// Do Not Sell link added, so set default opt-in.
											setDefaultOptInCookie();
										} else {
											// Failed showing Do Not Sell link as required, so default to opt-OUT just to be safe.
											setDefaultOptOutCookie();
										}
									}
								}
							};
							// Send the geo request.
							request.send();
						} else {
							// We found a CCPA applies cookie.
							if ( ccpaCookie === 'true' ) {
								if ( maybeCallDoNotSellCallback() ) {
									// Do Not Sell link added, so set default opt-in.
									setDefaultOptInCookie();
								} else {
									// Failed showing Do Not Sell link as required, so default to opt-OUT just to be safe.
									setDefaultOptOutCookie();
								}
							} else {
								// CCPA does not apply.
								setDefaultNotApplicableCookie();
							}
						}
					} );
				};
				// Kickoff initialization.
				if ( window.defQueue && defQueue.isLOHP && defQueue.isLOHP === 2020 ) {
					defQueue.items.push( setupPrivacy );
				} else {
					setupPrivacy();
				}
			} )();
		</script>
		<!-- CCPA [end] -->
		<div class="widget widget_eu_cookie_law_widget">
<div class="hide-on-button ads-active" data-hide-timeout="30" data-consent-expiration="180" id="eu-cookie-law" style="display: none">
	<form method="post">
		<input type="submit" value="Close and accept" class="accept"/>
		Privacy & Cookies: This site uses cookies. By continuing to use this website, you agree to their use. <br/>
To find out more, including how to control cookies, see here:
				<a href="https://automattic.com/cookies/" rel="nofollow">
			Cookie Policy		</a>
 </form>
</div>
</div>		<div id="actionbar" dir="ltr" style="display: none;" class="actnbr-pub-itheme2 actnbr-has-follow actnbr-has-actions">
		<ul>
								<li class="actnbr-btn actnbr-hidden">
								<a class="actnbr-action actnbr-actn-follow " href="">
			<svg class="gridicon" height="20" width="20" xmlns="http://www.w3.org/2000/svg" viewbox="0 0 20 20"><path clip-rule="evenodd" d="m4 4.5h12v6.5h1.5v-6.5-1.5h-1.5-12-1.5v1.5 10.5c0 1.1046.89543 2 2 2h7v-1.5h-7c-.27614 0-.5-.2239-.5-.5zm10.5 2h-9v1.5h9zm-5 3h-4v1.5h4zm3.5 1.5h-1v1h1zm-1-1.5h-1.5v1.5 1 1.5h1.5 1 1.5v-1.5-1-1.5h-1.5zm-2.5 2.5h-4v1.5h4zm6.5 1.25h1.5v2.25h2.25v1.5h-2.25v2.25h-1.5v-2.25h-2.25v-1.5h2.25z" fill-rule="evenodd"></path></svg>
			<span>Subscribe</span>
		</a>
		<a class="actnbr-action actnbr-actn-following  no-display" href="">
			<svg class="gridicon" height="20" width="20" xmlns="http://www.w3.org/2000/svg" viewbox="0 0 20 20"><path fill-rule="evenodd" clip-rule="evenodd" d="M16 4.5H4V15C4 15.2761 4.22386 15.5 4.5 15.5H11.5V17H4.5C3.39543 17 2.5 16.1046 2.5 15V4.5V3H4H16H17.5V4.5V12.5H16V4.5ZM5.5 6.5H14.5V8H5.5V6.5ZM5.5 9.5H9.5V11H5.5V9.5ZM12 11H13V12H12V11ZM10.5 9.5H12H13H14.5V11V12V13.5H13H12H10.5V12V11V9.5ZM5.5 12H9.5V13.5H5.5V12Z" fill="#008A20"></path><path class="following-icon-tick" d="M13.5 16L15.5 18L19 14.5" stroke="#008A20" stroke-width="1.5"></path></svg>
			<span>Subscribed</span>
		</a>
							<div class="actnbr-popover tip tip-top-left actnbr-notice" id="follow-bubble">
							<div class="tip-arrow"></div>
							<div class="tip-inner actnbr-follow-bubble">
															<ul>
											<li class="actnbr-sitename">
			<a href="/">
				<img loading="lazy" alt="" src="i/logo/wpcom-gray-white.png" srcset="i/logo/wpcom-gray-white.png 1x" class="avatar avatar-50" height="50" width="50"/>				Advocate's Studio			</a>
		</li>
										<div class="actnbr-message no-display"></div>
									<form method="post" action="https://subscribe.wordpress.com/" accept-charset="utf-8" style="display: none;">
																						<div class="actnbr-follow-count">Join 48 other subscribers</div>
																					<div>
										<input type="email" name="email" placeholder="Enter your email address" class="actnbr-email-field" aria-label="Enter your email address"/>
										</div>
										<input type="hidden" name="action" value="subscribe"/>
										<input type="hidden" name="blog_id" value="3450058"/>
										<input type="hidden" name="source" value="https://advocatesstudio.com/"/>
										<input type="hidden" name="sub-type" value="actionbar-follow"/>
										<input type="hidden" id="_wpnonce" name="_wpnonce" value="9a1fe7d570"/>										<div class="actnbr-button-wrap">
											<button type="submit" value="Sign me up">
												Sign me up											</button>
										</div>
									</form>
									<li class="actnbr-login-nudge">
										<div>
											Already have a WordPress.com account? <a href="https://wordpress.com/log-in?redirect_to=https%3A%2F%2Fr-login.wordpress.com%2Fremote-login.php%3Faction%3Dlink%26back%3Dhttps%253A%252F%252Fadvocatesstudio.com%252F2019%252F09%252F13%252F50-years-of-legal-technology-infographic%252F">Log in now.</a>										</div>
									</li>
								</ul>
															</div>
						</div>
					</li>
							<li class="actnbr-ellipsis actnbr-hidden">
				<svg class="gridicon gridicons-ellipsis" height="24" width="24" xmlns="http://www.w3.org/2000/svg" viewbox="0 0 24 24"><g><path d="M7 12c0 1.104-.896 2-2 2s-2-.896-2-2 .896-2 2-2 2 .896 2 2zm12-2c-1.104 0-2 .896-2 2s.896 2 2 2 2-.896 2-2-.896-2-2-2zm-7 0c-1.104 0-2 .896-2 2s.896 2 2 2 2-.896 2-2-.896-2-2-2z"/></g></svg>				<div class="actnbr-popover tip tip-top-left actnbr-more">
					<div class="tip-arrow"></div>
					<div class="tip-inner">
						<ul>
								<li class="actnbr-sitename">
			<a href="/">
				<img loading="lazy" alt="" src="i/logo/wpcom-gray-white.png" srcset="i/logo/wpcom-gray-white.png 1x" class="avatar avatar-50" height="50" width="50"/>				Advocate's Studio			</a>
		</li>
								<li class="actnbr-folded-follow">
										<a class="actnbr-action actnbr-actn-follow " href="">
			<svg class="gridicon" height="20" width="20" xmlns="http://www.w3.org/2000/svg" viewbox="0 0 20 20"><path clip-rule="evenodd" d="m4 4.5h12v6.5h1.5v-6.5-1.5h-1.5-12-1.5v1.5 10.5c0 1.1046.89543 2 2 2h7v-1.5h-7c-.27614 0-.5-.2239-.5-.5zm10.5 2h-9v1.5h9zm-5 3h-4v1.5h4zm3.5 1.5h-1v1h1zm-1-1.5h-1.5v1.5 1 1.5h1.5 1 1.5v-1.5-1-1.5h-1.5zm-2.5 2.5h-4v1.5h4zm6.5 1.25h1.5v2.25h2.25v1.5h-2.25v2.25h-1.5v-2.25h-2.25v-1.5h2.25z" fill-rule="evenodd"></path></svg>
			<span>Subscribe</span>
		</a>
		<a class="actnbr-action actnbr-actn-following  no-display" href="">
			<svg class="gridicon" height="20" width="20" xmlns="http://www.w3.org/2000/svg" viewbox="0 0 20 20"><path fill-rule="evenodd" clip-rule="evenodd" d="M16 4.5H4V15C4 15.2761 4.22386 15.5 4.5 15.5H11.5V17H4.5C3.39543 17 2.5 16.1046 2.5 15V4.5V3H4H16H17.5V4.5V12.5H16V4.5ZM5.5 6.5H14.5V8H5.5V6.5ZM5.5 9.5H9.5V11H5.5V9.5ZM12 11H13V12H12V11ZM10.5 9.5H12H13H14.5V11V12V13.5H13H12H10.5V12V11V9.5ZM5.5 12H9.5V13.5H5.5V12Z" fill="#008A20"></path><path class="following-icon-tick" d="M13.5 16L15.5 18L19 14.5" stroke="#008A20" stroke-width="1.5"></path></svg>
			<span>Subscribed</span>
		</a>
								</li>
														<li class="actnbr-signup"><a href="https://wordpress.com/start/">Sign up</a></li>
							<li class="actnbr-login"><a href="https://wordpress.com/log-in?redirect_to=https%3A%2F%2Fr-login.wordpress.com%2Fremote-login.php%3Faction%3Dlink%26back%3Dhttps%253A%252F%252Fadvocatesstudio.com%252F2019%252F09%252F13%252F50-years-of-legal-technology-infographic%252F">Log in</a></li>
															<li class="flb-report">
									<a href="https://wordpress.com/abuse/?report_url=https://advocatesstudio.com" target="_blank" rel="noopener noreferrer">
										Report this content									</a>
								</li>
															<li class="actnbr-reader">
									<a href="https://wordpress.com/reader/blogs/3450058">
										View site in Reader									</a>
								</li>
															<li class="actnbr-subs">
									<a href="https://subscribe.wordpress.com/">Manage subscriptions</a>
								</li>
																<li class="actnbr-fold"><a href="">Collapse this bar</a></li>
														</ul>
					</div>
				</div>
			</li>
		</ul>
	</div>
<script>
window.addEventListener( "load", function( event ) {
	var link = document.createElement( "link" );
	link.href = "https://s0.wp.com/wp-content/mu-plugins/actionbar/actionbar.css?v=20250116";
	link.type = "text/css";
	link.rel = "stylesheet";
	document.head.appendChild( link );
	var script = document.createElement( "script" );
	script.src = "https://s0.wp.com/wp-content/mu-plugins/actionbar/actionbar.js?v=20250204";
	script.defer = true;
	document.body.appendChild( script );
} );
</script>
	<script type="text/javascript">
		window.WPCOM_sharing_counts = {"https:\/\/advocatesstudio.com\/2019\/09\/13\/50-years-of-legal-technology-infographic\/":5843,"https:\/\/advocatesstudio.com\/2019\/02\/04\/legaltech-2019-i-finally-made-it\/":5833,"https:\/\/advocatesstudio.com\/2018\/11\/15\/a-bot-champion-for-financially-inclined-women\/":5827,"https:\/\/advocatesstudio.com\/2018\/10\/29\/new-bill-proposed-to-increase-access-to-federal-court-records\/":5825,"https:\/\/advocatesstudio.com\/2018\/10\/23\/gauging-alertness-theres-an-app-for-that\/":5821,"https:\/\/advocatesstudio.com\/2018\/10\/15\/swapping-bots-for-lawyers-via-app-donotpay\/":5814,"https:\/\/advocatesstudio.com\/2015\/08\/19\/news-you-can-use-a-robot-paralegal\/":5811,"https:\/\/advocatesstudio.com\/2015\/05\/22\/dont-forget-to-rsvp-rsvp-law\/":5808,"https:\/\/advocatesstudio.com\/2014\/06\/02\/apples-new-software-wwdc-2014-recap\/":5800,"https:\/\/advocatesstudio.com\/2014\/03\/28\/microsoft-office-for-ipad-its-about-freaking-time\/":5792};
	</script>
						<div id="jp-carousel-loading-overlay">
			<div id="jp-carousel-loading-wrapper">
				<span id="jp-carousel-library-loading">&nbsp;</span>
			</div>
		</div>
		<div class="jp-carousel-overlay" style="display: none;">
		<div class="jp-carousel-container">
			<!-- The Carousel Swiper -->
			<div class="jp-carousel-wrap swiper-container jp-carousel-swiper-container jp-carousel-transitions" itemscope itemtype="https://schema.org/ImageGallery">
				<div class="jp-carousel swiper-wrapper"></div>
				<div class="jp-swiper-button-prev swiper-button-prev">
					<svg width="25" height="24" viewbox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
						<mask id="maskPrev" mask-type="alpha" maskunits="userSpaceOnUse" x="8" y="6" width="9" height="12">
							<path d="M16.2072 16.59L11.6496 12L16.2072 7.41L14.8041 6L8.8335 12L14.8041 18L16.2072 16.59Z" fill="white"/>
						</mask>
						<g mask="url(#maskPrev)">
							<rect x="0.579102" width="23.8823" height="24" fill="#FFFFFF"/>
						</g>
					</svg>
				</div>
				<div class="jp-swiper-button-next swiper-button-next">
					<svg width="25" height="24" viewbox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
						<mask id="maskNext" mask-type="alpha" maskunits="userSpaceOnUse" x="8" y="6" width="8" height="12">
							<path d="M8.59814 16.59L13.1557 12L8.59814 7.41L10.0012 6L15.9718 12L10.0012 18L8.59814 16.59Z" fill="white"/>
						</mask>
						<g mask="url(#maskNext)">
							<rect x="0.34375" width="23.8822" height="24" fill="#FFFFFF"/>
						</g>
					</svg>
				</div>
			</div>
			<!-- The main close buton -->
			<div class="jp-carousel-close-hint">
				<svg width="25" height="24" viewbox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
					<mask id="maskClose" mask-type="alpha" maskunits="userSpaceOnUse" x="5" y="5" width="15" height="14">
						<path d="M19.3166 6.41L17.9135 5L12.3509 10.59L6.78834 5L5.38525 6.41L10.9478 12L5.38525 17.59L6.78834 19L12.3509 13.41L17.9135 19L19.3166 17.59L13.754 12L19.3166 6.41Z" fill="white"/>
					</mask>
					<g mask="url(#maskClose)">
						<rect x="0.409668" width="23.8823" height="24" fill="#FFFFFF"/>
					</g>
				</svg>
			</div>
			<!-- Image info, comments and meta -->
			<div class="jp-carousel-info">
				<div class="jp-carousel-info-footer">
					<div class="jp-carousel-pagination-container">
						<div class="jp-swiper-pagination swiper-pagination"></div>
						<div class="jp-carousel-pagination"></div>
					</div>
					<div class="jp-carousel-photo-title-container">
						<h2 class="jp-carousel-photo-caption"></h2>
					</div>
					<div class="jp-carousel-photo-icons-container">
						<a href="#" class="jp-carousel-icon-btn jp-carousel-icon-info" aria-label="Toggle photo metadata visibility">
							<span class="jp-carousel-icon">
								<svg width="25" height="24" viewbox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
									<mask id="maskInfo" mask-type="alpha" maskunits="userSpaceOnUse" x="2" y="2" width="21" height="20">
										<path fill-rule="evenodd" clip-rule="evenodd" d="M12.7537 2C7.26076 2 2.80273 6.48 2.80273 12C2.80273 17.52 7.26076 22 12.7537 22C18.2466 22 22.7046 17.52 22.7046 12C22.7046 6.48 18.2466 2 12.7537 2ZM11.7586 7V9H13.7488V7H11.7586ZM11.7586 11V17H13.7488V11H11.7586ZM4.79292 12C4.79292 16.41 8.36531 20 12.7537 20C17.142 20 20.7144 16.41 20.7144 12C20.7144 7.59 17.142 4 12.7537 4C8.36531 4 4.79292 7.59 4.79292 12Z" fill="white"/>
									</mask>
									<g mask="url(#maskInfo)">
										<rect x="0.8125" width="23.8823" height="24" fill="#FFFFFF"/>
									</g>
								</svg>
							</span>
						</a>
												<a href="#" class="jp-carousel-icon-btn jp-carousel-icon-comments" aria-label="Toggle photo comments visibility">
							<span class="jp-carousel-icon">
								<svg width="25" height="24" viewbox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
									<mask id="maskComments" mask-type="alpha" maskunits="userSpaceOnUse" x="2" y="2" width="21" height="20">
										<path fill-rule="evenodd" clip-rule="evenodd" d="M4.3271 2H20.2486C21.3432 2 22.2388 2.9 22.2388 4V16C22.2388 17.1 21.3432 18 20.2486 18H6.31729L2.33691 22V4C2.33691 2.9 3.2325 2 4.3271 2ZM6.31729 16H20.2486V4H4.3271V18L6.31729 16Z" fill="white"/>
									</mask>
									<g mask="url(#maskComments)">
										<rect x="0.34668" width="23.8823" height="24" fill="#FFFFFF"/>
									</g>
								</svg>
								<span class="jp-carousel-has-comments-indicator" aria-label="This image has comments."></span>
							</span>
						</a>
											</div>
				</div>
				<div class="jp-carousel-info-extra">
					<div class="jp-carousel-info-content-wrapper">
						<div class="jp-carousel-photo-title-container">
							<h2 class="jp-carousel-photo-title"></h2>
						</div>
						<div class="jp-carousel-comments-wrapper">
															<div id="jp-carousel-comments-loading">
									<span>Loading Comments...</span>
								</div>
								<div class="jp-carousel-comments"></div>
								<div id="jp-carousel-comment-form-container">
									<span id="jp-carousel-comment-form-spinner">&nbsp;</span>
									<div id="jp-carousel-comment-post-results"></div>
																														<form id="jp-carousel-comment-form">
												<label for="jp-carousel-comment-form-comment-field" class="screen-reader-text">Write a Comment...</label>
												<textarea name="comment" class="jp-carousel-comment-form-field jp-carousel-comment-form-textarea" id="jp-carousel-comment-form-comment-field" placeholder="Write a Comment..."></textarea>
												<div id="jp-carousel-comment-form-submit-and-info-wrapper">
													<div id="jp-carousel-comment-form-commenting-as">
																													<fieldset>
																<label for="jp-carousel-comment-form-email-field">Email (Required)</label>
																<input type="text" name="email" class="jp-carousel-comment-form-field jp-carousel-comment-form-text-field" id="jp-carousel-comment-form-email-field"/>
															</fieldset>
															<fieldset>
																<label for="jp-carousel-comment-form-author-field">Name (Required)</label>
																<input type="text" name="author" class="jp-carousel-comment-form-field jp-carousel-comment-form-text-field" id="jp-carousel-comment-form-author-field"/>
															</fieldset>
															<fieldset>
																<label for="jp-carousel-comment-form-url-field">Website</label>
																<input type="text" name="url" class="jp-carousel-comment-form-field jp-carousel-comment-form-text-field" id="jp-carousel-comment-form-url-field"/>
															</fieldset>
																											</div>
													<input type="submit" name="submit" class="jp-carousel-comment-form-button" id="jp-carousel-comment-form-button-submit" value="Post Comment"/>
												</div>
											</form>
																											</div>
													</div>
						<div class="jp-carousel-image-meta">
							<div class="jp-carousel-title-and-caption">
								<div class="jp-carousel-photo-info">
									<h3 class="jp-carousel-caption" itemprop="caption description"></h3>
								</div>
								<div class="jp-carousel-photo-description"></div>
							</div>
							<ul class="jp-carousel-image-exif" style="display: none;"></ul>
							<a class="jp-carousel-image-download" href="#" target="_blank" style="display: none;">
								<svg width="25" height="24" viewbox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
									<mask id="mask0" mask-type="alpha" maskunits="userSpaceOnUse" x="3" y="3" width="19" height="18">
										<path fill-rule="evenodd" clip-rule="evenodd" d="M5.84615 5V19H19.7775V12H21.7677V19C21.7677 20.1 20.8721 21 19.7775 21H5.84615C4.74159 21 3.85596 20.1 3.85596 19V5C3.85596 3.9 4.74159 3 5.84615 3H12.8118V5H5.84615ZM14.802 5V3H21.7677V10H19.7775V6.41L9.99569 16.24L8.59261 14.83L18.3744 5H14.802Z" fill="white"/>
									</mask>
									<g mask="url(#mask0)">
										<rect x="0.870605" width="23.8823" height="24" fill="#FFFFFF"/>
									</g>
								</svg>
								<span class="jp-carousel-download-text"></span>
							</a>
							<div class="jp-carousel-image-map" style="display: none;"></div>
						</div>
					</div>
				</div>
			</div>
		</div>
		</div>
		<link rel="stylesheet" id="all-css-0-2" href="_static/---eJyljEsKgDAMBS9kDUpFXIhnqW2Q1n6CafD6ItgTuBl4w2PgJmVLrpgrJFEU5fCZIWAlY89vQyrlhZOIDNZcRRgj8O0JL7VLdhF7y9zBj1o7NfEGt7QOs9bDtOhxCg9MNEBU-cssminify-yes.css" type="text/css" media="all"/>
<script type="text/javascript" src="wp-content/js/mobile-useragent-info_m-1609849039i-ver-20241018.js" id="mobile-useragent-info-js" defer="defer" data-wp-strategy="defer"></script>
<script type="text/javascript" id="coblocks-loader-js-extra">
/* <![CDATA[ */
var wpcom_coblocks_js = {"coblocks_masonry_js":"wp-content/plugins/coblocks/2.18.1-simple-rev.4/dist/js/coblocks-masonry.min.js","coblocks_lightbox_js":"wp-content/plugins/coblocks/2.18.1-simple-rev.4/dist/js/coblocks-lightbox.min.js","jquery_core_js":"\/wp-includes\/js\/jquery\/jquery.min.js","jquery_migrate_js":"\/wp-includes\/js\/jquery\/jquery-migrate.min.js","masonry_js":"\/wp-includes\/js\/masonry.min.js","imagesloaded_js":"\/wp-includes\/js\/imagesloaded.min.js"};
var coblocksLigthboxData = {"closeLabel":"Close Gallery","leftLabel":"Previous","rightLabel":"Next"};
/* ]]> */
</script>
<script type="text/javascript" id="jetpack-carousel-js-extra">
/* <![CDATA[ */
var jetpackSwiperLibraryPath = {"url":"wp-content/mu-plugins/jetpack-plugin/moon/_inc/build/carousel/swiper-bundle.min.js"};
var jetpackCarouselStrings = {"widths":[370,700,1000,1200,1400,2000],"is_logged_in":"","lang":"en","ajaxurl":"/","nonce":"dc602451dc","display_exif":"1","display_comments":"1","single_image_gallery":"1","single_image_gallery_media_file":"","background_color":"black","comment":"Comment","post_comment":"Post Comment","write_comment":"Write a Comment...","loading_comments":"Loading Comments...","image_label":"Open image in full-screen.","download_original":"View full size <span class=\"photo-size\">{0}<span class=\"photo-size-times\">\u00d7<\/span>{1}<\/span>","no_comment_text":"Please be sure to submit some text with your comment.","no_comment_email":"Please provide an email address to comment.","no_comment_author":"Please provide your name to comment.","comment_post_error":"Sorry, but there was an error posting your comment. Please try again later.","comment_approved":"Your comment was approved.","comment_unapproved":"Your comment is in moderation.","camera":"Camera","aperture":"Aperture","shutter_speed":"Shutter Speed","focal_length":"Focal Length","copyright":"Copyright","comment_registration":"0","require_name_email":"1","login_url":"https:\/\/advocatesstudio.wordpress.com\/wp-login.php?redirect_to=https%3A%2F%2Fadvocatesstudio.com%2F2019%2F02%2F04%2Flegaltech-2019-i-finally-made-it%2F","blog_id":"3450058","meta_data":["camera","aperture","shutter_speed","focal_length","copyright"],"stats_query_args":"blog=3450058&v=wpcom&tz=-4&user_id=0&home=1&subd=advocatesstudio","is_public":"1"};
/* ]]> */
</script>
<script type="text/javascript" src="https://s1.wp.com/_static/??-eJx9jkkOwjAMRS9EaqWqGBaIo6A0scCpM9Ak9PqEoUWqEDsPz+8bpih08Bl9BldE5HIhn2Aic8GcAEvdhoFQsJogo4usMq7mjU0b+O1hGip9K1jwqrxhHNfwTOrQc9BDgraR+0aKRDULxYj3pgNDKYP9QoKDMtXlyK99+YquRsbSA73q9nlotRpDSch/frWYo9LDpwcXgoczeQ19ITYwGxZuUb6/OLmj3HXysJVt19kHZ6l+lw=="></script>
<script type="text/javascript" src="https://platform.twitter.com/widgets.js?ver=20111117" id="twitter-widgets-js"></script>
<script type="text/javascript" id="sharing-js-js-extra">
/* <![CDATA[ */
var sharing_js_options = {"lang":"en","counts":"1","is_stats_active":"1"};
/* ]]> */
</script>
<script type="text/javascript" src="https://s0.wp.com/_static/??/wp-content/mu-plugins/jetpack-plugin/moon/_inc/build/sharedaddy/sharing.min.js,/wp-content/mu-plugins/carousel-wpcom/carousel-wpcom.js?m=1725888675j"></script>
<script type="text/javascript" id="sharing-js-js-after">
/* <![CDATA[ */
var windowOpen;
			( function () {
				function matches( el, sel ) {
					return !! (
						el.matches && el.matches( sel ) ||
						el.msMatchesSelector && el.msMatchesSelector( sel )
					);
				}
				document.body.addEventListener( 'click', function ( event ) {
					if ( ! event.target ) {
						return;
					}
					var el;
					if ( matches( event.target, 'a.share-linkedin' ) ) {
						el = event.target;
					} else if ( event.target.parentNode && matches( event.target.parentNode, 'a.share-linkedin' ) ) {
						el = event.target.parentNode;
					}
					if ( el ) {
						event.preventDefault();
						// If there's another sharing window open, close it.
						if ( typeof windowOpen !== 'undefined' ) {
							windowOpen.close();
						}
						windowOpen = window.open( el.getAttribute( 'href' ), 'wpcomlinkedin', 'menubar=1,resizable=1,width=580,height=450' );
						return false;
					}
				} );
			} )();
var windowOpen;
			( function () {
				function matches( el, sel ) {
					return !! (
						el.matches && el.matches( sel ) ||
						el.msMatchesSelector && el.msMatchesSelector( sel )
					);
				}
				document.body.addEventListener( 'click', function ( event ) {
					if ( ! event.target ) {
						return;
					}
					var el;
					if ( matches( event.target, 'a.share-facebook' ) ) {
						el = event.target;
					} else if ( event.target.parentNode && matches( event.target.parentNode, 'a.share-facebook' ) ) {
						el = event.target.parentNode;
					}
					if ( el ) {
						event.preventDefault();
						// If there's another sharing window open, close it.
						if ( typeof windowOpen !== 'undefined' ) {
							windowOpen.close();
						}
						windowOpen = window.open( el.getAttribute( 'href' ), 'wpcomfacebook', 'menubar=1,resizable=1,width=600,height=400' );
						return false;
					}
				} );
			} )();
var windowOpen;
			( function () {
				function matches( el, sel ) {
					return !! (
						el.matches && el.matches( sel ) ||
						el.msMatchesSelector && el.msMatchesSelector( sel )
					);
				}
				document.body.addEventListener( 'click', function ( event ) {
					if ( ! event.target ) {
						return;
					}
					var el;
					if ( matches( event.target, 'a.share-twitter' ) ) {
						el = event.target;
					} else if ( event.target.parentNode && matches( event.target.parentNode, 'a.share-twitter' ) ) {
						el = event.target.parentNode;
					}
					if ( el ) {
						event.preventDefault();
						// If there's another sharing window open, close it.
						if ( typeof windowOpen !== 'undefined' ) {
							windowOpen.close();
						}
						windowOpen = window.open( el.getAttribute( 'href' ), 'wpcomtwitter', 'menubar=1,resizable=1,width=600,height=350' );
						return false;
					}
				} );
			} )();
var windowOpen;
			( function () {
				function matches( el, sel ) {
					return !! (
						el.matches && el.matches( sel ) ||
						el.msMatchesSelector && el.msMatchesSelector( sel )
					);
				}
				document.body.addEventListener( 'click', function ( event ) {
					if ( ! event.target ) {
						return;
					}
					var el;
					if ( matches( event.target, 'a.share-tumblr' ) ) {
						el = event.target;
					} else if ( event.target.parentNode && matches( event.target.parentNode, 'a.share-tumblr' ) ) {
						el = event.target.parentNode;
					}
					if ( el ) {
						event.preventDefault();
						// If there's another sharing window open, close it.
						if ( typeof windowOpen !== 'undefined' ) {
							windowOpen.close();
						}
						windowOpen = window.open( el.getAttribute( 'href' ), 'wpcomtumblr', 'menubar=1,resizable=1,width=450,height=450' );
						return false;
					}
				} );
			} )();
/* ]]> */
</script>
	<script type="text/javascript">
		(function () {
			var wpcom_reblog = {
				source: 'toolbar',
				toggle_reblog_box_flair: function (obj_id, post_id) {
					// Go to site selector. This will redirect to their blog if they only have one.
					const postEndpoint = `https://wordpress.com/post`;
					// Ideally we would use the permalink here, but fortunately this will be replaced with the 
					// post permalink in the editor.
					const originalURL = `${ document.location.href }?page_id=${ post_id }`; 
					const url =
						postEndpoint +
						'?url=' +
						encodeURIComponent( originalURL ) +
						'&is_post_share=true' +
						'&v=5';
					const redirect = function () {
						if (
							! window.open( url, '_blank' )
						) {
						}
					};
					if ( /Firefox/.test( navigator.userAgent ) ) {
						setTimeout( redirect, 0 );
					} else {
						redirect();
					}
				},
			};
			window.wpcom_reblog = wpcom_reblog;
		})();
	</script>
	<iframe src="likes/master_ver-20250410_ext_iframe/#ver=20250410" scrolling="no" id="likes-master" name="likes-master" style="display:none;"></iframe>
	<div id="likes-other-gravatars" role="dialog" aria-hidden="true" tabindex="-1"><div class="likes-text"><span>%d</span></div><ul class="wpl-avatars sd-like-gravatars"></ul></div>
	<script src="w_68.js" defer></script> <script type="text/javascript">
_tkq = window._tkq || [];
_stq = window._stq || [];
_tkq.push(['storeContext', {'blog_id':'3450058','blog_tz':'-4','user_lang':'en','blog_lang':'en','user_id':'0'}]);
_stq.push(['view', {'blog':'3450058','v':'wpcom','tz':'-4','user_id':'0','home':'1','subd':'advocatesstudio'}]);
_stq.push(['extra', {'crypt':'UE5XaGUuOTlwaD85flAmcm1mcmZsaDhkV11YdWtpP0NsWnVkPS9sL0ViLndld3BuVT01Uj14Ti1yYTBnX3xuYUQ3NUsrN1dJRi56b1guZ3pbZl1hPy9UJk9ifDEzd1FoS19dWmxvT1tWaWpadW5lWS9HS1dtSlVVK2hMLjRfVHZIZT9ZZ3hiY0FGVyZyb3pbcngtd2c3Sm0/Y3FFPUEleFc3N29rWUFsUnpoW3JkbkczUUZpQnErY0o5THBaMzhsWms4a1pfWUpCYXUwN1VbbDAsNnBNP0haWDZxZyxbTS5WRHJjPSUmYnJud3NHRS44aXhEYVU1STNdPXdUQUxvLys2W2FuWl9tQlh5YnMvN190XV1dYmZrfC9ELXQwSUU1dW85Lm1acEUrUT9+Z0k/Tk0vMmNtMnI='}]);
_stq.push([ 'clickTrackerInit', '3450058', '0' ]);
</script>
<noscript><img src="b_v-noscript.gif" style="height:1px;width:1px;overflow:hidden;position:absolute;bottom:1px;" alt=""/></noscript>
<script defer id="bilmur" data-customproperties="{&quot;enq_jquery&quot;:&quot;1&quot;,&quot;logged_in&quot;:&quot;0&quot;,&quot;wptheme&quot;:&quot;pub\/itheme2&quot;,&quot;wptheme_is_block&quot;:&quot;0&quot;}" data-provider="wordpress.com" data-service="simple" data-site-tz="Etc/GMT+4" src="wp-content/js/bilmur-4.min_i-12-m-202515.js"></script><script>
( function() {
	function getMobileUserAgentInfo() {
		if ( typeof wpcom_mobile_user_agent_info === 'object' ) {
			wpcom_mobile_user_agent_info.init();
			var mobileStatsQueryString = '';
			if ( wpcom_mobile_user_agent_info.matchedPlatformName !== false ) {
				mobileStatsQueryString += '&x_' + 'mobile_platforms' + '=' + wpcom_mobile_user_agent_info.matchedPlatformName;
			}
			if ( wpcom_mobile_user_agent_info.matchedUserAgentName !== false ) {
				mobileStatsQueryString += '&x_' + 'mobile_devices' + '=' + wpcom_mobile_user_agent_info.matchedUserAgentName;
			}
			if ( wpcom_mobile_user_agent_info.isIPad() ) {
				mobileStatsQueryString += '&x_' + 'ipad_views' + '=' + 'views';
			}
			if ( mobileStatsQueryString != '' ) {
				new Image().src = document.location.protocol + 'https://pixel.wp.com/g.gif?v=wpcom-no-pv' + mobileStatsQueryString + '&baba=' + Math.random();
			}
		}
	}
	document.addEventListener( 'DOMContentLoaded', getMobileUserAgentInfo );
} )();
</script>
</body>
</html>
<!--
	generated in 0.207 seconds
	227518 bytes batcached for 300 seconds
-->