Register Guidelines E-Books Today's Posts Search

Go Back   MobileRead Forums > E-Book Software > Sigil

Notices

Reply
 
Thread Tools Search this Thread
Old 12-15-2017, 05:58 PM   #1
Gregg Bell
Gregg Bell
Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.
 
Gregg Bell's Avatar
 
Posts: 2,264
Karma: 3917588
Join Date: Jan 2013
Location: Itasca, Illinois
Device: Kindle Touch 7, Sony PRS300, Fire HD8 Tablet
questions about preferences

I've been exploring what the different functionalities are in Sigil and what's optimal for me (a novelist).

I'm assuming it's good to have the 'Mend XHtML Source code on:' on the Open and Save settings. (see attachment)

And the second arrow. I should have the CSS Level 2.1 filled in?

Lastly, I don't even have EPUB 3 so I guess that third setting is moot and if I ever do have it it should be on CSS Level 3.

And a generic question:

What is the difference between:

Tools>Reformat HTML>Mend and Prettify All HTML Files

and

Tools>Reformat HTML>Mend all HTML Files ?

As I recall one was the old Tidy and the other the Prettify. The Tidy being super powerful and systemic and best to be avoided, but I'm not sure.

Thanks.
Attached Thumbnails
Click image for larger version

Name:	Selection_031.png
Views:	223
Size:	60.8 KB
ID:	160684  
Gregg Bell is offline   Reply With Quote
Old 12-15-2017, 06:30 PM   #2
KevinH
Sigil Developer
KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.
 
Posts: 7,644
Karma: 5433388
Join Date: Nov 2009
Device: many
Prettify changes whitespace in an attempt to cleanly indent html code to make it more readable by humans. I typically only use this if I am starting from code that is horrible.

Mend tries to make no whitespace changes and does the absolute minimum to fix broken html.

I personally use mend on open only and that is because gumbo will fix the code so that it is parseable to update links and things when an epub is first opened anyway.


CSS setting is personal preference since epub2 is somewhere between those two CSS specs.



Tidy is no longer part of Sigil because it often ate text.
KevinH is online now   Reply With Quote
Old 12-15-2017, 07:43 PM   #3
Gregg Bell
Gregg Bell
Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.
 
Gregg Bell's Avatar
 
Posts: 2,264
Karma: 3917588
Join Date: Jan 2013
Location: Itasca, Illinois
Device: Kindle Touch 7, Sony PRS300, Fire HD8 Tablet
Quote:
Originally Posted by KevinH View Post
Prettify changes whitespace in an attempt to cleanly indent html code to make it more readable by humans. I typically only use this if I am starting from code that is horrible.

Mend tries to make no whitespace changes and does the absolute minimum to fix broken html.

I personally use mend on open only and that is because gumbo will fix the code so that it is parseable to update links and things when an epub is first opened anyway.


CSS setting is personal preference since epub2 is somewhere between those two CSS specs.



Tidy is no longer part of Sigil because it often ate text.
Thanks Kevin. I was just testing the Mend vs Mend & Prettify. I've always used the Mend and prettify instead of the Mend. I like it that Mend/Prettify removes the white spaces and straightens things out. But you say Mend does the absolute minimum to fix broken code. Is that a good thing? By using Mend/Prettify am I at a disadvantage to using just Mend?

(And I don't think I have a lot of broken code. I'm just doing my own stuff. Stuff that I write and then turn into an epub.)

You wrote:
Quote:
I personally use mend on open only and that is because gumbo will fix the code so that it is parseable to update links and things when an epub is first opened anyway.

The above is kind of over my head. What is gumbo? The way you wrote it it sounds like Mend and gumbo are both fixing the code.

Is there any disadvantage to the way I have it (having Mend on Open and Save)?

And I googled and CSS 3 has a bunch of new stuff. But is my CSS going to need anything more than the CSS 2.1?
Spoiler:

@page {
margin-top: 1em;
margin-bottom: 1em;
}

h1, h2, h3, h4 {
text-align: center;
text-indent: 0;
}

blockquote {
margin-top: 1em;
margin-bottom: 1em;
margin-left: 10%;
margin-right: 10%;
}

.supermargintop {
margin-top: 5em;
}

.margintop {
margin-top: 1em;
}

.right {
text-indent: 0;
text-align: right;
}

.center {
text-indent: 0;
text-align: center;
}

/*This book only CSS*/
p {
text-indent: 1.5em;
margin-top: 0em;
margin-right: 0em;
margin-bottom: 0em;
margin-left: 0em;
text-align: left;
}

p.first {
text-indent: 0;
}

span.smallcaps {
font-size: .9em;
}

p.asterisks {
margin-top: 1em;
margin-bottom: 1em;
text-indent: 0;
text-align: center;
}

/*Title Page Only CSS*/

.paddingtop {
padding-top: 1em;
}

.bigmargintop {
margin-top: 2em;
}

/*Table of Contents Only CSS*/

.tocone {
text-align: left;
text-indent: -2em;
margin-left: 2em;
}
Gregg Bell is offline   Reply With Quote
Old 12-15-2017, 10:08 PM   #4
Tex2002ans
Wizard
Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.
 
Posts: 2,297
Karma: 12126329
Join Date: Jul 2012
Device: Kobo Forma, Nook
Quote:
Originally Posted by Gregg Bell View Post
I'm assuming it's good to have the 'Mend XHtML Source code on:' on the Open and Save settings. (see attachment)
The settings you have are perfectly fine.

Quote:
Originally Posted by Gregg Bell View Post
What is the difference between:

Tools>Reformat HTML>Mend and Prettify All HTML Files

and

Tools>Reformat HTML>Mend all HTML Files ?
Mend just fixes your code.

Let's say you accidentally forgot the slash in your closing <p>:

Code:
<p>This is a sentence.<p>
You can't have two <p>s in a row, so Mend corrects it to valid XHTML:

Code:
<p>This is a sentence.</p>
<p>

</p>
What Prettify does is it makes your code look nicer. So let's say you had this:

Code:
<body><p>Sentence 1.</p><p>Sentence 2.</p><p>Sentence 3.</p></body>
It changes it into this:

Code:
<body>
  <p>Sentence 1.</p>

  <p>Sentence 2.</p>

  <p>Sentence 3.</p>
</body>
Quote:
Originally Posted by Gregg Bell View Post
As I recall one was the old Tidy and the other the Prettify. The Tidy being super powerful and systemic and best to be avoided, but I'm not sure.
"Tidy" was in older versions of Sigil. It was what figured out if your HTML was valid or not, and tried to correct it.

Newer versions of Sigil use "Gumbo" instead. Which also checks if you have correct XHTML, but is much more robust (a lot less likely to make things disappear).

Quote:
Originally Posted by Gregg Bell View Post
Is there any disadvantage to the way I have it (having Mend on Open and Save)?
Nope, that's the same exact settings I have.

Quote:
Originally Posted by Gregg Bell View Post
And I googled and CSS 3 has a bunch of new stuff. But is my CSS going to need anything more than the CSS 2.1
Meh. Not really. You do basic books, so your basic CSS is fine.

Using new stuff in CSS3 wouldn't hurt. Devices that can understand CSS3 will show it, and devices that can't understand CSS3 would just act like it doesn't exist.

Last edited by Tex2002ans; 12-15-2017 at 10:13 PM.
Tex2002ans is offline   Reply With Quote
Old 12-15-2017, 10:34 PM   #5
KevinH
Sigil Developer
KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.
 
Posts: 7,644
Karma: 5433388
Join Date: Nov 2009
Device: many
Gumbo is Google's robust html parser. It is the "engine" used by both Mend and Mend and Prettify. It replaced Tidy.
KevinH is online now   Reply With Quote
Old 12-16-2017, 04:45 PM   #6
Gregg Bell
Gregg Bell
Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.
 
Gregg Bell's Avatar
 
Posts: 2,264
Karma: 3917588
Join Date: Jan 2013
Location: Itasca, Illinois
Device: Kindle Touch 7, Sony PRS300, Fire HD8 Tablet
Quote:
Originally Posted by Tex2002ans View Post
The settings you have are perfectly fine.



Mend just fixes your code.

Let's say you accidentally forgot the slash in your closing <p>:

Code:
<p>This is a sentence.<p>
You can't have two <p>s in a row, so Mend corrects it to valid XHTML:

Code:
<p>This is a sentence.</p>
<p>

</p>
What Prettify does is it makes your code look nicer. So let's say you had this:

Code:
<body><p>Sentence 1.</p><p>Sentence 2.</p><p>Sentence 3.</p></body>
It changes it into this:

Code:
<body>
  <p>Sentence 1.</p>

  <p>Sentence 2.</p>

  <p>Sentence 3.</p>
</body>


"Tidy" was in older versions of Sigil. It was what figured out if your HTML was valid or not, and tried to correct it.

Newer versions of Sigil use "Gumbo" instead. Which also checks if you have correct XHTML, but is much more robust (a lot less likely to make things disappear).



Nope, that's the same exact settings I have.



Meh. Not really. You do basic books, so your basic CSS is fine.

Using new stuff in CSS3 wouldn't hurt. Devices that can understand CSS3 will show it, and devices that can't understand CSS3 would just act like it doesn't exist.
Awesome, Tex. Great explanation. Thanks a lot.
Gregg Bell is offline   Reply With Quote
Old 12-16-2017, 04:52 PM   #7
Gregg Bell
Gregg Bell
Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.
 
Gregg Bell's Avatar
 
Posts: 2,264
Karma: 3917588
Join Date: Jan 2013
Location: Itasca, Illinois
Device: Kindle Touch 7, Sony PRS300, Fire HD8 Tablet
Quote:
Originally Posted by KevinH View Post
Gumbo is Google's robust html parser. It is the "engine" used by both Mend and Mend and Prettify. It replaced Tidy.
Thanks Kevin. And an html parser just makes sure all the html is in good shape (no brackets missing or anything like that)?
Gregg Bell is offline   Reply With Quote
Old 12-17-2017, 08:28 AM   #8
Notjohn
mostly an observer
Notjohn ought to be getting tired of karma fortunes by now.Notjohn ought to be getting tired of karma fortunes by now.Notjohn ought to be getting tired of karma fortunes by now.Notjohn ought to be getting tired of karma fortunes by now.Notjohn ought to be getting tired of karma fortunes by now.Notjohn ought to be getting tired of karma fortunes by now.Notjohn ought to be getting tired of karma fortunes by now.Notjohn ought to be getting tired of karma fortunes by now.Notjohn ought to be getting tired of karma fortunes by now.Notjohn ought to be getting tired of karma fortunes by now.Notjohn ought to be getting tired of karma fortunes by now.
 
Posts: 1,515
Karma: 987654
Join Date: Dec 2012
Device: Kindle
I like prettify. There was once an essay in the Wall Street Journal about the three? methods of loading a dishwasher. One was "curator," where everything is sorted by type, so the dishwasher trays look, yes!, TIDY. It was a perfect description of my dishwasher trays.

I run Flight Crew to validate, Ctrl-S to save, and then if I have done some hand-coding, I "mend and prettify" or whatever the language is. The page then looks right to me, everything as it should be. Nothing untoward has ever happened, but if it should do, I would simply then Undo.

The longer I use computers (since the fall of 1982, with a CPM WordStar extension on an Olympia electronic typewriter), the more ways I find there are to use a computer, and that no one way will suit everyone.
Notjohn is offline   Reply With Quote
Old 12-18-2017, 01:44 PM   #9
Gregg Bell
Gregg Bell
Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.
 
Gregg Bell's Avatar
 
Posts: 2,264
Karma: 3917588
Join Date: Jan 2013
Location: Itasca, Illinois
Device: Kindle Touch 7, Sony PRS300, Fire HD8 Tablet
Quote:
Originally Posted by Notjohn View Post
I like prettify. There was once an essay in the Wall Street Journal about the three? methods of loading a dishwasher. One was "curator," where everything is sorted by type, so the dishwasher trays look, yes!, TIDY. It was a perfect description of my dishwasher trays.

I run Flight Crew to validate, Ctrl-S to save, and then if I have done some hand-coding, I "mend and prettify" or whatever the language is. The page then looks right to me, everything as it should be. Nothing untoward has ever happened, but if it should do, I would simply then Undo.

The longer I use computers (since the fall of 1982, with a CPM WordStar extension on an Olympia electronic typewriter), the more ways I find there are to use a computer, and that no one way will suit everyone.
Yeah, you're right. I'm always looking for the one right way to do things. Not just "good." "Optimal."
Gregg Bell is offline   Reply With Quote
Old 12-20-2017, 01:36 AM   #10
DNSB
Bibliophagist
DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.
 
DNSB's Avatar
 
Posts: 35,380
Karma: 145435140
Join Date: Jul 2010
Location: Vancouver
Device: Kobo Sage, Forma, Clara HD, Lenovo M8 FHD, Paperwhite 4, Tolino epos
Quote:
Originally Posted by Gregg Bell View Post
Yeah, you're right. I'm always looking for the one right way to do things. Not just "good." "Optimal."
The problem is that very seldom is there "one right way". For the most part, it's "that's the way I do it" being mistaken for that elusive one true way. Optimal for you is unlikely to be optimal for me since we seem to use Sigil for very different purposes. Your major use seems to be creating epubs while my major use is fixing the garbage formatting all too often found in commercial epubs. <rant about In Design, Vellum, etc. removed -- please, Mr. Moderator, don't ban me!>
DNSB is offline   Reply With Quote
Old 12-22-2017, 11:29 AM   #11
Gregg Bell
Gregg Bell
Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.
 
Gregg Bell's Avatar
 
Posts: 2,264
Karma: 3917588
Join Date: Jan 2013
Location: Itasca, Illinois
Device: Kindle Touch 7, Sony PRS300, Fire HD8 Tablet
Quote:
Originally Posted by DNSB View Post
The problem is that very seldom is there "one right way". For the most part, it's "that's the way I do it" being mistaken for that elusive one true way. Optimal for you is unlikely to be optimal for me since we seem to use Sigil for very different purposes. Your major use seems to be creating epubs while my major use is fixing the garbage formatting all too often found in commercial epubs. <rant about In Design, Vellum, etc. removed -- please, Mr. Moderator, don't ban me!>
Ha ha. I was just in a writers' forum where everybody was raving about Vellum. ('You have to buy a Mac to use it, but oh, it's so good for making ebooks!')
Gregg Bell is offline   Reply With Quote
Old 12-22-2017, 09:07 PM   #12
theducks
Well trained by Cats
theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.
 
theducks's Avatar
 
Posts: 29,800
Karma: 54830978
Join Date: Aug 2009
Location: The Central Coast of California
Device: Kobo Libra2,Kobo Aura2v1, K4NT(Fixed: New Bat.), Galaxy Tab A
I think there is a difference between easy to use for an author and easy to maintain (the book) code.
What I have run across touching up books to 'my way', the code can be a mess and the author is no wiser.
theducks is online now   Reply With Quote
Old 12-22-2017, 10:06 PM   #13
Gregg Bell
Gregg Bell
Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.
 
Gregg Bell's Avatar
 
Posts: 2,264
Karma: 3917588
Join Date: Jan 2013
Location: Itasca, Illinois
Device: Kindle Touch 7, Sony PRS300, Fire HD8 Tablet
Quote:
Originally Posted by theducks View Post
I think there is a difference between easy to use for an author and easy to maintain (the book) code.
What I have run across touching up books to 'my way', the code can be a mess and the author is no wiser.
For sure, ducks. I have seen some epubs by some pretty big authors and the code is just an absolute mess. I'd think if they saw it they'd freak.
Gregg Bell is offline   Reply With Quote
Old 12-23-2017, 01:35 AM   #14
DNSB
Bibliophagist
DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.
 
DNSB's Avatar
 
Posts: 35,380
Karma: 145435140
Join Date: Jul 2010
Location: Vancouver
Device: Kobo Sage, Forma, Clara HD, Lenovo M8 FHD, Paperwhite 4, Tolino epos
Quote:
Originally Posted by Gregg Bell View Post
Ha ha. I was just in a writers' forum where everybody was raving about Vellum. ('You have to buy a Mac to use it, but oh, it's so good for making ebooks!')
It may be good for making ebooks but I suspect 'everybody' has never opened those ebooks in an editor where you can get down and dirty with the code.

Looking at Vellum's output reminds me of one contract decades back where I was to determine the feasibility of updating a budget projection program written in APL. My recommendation was two-fold. One being that it would be cheaper and easier to rewrite the code in a language that not write-only, the other being was to hire a person to ensure the the code was properly documented while it was being written.

For those who are unfamiliar with APL, take a look at the wikipedia APL programming language entry. From my personal experience, the old comment about being able to write a program in one line in APL that would take a page of code in some other language is very true. To read that line of code a month later and figure out what you were doing? That was the real trick.
DNSB is offline   Reply With Quote
Old 12-23-2017, 01:51 AM   #15
Terisa de morgan
Grand Sorcerer
Terisa de morgan ought to be getting tired of karma fortunes by now.Terisa de morgan ought to be getting tired of karma fortunes by now.Terisa de morgan ought to be getting tired of karma fortunes by now.Terisa de morgan ought to be getting tired of karma fortunes by now.Terisa de morgan ought to be getting tired of karma fortunes by now.Terisa de morgan ought to be getting tired of karma fortunes by now.Terisa de morgan ought to be getting tired of karma fortunes by now.Terisa de morgan ought to be getting tired of karma fortunes by now.Terisa de morgan ought to be getting tired of karma fortunes by now.Terisa de morgan ought to be getting tired of karma fortunes by now.Terisa de morgan ought to be getting tired of karma fortunes by now.
 
Terisa de morgan's Avatar
 
Posts: 6,233
Karma: 11768331
Join Date: Jun 2009
Location: Madrid, Spain
Device: Kobo Clara/Aura One/Forma,XiaoMI 5, iPad, Huawei MediaPad, YotaPhone 2
My God! A mathematic programming language!
Terisa de morgan is offline   Reply With Quote
Reply


Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Interface and preferences questions tosca30 Sigil 26 11-25-2014 11:12 PM
Preferences Rob1706 Calibre 5 03-16-2014 04:55 PM
Preferences ignored jeanettsvr Library Management 5 04-06-2013 12:26 PM
where is preferences akakie Library Management 3 06-10-2011 01:13 PM
Preferences & Cover Questions Jabby Calibre 3 10-13-2010 09:04 PM


All times are GMT -4. The time now is 09:42 AM.


MobileRead.com is a privately owned, operated and funded community.