Skip to content

Instantly share code, notes, and snippets.

View HankLi0130's full-sized avatar

Hank Li HankLi0130

View GitHub Profile
@HankLi0130
HankLi0130 / MaxAPI.kt
Created August 3, 2021 02:00
Max private API using Kotlin
package app.hankdev.mycrypto.max
import app.hankdev.mycrypto.max.model.Order
import com.google.gson.Gson
import io.ktor.client.*
import io.ktor.client.features.*
import io.ktor.client.features.json.*
import io.ktor.client.features.logging.*
import io.ktor.client.request.*
@HankLi0130
HankLi0130 / main.go
Last active August 3, 2018 05:12
Let's Go - Golang Pointer篇
package main
import "fmt"
func main() {
name := "bill"
namePointer := &name