Comment Re:Digital Dickwaving (Score 1) 136
Uh, I don't think you 'buy' hookers. You rent them. I think that's kinda the point.
You know, from what I hear.
Uh, I don't think you 'buy' hookers. You rent them. I think that's kinda the point.
You know, from what I hear.
Also, diagnostic codes are not very useful if the problem lies in the computer that's telling you the codes.
I had a fault on my Mitsi GTO ('3000GT' in americanese), it was only running on about 4 cylinders. According to the fancy whiz bang diagnostic gizmo, one of the coil packs was faulty. Some time and much money later, it turned out the coils were fine, but the ECU was playing up. Replacing that solved the problem.
Computers lie! It was trying to misdirect attention so it didn't get replaced!
Because cars are awesome, hippy.
I can't figure out if I'm the only sane one or the only crazy one. Especially given the 'pyramid' referred to - I don't see a pyramid unless it's rewritten to use nested ifs.
To me, nested ifs are much easier to read - they convey the meaning/intent of the code a lot better. As in 'if this function call works, then do this. Otherwise, just clean up and exit'
How is this so hard to understand?
geode_aes_probe(struct pci_dev *dev, const struct pci_device_id *id) {
int ret;
if ((ret = pci_enable_device(dev)))
return ret;
if (!(ret = pci_request_regions(dev, "geode-aes"))) {
_iobase = pci_iomap(dev, 0, 0);
if (_iobase == NULL) {
ret = -ENOMEM;
}
else {
spin_lock_init(&lock);
iowrite32(AES_INTR_PENDING | AES_INTR_MASK, _iobase + AES_INTR_REG);
if (!(ret = crypto_register_alg(&geode_alg))) {
if (!(ret = crypto_register_alg(&geode_ecb_alg))) {
if (!(ret = crypto_register_alg(&geode_cbc_alg))) {
printk(KERN_NOTICE "geode-aes: GEODE AES engine enabled.\n");
return 0;
}
crypto_unregister_alg(&geode_ecb_alg);
}
crypto_unregister_alg(&geode_alg);
}
pci_iounmap(dev, _iobase);
}
pci_release_regions(dev);
}
pci_disable_device(dev);
printk(KERN_ERR "geode-aes: GEODE AES initialization failed.\n");
return ret;
}
Mods, please look up the meaning of the word 'informative'. I do not think it means what you think it means.
His point is that a 13-character password is harder to crack than a 3 character one, and if he put the spaces there to make the password harder to crack, removing them will make the password (possibly much) weaker.
Heavier than air flying machines are impossible. -- Lord Kelvin, President, Royal Society, c. 1895