- 浏览: 1482590 次
- 性别:
- 来自: 北京
最新评论
-
wahahachuang8:
我喜欢代码简洁易读,服务稳定的推送服务,前段时间研究了一下go ...
websocket的helloworld -
q114687576:
http://www.blue-zero.com/WebSoc ...
websocket的helloworld -
zhaoyanzimm:
感谢您的分享,给我提供了很大的帮助,在使用过程中发现了一个问题 ...
nginx的helloworld模块的helloworld -
haoningabc:
<div class="quote_title ...
qemu+emacs+gdb调试内核 -
leebyte:
太NB了,期待早日用上Killinux!
qemu+emacs+gdb调试内核
文章列表
自定义图和加载结构
代码在
https://github.com/killinux/vizceral-example
vizceral-example/sample_data_chat.json
{
"renderer": "region", "name": "test",
"maxVolume": 100.0,
"nodes": [
{
"renderer": "region", ...
基本语法:https://www.cnblogs.com/jpfss/p/10973590.html
这里有个表格,说明JSONPath语法元素和对应XPath元素的对比。
XPath JSONPath Description
/ $ 表示根元素
. @ 当前元素
/ . or [] 子元素
.. n/a 父元素
// .. 递归下降,JSONPath是从E4X借鉴的。
* * 通配符,表示所有的元素
@ n/a 属性访问字符
[] []
子元素操作符
| [,]
连接操作符在XPath 结果合并其它结点集合。JSONP允许name或者数组索引。
n/a [start:end:step ...
#######
例子
################# snat原理:https://blog.csdn.net/jk110333/article/details/8229828
aws:
eth0:172.31.33.238
ppp0:192.168.3.99---------172.17.0.13
tx:
eth0: 172.17.0.13
ppp0: 172.17.0.13-------- 192.168.3.99
ppp1:192.168.2.99---------192.168.2.128
手机 192.168.2.128
...
32,263.98
入门教程
https://learnku.com/docs/rust-lang/2018/ch01-01-installation/4494
安装:
curl https://sh.rustup.rs -sSf | sh
source $HOME/.cargo/env
linux 和mac 基本一样
rustup toolchain install nightly-x86_64-unknown-linux-gnu
rustup target add wasm32-unknown-unknown --toolchain nightly
rustc +n ...
基本知识:
1.emscripten gcc8.2
2.参考:https://blog.csdn.net/martinking1997/article/details/82460849
3.修改过的 https://github.com/killinux/em-dosbox
########## error:
emcc 报错
version `GLIBCXX_3.4.21' not found
strings /usr/lib64/libstdc++.so.6 |grep GLIBCXX
检查C_INCLUDE_PATH and ...
route add -host 172.217.3.164 dev ppp0
#######################################
#######################################
一。只做客户端:
参考 :
https://blog.csdn.net/loomz/article/details/52955267
https://segmentfault.com/a/1190000014160574
https://www.jianshu.com/p/e772ffc22e77
https://www.iteye.com/blog/ha ...
把c的代码生成json:https://github.com/killinux/haobasic
发现个画流动图的神器:
https://github.com/Netflix/vizceral
es5的代码参考这个
https://www.diycode.cc/projects/Netflix/vizceral
还有react和Component 的插件:
React: http://www.oschina.net/p/vizceral-react
Web 组件: http://www.oschina.net/p/vizceral-component
代码如下:
<html& ...
代码在
https://github.com/killinux/haobasic
############# 调试内容
编译时打印宏内容
https://blog.csdn.net/wlr_tang/article/details/21778587
/* main.c */
#include <stdio.h>
#define __PRINT_MACRO(x) #x
#define PRINT_MACRO(x) #x "=" __PRINT_MACRO(x)
int main(int argc, const char *argv[])
{
# ...
2019年9月24日更新:
注意,需要开启firewalld防火墙和NetworkManager
systemctl enable firewalld
systemctl enable NetworkManager
systemctl start firewalld
systemctl start NetworkManager
否则会有“ state change: unmanaged -> unavailable (reason 'connection-assumed')”
等错误
aws的ip为13.231.152.*
如果内网是 172.31.39.*
#!/bin ...
yum install automake autoconf libtool libicu gcc-c++
####yum install bazel -y 这样安装版本过新会报错:
lease downgrade your bazel installation to version 0.26.1 or lower to build TensorFlow
yum -y install epel-release
yum -y install python-pip
git clone http://github.com/tensorflow/tensorflow
https:/ ...
参考:https://www.cnblogs.com/bencai/p/9124654.html
使用g++ -std=c++11 some.cpp 编译
c++的helloworld
#include <iostream>
using namespace std;
int main(int argc,char **argv)
{
cout<<"hello world!"<<endl;
auto i=10;
cout<<i<<endl;
...
octo-rpc 和 octo-ns
参考https://github.com/Meituan-Dianping/octo-rpc/blob/master/whale/docs/Quick_start.md
和
https://github.com/Meituan-Dianping/octo-ns/tree/master/sdk/mns-sdk
###########.注意的地方:
#############centos7
这个依赖thrift和muduo,
主要检查thrift的配置 和muduo的配置, 如果是/usr/local/之类的我们都可能要改,
我们thrift装在 ...
thrift-0.8.0 :https://www.cnblogs.com/he-px/p/7927766.html
安装boost
http://netix.dl.sourceforge.net/project/boost/boost/1.60.0/boost_1_60_0.zip
./bootstrap.sh
sudo ./b2 threading=multi address-model=64 variant=release stage install
安装libevent
brew install libevent
#./configure --prefix=/usr/local/th ...
http://zh.d2l.ai/chapter_prerequisite/install.html
https://zh.d2l.ai/d2l-zh-1.0.zip
conda env create -f environment.yml
conda activate gluon
jupyter notebook
mxnet
nd.dot(X, Y.T)
from mxnet import nd
x = nd.arange(12)
x.shape
x.size
X = x.reshape((3, 4))
nd.zeros((2, 3, 4))
nd.ones((3, 4))
Y ...
event socket
A:
nc -l -k 192.168.0.100 8040
B:
nc 192.168.0.100 8040
外连就是freeswitch代替B
内连就是freeswitch代替A
外连
dialplan/default.xml
<extension name="socket">
<condition field="destination_number" expression="^1237$">
<action application=" ...