Travis The Dragon
AFTERGLOW!!!
This thread has been dead almost a month now? I can guarantee if Trump was still in office with the current stuff going on at the border, you would be all over it.
This thread has been dead almost a month now? I can guarantee if Trump was still in office with the current stuff going on at the border, you would be all over it.
Each state has their own elected congress. The state representatives are elected on a district basis - Which in turn brings us to gerrymandering. Every 10 years or whatever, the district maps get redrawn, and whoever is in charge at that point will redraw the map to their party's advantage, which makes it even harder to swing districts.How do they make such state laws? Who makes them, how are they chosen..?
I hope these same people who they wish to suppress can change the powers above them at some point.
My God! All this just seems like a damn witch hunt against Biden. NEVER in history have I seen anything like this. Everyone really needs to quit all this bullshit and leave him the fuck alone and actually give him a chance to really do his job.This thread has been dead almost a month now? I can guarantee if Trump was still in office with the current stuff going on at the border, you would be all over it.
I think they worked together on... Errh...Well... Wasn't it something to do with... No? Eerrhhmm, they worked together on the issues of....Of course, it would be even better if our elected representatives would behave like adults and try to actually govern by finding common ground, but apparently both sides have decided that’s a losing proposition.
Interestingly, the reason the talking filibuster was removed was because it was deemed bad to the Senate's capacity to do business. That was in an era when a filibuster would be fairly rare, and the Senate would have a bunch of other bills they wanted to move ahead and work on. Now, the Senate has no interest in doing business without the 60 Senator supermajority, so a reversion to the talking filibuster would force the individual Senators to do physical acts.I don’t think they should kill the filibuster, but they should go back to the talking filibuster, like in Mr. Smith Goes To Washington. If you want to block the will of a slim majority, you should have to constantly work for it until one side or the other backs down. Right now any senator can just raise an effortless objection to force a 60-vote supermajority to overturn it, which is obscene.
Of course, it would be even better if our elected representatives would behave like adults and try to actually govern by finding common ground, but apparently both sides have decided that’s a losing proposition.
The filibuster is there so in the idealized case where representatives are sane human beings who are trying to govern effectively, someone with a significant objection to the will of a slim majority can stand up and say “hey, wait a minute before we actually do this”, and either a stronger majority has to push it forward, or the chamber can rethink what it’s doing, or the filibusterer can run out of gas and give up. In a de facto two-party system where you don’t have multi-party coalitions already hashing out compromises and threatening to change alliances to affect policy specifics, I think it does make sense if it’s used in the way it was originally intended. It’s supposed to be a pain in the ass for the filibusterer and for the senate as a whole, because it’s supposed to be rare, and it’s supposed to force action one way or the other.IMO the filibuster is the dumbest fucking thing in politics. No other functioning democracy has one.
Oracle successfully established that APIs are copyrightable, but their claims of patent infringement were rejected
What matters are the licensing terms of the Java API and whether the licensing terms are legal. My understanding is that the API license doesn’t allow you to implement subsets of it, and there are other conditions as well: https://www.oracle.com/downloads/licenses/javase8speclicense.htmlActually the verdict is 100% correct. Java's standard library does not implement anything that's an invention, such as the "Monopoly game".
I don’t think copyright means what you think it means. If the licensing terms allowed you to repurpose the code, then this sort of copyright declaration would be correct. If the licensing doesn’t allow this sort of repurposing, then you still wouldn’t have the right to do this.So if I make the same "API" eg. the same method and prototypes I can't claim I did it first. My code needs to look like this :
// Copyright (C) Jer 2020
// Copyright (C) Zare 2021
bool is_it_better_than_dave(Album album) {
Album.destroy(album);
return something;
}
It’s true that you can’t patent code. You can potentially patent the algorithm implemented by the code (though I have philosophical problems with patenting math), but not the code itself. The code is protected by copyright and whatever licensing is applied to it.However you can't patent code, and the API is just a "sentence" in the human speech terms. So both the function prototype and the implementation aren't protected by law.
“Just a language runtime” is a big statement. If it does nothing smart or special, then why steal it? It would be perfectly legal to make your own API that aped the Java API one-for-one and just named things in your own way. Google specifically didn’t do that, because people’s familiarity with the Java API has intrinsic value, and they wanted to directly leverage that rather than forcing developers to learn their own clone API. So despite their own lawyers recommending that they license the Java API, they decided to copy the API code directly and violate the terms of the license so people could use a familiar but not free interface defined by another company without that company being compensated for their role.Java library is just a language runtime. It binds between code and the target OS, therefore it does nothing smart.