Skip to content

Instantly share code, notes, and snippets.

View scbizu's full-sized avatar
🤗
用代码给大家带来笑容 Bring smiles with codes

Nace Sc scbizu

🤗
用代码给大家带来笑容 Bring smiles with codes
View GitHub Profile
@scbizu
scbizu / file_mv.go
Created May 28, 2016 12:09
[LINUX/OSX ENV]golang put file in a dir
package main
import (
"fmt"
"os/exec"
)
func main() {
MVcmd := exec.Command("mv", "Ncell.png", "test")
err := MVcmd.Run()
@scbizu
scbizu / sort_go.go
Last active May 26, 2016 16:44
Go Basic Sort
package main
import (
"fmt"
"time"
)
//bubbleSort
func bubbleSort(origin []int) []int {
count := len(origin) - 1