microblog.gaeatimes.com Open in urlscan Pro
158.69.142.50  Public Scan

URL: https://microblog.gaeatimes.com/
Submission Tags: phishingrod
Submission: On April 26 via api from DE — Scanned from CA

Form analysis 1 forms found in the DOM

GET https://newsletter.gaeatimes.com/subscribe/

<form method="GET" action="https://newsletter.gaeatimes.com/subscribe/">
  <input type="hidden" name="p" value="subscribe">
  <input type="hidden" name="id" value="14">
  <input type="hidden" name="type" value="all">
  <input type="text" name="email" title="Enter your e-mail address and hit enter to Subscribe to Gaea Times" value="Subscribe by Email..." size="15" maxlength="100" onmouseover="if(this.value=='Subscribe by Email...') value=''"
    onmouseout="if(this.value=='')value='Subscribe by Email...';">
</form>

Text Content

Warning: include_once(/var/www/html/backend/blogs/commonheader.php)
[function.include-once]: failed to open stream: No such file or directory in
/var/www/html/backend/blogs/microblog/wp-content/themes/prologue/header.php on
line 94

Warning: include_once() [function.include]: Failed opening
'/var/www/html/backend/blogs/commonheader.php' for inclusion
(include_path='.:/usr/share/pear:/usr/share/php') in
/var/www/html/backend/blogs/microblog/wp-content/themes/prologue/header.php on
line 94



GAEA TIMES MICRO BLOG


LATEST UPDATES RSS

 * ANGSUMAN 2:38 AM ON SEPTEMBER 28, 2010 | 0 | # |
   
   
   Salesforce leads and contacts create lots of opportunity for confusion.
   Ultimately leads are contacts too is it not?
   
   Qualification is an attribute of lead / contact. It doesn’t warrant a whole
   new set of screens and conversion procedure from Lead to Contact.
   
   Here is their disambiguation page. I think it Leads representation in
   Salesforce adds to complexity without providing much value.
   
   What do you think?
   
    

 * ANGSUMAN 9:49 AM ON AUGUST 27, 2010 | 0 | # |
   
   
   https://yoshinorimatsunobu.blogspot.com/2009/05/tables-on-ssd-redobinlogsystem.html
   
    

 * ANGSUMAN 9:48 AM ON AUGUST 27, 2010 | 0 | # |
   
   
   With XtraDB performance, any good reason left to use MyISAM anymore as MySQL
   database engine? I think not.
   
    

 * ANGSUMAN 9:43 AM ON AUGUST 27, 2010 | 0 | # |
   
   
   Mother lode of all MySQL 5.1 executables for various platforms and purposes
   
   Go to: https://downloads.mysql.com/archives/mysql-5.1/
   
   Hope I don’t have to tell you how to download the same for other versions
   
    

 * ANGSUMAN 9:41 AM ON AUGUST 27, 2010 | 0 | # |
   
   
   If you are using / planning to use MariaDB, Percona Server on CentOS then I
   suggest you download the RPM’s for CentOS from OurDelta for good experience.
   
   If you plan on using PerconaDB, then consider that MariaDB is targeted to be
   the superset of Percona Server along with more database engines and addl.
   fixes.
   
   Are you looking to enhance MySQL performance?
   
   Two choices:
   
   Stick with MySQL 5.1 / 5.4 and use InnoDB plugin or move to MariaDB and use
   XtraDB.
   
    

 * ANGSUMAN 9:26 AM ON AUGUST 27, 2010 | 0 | # |
   
   
   The worst part about LinkedHashMap is the documentation (javadoc) and the
   name. While it implements a LinkedList in addition to a HashMap, its real use
   is to create a bounded set of HashMap entries where it is bounded by either
   eliminating the eldest entry in terms of when it was created or when it was
   last accessed. Check the last contructor to see how you can set the
   accessOrder to true to enable removing entries based on last access.
   
   Here is a simple example to help you understand how to use LinkedHashMap.
   Check the tests using assert carefully.
   
   
   import java.util.*;
   
   public class LinkedHashMapTest {
       public static void main(String args[]) {
           final int MAX_ENTRIES = 100;
           LinkedHashMap m = new LinkedHashMap() {
               protected boolean removeEldestEntry(Map.Entry eldest) {
                   return size() > MAX_ENTRIES;
               }
           };
   
           // Test code
           for(int i = 1; i < = 200; i++) m.put(i, i);
           assert m.size() == MAX_ENTRIES;
           for(int i = 1; i <= 100; i++) assert m.get(i) == null;
           for(int i = 1; i <= 100; i++) assert m.get(i + 100) != null;
       }
   }
   
   
   
    

 * ANGSUMAN 8:18 PM ON AUGUST 24, 2010 | 0 | # |
   
   
   “The national unemployment rate was 9.5 percent in July 2010, seasonally
   adjusted, unchanged from the prior month and essentially unchanged from 9.4
   percent a year earlier” - Bureau of Labor Statistics
   
   > Employers took 1,609 mass layoff actions in July that resulted in the
   > separation
   > of 143,703 workers, seasonally adjusted, as measured by new filings for
   > unem-
   > ployment insurance benefits during the month, the U.S. Bureau of Labor
   > Statistics
   > reported today. Each action involved at least 50 persons from a single
   > employer.
   > The number of mass layoff events in July decreased by 38 from the prior
   > month,
   > and the number of associated initial claims decreased by 1,835. In July,
   > 307 mass
   > layoff events were reported in the manufacturing sector, seasonally
   > adjusted, re-
   > sulting in 33,381 initial claims. (See table 1.)
   > 
   > During the 32 months from December 2007 through July 2010, the total number
   > of
   > mass layoff events (seasonally adjusted) was 63,461, and the associated
   > number
   > of initial claims was 6,357,583. (December 2007 was the start of a
   > recession as
   > designated by the National Bureau of Economic Research.)
   
   It appears to me that recession is still going strong. What do you think? How
   is your job market?
   
    

 * ANGSUMAN 8:07 PM ON AUGUST 24, 2010 | 0 | # |
   
   
   Is publish first, filter later equivalent of shoot first, ask questions
   later?
   
    

 * ANGSUMAN 7:51 PM ON AUGUST 24, 2010 | 0 | # |
   
   
   Every morning in Africa, a gazelle wakes up.  It knows it must run faster
   than the fastest lion or it will be killed.  Every morning a lion wakes up. 
   It knows it must outrun the slowest gazelle or it will starve to death.  It
   doesn’t matter whether you are a lion or a gazelle: when the sun comes up,
   you’d better be running.
   
    

 * ANGSUMAN 10:09 AM ON MARCH 11, 2010 | 0 | # |
   
   
   Arrived in Texas for #SXSW .  I wasn’t sure if I wanted to attend till the
   last moment, after all travelling from India is no joke. So I am hoping that
   event will be worth the horrendous travel by Lufthansa.
   
    

 * ANGSUMAN 11:21 PM ON FEBRUARY 25, 2010 | 0 | # |
   
   
   Dream Gadget by a To-Be Journalist- The following is an actual essay
   submitted by a B.Tech Engineer aspiring to be a Tech. Journalist:
   
   > TECHNOLOGY ENCOURAGING CHEATING “THE TOPPER”S WATCH”
   > 
   > The demand from technology never ends.Human mind always promotes new
   > inventions and most of them are for their easy facilities. I remember when
   > once without preparing for the physics parer i entered the examination
   > hall. Sitting inside i felt nothing not be worst than this one in my life.
   > I felt bad when everyone filled up their papers n thought of anything even
   > some magic that could help me.I then dreamt of a wrist watch. It was like
   > that the topper will wear a watch n likewise me too. The watch was such a
   > gadget that whatever answer the topper thought, will be be visible in my
   > watch and then even without preparing i could top my exams. But soon i
   > realised my dream was a fantacy and the only thing i could do is to work
   > hard n be sincere for my studies to be the topper.
   > 
   > Today when the technology is emerging in a such a large variety,i sometimes
   > imagine if my dream gadget could really exist. In present era, brain
   > mapping,brain computer interface etc. is easily possible with the help of
   > advance technology. With the use of chip placed inside the brain, the
   > computer senses the instructions and let know about the person’s thought.
   > Moreover watches with all different funky facilities are available in the
   > market with the help of the same advance technology. Scientists may find
   > this realistic and then who knows my dream gadget “The TOPPER’S WATCH” may
   > really exist.
   > 
   > Although it is inspired from the idea of cheating but i suppose it to be
   > beneficial in field of security, medical etc.But for students i am sure
   > that they will not be able to wear any kind of watch inside the exam hall.
   > The watch could have additional features like it could be optional to
   > access internet facilities,to be used for text and multimedia messages etc.
   > 
   > As we all know that security is a never ending battle. Hackers may find
   > some sophisticated techniques to bypass the sensors in watch n may display
   > some wrong and misleading datas. This may be one of the threat to the
   > watch. Concluding with the fact that “The toppers watch ” does not exist
   > but i still hope to see my dream gadget in real.
   
   The sad part is that the said engineer saw this post and wanted to know why
   he wasn’t recruited. Is basic sense of morality and ethics too much to ask
   for?
   
    

 * ANGSUMAN 11:41 PM ON FEBRUARY 19, 2010 | 0 | # |
   
   
   James Stevens wrote: I want to develop an application what kind of education
   do I need to have ? Where do I start ? How can I become a developer? Please
   help.
   
   Most people normally have an engineering / science degree before they go for
   developing software. There are non-engineering and non-accredited
   institutions also which claims to teach programming but in my experience they
   do a poor job.
   
   Having said that, everone can be a programmer and can even train himself. The
   typical qualities of a good programmer are:
   
    * Attention to details
    * Eye for perfection; perfection takes time, effort and perseverance
    * Lots of patience
    * Open mind and continuously learning
    * Devote lots of time to the profession
   
   I learned programming during my undergrad at IIT. I have seen a architect who
   was only Class / Standard 8 pass.
   
   First you need to focus on the fundamentals of computers before you can delve
   into programming. Understanding of boolean logic is required and a good
   understanding of basic mathematics. After that you can just try your hand
   using a simple language like PHP to wet your hands in the land of
   programming.
   
   What are your suggestions for James?
   
    

 * ANGSUMAN 9:44 AM ON FEBRUARY 4, 2010 | 0 | # |
   TAGS: HUMOR
   
    1.  Top 10 Reasons Copywriters Will Never Stop Writing Top 10 Articles
    2.  Top 10 Reasons Not To Write Top 10 Articles
    3.  Top 10 Reason Why Copywriting Works
    4.  Top 10 Copywriting Ideas Which Never Work Like This Top 10 List
    5.  Top 10 Copywriting Tips for Copywriting Dummies
    6.  Top 10 Reasons Why Computers Should Replace Copywriters With Better Copy
        Quality
    7.  Top 10 Reasons Not To Read Such Top 10 Articles About Copywriting
    8.  Top 10 Reasons Not To Waste Times With Top 10 Articles
    9.  Top 10 Reasons To Fire All Your Copywriters
    10. Top 10 Reasons Why Top 10 Copywriting Tips Never Work
   
    

 * ANGSUMAN 10:03 PM ON JANUARY 17, 2010 | 0 | # |
   TAGS: JAVA, TECHNOLOGY
   
   Nice explanations of volatile modifier and transient modifier in Java -
   https://pi.vu/6*T https://pi.vu/6*g
   
   In short use volatile when you want to prevent local caching of member
   variables by thread. For example to keep a counter across threads, mark it as
   volatile.
   
   Use transient when you do not want to serialize the variable.
   
    

 * ANGSUMAN 12:28 PM ON JANUARY 17, 2010 | 0 | # |
   TAGS: JAVA
   
   OpenMQ vs. ActiveMQ? My current preference is Open MQ from Sun. Any thoughts?
   
    

 * ANGSUMAN 10:51 AM ON JANUARY 17, 2010 | 0 | # |
   TAGS: EHCACHE, TECHNOLOGY
   
   Is EhCache suffering from featuritis (creepy featurism)? There are way too
   many features in the product, most of which are better implemented separately
   like SOAP interface for example!
   
    

 * ANGSUMAN 10:48 AM ON JANUARY 17, 2010 | 0 | # |
   TAGS: SUBVERSION, TECHNOLOGY
   
   Fastest way to copy subversion repository is cp -R the repository directory
   to a new directory. Works seamlessly for file system based repository ( fsfs
   ).
   
    

 * ANGSUMAN 9:06 PM ON JANUARY 16, 2010 | 0 | # |
   
   
   What’s funnier than a Chuck Norris Joke? - Chuck Norris’ attempt to be taken
   seriously - https://pi.vu/6Pl
   Even NRA gets it! https://pi.vu/6PR
   Frankly Chuck Norris deserves a roundhouse kick for his inane commentary.
   
    

 * ANGSUMAN 8:53 PM ON JANUARY 16, 2010 | 0 | # |
   TAGS: TECHNOLOGY, TWITTER
   
   #retweetthis if you like: How twitter killed blog -
   
    * By removing the slow WYSIWYG editor
    * By removing the need to add a title to every bits and pieces you write
    * By forcing people to write less not more
    * By getting Barack Obama (his aides) and Oprah to use Twitter
   
    

 * ANGSUMAN 8:46 PM ON JANUARY 16, 2010 | 0 | # |
   
   
   What are you doing today for Haiti?
   
    

 * ANGSUMAN 8:45 PM ON JANUARY 16, 2010 | 0 | # |
   
   
   You know you have a gem of programmer when he handles 3 dimensional array of
   pointers as deftly as Tiger Woods handles women (or golf)
   
    

 * ANGSUMAN 8:38 PM ON JANUARY 16, 2010 | 0 | # |
   
   
   swap can slowdown linux in certain conditions …
   
   I realized the cause of progressive slowdown over time in Linux, specially
   for developer of designer machines can be due to utilization of swap space. I
   loaded over 4.3 million records in memory which necessiated the use of swap
   space. Unfortunately even after the program was completed, the swap space was
   not releasd and was used for other programs also even though sufficient
   memory was available.
   
   So one a memory intensive program is run, it is likely to slow down your
   subsequent program due to swap usage. I think it is an implementation bug but
   haven’t checked enough to confirm / reject the theory.
   
   Have you noticed this?
   
    

 * ANGSUMAN 7:31 PM ON JANUARY 16, 2010 | 0 | # |
   TAGS: JAVA
   
   Beware of implementing Java Comparable.Here is why…
   
   When implementing compareTo() the normal inclination is to provide the real
   difference (negative or positive) when a match is not found. Today this lead
   to a subtle bug which was only discovered when the software was tested over a
   very large data-set.
   
   What happened: Comparing Long and providing the difference as int (return
   type of compareTo) is a potential sand trap. As positive Integer can only be
   up to 2 billion, anything beyond that and it silently turns it into a
   negative integer!
   
   Bottomline: Simply return +1 or -1 as appropriate when a match is not found.
   
   How we discovered the bug: Through high volume of unit testing using random
   data over the entire data range (2^32 - 1).
   
    

 * ANGSUMAN 3:57 AM ON JANUARY 16, 2010 | 0 | # |
   TAGS: TECHNOLOGY
   
   We are range searching 4.1 million records in 0.0000009 seconds.
   
    

 * ANGSUMAN 11:53 PM ON JANUARY 10, 2010 | 0 | # |
   
   
   Moscone Center is booked from June 22nd through June 25th for JavaOne 2010 -
   https://pi.vu/Bjf
   
   There were several speculations in the past to the contrary.
   
    

 * ANGSUMAN 5:04 AM ON JANUARY 9, 2010 | 0 | # |
   TAGS: TECHNOLOGY
   
   Where do you find all pidgin log files?
   
   You can find them on Linux system under ~/.purple/logs directory. This
   directory has one directory per IM protocol like jabber (includes GTalk,
   jabber.org etc), yahoo etc.
   
   Within this directory there is a sub-directory corresponding to each of your
   ID which you use with that protocol. In that you will find one directory for
   each people you are connected with. And finally within this directory you
   will find all the log files arranged by date and time.
   
   An example file in my system is at:
   
   /home/angsuman/.purple/logs/jabber/ angsuman…@gmail.com/
   friend@frienddomain.com/ 2008-11-30.163647+0530IST.html
   
    

 * ANGSUMAN 11:48 PM ON JANUARY 8, 2010 | 0 | # |
   
   
   If I could travel through I would go to 1880’s where I could help India get
   of British rule & meet Swami Vivekananda & Sri Ramakrishna. What more can I
   ask?
   
    

 * ANGSUMAN 11:44 PM ON JANUARY 8, 2010 | 0 | # |
   TAGS: IP ADDRESS, TECHNOLOGY
   
   Find out your IP address and everything you ever wanted to know about IP
   address: https://pi.vu/xu
   
   I intend to provide several service for free to my readers. This is one such
   service. A very simple service to find out about your current IP address:
   https://ip-address.gadging.com/
   
   We are enhancing it with more interesting details and pictures soon
   
    

 * ANGSUMAN 10:23 PM ON JANUARY 8, 2010 | 0 | # |
   TAGS: MEDIA
   
   @shelisrael The twitter format made my comment obtuse. I meant that in the
   publish-first-filter-later model often news gets published without
   appropriate fact-checking which can later prove to be incorrect. While the
   website will subsequently change to reflect the facts, the people who visited
   it earlier will only know the wrong news. Over time this may dilute people’s
   confidence in the news media. What do you think?
   
    

 * ANGSUMAN 3:50 AM ON JANUARY 7, 2010 | 0 | # |
   TAGS: JYOTI BASU
   
   Was there malicious intent behind Jyoti Basu death rumors? - The whole story
   behind Jyoti Basu’s fake death rumors
   
   Yesterday Twitter and later internet was abuzz with rumors of death of Jyoti
   Basu. Upon investigation I found out that the single website source of these
   rumors is a unknown site named kalponik.us.
   
   The domain record of the kalponik.us reveals that the domain registrant is a
   guy named Shuvon Rudra, from Dhaka, Bangladesh. The administrative contact
   lists F,loreance Ria from Dhaka and the technical contact is listed as Rudra
   Netguru from Coochbihar, West Bengal, India. I tried all the telephone
   numbers listed for them and none of the number is valid!
   
   Initially the site claimed that Jyoti Basu was dead at 1:30 pm based on
   insider information it has received and boasted that kalponik.us is
   responsible for breaking the news. Indihot soon picked up the story from
   there and sometime later samaylive followed. Apparently the site came under
   some pressure later in the day when doctors claimed that Jyoti Basu was alive
   and in fact improving. The text was changed. It still said that Jyoti Basu is
   dead but linked to the article from samaylive, which (I have read both the
   original articles) obviously picked up the story from kalponik (a
   incidentally is a Bengali word meaning imaginary), conveniently blanked out
   the page with zero content!
   
   To summarize when faced with heat kalponik decided to link as source
   samaylive which had based its story on kalponik in the first place! Also
   kalponik had claimed initially that it had broken the story. So kalponik is
   playing an unethical game here. Additionally it removed the story from front
   page. It appears at this time that kalponik had staged the whole thing to
   probably gain some cheap publicity.
   
    

 * ANGSUMAN 10:23 AM ON JANUARY 2, 2010 | 0 | # |
   TAGS: CENTOS, LINUX, TECHNOLOGY
   
   How to disable updatedb on Linux / CentOS?
   
   Open /etc/cron.daily/mlocate.cron and comment all the lines and save the
   file.
   
   You can also exclude certain directories by including them in PRUNEPATHS
   value in /etc/updatedb.conf file.
   
    

 * ANGSUMAN 6:42 AM ON JANUARY 1, 2010 | 0 | # |
   TAGS: SUGARCRM, TECHNOLOGY, VTIGER
   
   SugarCRM vs. vTiger What’s your poison?
   
    

 * ANGSUMAN 6:41 AM ON JANUARY 1, 2010 | 0 | # |
   TAGS: MICROBLOGGING, TECHNOLOGY, TWITTER
   
   The beauty of microblogging is that you don’t have to research to make your
   post more bulkier. Just say what you want and now. Forget about rounding it
   off, adding details etc.
   
   Microblogging is here and now. Now f only Twitter can improve their
   performance!
   
    

 * ANGSUMAN 6:39 AM ON JANUARY 1, 2010 | 0 | # |
   TAGS: ALEXA, TECHNOLOGY
   
   Oh dear Alexa, when will you behave with even an modicum of intelligence?
   
   When a site is less than 3 months old, how can you even give statistics for
   last 3 months or show how much it improved in last 3 months?
   
    

 * ANGSUMAN 6:29 AM ON JANUARY 1, 2010 | 0 | # |
   TAGS: CLOUD COMPUTING, FREE SERVICES, TECHNOLOGY
   
   I am sick and tired of free services which is nothing but either a
   bait-and-switch or comes with horrible quality and stability like Twitter.
   
   I don’t care to try “free” cloud computing services from either Google
   (Google Cloud) or Microsoft (Azure). I want them paid but cheap. I want them
   to come with SLA for availability, computing power, bandwidth and low latency
   and possibly more. Otherwise I will opt to setup my own.
   
   I don’t want free blogging but crippled services from WordPress or Blogger. I
   want them paid and with quality, stability and a bunch of SLA to prove their
   commitment.
   
   I don’t want free email. I can host them really cheaply, so cheaply that they
   are almost free but they come with quality and stability.
   
   Let 2010 be the year of paid but quality services, services we can rely on
   from day to day, services which do not rely on just their big brands and
   instead provide guarantees.
   
   Free services is an oxymoron. It cannot continue in that form. Even Google
   search is  not free. You pay by providing them with data about your search
   history. Let’s shed this tomfoolery and instead focus on quality but paid
   services which gives more guarantee and peace of mind about their continuity.
   
    

 * ANGSUMAN 10:52 PM ON DECEMBER 31, 2009 | 0 | # |
   TAGS: HUMOR
   
   Top lie of 2009: “I just realized how bad the economy really is. I recently
   bought a new toaster oven and as a complimentary gift, I was given a bank.”
   via https://pi.vu/!d
   
    

 * ANGSUMAN 5:35 AM ON DECEMBER 28, 2009 | 0 | # |
   TAGS: PERSONAL, PLEBIX
   
   What are your New Years Resolutions? Here are mine…
   
    1. Achieve my personal goals (2)
    2. Launch Plebix.com
    3. Meet a certain person
    4. Reduce weight to below 90KG
   
    

 * ANGSUMAN 5:31 AM ON DECEMBER 28, 2009 | 0 | # |
   TAGS: MICROBLOGGING, PI.VU, TECHNOLOGY
   
   I shortened https://pi.vu with su.pr url shortener - https://su.pr/2v0dP2 - a
   whopping 58.3% size increase
   
    

 * ANGSUMAN 11:55 PM ON DECEMBER 27, 2009 | 0 | # |
   TAGS: MICROBLOGGING, PI.VU, TECHNOLOGY
   
   I would like to introduce pi.vu url shortener. pi.vu excels on url size,
   stability and speed. Will publish details soon.
   
    

 * ANGSUMAN 11:53 PM ON DECEMBER 27, 2009 | 0 | # |
   TAGS: COMMENT SPAM, GOOGLE, TECHNOLOGY
   
   Sad to see Google AdSense Blog Flooded by Spam Comments - https://pi.vu/mI
   
   May I humbly suggest that they opt for an anti-comment-spam software for
   their blog. Unfortunately they are not on WordPress, otherwise I would have
   suggested Comment Guard Pro.
   
    

 * ANGSUMAN 10:03 AM ON DECEMBER 26, 2009 | 0 | # |
   TAGS: MICROBLOGGING, TECHNOLOGY, TWITTER
   
   To Twitter: When I blocked someone I don’t want his messages even if it is
   retweeted by my followers.
   
    

 * ANGSUMAN 10:00 AM ON DECEMBER 26, 2009 | 0 | # |
   TAGS: MICROBLOGGING, TWITTER
   
   Saw the fail whale (Twitter) again while accessing devices #fail
   
    

 * ANGSUMAN 9:39 AM ON DECEMBER 26, 2009 | 0 | # |
   TAGS: MICROBLOGGING, TECHNOLOGY, TWITTER
   
   Ad.ly ability to add twitter accounts appear to be broken at this time
   
    

 * ANGSUMAN 8:39 AM ON DECEMBER 26, 2009 | 0 | # |
   TAGS: PI.VU, TECHNOLOGY
   
   Check out https://pi.vu the fastest URL shortener in town, we have stats to
   prove it.
   
    

 * ANGSUMAN 8:38 AM ON DECEMBER 26, 2009 | 0 | # |
   TAGS: MICROBLOGGING, TECHNOLOGY
   
   A micro-blog to cure my Twitter addiction and without the 140 char limit -
   https://pi.vu/WZ
   
    

 * ANGSUMAN 8:32 AM ON DECEMBER 26, 2009 | 0 | # |
   TAGS: PI.VU, TECHNOLOGY
   
   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 7:22 AM ON DECEMBER 26, 2009 | 0 | # |
   TAGS: JAVA, TECHNOLOGY
   
   The only way a java agent can start after VM startup is if its loaded using
   the Java Attach API
   
    

 * ANGSUMAN 7:20 AM ON DECEMBER 26, 2009 | 0 | # |
   TAGS: JAVA, JMX, TECHNOLOGY
   
   How to develop JMX MBean in 5 minutes
   
    1. Create a class named say Abc.
    2. To expose it as MBean, create an interface AbcMBean.
    3. Abc should now implement AbcMBean.
    4. Get information with getMethodName() methods
    5. Set information with setMethodName() methods
    6. Register the MBean class separately:
       java.lang.management.ManagementFactory.getPlatformMBeanServer().registerMBean(new
       ClassName(), new ObjectName(”com.taragana:name=NameofService”));
   
   That’s it!
   
    

 * ANGSUMAN 7:18 AM ON DECEMBER 26, 2009 | 0 | # |
   TAGS: JAVA, TECHNOLOGY
   
   JADE – Java Agent Frameowork – Free chapter from the book: https://pi.vu/W0
   
    

 * ANGSUMAN 7:17 AM ON DECEMBER 26, 2009 | 0 | # |
   TAGS: JAVA, TECHNOLOGY
   
   Rules for publishing with JMX
   To publish with JMX, for each base name (alpha in this case), you are allowed
   only
   
    1. One getter with form getAlpha() OR one getter with form boolean isAlpha()
       OR one operation of any form.
    2. 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.
   
    

Next Page »


 * RECENT PROJECTS
   
   * RSS Humor ( 2 )
   * RSS Java ( 8 )
   * RSS Technology ( 25 )
   * RSS EHCache ( 1 )
   * RSS Subversion ( 1 )
   * RSS Twitter ( 5 )
   * RSS IP Address ( 1 )
   * RSS Media ( 1 )
   * RSS Jyoti Basu ( 1 )
   * RSS CentOS ( 1 )
   * RSS Linux ( 1 )
   * RSS vTiger ( 1 )
   * RSS SugarCRM ( 1 )
   * RSS Microblogging ( 7 )
   * RSS Alexa ( 1 )
   * RSS Cloud Computing ( 1 )
   * RSS Free Services ( 1 )
   * RSS personal ( 1 )
   * RSS plebix ( 1 )
   * RSS Comment Spam ( 1 )
   * RSS Google ( 1 )
   * RSS pi.vu ( 4 )
   * RSS JMX ( 1 )
   
   All Updates RSS