Fun Stuff > CHATTER
Problems arising from change of forum to HTTPS
Fig:
--- Quote from: nekowafer on 22 Oct 2014, 20:28 ---I'm stuck on XP at work until they upgrade all the computers to 7 :(
--- End quote ---
I feel your pain. We just upgraded last year after XP support was dropped and we're only allowed to use IE. Our version of IE we're using is 7.
Kugai:
Your bosses hate you all.
pwhodges:
I've decided there's more going on with QC and XP, and am continuing to investigate. The explanations I've given for this specific problem don't stack up.
Update:
I think this specific issue is actually because the certificate is signed using the more modern SHA-2 rather than the deprecated but still generally used SHA-1; but I still can't find the exact sticking point.
jwhouk:
Other than XP isn't supported, perhaps?
Masterpiece:
--- Quote from: pwhodges on 22 Oct 2014, 16:30 ---Maybe - I haven't checked. Using 6, you see...
--- End quote ---
Eight has some really nice improvements in syntax, you don't have to jot down an entire inner class anymore, you can just use a lambda expression:
--- Code: (Old Java) ---printPersons(
roster,
new CheckPerson() {
public boolean test(Person p) {
return p.getGender() == Person.Sex.MALE
&& p.getAge() >= 18
&& p.getAge() <= 25;
}
}
);
--- End code ---
--- Code: (Java 8) ---printPersons(
roster,
(Person p) -> p.getGender() == Person.Sex.MALE
&& p.getAge() >= 18
&& p.getAge() <= 25
);
--- End code ---
Navigation
[0] Message Index
[#] Next page
[*] Previous page
Go to full version