Search found 7 matches

by chx
Fri Apr 18, 2008 5:03 pm
Forum: Need Help with Addons? (MMW4)
Topic: Last.FM Node: dynamic node based on last.fm 2020.04.19 [MM3][MM4]
Replies: 429
Views: 334809

Excellent work Teknojnky!

Thanks for this great script.
by chx
Thu Apr 17, 2008 4:01 pm
Forum: Need Help with Addons? (MMW4)
Topic: sqlite question: case insensitive queries
Replies: 63
Views: 8234

Perhaps you are using an external editor? Yes, I did used SQLiteSpy, but now I just tried your SQLite View and with my example I got same result: select 'Z' = 'Z' returns 1 and select 'Z' = 'z' returns 0. Try it yourself if you don't believe me. It behaves different when comparing a variable to a c...
by chx
Thu Apr 17, 2008 3:49 pm
Forum: Need Help with Addons? (MMW4)
Topic: sqlite question: case insensitive queries
Replies: 63
Views: 8234

Bex is right, running a select count(*) from Songs where Artist = "ABBA" returns the same number that select count(*) from Songs where Artist = "AbbA" or select count(*) from Songs where Artist = "abba".
by chx
Thu Apr 17, 2008 7:21 am
Forum: Need Help with Addons? (MMW4)
Topic: Monkey Rok 4.1 - Updated 17/08/2009
Replies: 1597
Views: 556017

transform accented and other foreign characters to the basic alphabet That would be the Greek one then... :wink: I always react when people write "foreign characters". Foreign to who? Writing in English doesn't mean that we all come from a English speaking country thus making these "...
by chx
Wed Apr 16, 2008 7:34 pm
Forum: Need Help with Addons? (MMW4)
Topic: Monkey Rok 4.1 - Updated 17/08/2009
Replies: 1597
Views: 556017

@chx - I spent ages getting all these characters properly encoded so that Last.Fm would accept them. Looks like they've changed their minds!! :-? Yes, trix, your totally right. That's why I think it's better to transform accented and other foreign characters to the basic alphabet just to avoid futu...
by chx
Wed Apr 16, 2008 11:14 am
Forum: Need Help with Addons? (MMW4)
Topic: Monkey Rok 4.1 - Updated 17/08/2009
Replies: 1597
Views: 556017

solved!

I think I've solved the problem, adding this function to Functions.vbs: Function ReplaceForbChars(texto) texto = Replace(texto,"À", "A") texto = Replace(texto,"Á", "A") texto = Replace(texto,"Â", "A") texto = Replace(texto,"Ã", &q...
by chx
Wed Apr 16, 2008 9:32 am
Forum: Need Help with Addons? (MMW4)
Topic: Monkey Rok 4.1 - Updated 17/08/2009
Replies: 1597
Views: 556017

I don't know if this was menthioned befe, but there seem to be a small bug when querying Last.fm for related artists or other albums, if the queried artist name have accented letters (i.e. Babasónicos). It works fine when querying MM db though.

Excellent add-on by the way, congrats Trix!