- 由LINE官方所開發的應用之一
- https://line.me/zh-hant/download
#!/bin/bash | |
# References | |
# https://www.cnblogs.com/xsjzhao/p/11001541.html | |
# https://askubuntu.com/questions/919441/failed-to-connect-to-http-changelogs-ubuntu-com-meta-release | |
# https://ubuntuforums.org/showthread.php?t=2391641 | |
# It causes because of temporary network issue. | |
# The resolved solution is as follows: |
## | |
# You should look at the following URL's in order to grasp a solid understanding | |
# of Nginx configuration files in order to fully unleash the power of Nginx. | |
# https://www.nginx.com/resources/wiki/start/ | |
# https://www.nginx.com/resources/wiki/start/topics/tutorials/config_pitfalls/ | |
# https://wiki.debian.org/Nginx/DirectoryStructure | |
# | |
# In most cases, administrators will remove this file from sites-enabled/ and | |
# leave it as reference inside of sites-available where it will continue to be | |
# updated by the nginx packaging team. |
The LINE Login process for web (web login) is based on the OAuth 2.0 authorization code grant flow and the OpenID Connect protocol. Your application must be able to make requests server-side and receive data from the LINE Platform. The following is an overview of the web login flow.
#!/bin/bash | |
sudo_prefix="" | |
if [[ $UID != 0 ]]; then | |
sudo_prefix="sudo " | |
fi; | |
# References: https://www.linuxbabe.com/ubuntu/install-google-chrome-ubuntu-18-04-lts |
#!/bin/bash | |
# This bash script is referenced by https://www.hostinger.com/tutorials/how-to-install-docker-on-ubuntu | |
# Reference: https://docs.docker.com/engine/install/ubuntu/ | |
echo 'Check your Linux Distribution....' | |
which lsb_release > /dev/null 2>&1 | |
if [[ $? != 0 ]]; then |
# Reference: https://askubuntu.com/questions/195545/how-to-enable-sftp-support-in-curl | |
FROM ubuntu:18.04 | |
ENV CPPFLAGS=-I/usr/local/include | |
ENV LDFLAGS="-L/usr/local/lib -Wl,-rpath,/usr/local/lib" | |
ENV LIBS="-ldl" | |
RUN sed -i -e "s/# deb-src /deb-src /g" /etc/apt/sources.list | |
RUN apt-get update | |
RUN apt-get install -y build-essential debhelper libssh-dev |
- https://www.instagram.com/developer/
- It's deprecated on June 29, 2020.
March 30, 2020 Update: We understand these are challenging times for our developer community, so we are postponing disabling the Instagram > Legacy API Platform by 90 days to June 29, 2020. Remaining endpoints on the Legacy API will no longer be available after this date and your app's users may lose functionality.
- https://developers.facebook.com/docs/instagram-api/
- The API is intended for Instagram Businesses and Creators who need insight into, and full control over, all of their social media interactions.
The CD that came with the device listed RTL8671B, but it's not on Realtek's website. Instead the manual points you to:
https://www.mytechkey.com/pages/driver
4.Bluetooth 5.0 Dongle
Driver Link:
https://www.dropbox.com/s/gwo9lz777i82f70/BT5.0%20Driver.zip?dl=0
import requests | |
from tqdm import tqdm | |
def download(url: str, fname: str, chunk_size=1024): | |
resp = requests.get(url, stream=True) | |
total = int(resp.headers.get('content-length', 0)) | |
with open(fname, 'wb') as file, tqdm( | |
desc=fname, | |
total=total, |