Ye Meri Life Hai - Chirag Mehta

Be Good & Do Good!

Page 4 of 133

Orkut Virus Warning: Bom Sabado!

I got Bom Sabado Orkut Scraps in my gmail account from almost 3 friends in my network.

I wasn’t able to find any official information regarding this. But there is a serious scrap that is spreading verry fast to all orkut users.

Before opening orkut, I searched about this on google and found couple of warning messages

When I opened orkut and tried to visit those friends profile, I suddenly noticed in my updates that I have joined few Porno related community and have sent that scrap too all my friends in my network. I tried to visit that community and unjoined from that, but orkut was so slooow. After that I saw I again joined that community. This is too bad and a scam for sure. So my request is that please do not open your Orkut account any sooner or you will be a victim.

All those communities were in Portuguese language, so it may be originated from there or Brazil, where Orkut is most popular.Change your password soon.

In the mean time, remember these :

1. DONOT visit any profile on Orkut till this script is blocked ( More preciously DONOT use Orkut till this is blocked, as you can get affected by Flash scraps posted on your SB too! )

2. Clear your cookies and cache right away and change your password and security question :
https://www.google.com/accounts/b/0/ManageAccount

3. Let your friends know about this script and make them aware of the situation. ( It’s just an effort to minimize the damage ).

Create Salesforce lightboxes – Modal Dialogs

Lightbox components are a standard part of the Salesforce UI, but they’re not easily available (until now!) for your own code.

Salesforce lightboxes have the following properties:

  • They “grey out” the rest of the page behind the component, making the page unclickable until the lightbox is dismissed
  • They can be dragged around the screen by dragging on the title bar
  • They can contain any content you like, including a Visualforce page (use an iframe inside the lightbox)

Get Salesforce Lighbox component @ http://sites.force.com/appexchange/listingDetail?listingId=a0N30000001g3u0EAA#

VMforce : Cloud Computing for Java Developers : Recorded Webinar

The recorded webinar “VMforce : Cloud Computing for Java Developers” provides an introduction to Cloud Computing, overview of the Force.com platform, and a sneak peak of VMforce.

The webinar was recorded, and it is available for viewing @
:: http://wiki.developerforce.com/index.php/VMforce_Webinar_Series

For additional information, tutorials and tips, visit following site and blog:
:: http://developer.force.com/
:: http://blog.sforce.com/

MICHHAMI DUKKADAM

On eve of Jain Paryushan Festival, I request

KHAAMEMI SAVVE JEEVA (I grant forgiveness to all living beings)
SAVVE JEEVA KHAMANTU ME (May all living beings grant me forgiveness)
METTI ME SAVVE BHUYESU (My friendship is with all living beings)
VAIRAM MAJHAM NA KENAI (My enemy is totally non-existent)

MICHHAMI DUKKADAM
With best wishes and prayers for the well-being of all living beings!

E-mail Scheduling Coming to Gmail

Finally: E-mail scheduling coming to Gmail
No, not from Google, but from a browser plug-in called Boomerang for Gmail.

A company called Baydin sells a $14.95 product for Outlook called Boomerang for Outlook, which enables you to reschedule the delivery of e-mails you’ve received and also to schedule the sending of e-mails for some specific time in the future.

I’m sure Boomerang for Outlook, which I have not tried, adds convenience. But Outlook doesn’t need e-mail scheduling, because that functionality is already built-in.

Gmail, on the other hand, desperately needs it. Which is why Baydin’s Boomerang for Gmail will probably be very welcome. The product is a browser plug-in for both Firefox and Chrome currently in beta mode. If you sign up at the Baydin site, they’ll send you an invitation code. Or so they say. I’m still waiting for mine.

To use Boomerang, just click on a “Receive Later” button that the plug in adds. Then you select a date and time. Boomerang moves your message into Archives until the specified time, at which point it moves it back into your inbox, marks it “unread” and puts a star on it.

When in Gmail’s Compose mode, Boomerang offers a “Send Later” button. Clicking it lets you choose exactly when.

Read more @ http://www.itworld.com/internet/117967/finally-e-mail-scheduling-coming-gmail

What salesforce.com network IP addresses do I need to whitelist?

Salesforce.com has an IP address block allocated directly to salesforce.com by the American Registry for Internet Numbers (ARIN).

To provide continuity of service if you utilize email or IP address security filters, white list or otherwise add salesforce.com’s IP address space to your list of trusted addresses

The IP address spaces are as follows:

204.14.232.0/25 East Coast Data Center (set one)
204.14.233.0/25 East Coast Data Center (set two)
204.14.234.0/25 West Coast Data Center (set one)
204.14.235.0/25 West Coast Data Center (set two)
202.129.242.0/25 Singapore Data Center

To clarify, the “0/25” that you see in the ranges refers to an abbreviated form of Classless Inter-domain routing notation. In essence this notation is a network number followed by a “/” and a number , the latter number indicates the number of 1’s (starting a the left most bit i.e MSB – most significant bit) in the subnet mask i.e the number of bits relevant to a network portion of the IP address. So “/25” means 25 bits constitute the subnet mask of 255.255.255.128, and really 25 bits reserved for network address which is identified by performing bitwise “AND” to the full network number.

For example 204.14.232.0/25 means 2 possible networks in the form of 204.14.232.0 and 204.14.232.128 each having possible 126 hosts i.e total 252 hosts or IP addresses per specified range.

Salesforce – Hide standard buttons display (Working version)

There are many a times where we want to remove few standard buttons from page layout, but there is no such option to remove such restricted buttons. Few such buttons are …

  • “New Note” or “Attach File” button on Google Docs, Notes, & Attachments Related list
  • “Save & Send Invitation” button on New Event page
  • Following is a solution which will hide “Save & Send Invitation” button on New Event page

    STEP1: JAVASCRIPT Code. Create a JS file with below code

    function hideBtns()
    {
    if(document.getElementsByName(“sendEmail”)[0]!=null)
    document.getElementsByName(“sendEmail”)[0].style.display = ‘none’;
    if(document.getElementsByName(“sendEmail”)[1]!=null)
    document.getElementsByName(“sendEmail”)[1].style.display = ‘none’;
    }
    if (window.addEventListener) {
    window.addEventListener(“load”, hideBtns, false);
    }
    else if (window.attachEvent) {
    window.attachEvent(“onload”, hideBtns);
    }

    STEP2: Upload the JS file as a DOCUMENT

    STEP3: Create a Home Page Component of type (HTML Area)

    <script src=”/servlet/servlet.FileDownload?file=01530000001OcDl”></script>

    Here 01530000001OcDl is ID of document created in STEP2

    STEP4: Add above created Home page component in your home page layout.

    That’s it you are all set, now open New Event and add invitees, automatically the “Save & Send Invitation” button will disappear.

    Please note : If you have some functionality which you want to work across all pages or on every form then navigate to Setup then go to Customize->User Interface, check “Show Custom Sidebar Components on All Pages” under the Sidebar section.

    Differences between the Import Wizard and the Apex Data Loader

    Salesforce CRM provides two tools for data migration—the Import Wizard and the Apex Data Loader.

    The Import Wizard

    is designed for less-technical users and smaller, simple imports of up to 50,000 records. It takes you through the process step by step and displays error messages to alert you to potential record duplications (“dupes”). For more information, go to Help & Training | Importing Data | Using the Import Wizards.

    Use the Apex Data Loader

    for complex imports of any size. It’s for technical users only. You’ll need access to the API to use this tool, which is included with Enterprise and Unlimited Edition. If you have another edition, you can purchase the API separately by contacting your account executive. The Data Loader doesn’t display error messages to alert you to potential problems. However, this tool includes several features that help make large data imports easier, such as being able to save your mappings. For more information, go to Help & Training | Data Loader.

    The table below summarizes the difference between the two tools. The instructions in the remaining steps refer to the Import Wizard.
    https://www.salesforce.com/assets/images/campaigns/insights_data_migration_table.gif

    Cloud Antivirus – an Anti virus hosted in the cloud

    The first question that comes to mind when we talk of the Cloud Antivirus is if the Antivirus is in the cloud how it will protect the PC? Tecnerd.com digs a little deeper to understand what exactly these services that claim themselves as Cloud Antivirus offer.

    How Cloud Antivirus is different from traditional antivirus products?

    Cloud Antivirus is a cloud based security solution that can be installed and managed from anywhere through a web console.

    Since it is a hosted service, it doesn’t require infrastructure investment. You typically have options to delegate your security management to expert service providers.

    So it is essentially more about management of Antivirus in any organization that goes in the cloud. There will still be an Antivirus product installed in each PC and laptop you have. However you have options to control the updates, profiles and levels of security from a cloud based control panel. However the installed part on PC is a thin version of traditional antivirus product.

    How the Cloud Antivirus is deployed?
    Normally the Cloud Antivirus can be deployed in two ways. One in which the user clicks on an email which includes a link that will install the protection agent. The other way is where administrator can push the installation to workstations choosing workstations by name, IP address, IP range or by domain.

    What are advantages of Cloud Antivirus?

    Cloud Antivirus is service not software and so has follwoing advantages:
    No installation required
    Update without users intervention – always up to date
    Access your account from anywhere
    Reduces bandwidth consumption (as large number of workstations look for updates in traditional software)

    What are Free Cloud Antivirus?
    They are similar to other free anti virus but hosted in cloud. You get advantage of low footprint and up to date packages. An example of free cloud anti virus is Panda Cloud antivirus.

    Page Break, Page number and Page layout Styles in Visualforce PDF Templates

    1. Page Break
    While generating PDF template from Visualforce, if you want to give the page break ,below code snippet is very useful.
    You can use the page break style properties to control where the browser will insert a page break. The Force.com PDF content converter will carry that over to the PDF.

    <apex:page renderas="pdf">
    <div style="page-break-after:always;">
    This is page one
    </div>
    </apex:page>

    2. Page layout and Page number
    The following snippet shows you have to switch the PDF page layout to landscape and add page numbers to your Visualforce page. Use the below code in CSS of Visualforce page.

    @page {
    /* Landscape orientation */
    size:landscape;

    /* Put page numbers in the top right corner of each page in the pdf document. */
    @top-right
    {
    content: “Page ” counter(page);
    }
    }

    Source : Kyle Roche / Pragya Kumari

    « Older posts Newer posts »