DF Thread Forum

(On Campus Interviews, Summer Associate positions, Firm Reviews, Tips, ...)
Forum rules
Anonymous Posting

Anonymous posting is only appropriate when you are revealing sensitive employment related information about a firm, job, etc. You may anonymously respond on topic to these threads. Unacceptable uses include: harassing another user, joking around, testing the feature, or other things that are more appropriate in the lounge.

Failure to follow these rules will get you outed, warned, or banned.
User avatar
Desert Fox

Diamond
Posts: 18283
Joined: Thu Sep 04, 2014 4:34 pm

DFTHREAD

Post by Desert Fox » Wed Oct 28, 2015 4:40 pm

Image
Last edited by Desert Fox on Sat Jan 27, 2018 3:39 am, edited 3 times in total.

User avatar
fats provolone

Platinum
Posts: 7125
Joined: Thu Oct 30, 2014 4:44 pm

Re: Your Partner is Planning to Replace You, With Law Watson

Post by fats provolone » Wed Oct 28, 2015 4:49 pm

partners who can't figure out outlook are going to use law watson?

User avatar
smaug

Diamond
Posts: 13972
Joined: Thu Feb 19, 2015 8:31 pm

Re: Your Partner is Planning to Replace You, With Law Watson

Post by smaug » Wed Oct 28, 2015 4:50 pm

Bad link

User avatar
fats provolone

Platinum
Posts: 7125
Joined: Thu Oct 30, 2014 4:44 pm

Re: Your Partner is Planning to Replace You, With Law Watson

Post by fats provolone » Wed Oct 28, 2015 4:52 pm

smaug wrote:Bad link
QED

User avatar
Desert Fox

Diamond
Posts: 18283
Joined: Thu Sep 04, 2014 4:34 pm

DFTHREAD

Post by Desert Fox » Wed Oct 28, 2015 4:58 pm

Image
Last edited by Desert Fox on Sat Jan 27, 2018 3:39 am, edited 2 times in total.

Want to continue reading?

Register now to search topics and post comments!

Absolutely FREE!


WestOfTheRest

Silver
Posts: 1397
Joined: Mon Jul 07, 2008 11:10 pm

Re: Your Partner is Planning to Replace You, With Law Watson

Post by WestOfTheRest » Wed Oct 28, 2015 5:16 pm

Law Watson may be better at me in every single aspect of practicing law, but can it give the partner the satisfaction of making someone cry on a routine basis? I didn't think so.

User avatar
fats provolone

Platinum
Posts: 7125
Joined: Thu Oct 30, 2014 4:44 pm

Re: Your Partner is Planning to Replace You, With Law Watson

Post by fats provolone » Wed Oct 28, 2015 5:17 pm

this is gonna turn out like HFT. people are going to start writing motions specifically targeted to fool the law watson algorithm. one day the law watson network will go haywire and voluntarily dismiss every federal suit.

dixiecupdrinking

Gold
Posts: 3436
Joined: Sun Oct 26, 2008 2:39 pm

Re: Your Partner is Planning to Replace You, With Law Watson

Post by dixiecupdrinking » Wed Oct 28, 2015 5:49 pm

Honestly law Watson could probably replace 75% of my partners just as easily as it could replace me. They could raise salaries to $190k easily without lowering PPP.

User avatar
Ajren Robben

New
Posts: 48
Joined: Sat Jul 05, 2014 8:51 pm

Re: Your Partner is Planning to Replace You, With Law Watson

Post by Ajren Robben » Wed Oct 28, 2015 6:08 pm

That's a good thing for people reading this here today, right?

Want to continue reading?

Register for access!

Did I mention it was FREE ?


WestOfTheRest

Silver
Posts: 1397
Joined: Mon Jul 07, 2008 11:10 pm

Re: Your Partner is Planning to Replace You, With Law Watson

Post by WestOfTheRest » Wed Oct 28, 2015 6:13 pm

This is why we NEED Trump. He'd build a wall and keep those thieving, raping, murdering Law Watson's out of our country. AND he'd make Law Watsico pay for the wall.

User avatar
Desert Fox

Diamond
Posts: 18283
Joined: Thu Sep 04, 2014 4:34 pm

DFTHREAD

Post by Desert Fox » Wed Oct 28, 2015 6:13 pm

Image
Last edited by Desert Fox on Sat Jan 27, 2018 3:39 am, edited 2 times in total.

User avatar
Ajren Robben

New
Posts: 48
Joined: Sat Jul 05, 2014 8:51 pm

Re: Your Partner is Planning to Replace You, With Law Watson

Post by Ajren Robben » Wed Oct 28, 2015 6:20 pm

Desert Fox wrote:
Ajren Robben wrote:That's a good thing for people reading this here today, right?
Law Watson will probably just be a better version of Westlaw and Lexis. In that respect, it can't come quick enough. I didn't have to open up Westlaw for so long I forgot my password. But I got brutally pwnd by research requests the last two days. I'd love to ask Watson.
Feel free to forward some of that my way. I'll take you on as a pro bono.

User avatar
Desert Fox

Diamond
Posts: 18283
Joined: Thu Sep 04, 2014 4:34 pm

DFTHREAD

Post by Desert Fox » Wed Oct 28, 2015 6:24 pm

Image
Last edited by Desert Fox on Sat Jan 27, 2018 3:39 am, edited 2 times in total.

Register now!

Resources to assist law school applicants, students & graduates.

It's still FREE!


User avatar
lacrossebrother

Platinum
Posts: 7150
Joined: Wed Jul 30, 2014 11:15 pm

Re: Your Partner is Planning to Replace You, With Law Watson

Post by lacrossebrother » Wed Oct 28, 2015 6:39 pm

ive been actively trying to replace my own paralegal with document automation.
this one is easy, but i need to start writing some YAML/Markdown type shit.

Code: Select all

from fpdf import FPDF
from PyPDF2 import PdfFileMerger, PdfFileReader
import glob
exhibits = glob.glob("*.pdf")
newpdfs = []
allpdfs = []

for exhibit in exhibits:
    exhibit_num = exhibit[:-4]
    cover_pg_name = "0" + exhibit_num + ".pdf"
    pdf=FPDF(format='letter', unit='in')
    pdf.add_page()
    pdf.set_font('Courier','B',20)
    pdf.set_xy(4.25, 4.5)
    pdf.cell(0,0, exhibit_num, "C")
    pdf.output(cover_pg_name,'F')
    newpdfs.append(cover_pg_name)

i=0
while i < len(newpdfs):
    allpdfs.append(newpdfs[i])
    allpdfs.append(exhibits[i])
    i = i +1

merger = PdfFileMerger()
for pdf in allpdfs:
    merger.append(PdfFileReader(file(pdf, 'rb')))
merger.write("exhibit binder.pdf")
I think automation is the key to freedom from the traditional law firm model, not something to worry about.

User avatar
Ajren Robben

New
Posts: 48
Joined: Sat Jul 05, 2014 8:51 pm

Re: Your Partner is Planning to Replace You, With Law Watson

Post by Ajren Robben » Wed Oct 28, 2015 7:10 pm

Desert Fox wrote:
Ajren Robben wrote:
Desert Fox wrote:
Ajren Robben wrote:That's a good thing for people reading this here today, right?
Law Watson will probably just be a better version of Westlaw and Lexis. In that respect, it can't come quick enough. I didn't have to open up Westlaw for so long I forgot my password. But I got brutally pwnd by research requests the last two days. I'd love to ask Watson.
Feel free to forward some of that my way. I'll take you on as a pro bono.
Does work product privilege cover materials created in anticipation of litigation by wholly owned subsidiary that you haven't created yet. Need by 8pm EDT. tanks
I need answer choices from A to D to help you.

weatherswaysme

New
Posts: 71
Joined: Tue Oct 25, 2011 6:09 pm

Re: Your Partner is Planning to Replace You, With Law Watson

Post by weatherswaysme » Wed Oct 28, 2015 8:07 pm

Ajren Robben wrote:
Desert Fox wrote:
Ajren Robben wrote:
Desert Fox wrote:
Ajren Robben wrote:That's a good thing for people reading this here today, right?
Law Watson will probably just be a better version of Westlaw and Lexis. In that respect, it can't come quick enough. I didn't have to open up Westlaw for so long I forgot my password. But I got brutally pwnd by research requests the last two days. I'd love to ask Watson.
Feel free to forward some of that my way. I'll take you on as a pro bono.
Does work product privilege cover materials created in anticipation of litigation by wholly owned subsidiary that you haven't created yet. Need by 8pm EDT. tanks
I need answer choices from A to D to help you.
I laughed way too hard at this

User avatar
pancakes3

Platinum
Posts: 6619
Joined: Sun Jul 20, 2014 2:49 pm

Re: Your Partner is Planning to Replace You, With Law Watson

Post by pancakes3 » Wed Oct 28, 2015 8:11 pm

a) Was hoping that this was going to be insight into DF's relationship with his wife
b) What this implies is that 35% of boomer partners believe that they're immortal

Get unlimited access to all forums and topics

Register now!

I'm pretty sure I told you it's FREE...


User avatar
Johann

Diamond
Posts: 19704
Joined: Wed Mar 12, 2014 4:25 pm

Re: Your Partner is Planning to Replace You, With Law Watson

Post by Johann » Wed Oct 28, 2015 8:33 pm

yep why im on that PAYE

User avatar
anyriotgirl

Platinum
Posts: 8349
Joined: Wed Dec 18, 2013 11:54 am

Re: Your Partner is Planning to Replace You, With Law Watson

Post by anyriotgirl » Wed Oct 28, 2015 8:34 pm

pancakes3 wrote:a) Was hoping that this was going to be insight into DF's relationship with his wife
b) What this implies is that 35% of boomer partners believe that they're immortal
why should they care if there is no one knows how to lawyer after they die?

User avatar
pancakes3

Platinum
Posts: 6619
Joined: Sun Jul 20, 2014 2:49 pm

Re: Your Partner is Planning to Replace You, With Law Watson

Post by pancakes3 » Wed Oct 28, 2015 8:45 pm

anyriotgirl wrote:
pancakes3 wrote:a) Was hoping that this was going to be insight into DF's relationship with his wife
b) What this implies is that 35% of boomer partners believe that they're immortal
why should they care if there is no one knows how to lawyer after they die?
Does preftige not carry into the afterlife? (I don't understand preftige. Just here for the models and bottles).

User avatar
postard

Bronze
Posts: 154
Joined: Thu Nov 01, 2012 7:39 pm

Re: Your Partner is Planning to Replace You, With Law Watson

Post by postard » Thu Oct 29, 2015 12:00 am

lacrossebrother wrote:ive been actively trying to replace my own paralegal with document automation.
this one is easy, but i need to start writing some YAML/Markdown type shit.

Code: Select all

from fpdf import FPDF
from PyPDF2 import PdfFileMerger, PdfFileReader
import glob
exhibits = glob.glob("*.pdf")
newpdfs = []
allpdfs = []

for exhibit in exhibits:
    exhibit_num = exhibit[:-4]
    cover_pg_name = "0" + exhibit_num + ".pdf"
    pdf=FPDF(format='letter', unit='in')
    pdf.add_page()
    pdf.set_font('Courier','B',20)
    pdf.set_xy(4.25, 4.5)
    pdf.cell(0,0, exhibit_num, "C")
    pdf.output(cover_pg_name,'F')
    newpdfs.append(cover_pg_name)

i=0
while i < len(newpdfs):
    allpdfs.append(newpdfs[i])
    allpdfs.append(exhibits[i])
    i = i +1

merger = PdfFileMerger()
for pdf in allpdfs:
    merger.append(PdfFileReader(file(pdf, 'rb')))
merger.write("exhibit binder.pdf")
I think automation is the key to freedom from the traditional law firm model, not something to worry about.
Are they going to start teaching Python for Lawyers? Meaningful whitespace might be too much to handle.

Communicate now with those who not only know what a legal education is, but can offer you worthy advice and commentary as you complete the three most educational, yet challenging years of your law related post graduate life.

Register now, it's still FREE!


User avatar
Pleasye

Platinum
Posts: 8738
Joined: Sun Mar 14, 2010 4:22 pm

Re: Your Partner is Planning to Replace You, With Law Watson

Post by Pleasye » Thu Oct 29, 2015 2:27 am

Good luck getting Watson to write all your loser motions, partners.

"ERROR. Error 767: the law does not support your argument. Please choose another argument."



User avatar
Tanicius

Gold
Posts: 2984
Joined: Sat Feb 07, 2009 12:54 am

Re: Your Partner is Planning to Replace You, With Law Watson

Post by Tanicius » Thu Oct 29, 2015 8:33 am

Pleasye wrote:Good luck getting Watson to write all your loser motions, partners.

"ERROR. Error 767: the law does not support your argument. Please choose another argument."
What's gonna be really funny is if the trial-level litigation starts going through algorithmic trial court robots, and the appellate lawyers and judges are the only human beings left, and they have to police the trial system to make sure it's making actual sense. It would be a lot of fun watching judges scratching their heads over Watson's take-no-prisoners approach to legal logic.

It could honestly be an interesting exercise if the software was perfected enough. The dirty secret everyone knows is that the higher courts aren't really "clarifying" legal splits or logical discrepancies; rather, they are inputting their human understanding for how a policy should work, to the extent they can justify it with plausible deniability from existing case law. If the courts ever end up accepting software, the higher courts would be overturning its findings left and right to prevent a shit-storm of totally unintended but probably accurate legal conclusions drawn from terribly written human law.

Seriously? What are you waiting for?

Now there's a charge.
Just kidding ... it's still FREE!


Post Reply Post Anonymous Reply  

Return to “Legal Employment”