You will automatically get upgraded to the new look soon. If you don't want to wait for the new look, you can switch to it today.
![]() | Search for gadgets |
Most of the content in this directory was developed by Google users. Google makes no representations about its performance, quality, or content. Google doesn't charge for inclusion in this directory or accept payment for better placement.
©2013 Google - Community Guidelines - Privacy & Terms - Help - About Google - Go to Google.com
1 2 3 4
Comments (30)
HOME ismail sha - Mar 27, 2013 - Report this comment
http://eravancherypookkal.blogspot.ae/
gadgets Mark Jones - Sep 25, 2012 - Report this comment
they use to be on all , they just appeared. Now they are not, what happened ?
What the heck Jack Patterson - Aug 24, 2012 - Report this comment
THIS IS STUPID!!!
Request for older version of My gadget aba king - May 28, 2012 - Report this comment
Can we get access to an older version of My Gadget that allows us to add gadgets as shown on the youtube videos and as is spoken about in the tutorials?
Doesn't work



- Andrew Hunter - May 15, 2012 - Report this comment
Don't bother using this. It doesn't work.
Still not working March 2012



- Parapara Marae - Mar 17, 2012 - Report this comment
Still not working. May try again next year
Problems with gadget! A. S. - Sep 11, 2011 - Report this comment
I agree, it doesn't work, it only shows the developer mode link. I copied the code into a document on my code project to see what the problem was, I got this: ERROR XML well-formedness (my_gadgets_analyzation2.xml:0) Failed to parse as well-formed XML. Recommendation: Make sure the gadget is proper XML. Character set Gadgets Specification Could not be run, fix these errors first: XML well-formedness HTML syntax Could not be run, fix these errors first: XML well-formedness Client-side latency Could not be run, fix these errors first: XML well-formedness Referenced files available Could not be run, fix these errors first: XML well-formedness Unused features Could not be run, fix these errors first: XML well-formedness Internationalized HTML Could not be run, fix these errors first: XML well-formedness Message bundles Could not be run, fix these errors first: XML well-formedness Internationalized metadata Could not be run, fix these errors first: XML well-formedness
java Lalit Gupta - Sep 6, 2011 - Report this comment
import java.util.ArrayList; import java.util.List; import java.util.StringTokenizer; public class Test { public static List splitEqually(String text, int size) { // Give the list the right capacity to start with. You could use an array // instead if you wanted. List ret = new ArrayList((text.length() + size - 1) / size); for (int start = 0; start < text.length(); start += size) { ret.add(text.substring(start, Math.min(text.length(), start + size))); } return ret; } public static void main(String str[]){ Test t= new Test(); //String sourceStr="112,243,345,4452,5768,675,745,823,912,103,191,112,1234,45674,1256473,23,122,127645,23457"; String sourceStr="112,123,1,3,4,5"; //List l=t.splitEqually(sourceStr ,5) StringTokenizer stringTokenizer = new StringTokenizer(sourceStr , ","); System.out.println(stringTokenizer.countTokens()); StringBuffer strBuff= new StringBuffer(); int i=0; int j=0; if(stringTokenizer.countTokens() >5 ){ while(stringTokenizer.hasMoreTokens()){ //System.out.println(stringTokenizer.nextToken()); String str2=stringTokenizer.nextToken(); int len=str2.length(); i++; if(i==5){ String subStr=sourceStr.substring(j,sourceStr.indexOf(str2)+len); strBuff.append(subStr); j=sourceStr.indexOf(str2)+len+1; // System.out.println(subStr); stringTokenizer = new StringTokenizer(sourceStr.substring(j,sourceStr.length()), ","); //System.out.println(sourceStr.substring(j,sourceStr.length())); i=0; } } } System.out.println(strBuff.toString()); } }