Skip to content

Instantly share code, notes, and snippets.

@jecacs
jecacs / main.go
Created March 20, 2024 18:48 — forked from LordGhostX/main.go
Solana Wallet with Go
package main
import (
"context"
"fmt"
"github.com/portto/solana-go-sdk/client"
"github.com/portto/solana-go-sdk/client/rpc"
"github.com/portto/solana-go-sdk/common"
"github.com/portto/solana-go-sdk/program/sysprog"
"github.com/portto/solana-go-sdk/types"
@jecacs
jecacs / latitude_longitude.txt
Created November 11, 2021 14:00 — forked from pjobson/latitude_longitude.txt
Latitude / Longitude DMS, DDM, DD Regular Expressions
Degrees Minutes Seconds (DMS)
40° 26′ 46″ N 79° 58′ 56″ W
40° 26′ 46″ S 79° 58′ 56″ E
90° 0′ 0″ S 180° 0′ 0″ E
40° 26′ 45.9996″ N 79° 58′ 55.2″ E
Latitudes range from 0 to 90.
Longitudes range from 0 to 180.
Minutes & Seconds range from 0-60
Use N, S, E or W as either the last character,
which represents a compass direction North, South, East or West.
@jecacs
jecacs / .gitignore
Created February 18, 2021 12:40
gitignore net core
.idea
.vscode
.vs
.DS_Store
*.user
**/*.min.css
**/*.js.css
**/bin
**/obj