これを参考に実施する https://forum.vyos.io/t/how-to-properly-build-and-smoketest-vyos/12198/2
まずこれを叩き込む
base_dir=$HOME/private/vyos
ssh_tmp_dir=$base_dir/tmp/.ssh
これを参考に実施する https://forum.vyos.io/t/how-to-properly-build-and-smoketest-vyos/12198/2
まずこれを叩き込む
base_dir=$HOME/private/vyos
ssh_tmp_dir=$base_dir/tmp/.ssh
import time | |
import Quartz.CoreGraphics as CG | |
def get_mouse_position(): | |
"""現在のマウス位置を取得""" | |
current_pos = CG.CGEventGetLocation(CG.CGEventCreate(None)) | |
return (current_pos.x, current_pos.y) | |
def move_mouse(): | |
"""マウスを一時的に動かして戻す""" |
// ==UserScript== | |
// @name YouTube Playlist Links Extractor | |
// @namespace https://twitter.com/takemioIO | |
// @version 0.0.1 | |
// @description Extract all video links from the current YouTube playlist after page load and format them.This is a plugin that outputs the command to change the youtube playlist to Jockie music playlist format to the console. | |
// @author takemioIO | |
// @match *://www.youtube.com/playlist?list=* | |
// ==/UserScript== | |
(function() { |
mkdir -p ~/Downloads/pokemon_wallpapers/ && seq 1 493 | xargs -I {} wget -P ~/Downloads/pokemon_wallpapers/ https://os-cdn.ec-ffmt.com/jp/pokemon/dedicate/wallpaper/{}.jpg |
#cloud-config | |
hostname: exabgp1 | |
manage_etc_hosts: True | |
timezone: Asia/Tokyo | |
system_info: | |
default_user: | |
name: cisco | |
password: cisco | |
chpasswd: { expire: False } | |
ssh_pwauth: True |
https://datatracker.ietf.org/doc/html/draft-mpmz-bess-mup-safi-02
This document shows an example of interconnection between GoBGP and exaBGP, which are existing implementations of SRv6MUP.
write by testnet.sh
// ==UserScript== | |
// @name Remove Twitter Deck Card | |
// @namespace https://twitter.com/takemioIO | |
// @version 0.0.1 | |
// @description Remove the twitter views link from people's tweets | |
// @author takemioIO | |
// @match https://tweetdeck.twitter.com/* | |
// @icon https://static.thenounproject.com/png/1159224-200.png | |
// @license MIT | |
// ==/UserScript== |
https://github.com/PrinzOwO/gtp5g https://github.com/PrinzOwO/libgtp5gnl
#!/bin/sh
#
# gNB1 UPF
# +----------------------+ +----------------------+
#/bin/sh | |
# install dependencies for building iproute2 | |
sudo apt update | |
DEBIAN_FRONTEND=noninteractive sudo apt upgrade -y | |
sudo apt install -y bison flex clang gcc llvm libelf-dev bc libssl-dev tmux trace-cmd | |
# update iproute2 | |
sudo apt install -y pkg-config bison flex make gcc | |
cd /tmp |