Skip to content

Instantly share code, notes, and snippets.

@Cosxin
Cosxin / gist:3b5468a4bf2efacbbb4f2dddccdbe60a
Created February 1, 2024 11:57
One Python trick to save your business million dollars
from china import Slaves
@Cosxin
Cosxin / index.html
Created October 2, 2017 16:51
svg+d3 realization of Nomed font
<!DOCTYPE html>
<meta charset="utf-8">
<body>
<svg>
</svg>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/4.10.2/d3.min.js"></script>
<script>
/*
Original Font Design See Here:
@Cosxin
Cosxin / graph.html
Created February 21, 2016 02:32
force layout with tooltip
<!DOCTYPE html>
<meta charset="utf-8">
<style>
.link {
fill: none;
stroke: #666;
stroke-width: 1.5px;
}
@Cosxin
Cosxin / graph.html
Created February 20, 2016 03:29
force layout with pinning
<!DOCTYPE html>
<meta charset="utf-8">
<style>
.link {
fill: none;
stroke: #666;
stroke-width: 1.5px;
}
@Cosxin
Cosxin / index.html
Created February 19, 2016 03:51
Europe Refugee Sankey
<meta charset="utf-8">
<html>
<head>
<h1>unhcr_persons_of_concern</h1>
</head>
<style>
.node rect {
cursor: move;
fill-opacity: .9;
@Cosxin
Cosxin / index.html
Created February 19, 2016 03:47
Europe Refugee Sankey Chart
<meta charset="utf-8">
<html>
<head>
<h1>unhcr_persons_of_concern</h1>
</head>
<style>
.node rect {
cursor: move;
fill-opacity: .9;
@Cosxin
Cosxin / index.html
Created February 16, 2016 00:10
stackbar transition1
<meta charset="utf-8">
<html>
<head>
</head>
<script src="http://d3js.org/d3.v3.min.js"></script>
<style type="text/css">
.axis {
shape-rendering: crispEdges;
}
.x.axis line,
@Cosxin
Cosxin / ForestFires.csv
Created February 14, 2016 19:26
rect-circle transition
month wind area
jul 2.7 0.36
sep 2.2 0.43
sep 1.8 0.47
aug 4.5 0.55
aug 8.9 0.61
jul 5.4 0.71
aug 5.4 0.77
aug 4 0.9
mar 5.4 0.95
@Cosxin
Cosxin / README
Last active January 12, 2018 22:40
DynaQ
A path finder visualization with Q-Learner. Built with D3.
gistup