A minimal table to compare the Espressif's MCU families.
| ESP8266 | ESP32 | ESP32-S2 | ESP32-S3 | ESP32-C3 | ESP32-C6 | |
|---|---|---|---|---|---|---|
| Announcement Date | 2014, August | 2016, September | 2019, September | 2020, December |
| { | |
| "2001-01-01": "Confraternização Universal", | |
| "2001-02-27": "Carnaval", | |
| "2001-04-13": "Paixão de Cristo", | |
| "2001-04-21": "Tiradentes", | |
| "2001-05-01": "Dia do Trabalho", | |
| "2001-06-14": "Corpus Christi", | |
| "2001-09-07": "Independência do Brasil", | |
| "2001-10-12": "Nossa Sr.a Aparecida - Padroeira do Brasil", | |
| "2001-11-02": "Finados", |
| Encoder h264_nvenc [NVIDIA NVENC H.264 encoder]: | |
| General capabilities: dr1 delay hardware | |
| Threading capabilities: none | |
| Supported hardware devices: cuda cuda d3d11va d3d11va | |
| Supported pixel formats: yuv420p nv12 p010le yuv444p p016le yuv444p16le bgr0 rgb0 gbrp gbrp16le cuda d3d11 | |
| h264_nvenc AVOptions: | |
| -preset <int> E..V....... Set the encoding preset (from 0 to 18) (default p4) | |
| default 0 E..V....... | |
| slow 1 E..V....... hq 2 passes | |
| medium 2 E..V....... hq 1 pass |
| X5O!P%@AP[4\PZX54(P^)7CC)7}$EICAR-STANDARD-ANTIVIRUS-TEST-FILE!$H+H* |
| function subsetSum(numbers, target, partial) { | |
| var s, n, remaining; | |
| partial = partial || []; | |
| // sum partial | |
| s = partial.reduce(function (a, b) { | |
| return a + b; | |
| }, 0); |
| var http = require('http'); | |
| var encrypt = require('./encrypt'); | |
| function processPost(request, response, callback) { | |
| var queryData = ""; | |
| if(typeof callback !== 'function') return null; | |
| if(request.method == 'POST') { | |
| request.on('data', function(data) { | |
| queryData += data; |
| #!/bin/bash | |
| sudo add-apt-repository ppa:chris-lea/libsodium; | |
| sudo echo "deb http://ppa.launchpad.net/chris-lea/libsodium/ubuntu trusty main" >> /etc/apt/sources.list; | |
| sudo echo "deb-src http://ppa.launchpad.net/chris-lea/libsodium/ubuntu trusty main" >> /etc/apt/sources.list; | |
| sudo apt-get update && sudo apt-get install libsodium-dev; |
| #!/usr/bin/env bash | |
| PECLVER="0.1.1" | |
| LIBSODIUMVER="1.0.2" | |
| if [[ $EUID -ne 0 ]]; then | |
| echo "This script must be run as root" 1>&2 | |
| exit 1 | |
| fi |
| ; Sample supervisor config file. | |
| ; | |
| ; For more information on the config file, please see: | |
| ; http://supervisord.org/configuration.html | |
| ; | |
| ; Notes: | |
| ; - Shell expansion ("~" or "$HOME") is not supported. Environment | |
| ; variables can be expanded using this syntax: "%(ENV_HOME)s". | |
| ; - Comments must have a leading space: "a=b ;comment" not "a=b;comment". |
| <?php | |
| use Illuminate\Console\Command; | |
| use Symfony\Component\Console\Input\InputOption; | |
| use Symfony\Component\Console\Input\InputArgument; | |
| class ClearBeanstalkdQueueCommand extends Command { | |
| /** |