To keep that CUCM 12+ demo license ticking just a little while longer:
-
Disable SLM:
chmod 000 /usr/local/cm/bin/SmartLicenseMgr
-
Create missing folder and file
mkdir /common/drf
touch /common/drf/UCM_SLM_deregister.xml
To keep that CUCM 12+ demo license ticking just a little while longer:
Disable SLM:
chmod 000 /usr/local/cm/bin/SmartLicenseMgr
Create missing folder and file
mkdir /common/drf
touch /common/drf/UCM_SLM_deregister.xml
// ==UserScript== | |
// @name YouTube - Remaining Time Indicator | |
// @name:fr YouTube - Indicateur du temps restant | |
// @name:es YouTube - Indicador de tiempo restante | |
// @name:de YouTube - Anzeige der verbleibenden Zeit | |
// @name:it YouTube - Indicatore del tempo rimanente | |
// @name:zh-CN YouTube - 剩余时间指示器 | |
// @namespace https://gist.github.com/4lrick/cf14cf267684f06c1b7bc559ddf2b943 | |
// @version 1.8 | |
// @description Displays the remaining duration of a YouTube video next to the video duration, taking into account the playback rate. |
// insert into ~/.config/waybar/config | |
"custom/ddc_brightness": { | |
// I don't even want to know why this works. | |
// Change it to the following for your custom icons, | |
// current format is a hack for Material Symbols to display normally: | |
// "format": "{icon} {percentage}%", | |
"format": "<span rise='-2pt' size='12pt'>{icon}</span> <span rise='1pt' size='10pt'>{percentage}%</span>", | |
"format-icons": [ | |
// Icons from Google Material Symbols. |
23.21.150.121:3478 | |
iphone-stun.strato-iphone.de:3478 | |
numb.viagenie.ca:3478 | |
s1.taraba.net:3478 | |
s2.taraba.net:3478 | |
stun.12connect.com:3478 | |
stun.12voip.com:3478 | |
stun.1und1.de:3478 | |
stun.2talk.co.nz:3478 | |
stun.2talk.com:3478 |
#!/bin/bash | |
# nous,2019-2022 | |
# How to use | |
# wget https://tiny.cc/fucksystemd | |
# chmod +x fucksystemd | |
# sudo ./fucksystemd | |
# Test Arch ISO installation: | |
# cfdisk /dev/sda |
名称 | 役割 | 説明 |
---|---|---|
MinGW | コンパイラ | Windows 用の GNU ツールチェーン。 とにかく Windows 用の gcc や GNU ld。 "Windows 用" とは、Windows 上で動作したり、Windows 用のアプリが作れたりすること。 要するに Visual C++ や Clang/LLVM みたいなもの。 |
mingw-w64 | コンパイラ | MinGW のフォーク。Win64 向けの改良が加わっており、2021 年現在の主流。 |
Cygwin | POSIX 環境 | Windows 用の POSIX 環境。cygwin1. |
Selfhosting is the process of locally hosting and managing applications instead of renting from SaaS providers.
This is a list of Free Software network services and web applications which can be hosted locally. Non-Free software is listed on the Non-Free page.
See Contributing.
# Backup | |
docker exec CONTAINER /usr/bin/mysqldump -u root --password=root DATABASE > backup.sql | |
# Restore | |
cat backup.sql | docker exec -i CONTAINER /usr/bin/mysql -u root --password=root DATABASE | |