Posts

The Intelligent Investor

Image
By far the best book on investing ever written."  - Warren E. Buffet. A reasonable investor is one of the books that must necessarily be on the bookshelf of everyone who would like to use the opportunities of the stock market with intelligence to multiply their capital.  Becoming in the decades since its first edition in 1949, the present bible of the stock market, the classic work of Benjamin Graham gives the reader an efficiently working method of investing based on a comparison of prices and the real value of shares.  The book examines the fundamental differences between investing and speculation;  two types of investors are described - active and passive - and features of investment strategies of each of them.  The book is of interest to a wide range of readers.  It can become a reference for both individual and professional investors.  It is especially useful for students,

Google Music's Feeling Lucky

Image
Google Play Music  has a new feature called "I'm Feeling Lucky" that creates a radio based on your listening history. If you subscribe to All Access, Google includes a lot of songs that aren't in your library, otherwise the feature is a fancy name for "shuffle". Here are some screenshots from the Android app: There's a "dice" animation while the playlist is generated: You can reorder the songs, remove some of them or add all the songs to a playlist by tapping "save queue". You can find a similar feature in the desktop interface: go to "Listen Now" and click "I'm Feeling Lucky Radio". You get a different "Feeling Lucky" playlist every time you roll the dice and the songs from the playlist are usually related. Here's an example of Eurovision-related playlist: Click "Refresh station" and you'll get a completely new playlist:

Twitter best practices | Social Media Marketing

Image
Twitter  is the best  micro-blogging  network that is still in use by millions around the globe till date; let it be for fun, timepass, passion or promotion. In one way or another, most of the people in today's world enjoy tweeting. What to say about twitter ! It's the best place to promote any kind of business. The thing is; your brand/business will get noticed quickly in twitter. The major areas of game play being Internet, marketing, business, science, news, technology, gadgets, ecommerce, design, creativity, review sites, sales & services, promotions, politics, celebrity, entertainment and lot more to mention. Frankly speaking; great brands like say 'DELL' and other electronics, marketing as well as product companies involves less in twitter or any other social media, it's the intermediate mediators/reviewers (small and medium scale organizations like us) who does the job of promoting their business! Say, I'm writing about twitter...

Oracle apps Xml report Error while saving Report output-Authentication failed

Image
Some times when we get error like "Authentication failed" when we try save or open concurrent program output which is type of xml publisher. e.g. please see below given screenshot.

Query to get profile options details from backend

Image
SELECT   fpov.profile_option_name ,   fpov.user_profile_option_name,   DECODE (TO_CHAR (fpo.level_id), '10001', 'SITE', '10002', 'APP', '10003',   'RESP', '10005', 'SERVER', '10006', 'ORG', '10004', 'USER', 'NA' )   profile_Level,   DECODE (TO_CHAR (fpo.level_id), '10001', '', '10002',   fa.application_short_name, '10003', fr.responsibility_key, '10005',   fn.node_name, '10006', hou.NAME, '10004', fu.user_name, 'NA' ) Context_value,   fpo.profile_option_value value,   fr.RESPONSIBILITY_KEY,   fr.RESPONSIBILITY_NAME FROM   apps.fnd_profile_options_vl fpov,   apps.fnd_profile_option_values fpo,   apps.fnd_user fu,   apps.fnd_application fa,   apps.fnd_responsibility_vl fr,   apps.fnd_nodes fn,   apps.hr_operating_units hou WHERE   1                         = 1 AND fpo.application_id      = fpov.appl...

Query for responsibility list attached to user in oracle apps

SELECT fu.user_name, frt.responsibility_name, furg.start_date, furg.end_date, fr.responsibility_key, fa.application_short_name FROM apps.fnd_user_resp_groups_direct furg, applsys.fnd_user fu, applsys.fnd_responsibility_tl frt, applsys.fnd_responsibility fr, applsys.fnd_application_tl fat, applsys.fnd_application fa WHERE 1 = 1 AND furg.user_id = fu.user_id AND furg.responsibility_id = frt.responsibility_id AND fr.responsibility_id = frt.responsibility_id AND fa.application_id = fat.application_id AND fr.application_id = fat.application_id AND frt.language = userenv('LANG') AND upper(fu.user_name) = upper(&P_USER_NAME) AND SYSDATE BETWEEN nvl(furg.start_date,SYSDATE) AND nvl(furg.end_date,SYSDATE + 1) ORDER BY 1,2;

JQuery With PHP

Image
how to add  jQuery  to Your Web Pages ?: There are several ways to start using jQuery on your web site. You can: (1)Download the jQuery library from jQuery.com (2)Include jQuery from a CDN, like Google Downloading jQuery : There are two versions of jQuery available for downloading: ·           Production version - this is for your live website because it has been minified and compressed ·           Development version - this is for testing and development (uncompressed  and readable code) Both versions can be downloaded from jQuery.com. The jQuery  library is a single JavaScript file, and you reference it with the HTML <script> tag (notice that the  <script>   tag should be inside the <head> section): <head> <script  src="jquery-1.12.2.min.js"></script> </head> Tip: Place...