This file has been truncated, but you can view the full file.
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
B42G00000 | |
B42G00001 | |
B42G00002 | |
B42G00003 | |
B42G00004 | |
B42G00005 | |
B42G00006 | |
B42G00007 | |
B42G00008 | |
B42G00009 |
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
puts breset | |
mdbg::breset | |
mdbg::loadfile -verify myriadX/mdk/common/utils/jtag_flasher/flasher_ma2480.elf | |
mdbg::mset 0x80000000 2649488 | |
#XX_TARGET_MVCMD_SIZE_XX | |
mdbg::loadfile -addr 0x80000004 -binary applications/boxfish/output/boxfish.mvcmd | |
mdbg::runw | |
mdbg::savefile boxfish.mvcmd.readback 0x80000004 2649488 #XX_TARGET_MVCMD_SIZE_XX | |
exit |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>JS Bin</title> | |
<style id="jsbin-css"> | |
.svg.radial-progress { | |
position: relative; | |
display: inline-block; | |
} |
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
<style id="jsbin-css"> | |
line { | |
stroke: black; | |
stroke-width: 1em; | |
} | |
</style> | |
<!DOCTYPE html> | |
<html> | |
<svg height="10em" width="10em"> | |
<line stroke-dasharray="2em" x1="0" y1="0" x2="8em" y2="0" /> |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>JS Bin</title> | |
<style id="jsbin-css"> | |
.svg.radial-progress { | |
position: relative; | |
display: inline-block; | |
} |
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
.burst { | |
margin: 30px; | |
position: relative; | |
text-align: center; | |
} | |
.b-0, .b-1, .b-2, .b-3, .b-4, .b-5, .b-6 { | |
position: absolute; | |
top: 0; | |
left: 0; |
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
.burst { | |
margin: 30px; | |
width: 80px; | |
height: 80px; | |
position: relative; | |
text-align: center; | |
} | |
.b-1, .b-2, .b-3, .b-4, .b-5, .b-6 { | |
position: absolute; |
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
font-size: 20px; | |
display: block; | |
background: -webkit-gradient(linear, left top, right bottom, from(#F5F5F5), to(transparent), color-stop(25%, #F5F5F5), color-stop(26%, #CCC), color-stop(27%, transparent)), | |
-webkit-gradient(linear, left bottom, right top, from(#F5F5F5), to(transparent), color-stop(25%, #F5F5F5), color-stop(26%, #CCC), color-stop(27%, transparent)); | |
background-repeat: repeat-y; | |
background-size: 2em 2em, 2em 2em; | |
width: 10em; | |
z-index: 10; |
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
/** | |
* zig-zag background (SO) | |
* CSS Zigzag Border with a Textured Background | |
*/ | |
font-size: 20px; | |
display: block; | |
background: -webkit-gradient(linear, left top, right bottom, from(transparent), to(#F5F5F5), color-stop(75%, transparent), color-stop(76%, #CCC), color-stop(77%, #F5F5F5)), | |
-webkit-gradient(linear, left bottom, right top, from(transparent), to(#F5F5F5), color-stop(75%, transparent), color-stop(76%, #CCC), color-stop(77%, #F5F5F5)); |
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
/** | |
* zig-zag background (SO) | |
* CSS Zigzag Border with a Textured Background | |
*/ | |
font-size: 20px; | |
display: block; | |
background: linear-gradient(45deg, #CCC 22%, #DDD, transparent 28%) 0 50%, | |
white linear-gradient(-45deg, #CCC 22%, #DDD, transparent 28%) 0 50%; |
NewerOlder