BLOG

si | apt-get install –fix-broken

Estoy intentando escribir un script de actualización del sistema no interactivo. Pregunta: si lo siguiente funciona bien: yes | dpkg –configure -a ¿Lo siguiente también funcionará muy bien ?: yes | apt-get install –fix-broken Responder Tienes -y o –yes o –assume-yes parámetros en apt-get. Pruebe algo como sudo apt-get install -y <package-name> Detalles: El página […]

Continue Reading

usando enumeraciones en funciones

Dadas las siguientes enumeraciones enum RelayState { RELAY_OFF = HIGH, RELAY_ON = LOW }; enum class CrossingZoneState: uint8_t { CROSSINGZONE_CLEAR = 0, // no train in crossing area, also initialized state CROSSINGZONE_OCCUPIED = 1, // train detected by the entry sensor CROSSINGZONE_EXITING = 2 // train detected by the exit sensor, when sensor clears, state= […]

Continue Reading

¿La cebolla, o no la cebolla?

The Onion (advertencia: muchos artículos son NSFW) es una organización de noticias satírica que parodia los medios informativos tradicionales. En 2014, The Onion lanzó ClickHole (advertencia: también con frecuencia NSFW), un sitio web de noticias satíricas que parodia sitios «clickbait» como BuzzFeed. Gracias a la Ley de Poe , es bastante común que las personas […]

Continue Reading