Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
2answers
156 views

Help Me optimize this code?

I am looking to se if this code can be optimized. def gB(a,b,c): x=len(b) d=a.find(b)+x e=a.find(c,d) return a[d:e] print gB("abc","a","c")
0
votes
2answers
822 views

convert bytes to GB in php

I want to convert bytes to GB. value= 8587321344 So it should be 8587321344/1024/1024/1024 But whenever I go to divide, the value is wrong... If I cast it into integer, it will be limited to ...
0
votes
2answers
438 views

any PHP or Ruby library to convert Tranditional Chinese to Simplified Chinese or vice versa?

any PHP or Ruby library to convert Tranditional Chinese to Simplified Chinese or vice versa (Big5 <--> GB)? the iconv library won't do it as it merely convert the encoding -- the glyph stays the ...
-1
votes
6answers
307 views

Ways to optimize MySQL table

I have a big big table the size of table is in GB's around 130 GB. Every day data is dumped in the table. I'd like to optimize the table... Can anyone suggest me how I should go about it? Any input ...