Skip to content

Commit

Permalink
cook
Browse files Browse the repository at this point in the history
  • Loading branch information
bettachini committed Aug 15, 2024
1 parent fd17ce2 commit f5e521a
Show file tree
Hide file tree
Showing 2 changed files with 83 additions and 1 deletion.
81 changes: 81 additions & 0 deletions docs/duster.ipynb
Original file line number Diff line number Diff line change
@@ -0,0 +1,81 @@
{
"cells": [
{
"cell_type": "code",
"execution_count": 1,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"4176.000000000001"
]
},
"execution_count": 1,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"duster_km_l = 10.2 # km/l\n",
"# https://combustivel.app/duster/c#Consumo_renault_duster_2019\n",
"distancia = 21.6 # km\n",
"consumo = 2* distancia / duster_km_l\n",
"precio_litro = 986 # $/l YPF Infinia 2024-08-15\n",
"# https://preciohoy.ar/combustibles.php\n",
"costo = consumo * precio_litro\n",
"costo"
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"16704.000000000004"
]
},
"execution_count": 2,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"costo_mensual = costo * 4\n",
"costo_mensual"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": []
}
],
"metadata": {
"kernelspec": {
"display_name": "jupyter",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.11.2"
},
"orig_nbformat": 4
},
"nbformat": 4,
"nbformat_minor": 2
}
3 changes: 2 additions & 1 deletion docs/opener.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@
const user = 'unlam';
const repo = 'MecanicaAnaliticaComputacional';
const branch = 'main'; // or your working branch
const token = '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'; // Insert your GitHub PAT here
const token = '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'; // Insert your GitHub PAT here
// const token = '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'; // Insert your GitHub PAT here

async function fetchRepoContent(path = '') {
try {
Expand Down

0 comments on commit f5e521a

Please sign in to comment.