To Twitter: When I blocked someone I don’t want his messages even if it is retweeted by my followers.
Latest Updates: Technology RSS
-
angsuman
-
angsuman
Ad.ly ability to add twitter accounts appear to be broken at this time
-
angsuman
Check out https://pi.vu the fastest URL shortener in town, we have stats to prove it.
-
angsuman
A micro-blog to cure my Twitter addiction and without the 140 char limit - https://pi.vu/WZ
-
angsuman
https://gadging.com shortens to https://tinyurl.com/y8dra78 = 44.4% size increase using tinyurl! pi.vu gives https://pi.vu/x9 = 16.67% size reduction.
-
angsuman
The only way a java agent can start after VM startup is if its loaded using the Java Attach API
-
angsuman
How to develop JMX MBean in 5 minutes
- Create a class named say Abc.
- To expose it as MBean, create an interface AbcMBean.
- Abc should now implement AbcMBean.
- Get information with getMethodName() methods
- Set information with setMethodName() methods
- Register the MBean class separately:
java.lang.management.ManagementFactory.getPlatformMBeanServer().registerMBean(new ClassName(), new ObjectName(”com.taragana:name=NameofService”));
That’s it!
-
angsuman
JADE – Java Agent Frameowork – Free chapter from the book: https://pi.vu/W0
-
angsuman
Rules for publishing with JMX
To publish with JMX, for each base name (alpha in this case), you are allowed only- One getter with form getAlpha() OR one getter with form boolean isAlpha() OR one operation of any form.
- One setter with one argument (i.e. setAlpha(x)).
Some of these rules are enforced and some are not. To minimize chances of obsolescence, follow all of these rules.
-
angsuman
How to create javadoc for Java sources:
javadoc -link https://arjun/docs/java/api/ -d docs -package -author -windowtitle “Taragana Inc” -footer “Generated by Taragana Inc” -sourcepath . -subpackages com.sun