I hereby claim:
- I am castaneai on github.
- I am castaneai (https://keybase.io/castaneai) on keybase.
- I have a public key ASB0UigtWHu8Gzb_dS1eE-uLPeKvrsRfuDpDea9x7MHGbAo
To claim this, I am signing this object:
| package main | |
| import ( | |
| "context" | |
| "log" | |
| "os" | |
| "os/signal" | |
| "syscall" | |
| "time" |
| #include "../headers/EARTH_PT3.h" | |
| #include "../headers/EX_Buffer.h" | |
| #include "Windows.h" | |
| int main(void) | |
| { | |
| auto dll = LoadLibrary(L"SDK_EARTHSOFT_PT3.dll"); | |
| auto newBusFunc = reinterpret_cast<EARTH::PT::Bus::NewBusFunction>(GetProcAddress(dll, "_")); | |
| EARTH::PT::Bus* bus; |
| package main | |
| import ( | |
| "context" | |
| "github.com/golang/protobuf/ptypes" | |
| "google.golang.org/grpc/reflection" | |
| "log" | |
| "net" | |
| "os" | |
| "time" |
| function fetch() { | |
| var headers = {"Cookie": "user=xxxxxxxxxxxxxxxxxx;"}; // <- insert your cookie here | |
| var params = { | |
| "method": "GET", | |
| "headers": headers, | |
| }; | |
| var url = "https://techbookfest.org/api/circle/own"; | |
| var resp = UrlFetchApp.fetch(url, params); | |
| return JSON.parse(resp.getContentText()); | |
| } |
| #!/bin/bash | |
| GITLAB_USER=castaneai | |
| GITHUB_USER=castaneai | |
| REPO_NAME=$1 | |
| git clone --mirror https://gitlab.com/$GITLAB_USER/$REPO_NAME && cd $REPO_NAME.git && hub create -p $REPO_NAME && git remote set-url origin https://github.com/$GITHUB_USER/$REPO_NAME.git && git push --mirror |
I hereby claim:
To claim this, I am signing this object:
| import React, { Component } from 'react'; | |
| import './App.css'; | |
| import ItemList from "./ItemList"; | |
| import Item from "./Item"; | |
| interface Props { | |
| } | |
| interface State { | |
| items: Item[] | |
| } |
| package main | |
| import ( | |
| "cloud.google.com/go/spanner" | |
| "context" | |
| "contrib.go.opencensus.io/exporter/stackdriver" | |
| "fmt" | |
| "go.opencensus.io/plugin/ochttp" | |
| "go.opencensus.io/trace" | |
| "log" |
| <public:attach event="onload" for="window" onevent="initialise()" /> | |
| <script language="javascript"> | |
| function initialise() { | |
| document.write("goooooooooooooooooooooooooold"); | |
| } | |
| </script> |
| package main | |
| import ( | |
| "os" | |
| "io" | |
| "log" | |
| ) | |
| func main() { | |
| filename := os.Args[1] |