Many corporate security policies require regular password changes, CNTLM makes these very easy.
First, get the hashes for the new password with:
cntlm -H
Copy and paste those hashes into your cntlm.conf file located at:
/usr/local/etc/cntlm.conf
# Your init script | |
# | |
# Atom will evaluate this file each time a new window is opened. It is run | |
# after packages are loaded/activated and after the previous editor state | |
# has been restored. | |
# | |
# An example hack to make opened Markdown files always be soft wrapped: | |
# | |
# path = require 'path' | |
# |
Many corporate security policies require regular password changes, CNTLM makes these very easy.
First, get the hashes for the new password with:
cntlm -H
Copy and paste those hashes into your cntlm.conf file located at:
/usr/local/etc/cntlm.conf
#include <ESP8266WiFi.h> | |
#include <WiFiClient.h> | |
#include <ESP8266WebServer.h> | |
#include <EEPROM.h> | |
#include <ESP8266mDNS.h> | |
#include <WiFiUdp.h> | |
#include <ArduinoOTA.h> | |
int a = 1; | |
int b = 1; |
# python3 and ffmpeg can both be installed easily via the Synology Package Manager | |
# ensure python3 installed | |
python3 --version | |
# ensure pip3 installed | |
sudo python3 -m ensurepip | |
# install scdl | |
python3 -m pip install scdl |