Posts

Showing posts from March, 2023

Code deploy to amazon

 amazon_code_deployment_through_ec2.txt :: Link ::  https://medium.com/@antonio.cm.oliveira/deploying-rails-app-using-aws-codedeploy-to-ec2-the-right-way-2e19fa8c7b4c Steps ::: Step 1:: Launch an EC2 Instance with code deploy Step 2:: Configure Code Deploy Step 3:: Configure Code Pipeline Step 4:: Deploy your app Step 5:: Why Parameter Store not Secrets Manager? Step 6:: Configure your parameters using AWS System Manager (parameter store) |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| Step 1:: Launch an EC2 Instance with code deploy:: 1.We should have AWS Account,VPC and Public Subnet  2.Sign In to the AWS Ma...

Hash methods best blog

 https://www.google.com/amp/s/www.geeksforgeeks.org/ruby-hash-class/amp/

example of oops

Image
 ................................................... https://dev.to/dej/encapsulation-polymorphism-and-abstraction-in-ruby-41ia oops concepts ::  Encapsulation, Polymorphism, and Abstraction in Ruby # ruby # oop # inheritance # computerscience This article originally appeared on  https://vahid.blog/ Did you know that Ruby was good for the environment? It is, because it follows strict EPA principles... Encapsulation, Polymorphism, and Abstraction. [Ducks a volley of Tomato objects thrown at him]. In a  previous post , we discussed the importance of classes in OOP, and developed the mental image of classes as providing more defined jobs and roles to our data. To summarize: classes allow us to build applications that scale well and deal with more complex and customized data structures. They do this by enabling us to  store data  in specific ways (i.e., attributes) and to  interact with this data  both internally and from the outside world, also in sp...