Category Technology

Call Salesforce REST APIs using Python with OAuth

Many times we encounter the use cases when it becomes necessary or task can be done in a much effective way if we can connect directly with Salesforce using python or any other programming language. Here salesforce Rest APIs will… Continue Reading →

Install Docker in Mac OS

By command line INSTALL First, install cask by type in the terminal brew tap phinze/homebrew-cask brew install brew-cask and then type: brew cask install docker And run docker by open /Applications/Docker.app (or by macOs bottom menu> launchpad > docker – on… Continue Reading →

Ignore or untrack changes in the file permission GIT

Many times it happens that we do some changes in the file permission but we don’t want git to track those changes and show them in modifications while doing add and commit. So to overcome this problem we need to… Continue Reading →

Disable same-origin policy in Chrome

Start chrome or chromium in Linux using following command: chromium-browser –disable-web-security google-chrome –disable-web-security

Install MySql in macOS step by step

Step 1:Install MySql with the help of homebrew. If it is not installed in your system. You can install it from here. Step 2: Run the below command from the terminal. brew install mysql Step 3:set the path of MySQL… Continue Reading →

How to install Apache in mac OS step by step

If you are trying to install Apache in Mac OS use the below step by step tutorial. Step 1: Install Apache with the help of homebrew. If it is not installed in your system. You can install it from here…. Continue Reading →

Install python in mac OS step by step

Step 1:Install Python with the help of homebrew. If it is not installed in your system. You can install it from here.https://mybeliefs.in/install-homebrew-package-manager-in-macos/ Step 2:Run the below command in the terminal to install python3 in your system. brew install python3

Install Homebrew package manager in macOS

Homebrew is a powerful package manager like apt in Ubuntu. With the help of homebrew you can install packages from the terminal quickly. Run the below command from the terminal to install homebrew package manager. ruby -e “$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)”… Continue Reading →

One hot encoding in python

If you are working in machine learning then I am sure you will need this code many times. Use the below piece of code for one hot encoding. cat_vars=[‘LeadSource’,’Products__c’,’Service_Offering__c’] for var in cat_vars: cat_list=’var’+’_’+var cat_list = pd.get_dummies(dataset2[var], prefix=var) dataset3=dataset3.join(cat_list) cat_vars=[‘LeadSource’,’Products__c’,’Service_Offering__c’]… Continue Reading →

Enable email notification in redmine

Redmine is a free opensource project management tool. You can host it on your own server and can do all the customization and configuration. In this post, we will discuss how to enable the email notification in redmine, follow the… Continue Reading →

« Older posts Newer posts »

© 2024 My Beliefs

Write us at [email protected]