Posts

Showing posts from 2020

Top 10 Best Stocks to Buy Now Long Term SIP Portfolio Stocks

Image
  Top 10 Best Stocks to Buy Now Long Term SIP Portfolio Stocks Shares for Investment 2020 India Market for Beginners to buy now to invest in 2020. TAG: Best Long Term Portfolio Stocks Best Long Term Portfolio Best Portfolio for Long Term Investment Best SIP Portfolio for Long Term Investment Best Stock Portfolio for Long Term in India Best Long Term Stocks Best Long Term Investment Best Long Term Shares to Buy in India 2020 Best Long Term Stocks to Buy Right Now in India Best Long term Investment Stocks

Long Term Investment Profile for NSE & BSE as on April 2020

 PORTFOLIO : BEST STOCKS ALONG WITH BEST BUY LEVELS Opening Remarks : The prices are best buy prices, as on date. Please do your own research before buying/entering a stock. Please invest with money you don't need at least for 3 years. The list is suggestive and necessary changes can be made, depending on size of your Portfolio. The prices are dynamic and are subject to change, hence are not a benchmark price. Suggestive for educational purposes only. Sector wise allocation (Prices in INR) Paint sector  Asian Paints : 1350-1400  Berger Paints : 420-450  Banking & Finance   HDFC Bank : 800-835  KOTAK Mah Bank : 950-1050  NBFC  HDFC : 1500-1550  Bajaj Finance : 2100-2150  Pharma (For short Duration, Hold all your Pharma Stocks)   DRL : 3500-3600  Abbott : 16500  Chemical Atul : 3850  SRF : 2700-2800  Pidilite : 1180-1225  Agri Chem  PI Ind : 1280-1300  Bayer Crop sciences: 3500-3600  FMCG  HUL : 1950-2000  Nestle : 14500  Godrej Consumers : 485-500  Britannia 2350-2450  IT Sector

Multiples Meetups Screen Captures

Image

How to work IaaC with Terraform integration Azure

How to work IaaC  with Terraform integration Azure Login in azure and go to Azure CLI and create a service principle: az account list --query "[].{name:name, subscriptionId:id, tenantId:tenantId}" set subscription in case you have many:  az account set --subscription="${SUBSCRIPTION_ID}" Now you can create a service principal for use with Terraform: az ad sp create-for-rbac --role="Contributor" --scopes="/subscriptions/${SUBSCRIPTION_ID}" These values map to the Terraform variables like so: appId is the client_id defined above. password is the client_secret defined above. tenant is the tenant_id defined above. Now you can use local Terraform Client with below template: # Configure the Microsoft Azure Provider provider "azurerm" {   # The "feature" block is required for AzureRM provider 2.x.   # If you're using version 1.x, the "features" block is not allowed.   version = "~>2.0&qu

Code Review Checklist

Coding Style Use tabs to indent code, spaces to align within code Use the vertical pair-matching style of bracing System variables declared using system keyword aliases (e.g. int, float, string ) instead of base types ( e.g System.Int32, System.Single, System.String) Declare variables as closely as possible to first use and within the deepest possible scope Do not use public constants unless the value is truly a constant (e.g. Avogadro's Number but not our company name) Use static readonly for public "constants" Avoid using fully-qualified type names in your code Do not use using keywords inside a namespace declaration If an enumeration represents combinable settings (e.g. bitmasks), mark the enum with the [Flags] attribute  All switch statements must have a default case [ See Standards doc] Avoid compiling out methods using #if/#endif constructs (

Naming Conventions

Naming Conventions Variable Naming Variable names have the following structure: <scope><constructor><type><qualifier> Section Description Example <scope> Optional.   Indicates the scope and/or usage of the variable (eg. Global, Module, Static, Ref, Val) g_ arrstrStateName <constructor> Optional.   Base-type modifier arr sStateName <type> Required.   Indicates the base-type of the variable (eg. integer, string, double etc.) l StateidFirst <body> Required.   Describes the variable arrs StateName <qualifier> Optional.   Denotes a derivative of the variable sStateName Tmp Do not use the optional Visual Basic variable suffixes ($, %, & etc.). Scope Prefix <scope> The following table defines the standard scope and usage prefixes.