Skip to content

Instantly share code, notes, and snippets.

View dalanmiller's full-sized avatar
👨‍💻

dalan dalanmiller

👨‍💻
View GitHub Profile
import {Octokit} from 'https://cdn.skypack.dev/@octokit/rest';
const octokit = new Octokit({
auth: Deno.env.get('TOKEN')
})
await octokit.rest.issues.create({
"author": "octokit",
"repo": "octokit.js",
"title": "test",
{"data":{"match":{"id":"241a7ec1-bf55-433a-bbfe-e53ac7c2a142","shardId":"xbox","gameMode":"duo","playedAt":"2021-03-22 12:11:47+0000","mapName":"Savage_Main","durationSeconds":1337,"telemetryUrl":"https://telemetry-cdn.pubg.com/bluehole-pubg/console/2021/03/22/12/35/27a82c64-8b0b-11eb-b4cc-9ed73049759a-telemetry.json","players":[{"id":"account.00f523012a8d45aab5db14c2f1310cd7","name":"WikkidNinja651","rosterId":"ea1230e4-0e2f-4f5f-aa4d-7915f5de4e9f","stats":{"kills":1,"winPlace":14,"__typename":"MatchStats"},"__typename":"MatchPlayer"},{"id":"account.03b2e13529d14005908acd22648f0367","name":"dotHack_Effect","rosterId":"05866c36-5355-47a7-954d-d82b642f5961","stats":{"kills":1,"winPlace":11,"__typename":"MatchStats"},"__typename":"MatchPlayer"},{"id":"account.075a882c1b4249289b6e3e94f0ae4f95","name":"Ol Gray Beard","rosterId":"a68ebfa7-781f-4a80-a791-e0c764c13b4f","stats":{"kills":1,"winPlace":5,"__typename":"MatchStats"},"__typename":"MatchPlayer"},{"id":"account.0a3e51fd59ad4bff8bd5befd3da5788f","name":"RGI x
@dalanmiller
dalanmiller / grab-flickr-links.js
Last active December 2, 2018 07:32
Console snippet to grab all Flickr Data export links
@dalanmiller
dalanmiller / Dockerfile.app
Last active June 29, 2020 15:27
RethinkDB docker-compose.yml example
IMAGE node:argon
RUN mkdir -p /usr/app
COPY . /usr/app
WORKDIR /usr/app
RUN npm install
{"head":{"functionName":"(root)","scriptId":"0","url":"","lineNumber":0,"columnNumber":0,"hitCount":0,"callUID":121,"children":[{"functionName":"(program)","scriptId":"0","url":"","lineNumber":0,"columnNumber":0,"hitCount":720,"callUID":1,"children":[],"deoptReason":"","id":2,"positionTicks":[]},{"functionName":"B.onmessage","scriptId":"9312","url":"http://localhost:8181/horizon/horizon.js","lineNumber":3,"columnNumber":9276,"hitCount":11,"callUID":78,"children":[{"functionName":"e.next","scriptId":"9312","url":"http://localhost:8181/horizon/horizon.js","lineNumber":2,"columnNumber":2541,"hitCount":1,"callUID":10,"children":[{"functionName":"e._next","scriptId":"9312","url":"http://localhost:8181/horizon/horizon.js","lineNumber":2,"columnNumber":2882,"hitCount":1,"callUID":9,"children":[{"functionName":"e.next","scriptId":"9312","url":"http://localhost:8181/horizon/horizon.js","lineNumber":2,"columnNumber":3500,"hitCount":2,"callUID":8,"children":[{"functionName":"e.__tryOrUnsub","scriptId":"9312","url":"http
// Creating an index that returns true or false based on if certain property is > 0
r.db("example").table("example").indexCreate("example_index", (row) => { return row('above_zero').gt(0) })
// Only returns true values
r.db("example").table("example").getAll( true , {index: "above_zero"})
// Only returns false values
r.db("example").table("example").getAll( false , {index: "above_zero"})
Verifying that +dalanmiller is my blockchain ID. https://onename.com/dalanmiller
@dalanmiller
dalanmiller / asyncio-changefeeds.py
Created May 2, 2016 22:39
asyncio & RethinkDB changefeeds example
import rethinkdb as r
import asyncio
r.set_loop_type("asyncio")
async def get_connection():
return await r.connect("localhost", 28015)
async def changefeed_old():
@dalanmiller
dalanmiller / netbeez-install.sh
Last active January 21, 2016 06:18
Netbeez install script is broken - https://netbeez.net/product/install-netbeez-software-agent/ - this is fixed.
#!/bin/sh
sudo echo deb http://repo.netbeez.net wheezy main >> /etc/apt/sources.list
sudo wget -O - http://repo.netbeez.net/netbeez_pub.key | sudo apt-key add -
sudo apt-get update
sudo apt-get install netbeez-agent
@dalanmiller
dalanmiller / Dockerfile
Created December 16, 2015 17:32
jekyll deploy dockerfile
FROM ruby:latest
RUN mkdir /root/.ssh/
RUN touch /root/.ssh/known_hosts
RUN ssh-keyscan -T 60 github.com >> /root/.ssh/known_hosts
COPY autodeploy /root/.ssh/
RUN curl -sL https://deb.nodesource.com/setup_5.x | bash -
RUN apt-get install --yes nodejs git