Skip to content

Instantly share code, notes, and snippets.

View rogeecn's full-sized avatar
🏠
Working from home

Rogee rogeecn

🏠
Working from home
  • 朝阳区, 北京
View GitHub Profile
@rogeecn
rogeecn / 词性标记.md
Created February 9, 2020 15:12 — forked from luw2007/词性标记.md
词性标记: 包含 ICTPOS3.0词性标记集、ICTCLAS 汉语词性标注集、jieba 字典中出现的词性、simhash 中可以忽略的部分词性

词的分类

  • 实词:名词、动词、形容词、状态词、区别词、数词、量词、代词
  • 虚词:副词、介词、连词、助词、拟声词、叹词。

ICTPOS3.0词性标记集

n 名词

nr 人名

@rogeecn
rogeecn / 远程CALL调用示例
Created June 23, 2015 10:16
演示如何调用远程CALL
typedef struct ParamData //参数结构
{
long Param1;
long Param2;
DWORD Param3;
DWORD Param4;
}ParamData,*Paramp;
//**************************************************************************************
//函数名:InfusionFunc
@rogeecn
rogeecn / firewall.sh
Created December 10, 2013 14:11 — forked from x1a0/firewall.sh
#! /bin/bash
# Set the default policies to allow everything while we set up new rules.
# Prevents cutting yourself off when running from remote SSH.
iptables -P INPUT ACCEPT
iptables -P FORWARD ACCEPT
iptables -P OUTPUT ACCEPT
# Flush any existing rules, leaving just the defaults
iptables -F