tao@moelove:~$ kubectl create ns apisix
namespace/apisix created
create a file named etcd.yaml
.
#!/bin/bash | |
address_string="$1" | |
# Split the string into IP address and port number parts | |
ip_hex="$(echo "$address_string" | cut -d : -f 1)" | |
port_hex="$(echo "$address_string" | cut -d : -f 2)" | |
# Convert the hexadecimal IP address to decimal | |
ip_dec=$(printf %d 0x$ip_hex) |
package main | |
import "fmt" | |
import "golang.org/x/sys/unix" | |
func DeviceFromPath(path string) { | |
var stat unix.Stat_t | |
err := unix.Lstat(path, &stat) | |
if err != nil { | |
fmt.Println(err) |
#!/usr/bin/env bash | |
set -Eeuo pipefail | |
# for real pushes, this would be "library" | |
targetOrg='trollin' | |
# https://github.com/tianon/dockerhub-public-proxy | |
publicProxy="$DOCKERHUB_PUBLIC_PROXY" | |
_curl() { |
upstream api { | |
server localhost:6663; | |
} | |
server { | |
listen 80; | |
server_name moelove.info; | |
charset utf-8; | |
root /www/moelove; | |
index index.html index.html; |
Python build finished successfully! | |
The necessary bits to build these optional modules were not found: | |
_dbm _gdbm _lzma | |
_sqlite3 _tkinter readline | |
To find the necessary bits, look in setup.py in detect_modules() for the module's name. | |
so. | |
sudo yum install gdbm-devel tk-devel xz-devel sqlite-devel readline-devel bzip2-devel ncurses-devel zlib=devel |
setxkbmap -layout "$(setxkbmap -print | awk -F + '/xkb_symbols/ {print $2}')" -option ctrl:nocaps |
<meta name="apple-mobile-web-app-capable" content="yes"> | |
<meta name="apple-mobile-web-app-status-bar-style" content="black"> |
# Conky settings # | |
background no | |
update_interval 1 | |
cpu_avg_samples 2 | |
net_avg_samples 2 | |
override_utf8_locale yes | |
double_buffer yes | |
no_buffers yes |
import re | |
nickname = raw_input('Please input your nickname > ') | |
if not re.search(u'^[\u4e00-\u9fa5a-zA-Z0-9]+$', unicode(nickname,'utf8')): | |
print 'Your nickname format is error, please try again !' | |
else: | |
print 'Hello %s'% nickname | |