原创 數據結構與算法複習-C語言回顧

C語言 數組 定義一維數組 類型符 數組名[常量表達式]; int a[10]; int b[5] = {1, 2, 3, 4, 5}; void func(int n) { int a[2 * n]; } 指定數組爲

原创 Compile & Intall Octave 5.1 on Ubuntu 18.04

Compile & Install Octave 5.1 on Ubuntu 18.04 在Ubuntu 18.04上編譯安裝Octave 5.1.0 Install # switch to root sudo su # in

原创 Python Create EPUB

import logging from ebooklib import epub import urllib3 import certifi from lxml import html import re log = loggi

原创 Python Word Automation

# generate.py import win32com.client as win32 from datetime import datetime, date import re import os import sys im

原创 Oracle query table space statistics

select df.tablespace_name ,format_bytes(df.total_space) as total_space ,format_bytes(df.total_space - f

原创 PL/SQL格式化字節

create or replace function format_bytes(pi_bytes in number) return varchar2 is c_unit constant number := 1024;

原创 機器學習之路 - 微積分

機器學習之路 - 微積分 持續更新中… 路漫漫其修遠兮,機器學習之路從數學開始,包括概率論與數理統計,微積分基礎,線性代數(矩陣運算),本文總結了微積分相關的概念和性質 文章目錄機器學習之路 - 微積分1. 鄰域2. 常用函數3.

原创 git ignore __pycache__ folder

ignore __pycache__ folder add __pycache__ into .git/info/exclude file # git ls-files --others --exclude-from=.git/inf

原创 Fun with Sorting Algorithms

About the Author: Alex, loves programming, reading, cooking and biking Code ''' sort.py ''' import random import co

原创 Sublime列對齊插件

演示: 源碼: import sublime import sublime_plugin class AlignColCommand(sublime_plugin.TextCommand): def run(self, e

原创 Sublime Java Build -在Sublime中編譯執行Java程序

{ "shell_cmd": ["javac", "$file_name", "&&", "java", "$file_base_name"], "shell": true, "working_dir": "$

原创 Oracle PL/SQL Nutshell

Oracle PL/SQL Nutshell 持續更新中。。。 Basic Syntax & Variables Basic Structure PL/SQL can be executed from SQL Plus Called

原创 高等數學系列一:中學回顧

高等數學系列一:中學回顧 高等數學系列一:中學回顧 1. 鄰域 2.初等特性 ①奇偶性 ②有界性 ③增減性 3.幾個特殊函數 ①符號函數 ②取整函數 ③Dirichlet函數 1. 鄰域 U(a,δ)≜{x |  |

原创 Count Business Days in A Month using Python

from datetime import date, timedelta import json PUBLIC_HOLIDAYS = (1, 3, 7) today = date.today() one_day = timedelta(

原创 PowerShell Module

PowerShell Module Define PowerShell module: # comm_func.psm1 $ORA_CONNECTION = $null Function FileExist { param (