DFTHREAD
Posted: Wed Oct 28, 2015 4:40 pm

Law School Discussion Forums
https://www.top-law-schools.com/forums/
https://www.top-law-schools.com/forums/viewtopic.php?f=23&t=255911
QEDsmaug wrote:Bad link
Feel free to forward some of that my way. I'll take you on as a pro bono.Desert Fox wrote: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.Ajren Robben wrote:That's a good thing for people reading this here today, right?
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 need answer choices from A to D to help you.Desert Fox wrote: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. tanksAjren Robben wrote:Feel free to forward some of that my way. I'll take you on as a pro bono.Desert Fox wrote: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.Ajren Robben wrote:That's a good thing for people reading this here today, right?
I laughed way too hard at thisAjren Robben wrote:I need answer choices from A to D to help you.Desert Fox wrote: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. tanksAjren Robben wrote:Feel free to forward some of that my way. I'll take you on as a pro bono.Desert Fox wrote: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.Ajren Robben wrote:That's a good thing for people reading this here today, right?
why should they care if there is no one knows how to lawyer after they die?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
Does preftige not carry into the afterlife? (I don't understand preftige. Just here for the models and bottles).anyriotgirl wrote:why should they care if there is no one knows how to lawyer after they die?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
Are they going to start teaching Python for Lawyers? Meaningful whitespace might be too much to handle.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.
I think automation is the key to freedom from the traditional law firm model, not something to worry about.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")
acc anonAnonymous User wrote:http://www.npr.org/sections/money/2015/ ... -a-machine
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.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."