|
Or Paint.NET and get updates at any price you want to pay.
Hogan
|
|
|
|
|
Quote: look to cases like kindle where books that had been bought suddenly disappeared from the device. Wow, this one scares me a bit ... I have perhaps 80 books in my Kindle on Windows 10. I hope they are safe ...
|
|
|
|
|
|
OK, thanks ... I will check
A few hours later ... :
- I had a quick look and I will certainly give it a try, thank you again
modified 27-Jan-24 20:27pm.
|
|
|
|
|
|
Just curious....
Does that matter if kindle removed it? Once it goes in would kindle just remove it anyways if it that had already happened?
|
|
|
|
|
Nope. Calibre library has nothing to do with Kindle.
Mircea
|
|
|
|
|
Yes but you said...
"that I shuffle in and out of my Kindle."
So once it is in the Kindle, then the Kindle itself does nothing with it (removed books)?
|
|
|
|
|
Not that I’ve noticed. What I didn’t try was to erase it from my Kindle/Amazon account. Not sure it’s even possible.
Mircea
|
|
|
|
|
|
Here is how this works for me. I download a book from my Amazon account and it asks for what device I need the download. The book is downloaded and DRM protected but I can add it to the Calibre library. However I cannot open it on the PC. I can download the book to Kindle and read it fine. There is no way Amazon could remove or alter the book from the Calibre library but maybe the decrypting key on the Kindle could be invalidated. Anyway, it never happened to me.
Mircea
|
|
|
|
|
From CP newsletter
Agile is no Excuse - DevOps.com[^]
It somewhat references agile but also references long term plans and telling customers about those long term plans. Not in special cases but in all cases.
No that isn't a good idea, especially when agile is in play.
That is because, even though it probably shouldn't work that way, I have been on too many longer term initiatives via agile that got delayed or even axed because something else came up later that seemed more important.
And then someone is left explaining to the customers that were eagerly waiting for it why it didn't show up.
------------------------------------
Actually reminds me of attending long ago company meetings where the sales department would eagerly tell everyone about the major potential customers that were in the pipeline. And then one would never hear about those customers again.
|
|
|
|
|
Yeah, never tell anyone about "plans".
|
|
|
|
|
Received an email from Chris Maunder today to make sure I can still access this site after my ip address was mistakenly blocked by a post DDOS cleanup process, not many site owners would do that. So tip of the hat to Chris and the boys.
In a closed society where everybody's guilty, the only crime is getting caught. In a world of thieves, the only final sin is stupidity. - Hunter S Thompson - RIP
|
|
|
|
|
pkfox wrote: Chris and the boys.
They're called hamsters, thank you very much...
|
|
|
|
|
Not to me their not
In a closed society where everybody's guilty, the only crime is getting caught. In a world of thieves, the only final sin is stupidity. - Hunter S Thompson - RIP
|
|
|
|
|
VPN's (like Tor) come in handy for this situation. I have a mail scrubbing service that blocks my IP here. Use it for that (no, I don't use Tor).
>64
There is never enough time to do it right, but there is enough time to do it over.
|
|
|
|
|
pkfox wrote: to Chris and the boys. And the girls... there are some involved in making CP, what CP is too
M.D.V.
If something has a solution... Why do we have to worry about?. If it has no solution... For what reason do we have to worry about?
Help me to understand what I'm saying, and I'll explain it better to you
Rating helpful answers is nice, but saying thanks can be even nicer.
|
|
|
|
|
Greetings & Kind Regards
I seek advice and knowledge of others' practice re/ a minor matter of style. In particular to be specific I vacillate betwixt and between two forms of final statement of if ... else ... series of statements assuming every possible condition is accounted for as shown in simple specimen / example / sample below (not snippet as it is not a snip of a larger code base).
1st style :
if(expression == true) {...}
else {...}
2nd style :
if(expression == true) {...}
else if(expression == false) {...}
Note it is the final statement I am inquiring regards. Do your kind selves accept the default final result as shown in 1st style or perform explicit unnecessary test as shown in 2nd style for no other reason than to make the code self documenting and easier to understand in particular for a complex lengthy series of conditions.
btw in 2nd style on occasion I add as final statement else throw who_the_heck_knows_what_happened;
Thank You Kindly
[edit] I have concluded kind Jacquers is quite correct. As it happened upon some coding just now of a simple series of such it was evident an explicit final test results in confusion as it is clearly not necessary. However in a lengthy complex series an explicit test makes code self documenting and so simpler to understand. KISS
modified 26-Jan-24 0:31am.
|
|
|
|
|
It really depends on the logic you're trying to achieve. It's going to depend on the context it's in. And yes, the first style is fine if that's what you're intending to do.
|
|
|
|
|
The second requires more "comprehension" (reading) time. "Else" means "everything else". And beside "true" and "false", there may be "no value"; e.g. tri-value checkboxes / radio buttons.
"Before entering on an understanding, I have meditated for a long time, and have foreseen what might happen. It is not genius which reveals to me suddenly, secretly, what I have to say or to do in a circumstance unexpected by other people; it is reflection, it is meditation." - Napoleon I
|
|
|
|
|
Long ago, before WWW was invented, we did have Internet for email, accessing open source code libraries, exchanging photos - and open discussion forums. One of the discussion platform was COM, running on DEC mainframes. COM frequently asked the user yes/no-questions (e.g. "Do you want to delete this entry?"). The routine accepted answers "Yes", "No" and "Maybe". For a "maybe" answer, COM used a random generator to choose between "yes" and "no" actions. (I was using COM for at least a year before I was made aware of the "maybe" option, but after that, I used it frequently )
Religious freedom is the freedom to say that two plus two make five.
|
|
|
|
|
if (expression)
{
}
else
{
} Everything else is just unnecessary typing/reading.
|
|
|
|
|
Indeed.
"In testa che avete, Signor di Ceprano?"
-- Rigoletto
|
|
|
|
|
I agree
In a closed society where everybody's guilty, the only crime is getting caught. In a world of thieves, the only final sin is stupidity. - Hunter S Thompson - RIP
|
|
|
|