Skip to content

Instantly share code, notes, and snippets.

View spyman1802's full-sized avatar

spyman1802

  • Chinalotsynergy
  • Beijing, China
View GitHub Profile
@spyman1802
spyman1802 / ipxe_build.md
Created May 29, 2022 15:37 — forked from rikka0w0/ipxe_build.md
Build IPXE

1. Install tools and config IPXE

# Install compiler and dependencies
sudo apt-get install -y git gcc make liblzma-dev

# Grab the source code
git clone https://github.com/ipxe/ipxe.git
cd ipxe/src

# Enable NFS support
@spyman1802
spyman1802 / convert_oracle_to_mysql.sql
Last active October 18, 2019 21:01
transfer oracle table's define to mysql create table SQL
-- Created on 2019-09-26 by USER
declare
-- Local variables here
v_pre_space varchar2(10);
v_tname varchar2(100);
v_sql varchar2(4000);
v_int_type varchar2(10);
v_comment varchar2(1000);
v_pk varchar2(1000);