A list of useful commands for the ffmpeg command line tool.
Download FFmpeg: https://www.ffmpeg.org/download.html
Full documentation: https://www.ffmpeg.org/ffmpeg.html
| server { | |
| listen 80; | |
| listen [::]:80; | |
| server_name mail.remotesrv.ru; | |
| location /.well-known { alias /var/www/letsencrypt/.well-known; } | |
| location / { return 308 https://mail.remotesrv.ru$request_uri; } | |
| } |
| /** | |
| * --------------------------------------------------------- | |
| * | Esp-32/Arduino Stair Led Relay control | | |
| * | By SchizoDuckie, ©2019 | | |
| * | | | |
| * | Disclaimer: | | |
| * | I am in no way, shape or form responsible for | | |
| * | - You setting your house on fire | | |
| * | - Your firstborn suddenly getting autism | | |
| * | - Your girlfriend running off with the neighbour | |
A list of useful commands for the ffmpeg command line tool.
Download FFmpeg: https://www.ffmpeg.org/download.html
Full documentation: https://www.ffmpeg.org/ffmpeg.html
| #include <Arduino.h> | |
| #include <ESP8266WiFi.h> | |
| #include <Cloud4RPi.h> | |
| #include "DHT.h" | |
| #ifndef LED_BUILTIN | |
| #define LED_BUILTIN 2 | |
| #endif | |
| #define DHTPIN 2 // Digital pin connected to the DHT sensor |
| // Get ESP8266 going with Arduino IDE | |
| // - https://github.com/esp8266/Arduino#installing-with-boards-manager | |
| // Required libraries (sketch -> include library -> manage libraries) | |
| // - PubSubClient by Nick ‘O Leary | |
| // - DHT sensor library by Adafruit | |
| #include <ESP8266WiFi.h> | |
| #include <PubSubClient.h> | |
| #include <DHT.h> |
| import requests, json | |
| from subarucreds import username,password,pin # just a "subarucreds.py" that has some variables i didn't want to share | |
| import datetime | |
| #login | |
| s=requests.Session() | |
| loginr=s.post('https://www.mysubaru.com/login', data = {'username':username,'password':password}) | |
| #should return a response 200 | |
| #Where's my subaru? |
| #include <ESP8266WiFi.h> | |
| #include <WiFiClient.h> | |
| #include <ESP8266mDNS.h> | |
| #include <WiFiUdp.h> | |
| #include <PubSubClient.h> | |
| #define RELAY 4 // pin labelled d2 | |
| // Update these with values suitable for your network. | |
| const char* ssid = "YOURWIFI"; |
Replace cli with serialInterface if you're using an older version of esp8266_deauther!
In the end of setup():
pinMode(D5, INPUT_PULLUP); // enable button pin
pinMode(D4, OUTPUT); // enable LED pin
In the beginning of loop():
| ========================================================================== | |
| DO NOT WRITE ANY QUESTIONS IN COMMENTS | |
| ========================================================================== | |
| This is not appropriate place for discussions. Keep this list FW-only. | |
| I do NOT have any firmware files apart from published here or on 4pda. Please do not contact me for firmware files requests. | |
| This is a list of files found on Huawei update server by brute-forcing URL parameters. | |
| Some firmware files have changelogs. Just change file name to "changelog.xml" in the end of the URL. |