For further actions, you may consider blocking this person and/or reporting abuse
Read next
![gilles_hamelink_ea9ff7d93 profile image](https://media2.dev.to/dynamic/image/width=100,height=100,fit=cover,gravity=auto,format=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F2634312%2F1b62fe74-9c96-4e23-bf75-b9085f792df8.png)
"Mastering AI: Aligning Language Models with Human Values for a Better Future"
Gilles Hamelink -
![gilles_hamelink_ea9ff7d93 profile image](https://media2.dev.to/dynamic/image/width=100,height=100,fit=cover,gravity=auto,format=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F2634312%2F1b62fe74-9c96-4e23-bf75-b9085f792df8.png)
"Mastering AI Values: The Future of Utility Engineering and Ethical Alignment"
Gilles Hamelink -
![gilles_hamelink_ea9ff7d93 profile image](https://media2.dev.to/dynamic/image/width=100,height=100,fit=cover,gravity=auto,format=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F2634312%2F1b62fe74-9c96-4e23-bf75-b9085f792df8.png)
"Unlocking Robotics: The Future of Manipulation with IKER and VLMs"
Gilles Hamelink -
![d_thiranjaya_6d3ec4552111 profile image](https://media2.dev.to/dynamic/image/width=100,height=100,fit=cover,gravity=auto,format=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F2735703%2Fc4212c79-3e5b-449e-b45c-953a51a44f5b.jpg)
🚀 Testing Strategies: Essential Tips and Tricks for Developers
Pawani Madushika -
Top comments (4)
git push heroku master
turns your code into a recipe (slug).Every day, Heroku cooks breakfast (starts a dyno) from that recipe. What if you threw a tantrum and smeared your eggs on the wall (runtime error), or someone came and dumped sand in your cereal (corrupted server files)? Well, tomorrow's breakfast still will turn out fine, exactly according to the recipe.
What if you have a big family? Order more breakfasts (scale up to more dynos).
What if your family has a vegetarian and someone who hates mushrooms? Request different cooking processes (dyno types – worker, web, etc.).
Your family has to share a table with a few other families, cafeteria-style (multi-tenant hosting in AWS). If you pay more, you can double your space and your turns with the salt shaker (2x dyno, more CPU & RAM but still multitenant). If you pay a LOT more, you can get your own table (Performance dyno, Med or Lg, dedicated EC2 instance).
That was awesome!!! Thank you
And while we're at it... is it just my impression or one is unable to ever git clone their heroku repo history?
You can clone the repo using
git clone https://git.heroku.com/your-app.git
. The url is on the Settings tab of your Heroku dashboard.