I like the idea of niching down for a use case, but I've never met a lawyer I thought had the time or energy to devote to learning programming. I'm also having trouble understanding how a lawyer might use their programming skill to improve their daily lives. It seems to me that other folks on a lawyer's staff would be more likely to be interested in this subject and use it to the firm's benefit.
Coding for Lawyers
31–40 of 47 posts
Re: Coding for Lawyers
#32I like the idea of niching down for a use case, but I've never met a lawyer I thought had the time or energy to devote to learning programming. I'm also having trouble understanding how a lawyer might use their programming skill to improve their daily lives. It seems to me that other folks on a lawyer's staff would be more likely to be interested in this subject and use it to the firm's benefit.
It was fun to take something where hordes of associates were being used as slightly smarter computers and automate it - there were several times when people were amazed that I turned out a properly formatted in-depth diligence report about multi-hundred-patent portfolios within a couple of days.
In my spare time, I built a natural language processing + graph analysis tool to help look for patent prior art. I spoke about it at PyCon - see " rel="nofollow">http://pyvideo.org/video/425/pycon-2011--how-to-kill-a-paten....
Right now I use an internal Github instance to manage CCLAs at Rackspace, and its just a matter of time until I automate some more stuff here.
Re: Coding for Lawyers
#33Re: Coding for Lawyers
#34I like the idea of niching down for a use case, but I've never met a lawyer I thought had the time or energy to devote to learning programming. I'm also having trouble understanding how a lawyer might use their programming skill to improve their daily lives. It seems to me that other folks on a lawyer's staff would be more likely to be interested in this subject and use it to the firm's benefit.
If there is any aspect of programming involved in any contract or lawsuit (which is becoming the norm), the lawyer absolutely must have at least a vague grasp of the tech to be effective. Too many lawyers and judges are just utterly perplexed, and it leads to bad law that makes things more difficult for everyone down the road.
Even the most basic understanding of programming would be so so helpful, if only because it makes the world of computers slightly less alien to your average legal practitioner.
Re: Coding for Lawyers
#35In a sense, a legal agreement seems like a cross-platform piece of software that is "executed" in the minds of the signing parties, their business associates, and occasionally the court system. Given that context, I'm a little surprised that lawyers and engineers tend to communicate and think so differently.
Re: Coding for Lawyers
#36Lets start teaching what code is by ... chapter 1 Regex???? If the author is reading this: WHY? out of all the horrors, why?
That question is answered in foot note one of chapter 1: http://codingforlawyers.com/chapters/ch1/ Maybe try reading a thing before breaking out the multi-punctuation and caps? ;)
He lost me at REGEX in the title... it gives me an allergic rash
Re: Coding for Lawyers
#37Earlier quoted context omitted.
That question is answered in foot note one of chapter 1: http://codingforlawyers.com/chapters/ch1/ Maybe try reading a thing before breaking out the multi-punctuation and caps? ;)
I would actually vote version control as chapter 1 of Coding for Lawyers. Also not "coding" per se, but immensely important - anything to get past "importantdocument.version.13.3.barkingcat.doc" hell.
[1] (https://github.com/vzvenyach/codingforlawyers/pull/10) [2] https://github.com/vzvenyach/codingforlawyers/issues/5
Re: Coding for Lawyers
#38[0-9]{1,2} U\.S\.\C. § \d+(\w+)?( \([0-9]{4}\))? Should probably be:
[0-9]{1,2} U\.S\.C\. § \d+(\w+)?( \([0-9]{4}\))?
\C. -> C\.
Great work! The line between computer user and computer programmer needs to be blurred. Many people who use computers would benefit from knowing a little programming. Just look at how useful Excel is.
Re: Coding for Lawyers
#39Re: Coding for Lawyers
#40This guys is a laywer, with a mechanical engineering degree, and does coding on the side. He was also the guy who wrote the SCOTUS opinion tracking software that was all over HN a few months ago. Seems like a cool guy, and unlike some posters I think regex are definitely something to start people off on. Many people who are non-technical but have used a computer understand the concept of a wildcard operator, you just…
Most lawyers understand the concept of a regex, so I'd agree that its a good place to start. Law students are taught how to search for caselaw using Terms and Connectors, which is a simplified form of regex: http://lscontent.westlaw.com/images/content/WLNT&CSearching.... So they already have a lot of familiarity with the topic, and this just makes it easy for them to understand that coding is not so foreign as they m…