百姓网是免费的,绝大多数用户都可以不花一分钱在我们网站上卖东西,租房子,找朋友。
与此同时,每天百姓网都有几万人自助地为我们付钱,而我们为他们提供增值服务。
那么问题就来了,这些增值服务是哪里来的呢?
这时候,营收组的攻城狮就出现了。他们不仅todo
- 准时,高质量地完成模块/功能
- 对自己的代码、对你需要Review的代码负责。
- 可有效编写测试用例,确保代码质量,功能与可维护性
////////////////////////////////////////////////// | |
// SpaceEngine main configuration file // | |
////////////////////////////////////////////////// | |
// display settings | |
WindowSizeX 1040 // window width | |
WindowSizeY 744 // window height | |
WindowPosX 1592 // window x position | |
WindowPosY -132 // window y position | |
Maximized true // start with a maximized window |
DEBUG = true | |
function getWpath(address, port, path) | |
if conn_busy == false or conn_busy == nil then | |
conn_busy = true | |
local conn=net.createConnection(net.TCP, 0) | |
conn:on("receive", function(conn, payload) | |
if (DEBUG) print("received") end | |
if string.len(payload) < 1460 then conn:close() end |
#!/bin/sh | |
if [ `id -u` -ne 0 ] | |
then | |
echo "please run it by root" | |
exit 0 | |
fi | |
apt-get -y update | |
apt-get -y install pptpd || { |
echo -n "CPU freq: ";cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_cur_freq;\ | |
echo -n "CPU max: ";cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_max_freq;\ | |
echo -n "CPU min: ";cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_min_freq |
AT+RST | |
AT+GMR | |
AT+CWMODE=1 | |
AT+CWMODE? | |
AT+CIPCLOSE |
config interface 'loopback' | |
option ifname 'lo' | |
option proto 'static' | |
option ipaddr '127.0.0.1' | |
option netmask '255.0.0.0' | |
config interface 'lan' | |
option type 'bridge' | |
option proto 'static' | |
option netmask '255.255.255.0' |
find -name '*.conf' | xargs sudo sed -i "s/\(\$1\..*\.baixing\.cn\)$/\1\$2/g" | |
find -name '*.conf' | xargs sudo perl -pi -e 's|com\$|com(.*)\$|g' | |
find -name '*.conf' | xargs sudo sed -i "s/\(s\..*\.baixing\.cn\)\//\1:3005\//g" |