This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Unit] | |
Description=TeamSpeak Daemon | |
Requires=network.target | |
After=network-online.target | |
[Service] | |
Type=simple | |
User=teamspeak | |
ExecStart=/opt/teamspeak/teamspeak3-server_linux_amd64/ts3server | |
WorkingDirectory=/opt/teamspeak/teamspeak3-server_linux_amd64 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* ==UserStyle== | |
@name Select code on CSDN without login | |
@namespace https://github.com/KunoiSayami | |
@version 1.0.0 | |
@description You can select code on CSDN, but without to login. | |
@author KunoiSayami | |
@license AGPLv3 | |
@homepageURL https://gist.github.com/KunoiSayami/543bb1d1424931851842c7ceb7e01b72 | |
@supportURL https://gist.github.com/KunoiSayami/543bb1d1424931851842c7ceb7e01b72 | |
@preprocessor stylus |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* ==UserStyle== | |
@name Block sina open app bottom | |
@version 20211014.10.35 | |
@namespace userstyles.world/user/kunoisayami | |
@description Block sina zx require open app to view more information. | |
@author kunoisayami | |
@license AGPLv3 | |
@homepageURL https://gist.github.com/KunoiSayami/ea9d533fc1ecb50c96d0e750a0aa34d2 | |
@supportURL https://gist.github.com/KunoiSayami/ea9d533fc1ecb50c96d0e750a0aa34d2 | |
@preprocessor stylus |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Generated by Powerlevel10k configuration wizard on 2021-11-20 at 22:21 UTC. | |
# Based on romkatv/powerlevel10k/config/p10k-lean-8colors.zsh, checksum 27244. | |
# Wizard options: nerdfont-complete + powerline, small icons, lean_8colors, ascii, | |
# 24h time, 1 line, compact, concise, instant_prompt=verbose. | |
# Type `p10k configure` to generate another config. | |
# | |
# Config for Powerlevel10k with 8-color lean prompt style. Type `p10k configure` to generate | |
# your own config based on it. | |
# | |
# Tip: Looking for a nice color? Here's a one-liner to print colormap. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
# -*- coding: utf-8 -*- | |
# Copyright (C) 2022 KunoiSayami | |
# | |
# This program is free software: you can redistribute it and/or modify | |
# it under the terms of the GNU Affero General Public License as published by | |
# the Free Software Foundation, either version 3 of the License, or | |
# any later version. | |
# | |
# This program is distributed in the hope that it will be useful, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// License by: AGPL-3.0 | |
let buttonText = 'Show more'; | |
let loadTimeOut = 1000; | |
document.getElementsByClassName('saleitembrowser_SaleItemBrowserHeader_26iQ9 Panel Focusable')[0].scrollIntoView(); | |
function findButton() { | |
Array.from(document.getElementsByClassName('Focusable')).forEach(element => { | |
if (element.textContent !== undefined && element.textContent == buttonText) { | |
element.click(); | |
console.log('clicked'); | |
} |
OlderNewer