Skip to content

Instantly share code, notes, and snippets.

View daqing's full-sized avatar

David Zhang daqing

View GitHub Profile
@daqing
daqing / how-to-do-unit-test.md
Created June 27, 2019 03:10
How to test methods that call other methods

对于如何测试下面的方法,我现在的思考是:

def do_something
  do_action_one
  do_action_two(10)
  another.do_abc
  
  if ok?
 do_action_z
@daqing
daqing / ContentView.swift
Created March 25, 2024 12:20
iOS Weather App (demo)
//
// ContentView.swift
// SwiftUI-Weather
//
// Created by David Zhang on 2023/11/23.
//
import SwiftUI
struct ContentView: View {
@daqing
daqing / main.go
Created March 26, 2024 04:20
Go SQLite demo
package main
import (
"database/sql"
"fmt"
"time"
_ "modernc.org/sqlite"
)