Skip to content

Instantly share code, notes, and snippets.

View tade0726's full-sized avatar
👀
GPT is the new PC?

Ted Zhao tade0726

👀
GPT is the new PC?
  • Adelaide, SA, Australia
  • 14:41 (UTC +09:30)
  • LinkedIn in/ted-zhao
View GitHub Profile
@tade0726
tade0726 / ab_test_handy_functions.py
Last active March 15, 2021 09:38
simple script for significant and power report
import numpy as np
import scipy.stats
from statsmodels.stats.proportion import proportions_ztest
def get_p1_p2_alternative(s, t):
"""
return alternative base on actual p1, p2
"""
@tade0726
tade0726 / cx_oracle.md
Created May 8, 2018 03:04 — forked from kimus/cx_oracle.md
Installing python cx_oracle on Ubuntu

First of all, it just seems like doing anything with Oracle is obnoxiously painful for no good reason. It's the nature of the beast I suppose. cx_oracle is a python module that allows you to connect to an Oracle Database and issue queries, inserts, updates..usual jazz.

Linux

Step 1:

sudo apt-get install build-essential unzip python-dev libaio-dev

Step 2. Click here to download the appropriate zip files required for this. You'll need:

@tade0726
tade0726 / cx_oracle_instructions.md
Created May 7, 2018 12:09 — forked from thom-nic/cx_oracle_instructions.md
Installing CX Oracle for Python & Mac OS X. Instructions exist around the web, but they seem to be piecemeal and incomplete.
@tade0726
tade0726 / 词性标记.md
Created September 29, 2016 06:02 — forked from luw2007/词性标记.md
词性标记: 包含 ICTPOS3.0词性标记集、ICTCLAS 汉语词性标注集、jieba 字典中出现的词性、simhash 中可以忽略的部分词性

词的分类

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

ICTPOS3.0词性标记集

n 名词

nr 人名

@tade0726
tade0726 / compild.py
Created September 23, 2016 09:50 — forked from alex-1q84/compild.py
使用python的sched和Timer执行定时任务
#!/usr/bin/env python
# -*- coding: UTF-8 -*-
import sched, time
from threading import Thread, Timer
import subprocess
s = sched.scheduler(time.time, time.sleep)
class Job(Thread):