Skip to content

Instantly share code, notes, and snippets.

View teamdandelion's full-sized avatar
💭
they/them

team Dandelion Mané teamdandelion

💭
they/them
View GitHub Profile
@teamdandelion
teamdandelion / .flowconfig
Last active June 27, 2018 21:03
Broken Flow when using import *
[ignore]
[include]
[libs]
[lints]
[options]
@teamdandelion
teamdandelion / sourcecred_q3_update.md
Last active June 22, 2018 08:33
SourceCred Q3 Development Update

SourceCred Overview

SourceCred enables open-source projects to attribute cred to members of their communities in a way that fairly reflects the value those members have contributed to the project.

For SourceCred to succeed in the long-term, it needs to be a extensible. For example, the initial system might only look at GitHub interactions and Git metadata, but it should be possible to add new data sources like static code

@teamdandelion
teamdandelion / result
Created May 4, 2018 01:16
tfjs failure
Couldn't parse line number in error:
tfjs@latest:1
precision highp float;
precision highp int;
varying vec2 resultUV;
const vec2 halfCR = vec2(0.5, 0.5);
bool isNaN(float val) {
float v1 = val * val;
float v2 = val * val;
@teamdandelion
teamdandelion / fail.js
Last active May 4, 2018 01:04
tfjs fail
const buffer = tf.buffer([10000, 10000]);
const result = tf.tidy(() => {
let t = buffer.toTensor();
t = t.div(t.sum(1));
for (let i = 0; i < 10; i++) {
t = t.matMul(t);
}
return t;
});
commit a03c36bf6b2205e4a408b04bb0940d48346d0d50
Author: Dandelion Mané <dl@dandelion.io>
Date: Wed Apr 25 14:41:36 2018 -0700
Create GitHub reference edges
This commit adds the `addReferenceEdges()` method to the GitHub parser,
which examines all of the posts in the parsed graph and adds References
edges when it detects references between posts. As an example, `Hey
@wchargin, take a look at #1337` would generate two references.
@teamdandelion
teamdandelion / README.md
Created March 2, 2017 00:26
TensorBoard tutorial data

Data files associated with my TensorBoard tutorial.

@teamdandelion
teamdandelion / labels_1024.tsv
Last active February 6, 2024 08:33
TensorBoard: TF Dev Summit Tutorial
We can make this file beautiful and searchable if this error is corrected: No tabs found in this TSV file in line 0.
7
2
1
0
4
1
4
9
5
9
### Keybase proof
I hereby claim:
* I am dandelionmane on github.
* I am dandelion (https://keybase.io/dandelion) on keybase.
* I have a public key whose fingerprint is CC0B 6DD9 3B6B 2BF0 4073 F9AF 2FCE 257A 3576 5526
To claim this, I am signing this object:

Keybase proof

I hereby claim:

  • I am danmane on github.
  • I am dandelion (https://keybase.io/dandelion) on keybase.
  • I have a public key whose fingerprint is CC0B 6DD9 3B6B 2BF0 4073 F9AF 2FCE 257A 3576 5526

To claim this, I am signing this object:

@teamdandelion
teamdandelion / multiple-replace.html
Created April 15, 2016 20:55
Attempt to replace more than one element in wct
<!DOCTYPE html>
<html>
<head>
<link rel="import" href="../../polymer/polymer.html">
<script src="../../webcomponentsjs/webcomponents-lite.min.js"></script>
<script src="../../web-component-tester/browser.js"></script>
</head>
<body>
<script>
window.HTMLImports.whenReady(function() {