Friday, August 22, 2025

Revenue Cloud Important Links

Blogs

https://revenuecloud.info/category/pricing/

https://thecloudupdate.co/

Official Documentation

https://help.salesforce.com/s/articleView?id=ind.revenue_lifecycle_management.htm&language=en_US&type=5

Youtube Channels

  1. https://www.youtube.com/@thecloudupdate

  2. https://www.youtube.com/@sfdclearning

  3. https://www.youtube.com/watch?v=9hdPQU1OaTc&list=PLFNbZmUNjID7HKZ3Sx67P7vaqsWnV3r7x&index=1

Tuesday, February 20, 2018

Heroku deployment


If you are in a situation where you got following error:

git push [remote name] master

Unable to negotiate a key exchange method
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.

Check your remote repository path of heroku app by using command 

git remote -v | grep [remote-name]

Output of command will give you git path of your repository

[remote-name] git@heroku.com:[heroku-app-name].git (fetch)
[remote-name] git@heroku.com:[heroku-app-name].git (push)

Change it to https path as following

[remote-name] https://git.heroku.com/[heroku-app-name].git (fetch)
[remote-name] https://git.heroku.com/[heroku-app-name].git (push)

Then again try to push your code to Heroku app.

Your code will be deployed , Happy Heroku Deployment.

Salesforce1 app in Firefox browser

If you are building for Salesforce1 App and you want to test in your browser.
For firefox browser

1. Just inspect the page 



2. Click on Mobile icon

3. Select any mobile device


And you are ready to test your changes in your browser , without opening and login in the app on your phone.

It's very handy for your future Salesforce1 customizations.
Happy Salesforce coding.

Tuesday, September 3, 2013

Saturday, June 29, 2013

How to use Twitter Bootstrap

Twitter Bootstrap is become standard for developing web UI and it's kind of web 3.0 which uses HTML5 and CSS3 to make UI beautiful.

Following are steps to use Twitter Bootstrap


  1. Download jQuery --ver 1.8 or greater version from http://jquery.com/download/
  2. Customise Bootstrap from http://twitter.github.io/bootstrap/customize.html
  3. Finally include jQuery, Bootstrap-css, Bootstrap-js, and Bootstrap images in your project.
What if you are using jQuery-UI, no problem jquery-ui Bootstrap is also available 

But two things are missing in Twitter Bootstrap
  1. Datepicker
  2. DateTimepicker
  3. Bootstrap Dropdown for Select-box
Following are the respective list for including Datepicker, Datetimepicker, and SelectBox
  1. If you only want Datepicker use http://www.eyecon.ro/bootstrap-datepicker/
  2. If you want Datetimepicker use http://tarruda.github.io/bootstrap-datetimepicker/ which also include Datepicker so you can leave eyecon date picker if you want to use Datetime picker
  3. For converting simple dropdown select box to Bootstrap dropdown use http://silviomoreto.github.io/bootstrap-select/

Friday, December 21, 2012

AWS SES Request timestamp:expired. It must be within 300 secs/ of server time.

It's due to difference in time on your server and Amazon SES.

1. Check your linux server time by

> date

2. Check Amazon SES time by

> wget https://email.us-east-1.amazonaws.com --no-check-certificate --server-response

if this time difference is more than 300 seconds, then you get this error on sending email from Amazon SES, to solve this use ntpdate on your linux server

> sudo /usr/sbin/ntpdate 0.north-america.pool.ntp.org 1.north-america.pool.ntp.org 2.north-america.pool.ntp.org 3.north-america.pool.ntp.org

Again check the time difference by using above 2 commands.

If time difference is < 300 seconds .

It's done

Tuesday, December 11, 2012

Share on social networks

1. Twitter tweet button

https://dev.twitter.com/docs/tweet-button

2. Facebook like

http://developers.facebook.com/docs/reference/plugins/like/

3. LinkedIn share

https://developer.linkedin.com/share-plugin

4. Google Plus one button

https://developers.google.com/+/plugins/+1button/

Monday, October 1, 2012

Add fonts to your website

  • Visit Google Web Fonts and search fonts, if you know the name of font
  • Add to your fonts collection
  • Use them in your website by
  1. link tag in your website, or
  2. @import in your css file, or
  3. javascript

Monday, July 16, 2012

Online Web Development Tools

Lucid Chart
Draw online UML diagrams

Moqups
Draw online web wireframes / moqups

SVG maker
Make graphics and download in SVG (no signup required)

Friday, December 30, 2011

Tuesday, September 27, 2011

10 Steps to Install ruby on rails 3 on Ubuntu 10.10 (Maverick)

1. Update ubuntu repositories
sudo apt-get update 
 
2. Install all libraries including mysql, git, curl
sudo apt-get install build-essential bison openssl libreadline6 libreadline6-dev curl git-core zlib1g zlib1g-dev libssl-dev libyaml-dev libsqlite3-0 libsqlite3-dev sqlite3 libxml2-dev autoconf libmysql-ruby libmysqlclient-dev mysql-client mysql-server mysql-query-browser mysql-administrator openssh-client openssh-server
 
3. Install rvm 
bash < <(curl -s https://rvm.beginrescueend.com/install/rvm) 
 
4. Set rvm path in bash 
source .bashrc
 
5. Check rvm install or not (you can skip this step) 
rvm --version  
//OP:rvm 1.8.4 by Wayne E. Seguin (wayneeseguin@gmail.com) [https://rvm.beginrescueend.com/]
 
6. Install ruby 1.8.7 or 1.9.2 (according to your need)
rvm install 1.8.7
 
7. Set default ruby 1.8.7 
rvm --default use 1.8.7
 
8. Create gemset for rails3 application (you can name it as you wish) 
rvm gemset create rails3
 
9. Use the rails3 gemset on ruby 1.8.7
rvm use 1.8.7@rails3
 
10. Final Step
git clone your_project ; gem install bundle ; bundle check 

Manage git repos on S3

Use jgit to manage git repos on Amazon S3

Download jgit.sh from here and put jgit in your $HOME path

Make a .jgit file in your home directory and put

accesskey: *******************
secretkey: ********************



Make a bucket for git repos say git-repos

Now got to your project directory and add a remote for Amazon S3

>cd git_project

>git remote add s3 amazon-s3://.jgit@git-repos/git_project.git



>git push s3 branch

and it's done.

thanks to following bloggers

gabrito

spearce









Friday, June 3, 2011

Couldn't forward the HTTP response back to the HTTP client: It seems the user clicked on the 'Stop' button in his browser

One day in the morning I got the following error in one of my rails application with passenger on my development machine but other applications are working fine on the same passenger server.

Couldn't forward the HTTP response back to the HTTP client: It seems the user clicked on the 'Stop' button in his browser

After two days i got to know that it is due to mistakenly setting

Rails.env = "production"

for my development mode in Rails.root/config/application.rb

Friday, April 29, 2011

Netbeans CSS help - Missing documentation zip file: docs/css21-spec.zip!

If you got Missing documentation zip file: docs/css21-spec.zip! this in netbeans6.9 on ubuntu machine just download this file

CSS 2.1 spec zip file
and paste it on the following path

/usr/share/netbeans/6.9/nb

and you will get the CSS code help on pressing CTRL + spacebar

Tuesday, May 25, 2010

How to open a rails project in netbeans

I have faced this problem when i clone the git repository of sysblitz from server and nbproject directory ignored in .gitignore.

I have copy this code http://pastie.org/322423 in a ruby file and issue the command

$ ruby ruby_file_name  < rails_project_path >   --rails

this command created a directory nbproject in my rails project and now i am able to browse the rails project from netbeans.

Or

Other way is use Netbeans interface to open
New Project(Ctrl+Shift+N) -> Choose Project -> Ruby on Rails Application with Existing Sources .
Now browse the Project directory.

It will open your Rails project in Netbeans.

Wednesday, January 6, 2010

Get the value of selected radio button

In prototype you can use the following code to get the value of selected radio button in a group of radio button.

If you have only one group of radio button in page then use the following code

$$('input[type=radio]:checked').pluck('value');


If you have more than one group of radio button then use following code


$$('input:checked[type="radio"][name="my_radio_group"]').pluck('value');

$$ will get the element input (html tag) which is checked and whose type is radio with name my_radio_group and pluck the value attribute.

It will help you a lot.


Followers