Skip to content

Instantly share code, notes, and snippets.

View pgburt's full-sized avatar

Paul Burt pgburt

View GitHub Profile
https://docs.google.com/presentation/d/e/2PACX-1vQMUdP8O04Z5HcXGKBTNjljdIP6q031ZzRxRnojD_YxnXDkF8jCUua7fD6F7zRiq3fkxC4GSxVBl3BX/pub?start=true&loop=true&delayms=6000
https://drive.google.com/file/d/1T4s4dnWWJNfhWX8EUAY0fDPo6nsTTsqv/view?usp=sharing

This issue is intended as a proposal to identify, and gather info about open source users of Flat Buffers.

More info can help prioritize work on languages, and provide useful info to designers as they consider adding or removing features.

Finding Users

The first step of this process is to do a bit of research using the GitHub API / Big Query data. Ideally we should first identify a handful of known projects to use as testcases. We can then construct a search, and use those known users as a test to tell if the search is too exclusive.

The result of this should be a query (or queries) that can show all current users of FB.

Gathering Metadata About Users

<!-- view using http://gist-reveal.it/# -->
<section>
<section id="tectonic-administration">
<h1>Tectonic Installer</h1>
</section>
<section id='coreos' data-markdown>
![CoreOS Logo](http://i.imgur.com/DRm4KEq.png "")
Helping *Secure the Internet* by keeping your Container Linux hosts secure, up-to-date, and ready for the challenges of a modern world
@pgburt
pgburt / Writing Guidelines.md
Last active November 30, 2021 19:50
Writing

Writing

Numbers

Title

60 characters max.

Content

Between 700 to 2100 words.

Important Theory

Give Back: Teach CompSci AND Keep Your Day Job
Did you know that fewer than 25% of US high schools offer computer science courses? It’s hard to start CS classes because very few teachers have CS knowledge. As NYC’s CS4All effort gets off the ground, teachers in the city need help to start teaching computer science. The TEALS program helps start and build CS programs in high schools by enlisting tech professionals (including some undergrad and graduate students) as volunteers who co-teach a 1st period computer science course and help train a teacher in how to keep the class going.
TEALS is looking for volunteers to serve in high schools for the 2016-2017 school year.
The commitment:
-work with a classroom teacher to co-teach or TA a 1st period class 2-3 times per week at a local high school
-spend time helping to grade assignments or prep for class
-over the summer, attend 2 training workshops, check out the curriculum materials, and meet with your teaching team to plan
We are about to have an information
@pgburt
pgburt / 0_reuse_code.js
Created April 21, 2016 19:01
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@pgburt
pgburt / main.go
Last active March 11, 2016 18:41
pi-reduce
package main
import (
"encoding/json"
"fmt"
"github.com/iron-io/iron_go/worker"
"github.com/iron-io/iron_go3/mq"
"math/big"
"time"
)
@pgburt
pgburt / main.go
Last active March 1, 2016 23:46
Sending results to an MQ.
package main
import (
"fmt"
"math"
"math/big"
"encoding/json"
"github.com/iron-io/iron_go3/mq"
"github.com/iron-io/iron_go/worker"
)
@pgburt
pgburt / main.go
Last active February 29, 2016 22:25
Now reading from the payload file
package main
import (
"fmt"
"math"
"math/big"
"github.com/iron-io/iron_go/worker"
)
func CalcNumerator(num int) int64 {