Register Guidelines E-Books Today's Posts Search

Go Back   MobileRead Forums > E-Book Readers > Kobo Reader

Notices

Reply
 
Thread Tools Search this Thread
Old 05-11-2019, 10:27 AM   #16
Quoth
the rook, bossing Never.
Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.
 
Quoth's Avatar
 
Posts: 11,158
Karma: 85874891
Join Date: Jun 2017
Location: Ireland
Device: All 4 Kinds: epub eink, Kindle, android eink, NxtPaper11
Quote:
Originally Posted by John F View Post
It wouldn't be significant.

If the author_sort field exists, use it and do a simple sort (no interpretation of the data), else fallback to the current sort. Give it to an intern.

IMO, assuming relatively good software engineering practices.
Ha ha. The reason is that SW has so many bugs and/or released versions are annoying is that EVERYTHING is pretty significant.



I'd give NOTHING to going to the public to someone on work experience.

There isn't anything simple about sorting anyway and lots of traps for inexperienced. Don't forget it has to work for non-Roman alphabets, surnames names with spaces, accents. There are libraries. That's the HARDEST bit for new programmers, or experienced ones to a new language. What does the library REALLY do?
Quoth is offline   Reply With Quote
Old 05-11-2019, 10:29 AM   #17
John F
Grand Sorcerer
John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.
 
Posts: 7,171
Karma: 63764653
Join Date: Feb 2009
Device: Kobo Glo HD
Quote:
Originally Posted by davidfor View Post
Sorry, but you are drastically underestimating the work needed. No, I have never seen the code, but I understand enough about the database and some of the other things going on, that it isn't that simple.
Sorry, but you are drastically and dramatically overestimating. You are thinking it much more complicated than it needs to be.
John F is offline   Reply With Quote
Old 05-11-2019, 10:39 AM   #18
John F
Grand Sorcerer
John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.
 
Posts: 7,171
Karma: 63764653
Join Date: Feb 2009
Device: Kobo Glo HD
Quote:
Originally Posted by FrustratedReader View Post
Ha ha. The reason is that SW has so many bugs and/or released versions are annoying is that EVERYTHING is pretty significant.



I'd give NOTHING to going to the public to someone on work experience.

There isn't anything simple about sorting anyway and lots of traps for inexperienced. Don't forget it has to work for non-Roman alphabets, surnames names with spaces, accents. There are libraries. That's the HARDEST bit for new programmers, or experienced ones to a new language. What does the library REALLY do?
That is the whole purpose of the having a separate author_sort field. So that most of the problems you mention are eliminated.

Why dramatize the problem with non-relevant problems?

If Kobo (or their hired contractors) doesn't have a good simple sort algorithm by now, ...
John F is offline   Reply With Quote
Old 05-11-2019, 10:53 AM   #19
davidfor
Grand Sorcerer
davidfor ought to be getting tired of karma fortunes by now.davidfor ought to be getting tired of karma fortunes by now.davidfor ought to be getting tired of karma fortunes by now.davidfor ought to be getting tired of karma fortunes by now.davidfor ought to be getting tired of karma fortunes by now.davidfor ought to be getting tired of karma fortunes by now.davidfor ought to be getting tired of karma fortunes by now.davidfor ought to be getting tired of karma fortunes by now.davidfor ought to be getting tired of karma fortunes by now.davidfor ought to be getting tired of karma fortunes by now.davidfor ought to be getting tired of karma fortunes by now.
 
Posts: 24,907
Karma: 47303748
Join Date: Jul 2011
Location: Sydney, Australia
Device: Kobo:Touch,Glo, AuraH2O, GloHD,AuraONE, ClaraHD, Libra H2O; tolinoepos
Quote:
Originally Posted by John F View Post
If Kobo (or their hired contractors) doesn't have a good simple sort algorithm by now, ...
It isn't the sorting. It is all the other things that need to be done to get the data that needs to be sorted. You need to read it from the books, store it in the database, read it from the database, put it in the appropriate structure and I'm sure lots of other things. Which includes handling the syncing books from the server. And make sure you don't break anything. Then you have to test it.

Yes, I was probably being dramatic. But, it is not a simple task and would take a large enough effort that it could be hard to justify.
davidfor is offline   Reply With Quote
Old 05-11-2019, 11:15 AM   #20
John F
Grand Sorcerer
John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.
 
Posts: 7,171
Karma: 63764653
Join Date: Feb 2009
Device: Kobo Glo HD
Quote:
Originally Posted by davidfor View Post
It isn't the sorting. It is all the other things that need to be done to get the data that needs to be sorted. You need to read it from the books, store it in the database, read it from the database, put it in the appropriate structure and I'm sure lots of other things. Which includes handling the syncing books from the server. And make sure you don't break anything. Then you have to test it.

Yes, I was probably being dramatic. But, it is not a simple task and would take a large enough effort that it could be hard to justify.
Fair enough. I can see how all of those things need to be done, they just don't seem significant, to me.

Major changes to the UI, adding Facebook support, awards, pocket, ... Those are significant; adding a simple sort for a new field, simple.
John F is offline   Reply With Quote
Old 05-11-2019, 12:42 PM   #21
PeterT
Grand Sorcerer
PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.
 
PeterT's Avatar
 
Posts: 12,167
Karma: 73448616
Join Date: Nov 2007
Location: Toronto
Device: Nexus 7, Clara, Touch, Tolino EPOS
What is the marketing benefit to Author sort?

How will this sell more content from the Kobo store?

Remember side loading of content is not a priority of marketing.
PeterT is offline   Reply With Quote
Old 05-11-2019, 01:43 PM   #22
John F
Grand Sorcerer
John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.
 
Posts: 7,171
Karma: 63764653
Join Date: Feb 2009
Device: Kobo Glo HD
Quote:
Originally Posted by PeterT View Post
What is the marketing benefit to Author sort?

How will this sell more content from the Kobo store?

Remember side loading of content is not a priority of marketing.
I don't know about marketing value, but it apparently has some value. There is a sort by author under Books, and a whole new tab was added in My books just for authors.
John F is offline   Reply With Quote
Old 05-11-2019, 01:57 PM   #23
lumpynose
Wizard
lumpynose ought to be getting tired of karma fortunes by now.lumpynose ought to be getting tired of karma fortunes by now.lumpynose ought to be getting tired of karma fortunes by now.lumpynose ought to be getting tired of karma fortunes by now.lumpynose ought to be getting tired of karma fortunes by now.lumpynose ought to be getting tired of karma fortunes by now.lumpynose ought to be getting tired of karma fortunes by now.lumpynose ought to be getting tired of karma fortunes by now.lumpynose ought to be getting tired of karma fortunes by now.lumpynose ought to be getting tired of karma fortunes by now.lumpynose ought to be getting tired of karma fortunes by now.
 
Posts: 1,086
Karma: 6719822
Join Date: Jul 2012
Device: Palm Pilot M105
John F, I'm confused about what you're proposing. Isn't the kobo already using an author sort with LN, FN as well as displaying the authors' names as FN LN on the My books authors tab? Or are you proposing that they allow us to select how the author names are displayed?
lumpynose is offline   Reply With Quote
Old 05-11-2019, 02:30 PM   #24
John F
Grand Sorcerer
John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.
 
Posts: 7,171
Karma: 63764653
Join Date: Feb 2009
Device: Kobo Glo HD
Quote:
Originally Posted by lumpynose View Post
John F, I'm confused about what you're proposing. Isn't the kobo already using an author sort with LN, FN as well as displaying the authors' names as FN LN on the My books authors tab? Or are you proposing that they allow us to select how the author names are displayed?
I'm not sure. I was assuming they didn't have separate fields.

I think they are using a single field for display and sorting (I am referring to Books under My Books.). And David's stance seems to indicate a single field.

Or I may be mixing this up with another hardware vendor. I like how Calibre has Author and and Author sort and wish Kobo (and others), had similar behavior.

At some point in the past for some reason, I made Author and Author sort the same in Calibre (LN, FN); I've gone through multiple hardware manfactures and many firmwares, so my memory is foggy.

Rethinking it, I can live with the Kobo's current behavior and should probably look into more of Calibre's features for manipulating data when sending books.
John F is offline   Reply With Quote
Old 05-11-2019, 02:45 PM   #25
lumpynose
Wizard
lumpynose ought to be getting tired of karma fortunes by now.lumpynose ought to be getting tired of karma fortunes by now.lumpynose ought to be getting tired of karma fortunes by now.lumpynose ought to be getting tired of karma fortunes by now.lumpynose ought to be getting tired of karma fortunes by now.lumpynose ought to be getting tired of karma fortunes by now.lumpynose ought to be getting tired of karma fortunes by now.lumpynose ought to be getting tired of karma fortunes by now.lumpynose ought to be getting tired of karma fortunes by now.lumpynose ought to be getting tired of karma fortunes by now.lumpynose ought to be getting tired of karma fortunes by now.
 
Posts: 1,086
Karma: 6719822
Join Date: Jul 2012
Device: Palm Pilot M105
Quote:
Originally Posted by John F View Post
I'm not sure. I was assuming they didn't have separate fields.
Well on my kobo the authors on the my books tab are sorted by last name. The names that are displayed are fn ln. So internally they're using ln, fn. But in order for that to work properly you have to have your authors in calibre set up so that it's fn ln, and calibre has another column, author_sort, where it uses the same heuristic as the kobo and they're stored as ln, fn in it.
lumpynose is offline   Reply With Quote
Old 05-11-2019, 03:16 PM   #26
PeterT
Grand Sorcerer
PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.
 
PeterT's Avatar
 
Posts: 12,167
Karma: 73448616
Join Date: Nov 2007
Location: Toronto
Device: Nexus 7, Clara, Touch, Tolino EPOS
Quote:
Originally Posted by John F View Post
I don't know about marketing value, but it apparently has some value. There is a sort by author under Books, and a whole new tab was added in My books just for authors.
Remember this community is not representative of the entire Kobo user base; it's skewed towards users who sideload content, not folks who buy content from the Kobo store and load it directly via the wifi connection.
PeterT is offline   Reply With Quote
Old 05-11-2019, 03:17 PM   #27
John F
Grand Sorcerer
John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.
 
Posts: 7,171
Karma: 63764653
Join Date: Feb 2009
Device: Kobo Glo HD
Quote:
Originally Posted by lumpynose View Post
Well on my kobo the authors on the my books tab are sorted by last name. The names that are displayed are fn ln. So internally they're using ln, fn. But in order for that to work properly you have to have your authors in calibre set up so that it's fn ln, and calibre has another column, author_sort, where it uses the same heuristic as the kobo and they're stored as ln, fn in it.
I don't believe that Kobo is using "Author Sort". I believe that Kobo's heuristic for sorting works for most cases.

I just tried using an "Author" of 'Jake' and "Author Sort" of 'Kellerman, Jonathan' in Calibre. When I convert and transfer the book to Kobo and sort by Author, it displays 'Jake" as the author but it is sorted under the Js; If Kobo was using the "Author Sort", it should show up under the Ks.
John F is offline   Reply With Quote
Old 05-11-2019, 03:34 PM   #28
lumpynose
Wizard
lumpynose ought to be getting tired of karma fortunes by now.lumpynose ought to be getting tired of karma fortunes by now.lumpynose ought to be getting tired of karma fortunes by now.lumpynose ought to be getting tired of karma fortunes by now.lumpynose ought to be getting tired of karma fortunes by now.lumpynose ought to be getting tired of karma fortunes by now.lumpynose ought to be getting tired of karma fortunes by now.lumpynose ought to be getting tired of karma fortunes by now.lumpynose ought to be getting tired of karma fortunes by now.lumpynose ought to be getting tired of karma fortunes by now.lumpynose ought to be getting tired of karma fortunes by now.
 
Posts: 1,086
Karma: 6719822
Join Date: Jul 2012
Device: Palm Pilot M105
Quote:
Originally Posted by John F View Post
I don't believe that Kobo is using "Author Sort". I believe that Kobo's heuristic for sorting works for most cases.

I just tried using an "Author" of 'Jake' and "Author Sort" of 'Kellerman, Jonathan' in Calibre. When I convert and transfer the book to Kobo and sort by Author, it displays 'Jake" as the author but it is sorted under the Js; If Kobo was using the "Author Sort", it should show up under the Ks.
What I meant is that the kobo is generating its own ln,fn author sort, not that it's using calibre's. Use calibre's book editor and look at the content.opf; I'm guessing that the e-readers only use the ones that start with dc: and probably not the meta ones that have calibre: in their name field.

Also, if you need to swap the last and first names yet again, get the Quality Check plugin for calibre; it has a thing that does just that, among lots of other useful things.
lumpynose is offline   Reply With Quote
Old 05-11-2019, 03:38 PM   #29
John F
Grand Sorcerer
John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.
 
Posts: 7,171
Karma: 63764653
Join Date: Feb 2009
Device: Kobo Glo HD
Quote:
Originally Posted by PeterT View Post
Remember this community is not representative of the entire Kobo user base; it's skewed towards users who sideload content, not folks who buy content from the Kobo store and load it directly via the wifi connection.
Regardless of who this forums represents, or peceived marketing value, I would like the feature.
John F is offline   Reply With Quote
Reply


Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Opening the Authors List Larla Calibre 2 11-11-2017 01:25 PM
Breaking down authors list dkplayaclub Library Management 6 10-14-2016 07:40 AM
Authors smart list for books with multiple authors -bug? SergeyGomanyuk Marvin 1 03-29-2014 04:14 AM
Touch A list of just the authors then drill down TonyToews Kobo Reader 0 10-27-2011 11:39 PM
Dropdown authors list Jackdusty Calibre 7 09-26-2010 07:04 AM


All times are GMT -4. The time now is 06:24 AM.


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