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
| #!/bin/bash | |
| if [ `id -u` -ne 0 ]; then | |
| exec sudo -E $0 $@ | |
| fi | |
| if [[ $1 == 'start' ]]; then | |
| # start modem manager service | |
| /etc/init.d/modemmanager start |
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
| <html> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>test animation2</title> | |
| <script type="text/javascript"> | |
| // <![CDATA[ | |
| window.onload = function(){ | |
| //get context | |
| var canvas = document.getElementById("can"); | |
| if(!canvas || !canvas.getContext) return false; |
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
| public class MetaseqParser { | |
| enum MODE { | |
| MODE_METASEQUOIA, | |
| MODE_FORMAT, | |
| MODE_SCENE, | |
| MODE_MATERIAL, | |
| MODE_OBJECT, | |
| MODE_NONE, | |
| } |