Skip to content

Instantly share code, notes, and snippets.

View frankcash's full-sized avatar
🗻
Moving tons of data.

Frank Cash frankcash

🗻
Moving tons of data.
View GitHub Profile
package Bean;
import com.google.gson.annotations.Expose;
/**
* Created by foobar on 8/25/16.
*/
public class Local {
@Expose
public String id;
@frankcash
frankcash / ll.go
Created March 10, 2018 19:52
simple linked list in golang
package main
import (
"errors"
"fmt"
)
type node struct {
prev *node
data string
@frankcash
frankcash / main.go
Created March 14, 2018 02:36
Basic go-colly example
package main
import (
"fmt"
"github.com/gocolly/colly"
)
func main() {
c := colly.NewCollector()
@frankcash
frankcash / main.go
Created March 14, 2018 02:39
Structured Colly Example for Reddit.com/r/programming
package main
import (
"fmt"
"time"
"github.com/gocolly/colly"
)
type item struct {
boto3==1.5.6
botocore==1.8.20
numpy==1.14.0
pandas==0.20.3
psycopg2==2.7.3.2
python-dateutil==2.7.0
paramiko==2.4.1