This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* |\//\| */ | |
svg { width:100vh; display:block; margin:auto } | |
path { fill:hsla(338,56%,67%,1) } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Concrete Problems in AI Safety | |
- https://arxiv.org/pdf/1606.06565v2.pdf | |
- arXiv:1606.06565v2 [cs.AI] 25 Jul 2016 | |
Problems | |
A: wrong formal objective function | |
- negative side effects | |
+ define and learn impact regularizer | |
+ penalize influence | |
+ multi-agent approaches |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* vesica */ | |
body :nth-child(2) { transform:scale(.5) } | |
body > * { margin:0 calc(-.38em); | |
background:hsla(54,100%,60%,.6); display:inline-block; | |
width:1em; height:1em; border-radius:.5em } | |
body { font-size:calc(100vw/5); | |
perspective:50rem; perspective-origin:top; | |
display:flex; justify-content:center; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 511 logo */ | |
head, body { height:100vh } | |
body { perspective:21em; | |
animation:10s showcase alternate infinite cubic-bezier(.8,0,.1,1); | |
background:linear-gradient(to bottom, hsl(205,100%,30%), hsl(205,100%,10%), hsl(205,100%,30%)) } | |
@keyframes showcase { | |
0% { transform:rotate3d(1,0,0,18deg) } | |
38% { transform:rotate3d(0,-1,0,18deg) } | |
62% { transform:rotate3d(-1,0,0,18deg) } | |
100% { transform:rotate3d(1,1,0,18deg) }} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* phiveleven.logo negative */ | |
svg { width:100vh; display:block; margin:auto } | |
path { stroke:hsla(13,98%,55%,1); stroke-width:0; | |
fill:#41acff } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* phiveleven.logo */ | |
svg { width:100vh; display:block; margin:auto } | |
path { stroke:#41acff; stroke-width:2.6; stroke-linejoin:round; | |
fill:hsla(13,98%,55%,1) } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* nullisnull banner */ | |
path { stroke:hsla(0,100%,50%,.62); stroke-linejoin:bevel; | |
stroke-width:9; fill:hsla(222,38%,50%,.62) } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* nullisnull.blog */ | |
svg { transform:rotateX(180deg) } | |
path { stroke:hsla(0,100%,50%,.62); stroke-linejoin:bevel; | |
stroke-width:9; fill:hsla(222,38%,50%,.62) } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env node | |
/** | |
Usage: ninepatch.js background (icon.png) | |
background: color to extend | |
icon.png: image to center, present on running directory | |
Convert a base icon into 9-patch assets | |
Outputs base composites for each resolution and .9 files | |
*/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env node | |
/** | |
Resources generator | |
Generate icons for mobile/tablet according to iOS/Android specifications. | |
Takes an image 'icon.png' and outputs to pre-existing directories res/* | |
Requires Imagemagick (imagemagick.org) |