This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sys | |
from datetime import timedelta | |
total_time = sys.argv[1].split('.') # 2.35 is 2hr 35min | |
delta = timedelta(hours=int(total_time[0]), minutes=int(total_time[1])) | |
minutes = delta.total_seconds() / 60 | |
total_pomodoros = round(minutes / 25) | |
print(f'🕒{total_pomodoros} Pomodoros') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
const app = express(); | |
... | |
app.set('trust proxy', true); | |
if (process.env.ENVIRONMENT == 'development') { | |
app.use(logger('dev')); | |
} else { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#define max_long 3 | |
/*void pedir_vector(int coord_ector[]);*/ | |
void imprimir_vector(int vector[]); | |
void sumar_vector(int vector_suma_a[], int vector_suma_b[], int vector_sumado[]); | |
int main(){ | |
int vector_a[max_long] = {1,2,3} |
NewerOlder