Error The attempted operation is not supported for the type of object referenced when using virtual network adapter on wsl2
Try run this commands:
wsl --shutdown
netsh winsock reset
If execution success, The message like this:
echo=off | |
if [ "$1" = "--s8" ]; then | |
mosquitto_pub -h $awsip -p $awsport -t vars/S8_boot_patch -r -m 1 | |
device=9888d9303354564442 | |
else | |
mosquitto_pub -h $awsip -p $awsport -t vars/S10_boot_patch -r -m 1 | |
device=RF8N82MR1VA | |
fi | |
echo Overriding security protocols for $device |
Error The attempted operation is not supported for the type of object referenced when using virtual network adapter on wsl2
Try run this commands:
wsl --shutdown
netsh winsock reset
If execution success, The message like this:
*** Best video in mp4 format [if available] in 1080p *** | |
$ youtube-dl -f 'bestvideo[height<=1080 && ext=mp4]+bestaudio' https://www.youtube.com/watch?v=LXb3EKWsInQ | |
*** For ease of use make alias for this command *** | |
$ alias yt="youtube-dl -f 'bestvideo[ext=mp4][height<=1200]+bestaudio[ext=m4a]' -o '%(title)s'" | |
Youtube-dl Tutorial With Examples | |
Here, I have compiled most commonly used Youtube-dl commands to download a video or playlist from YouTube. |
import requests_with_caching | |
import json | |
def get_movies_from_tastedive(title): | |
url = 'https://tastedive.com/api/similar' | |
param = {} | |
param['q']= title | |
param['type']= 'movies' | |
param['limit']= 5 | |
// Set up constraints for the player container view. | |
private func setUpPlayerContainerView() { | |
playerContainerView = UIView() | |
playerContainerView.backgroundColor = .black | |
view.addSubview(playerContainerView) | |
playerContainerView.translatesAutoresizingMaskIntoConstraints = false | |
playerContainerView.leadingAnchor.constraint(equalTo: view.leadingAnchor).isActive = true | |
playerContainerView.trailingAnchor.constraint(equalTo: view.trailingAnchor).isActive = true | |
playerContainerView.heightAnchor.constraint(equalTo: view.heightAnchor, multiplier: 0.3).isActive = true | |
// ==UserScript== | |
// @name Download YouTube subtitles | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description Now you can download YouTube subtitles | |
// @author André Kugland | |
// @match http*://*.youtube.com/* | |
// @grant none | |
// @require https://cdn.jsdelivr.net/npm/[email protected]/dist/FileSaver.min.js#sha256=bbf27552b76b9379c260579fa68793320239be2535ba3083bb67d75e84898e18 | |
// ==/UserScript== |
Note: This gist may be outdated, thanks to all contributors in comments.
adb
is the Android CLI tool with which you can interact with your android device, from your PC
You must enable developer mode (tap 7 times on the build version in parameters) and install adb on your PC.
Don't hesitate to read comments, there is useful tips, thanks guys for this !
# 1. The variable nested contains a nested list. Assign ‘snake’ to the variable output using indexing. | |
nested = [['dog', 'cat', 'horse'], ['frog', 'turtle', 'snake', 'gecko'], ['hamster', 'gerbil', 'rat', 'ferret']] | |
output = nested[1][2] | |
print(output) | |
# 2. Below, a list of lists is provided. Use in and not in tests to create variables with Boolean values. | |
# See comments for further instructions. | |
lst = [['apple', 'orange', 'banana'], [5, 6, 7, 8, 9.9, 10], ['green', 'yellow', 'purple', 'red']] |
# 1. The textfile, travel_plans.txt, contains the summer travel plans for someone with some commentary. | |
# Find the total number of characters in the file and save to the variable num. | |
fileref = open("travel_plans.txt","r") | |
num = 0 | |
for i in fileref: | |
num += len(i) | |
fileref.close() | |
# 2. We have provided a file called emotion_words.txt that contains lines of words that describe emotions. |