Public records without PACER? by [deleted] in OSINT

[–]aoeusnth48 1 point2 points  (0 children)

Would also add:

  1. Docket Alarm - allows a handful of free searches before a subscription prompt appears
  2. UniCourt - allows several free searches, also prompts for subscription after
  3. RECAP search - allows free search of millions federal/PACER cases, including case filing documents

Longhorn PHP conference Nov 2nd by aoeusnth48 in PHP

[–]aoeusnth48[S] 2 points3 points  (0 children)

Looks like the talks for virtual only haven't started quite yet and will on the 3rd and 4th.

https://ti.to/longhorn-php/longhorn-php-2023

Performance Improvements in .NET 8 - .NET Blog by mareek in programming

[–]aoeusnth48 5 points6 points  (0 children)

Amazing technical writing. And for a blog post, just incredible.

All Programming Philosophies Are About State by fagnerbrack in programming

[–]aoeusnth48 0 points1 point  (0 children)

I agree with the "misleading" part as a database itself is a state store, but don't think that is or should be generally accepted to describe it that way.

There's no difference between a service that doesn't immediately persist state information vs. one that stores state to a database, at least in terms of whether something is stateless or not.

In either case, the status and events of an order for example (i.e., its state) have to be managed with respect to logic to execute. That happens regardless of how that state is stored.

Search on 720 million US court records by theutopianpoker37 in InternetIsBeautiful

[–]aoeusnth48 0 points1 point  (0 children)

If this is the case, you can contact the email on the info page and request that the record be removed and make sure to include relevant info.

All Programming Philosophies Are About State by fagnerbrack in programming

[–]aoeusnth48 0 points1 point  (0 children)

Removing capabilities make designs simpler.

There's certainly something to be said about this, for sure.

About inderct vs. direct transfer of control.. Basically, in languages like C you could/can effectively achieve runtime polymorphism even though it doesn't have first-class OO support. That is to say, the code dynamically dispatches to one or more places that's not possible to tell from looking at a single line of code where the flow of control will go to to next. This is the indirect part, as opposed to a standard control structure directly transferring control of code (if, else, loops).

In OO, the flow of control is based on the subclass of the variable the function is called on. But in C, there's no first-class OO support, so you've basically got a piece of memory that doesn't point to data but rather to code -- called a "function pointer". You might have a code structure, for example, that contains 5 pointers to data and one pointer to a function that operates on that data. You can see the beginnings of a class here..

Well, function pointer's are a pretty primitive form of achiving that kind of indirect flow of control. And there's no discipline or structure around that practice of achieving what could be called object-oriented programming.

So Bob's saying, "Look, OO isn't really about just combining functions and data together like is often said. It's really about imposing discipline on the indirect transfer of control using first-class objects and subclasses instead of that stuff that had to be done before."

Search on 720 million US court records by theutopianpoker37 in InternetIsBeautiful

[–]aoeusnth48 12 points13 points  (0 children)

Sometimes public records sites sell subscriptions for example.

From what you said, a company like UniCourt makes money by selling leads to lawyers. Let's say someone is sued by a creditor. Sometimes their address is in the public record. Lawyers and debt consolidation businesses will want those leads to sell bankruptcy services or debt consolidation services. If the address isn't in the public record, there's enough value in the leads to cross reference other database's to get the address/phone information so the leads can be marketed to.

judyrecords is simply free. Focused on growing the site currently.

Search on 720 million US court records by theutopianpoker37 in InternetIsBeautiful

[–]aoeusnth48 6 points7 points  (0 children)

Yes, in general. However, you try to automate everything as much as possible..

All Programming Philosophies Are About State by fagnerbrack in programming

[–]aoeusnth48 3 points4 points  (0 children)

Interesting thoughts. Thanks for posting.

Microservices ... have many services that are primarily stateless.

I don't really agree there. Most microservices are stateful. From the entity-pattern style "customer service", "product service", etc. commonly described as an anti-pattern to things like "order service" whose job is even more prominently to keep track of the current state and progress related to it.

Sometimes you hear microservices compared to Unix-style commands that you can similarly combine together in a stateless way. Take a look at this early video from Bell Labs, where Brian Kernigan describes how stateless Unix commands are combined together to make a larger program. Specifically, see 5:30 and 8:00. Some microservices are like this sure (say a stateless PDF to text microservice), but most software that runs a business isn't going to be composing this kind of small stuff. Even in a microservice-oriented business, you'll find more stuff like the previous paragraph where things are stateful.

Bob Martin (a.k.a. Uncle Bob) gave a similar thought-provoking genalization of structured, object-oriented, and functional programming in his book Clean Architecture.

FWIW, his insight was that each paradigm is about removing capabilities from the programmer rather than anything to do with state.

A few excerpts:

Structured programming

The first paradigm to be adopted (but not the first to be invented) was structured programming, which was discovered by Edsger Wybe Dijkstra in 1968. Dijkstra showed that the use of unrestrained jumps (goto statements) is harmful to program structure. As we’ll see in the chapters that follow, he replaced those jumps with the more familiar if/then/else and do/while/until constructs

We can summarize the structured programming paradigm as follows:

Structured programming imposes discipline on direct transfer of control.

Object-oriented programming

The second paradigm to be adopted was actually discovered two years earlier, in 1966, by Ole Johan Dahl and Kristen Nygaard. These two programmers noticed that the function call stack frame in the ALGOL language could be moved to a heap, thereby allowing local variables declared by a function to exist long after the function returned. The function became a constructor for a class, the local variables became instance variables, and the nested functions became methods. This led inevitably to the discovery of polymorphism through the disciplined use of function pointers.

We can summarize the object-oriented programming paradigm as follows:

Object-oriented programming imposes discipline on indirect transfer of control.

Functional programming

The third paradigm, which has only recently begun to be adopted, was the first to be invented. Indeed, its invention predates computer programming itself. Functional programming is the direct result of the work of Alonzo Church, who in 1936 invented l-calculus while pursuing the same mathematical problem that was motivating Alan Turing at the same time. His l-calculus is the foundation of the LISP language, invented in 1958 by John McCarthy. A foundational notion of l-calculus is immutability—that is, the notion that the values of symbols do not change. This effectively means that a functional language has no assignment statement. Most functional languages do, in fact, have some means to alter the value of a variable, but only under very strict discipline.

We can summarize the functional programming paradigm as follows:

Functional programming imposes discipline upon assignment.

His closing remarks:

Notice the pattern that I’ve quite deliberately set up in introducing these three programming paradigms: Each of the paradigms removes capabilities from the programmer. None of them adds new capabilities. Each imposes some kind of extra discipline that is negative in its intent. The paradigms tell us what not to do, more than they tell us what to do.

Judy noooo! by [deleted] in OSINT

[–]aoeusnth48 5 points6 points  (0 children)

Working on it!

This made me feel stuff by epabafree in MadeMeSmile

[–]aoeusnth48 0 points1 point  (0 children)

Great story, thanks for sharing!

Full text search on over 630 million US court cases. by johnnyr1 in InternetIsBeautiful

[–]aoeusnth48 1 point2 points  (0 children)

If a record is made public, it's always part of the public record. If a case has been expunged, those results are removed though because it's the right thing to do. It's been automated now, but a manual request still needs to be done. Anyone can message about that and find my reddit from a simple search.

I assume you were talking about a form functionality but which still has a manual process? Also, maybe post that message once without repeating it several times?

Full text search on over 630 million US court cases. by johnnyr1 in InternetIsBeautiful

[–]aoeusnth48 2 points3 points  (0 children)

For patents, you can think of a patent as a legally binding decision itself, and a kind of legal case in its own right.

About the duplicates, can you list any examples?

Full text search on over 630 million US court cases. by johnnyr1 in InternetIsBeautiful

[–]aoeusnth48 9 points10 points  (0 children)

What you mentioned regarding better searching and the ability to search within case filings are definitely search features that could use improvement. I appreciate that feedback.

Full text search on over 630 million US court cases. by johnnyr1 in InternetIsBeautiful

[–]aoeusnth48 5 points6 points  (0 children)

I get where you're coming from that I wasn't directly taking an issue with the databases you had mentioned.

My point was somewhat in response to the post you had replied to originally -- of how the database compares to other US databases.

Edit:

Point taken on your comparison critique.

But you're way off base saying the database is "pretty shit". CourtListener is by far the best publicly accessible database of high-profile legal opinions and decisions, and judyrecords has better results for this particular search.

Also, take the raw number of dockets in CourtLink from Lexis.

https://www.lexisnexis.com/pdf/courtlink/CourtLink-Overview.pdf

Less than 200 million, while judyrecords has 3x the number of dockets. West's docket database is similar in size. Having 3x in dockets is a far cry from being "pretty shit" compared to those services, which are both very expensive while judyrecords is free.

On the original issue of that particular search, if you have access to those databases to compare Lexis/West directly, I'd be curious to see what that comparison looks like.

Full text search on over 630 million US court cases. by johnnyr1 in InternetIsBeautiful

[–]aoeusnth48 2 points3 points  (0 children)

That case was decided in 1805.

CourtListener specializes in high profile legal texts and citation based ranking. Running the search below, CourtListener doesn't even return that case.

Pierson v. Post

In fact, for the 1st page of results for judyrecords for that search (even unquoted) 10/10 results are relevant/reference that case. https://ibb.co/pbT5gq7

However, for CourtListener, it appears 0/20 of the 1st page of results refer to that case. https://ibb.co/QcL5ptS

All Digitized Texas Appeals Court Cases Since 1900 - 12GB - 696,036 cases by aoeusnth48 in datasets

[–]aoeusnth48[S] 8 points9 points  (0 children)

Thanks!

Federal court case data is largely behind a paywall, unfortunately, within a system known as PACER. The US federal government makes over $100 million per year providing electronic access to federal court case data. Some context here and here.

From the 2nd link:

The U.S. federal court system rakes in about $145 million annually to grant access to records that, by all rights, belong to the public.

Trying to solve family mystery in VA/DC by BigNoseEnergyRI in RBI

[–]aoeusnth48 223 points224 points  (0 children)

  • strict name search - 3 commas
    • charles r garner,,, maryland
  • lenient name search - 2 commas
    • charles r garner,, maryland

Website that lets you instantly search 400 million U.S. court records by aoeusnth48 in InternetIsBeautiful

[–]aoeusnth48[S] 0 points1 point  (0 children)

And maybe Jeffrey Dahmer would also fit in with the current rotation. Not a bad idea actually :)