Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - wolverine

Pages: [1]
1
Thank you i will try your suggestion and report back.

2
General discussion / Re: Easiest programming/scripting language
« on: September 15, 2015, 08:47:01 pm »
You might also want to look at Perl Programming. There is ton of resources available for free and  it is backed by a strong community and above all it has CPAN[ free modules ].

3
Hi all,
I use calibre to convert PDF's to epub/mobi but the result is not perfect i see a lot of random spaces and formatting is totally off when i use it in my kindle 4. Is there any setting that i should be aware of or do you guys have any other alternative to calibre ?

Thanks for you time.

4
Scripting Languages / [Python] Need Help ! Not sure where i'm wrong.
« on: September 16, 2014, 05:57:03 am »
Code: [Select]

def is_rev(word1, word2):
    if len(word1) != len(word2):
        return False
    i = 0
    j = len(word2)-1
    print(i,j)


    while j > 0:
        if word1[i] != word2[j]:
            return false
        i = i + 1
        j = j - 1
Quote
When i run this script it doesn't go through the i and j part in the while loop. I'm not sure why.
Quote
The output is like
Code: [Select]

>>> is_rev('pots', 'stop')
0 3

Pages: [1]