@nishuodedui
使用帮助
- 锁推用户DM消息
fo
可被bot关注 - 不需要关注bot,直接at即可
- 不需要关注本帐号,但锁推用户需要给bot查看推文的权限.
The following command should build the application on most linux systems: | |
gcc -o xtxtvw xtxtvw.c -I/usr/X11R6/include -L/usr/X11R6/lib -lXm -lXt -lX11 | |
The following command should build the application on many Solaris systems: | |
gcc -o xtxtvw xtxtvw.c -I/usr/dt/include -L/usr/openwin/lib -lXm -lXt -lX11 | |
# EOF # |
#!/usr/bin/env python | |
#-*- encoding: utf-8 -*- | |
# | |
# Opera Mobile Off-Road Proxy Modifier | |
# By Linus Yang <[email protected]> | |
# Licensed under GPLv3 | |
# | |
from optparse import OptionParser | |
from zipfile import ZipFile, ZipInfo, ZIP_DEFLATED |
@nishuodedui
使用帮助fo
可被bot关注#!/bin/bash -e | |
NETNS_FILE=/var/run/netns/mynet | |
MNTNS_FILE=/var/run/ns/mynet_mnt | |
if [[ ! -f $NETNS_FILE ]]; then | |
ip netns add mynet | |
ip link add mynet0 type veth peer name mynet1 | |
ip link set mynet0 up |
#!/bin/bash | |
# can be A or AAAA | |
do_record=AAAA | |
# the interface to get ipv6 address | |
iface=eth0 | |
# the static suffix we should add to | |
v6_suf=53 | |
mail="[email protected]" |
# Configuration file for ipython. | |
#------------------------------------------------------------------------------ | |
# InteractiveShellApp(Configurable) configuration | |
#------------------------------------------------------------------------------ | |
# A Mixin for applications that start InteractiveShell instances. | |
# | |
# Provides configurables for loading extensions and executing files as part of | |
# configuring a Shell environment. |
/** | |
* @file daemon_utility.c | |
* @brief A tool to start a process in daemon mode | |
* @author yjf_victor | |
* @version 1.0 | |
* @date 2018-12-13 | |
* @copyright CC0 1.0 Universal https://creativecommons.org/publicdomain/zero/1.0/ | |
*/ | |
#include <stdio.h> |
#!/usr/bin/python3 | |
import os | |
import datetime | |
import subprocess | |
import logging | |
import tempfile | |
import contextlib | |
from pathlib import Path |
There was a reddit post about installing Arch on NTFS3 partition. Since Windows and Linux doesn't have directories with same names under the /
(C:\
), I thought it's possible, and turned out it was actually possible.
If you are not familiar to Linux, for example you've searched on Google "how to dualboot Linux and Windos" or brbrbr... you mustn't try this. This is not practical.