Skip to content

Instantly share code, notes, and snippets.

View method76's full-sized avatar
:octocat:
I may be slow to respond.

Sungjoon Kim method76

:octocat:
I may be slow to respond.
View GitHub Profile
@method76
method76 / Account.vue
Created October 2, 2023 11:04 — forked from gopalkildoliya/Account.vue
VueJs Component for Paddle
<template>
<div>
<div class="content has-text-centered" v-if="user">
<button @click="subscribe">Checkout</button>
</div>
</div>
</template>
<script
import {db, firebase} from "../db";
@method76
method76 / gh_latest.go
Created August 14, 2023 06:10 — forked from metal3d/gh_latest.go
Go client to github to get latest release and assets for a given repository
package main
import (
"encoding/json"
"flag"
"fmt"
"io/ioutil"
"log"
"net/http"
"os"
@method76
method76 / websocketgames.go
Created July 8, 2023 16:08 — forked from tsilvers/websocketgames.go
Golang code to send binary image data to client through a websocket connection.
package main
import (
"flag"
"fmt"
"html/template"
"log"
"net/http"
"time"